1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2012 Index Data
4 Pazpar2 is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
42 #include <yaz/marcdisp.h>
43 #include <yaz/comstack.h>
44 #include <yaz/tcpip.h>
45 #include <yaz/proto.h>
46 #include <yaz/readconf.h>
47 #include <yaz/pquery.h>
48 #include <yaz/otherinfo.h>
49 #include <yaz/yaz-util.h>
51 #include <yaz/query-charset.h>
52 #include <yaz/querytowrbuf.h>
53 #include <yaz/oid_db.h>
54 #include <yaz/diagbib1.h>
55 #include <yaz/snprintf.h>
56 #include <yaz/rpn2cql.h>
57 #include <yaz/rpn2solr.h>
58 #include <yaz/gettimeofday.h>
62 #include <yaz/timing.h>
67 #include "parameters.h"
69 #include "connection.h"
71 #include "relevance.h"
74 static YAZ_MUTEX g_mutex = 0;
75 static int no_clients = 0;
76 static int no_clients_total = 0;
78 static int client_use(int delta)
82 yaz_mutex_create(&g_mutex);
83 yaz_mutex_enter(g_mutex);
86 no_clients_total += delta;
88 yaz_mutex_leave(g_mutex);
89 yaz_log(YLOG_DEBUG, "%s clients=%d", delta == 0 ? "" : (delta > 0 ? "INC" : "DEC"), clients);
93 int clients_count(void) {
97 int clients_count_total(void) {
101 yaz_mutex_enter(g_mutex);
102 total = no_clients_total;
103 yaz_mutex_leave(g_mutex);
108 /** \brief Represents client state for a connection to one search target */
110 struct session_database *database;
111 struct connection *connection;
112 struct session *session;
113 char *pquery; // Current search
114 char *cqlquery; // used for SRU targets only
115 char *addinfo; // diagnostic info for most resent error
118 int filtered; // When using local:, this will count the number of filtered records.
124 struct suggestions *suggestions;
125 enum client_state state;
126 struct show_raw *show_raw;
127 ZOOM_resultset resultset;
131 facet_limits_t facet_limits;
146 int active; // whether this request has been sent to the server
152 void (*error_handler)(void *data, const char *addinfo);
153 void (*record_handler)(void *data, const char *buf, size_t sz);
155 struct show_raw *next;
158 static const char *client_states[] = {
164 "Client_Disconnected"
167 const char *client_get_state_str(struct client *cl)
169 return client_states[cl->state];
172 enum client_state client_get_state(struct client *cl)
177 void client_set_state_nb(struct client *cl, enum client_state st)
182 void client_set_state(struct client *cl, enum client_state st)
185 if (client_is_active(cl))
188 /* If client is going from being active to inactive and all clients
189 are now idle we fire a watch for the session . The assumption is
190 that session is not mutex locked if client is already active */
191 if (was_active && !client_is_active(cl) && cl->session)
194 int no_active = session_active_clients(cl->session);
195 yaz_log(YLOG_DEBUG, "%s: releasing watches on zero active: %d",
196 client_get_id(cl), no_active);
197 if (no_active == 0) {
198 session_alert_watch(cl->session, SESSION_WATCH_SHOW);
199 session_alert_watch(cl->session, SESSION_WATCH_BYTARGET);
200 session_alert_watch(cl->session, SESSION_WATCH_TERMLIST);
201 session_alert_watch(cl->session, SESSION_WATCH_SHOW_PREF);
206 static void client_show_raw_error(struct client *cl, const char *addinfo);
208 struct connection *client_get_connection(struct client *cl)
210 return cl->connection;
213 struct session_database *client_get_database(struct client *cl)
218 struct session *client_get_session(struct client *cl)
223 const char *client_get_pquery(struct client *cl)
228 static void client_send_raw_present(struct client *cl);
229 static int nativesyntax_to_type(const char *s, char *type, ZOOM_record rec);
231 static void client_show_immediate(
232 ZOOM_resultset resultset, struct session_database *sdb, int position,
234 void (*error_handler)(void *data, const char *addinfo),
235 void (*record_handler)(void *data, const char *buf, size_t sz),
237 const char *nativesyntax)
246 error_handler(data, "no resultset");
249 rec = ZOOM_resultset_record_immediate(resultset, position-1);
252 error_handler(data, "no record");
255 nativesyntax_to_type(nativesyntax, type, rec);
256 buf = ZOOM_record_get(rec, type, &len);
259 error_handler(data, "no record");
262 record_handler(data, buf, len);
266 int client_show_raw_begin(struct client *cl, int position,
267 const char *syntax, const char *esn,
269 void (*error_handler)(void *data, const char *addinfo),
270 void (*record_handler)(void *data, const char *buf,
273 const char *nativesyntax)
278 nativesyntax = "raw";
281 struct session_database *sdb = client_get_database(cl);
282 nativesyntax = session_setting_oneval(sdb, PZ_NATIVESYNTAX);
286 if (syntax == 0 && esn == 0)
287 client_show_immediate(cl->resultset, client_get_database(cl),
289 error_handler, record_handler,
290 binary, nativesyntax);
293 struct show_raw *rr, **rrp;
299 rr = xmalloc(sizeof(*rr));
300 rr->position = position;
303 rr->error_handler = error_handler;
304 rr->record_handler = record_handler;
307 rr->syntax = xstrdup(syntax);
311 rr->esn = xstrdup(esn);
315 assert(nativesyntax);
316 rr->nativesyntax = xstrdup(nativesyntax);
320 for (rrp = &cl->show_raw; *rrp; rrp = &(*rrp)->next)
324 if (cl->state == Client_Failed)
326 client_show_raw_error(cl, "client failed");
328 else if (cl->state == Client_Disconnected)
330 client_show_raw_error(cl, "client disconnected");
334 client_send_raw_present(cl);
340 static void client_show_raw_delete(struct show_raw *r)
344 xfree(r->nativesyntax);
348 void client_show_raw_remove(struct client *cl, void *data)
350 struct show_raw *rr = data;
351 struct show_raw **rrp = &cl->show_raw;
357 client_show_raw_delete(rr);
361 void client_show_raw_dequeue(struct client *cl)
363 struct show_raw *rr = cl->show_raw;
365 cl->show_raw = rr->next;
366 client_show_raw_delete(rr);
369 static void client_show_raw_error(struct client *cl, const char *addinfo)
373 cl->show_raw->error_handler(cl->show_raw->data, addinfo);
374 client_show_raw_dequeue(cl);
378 static void client_send_raw_present(struct client *cl)
380 struct session_database *sdb = client_get_database(cl);
381 struct connection *co = client_get_connection(cl);
382 ZOOM_resultset set = cl->resultset;
384 int offset = cl->show_raw->position;
385 const char *syntax = 0;
386 const char *elements = 0;
388 assert(cl->show_raw);
391 yaz_log(YLOG_DEBUG, "%s: trying to present %d record(s) from %d",
392 client_get_id(cl), 1, offset);
394 if (cl->show_raw->syntax)
395 syntax = cl->show_raw->syntax;
397 syntax = session_setting_oneval(sdb, PZ_REQUESTSYNTAX);
398 ZOOM_resultset_option_set(set, "preferredRecordSyntax", syntax);
400 if (cl->show_raw->esn)
401 elements = cl->show_raw->esn;
403 elements = session_setting_oneval(sdb, PZ_ELEMENTS);
404 if (elements && *elements)
405 ZOOM_resultset_option_set(set, "elementSetName", elements);
407 ZOOM_resultset_records(set, 0, offset-1, 1);
408 cl->show_raw->active = 1;
410 connection_continue(co);
413 static int nativesyntax_to_type(const char *s, char *type,
418 if (!strncmp(s, "iso2709", 7))
420 const char *cp = strchr(s, ';');
421 yaz_snprintf(type, 80, "xml; charset=%s", cp ? cp+1 : "marc-8s");
423 else if (!strncmp(s, "txml", 4))
425 const char *cp = strchr(s, ';');
426 yaz_snprintf(type, 80, "txml; charset=%s", cp ? cp+1 : "marc-8s");
428 else /* pass verbatim to ZOOM - including "xml" */
432 else /* attempt to deduce structure */
434 const char *syntax = ZOOM_record_get(rec, "syntax", NULL);
437 if (!strcmp(syntax, "XML"))
442 else if (!strcmp(syntax, "USmarc") || !strcmp(syntax, "MARC21"))
444 strcpy(type, "xml; charset=marc8-s");
454 * TODO Consider thread safety!!!
457 void client_report_facets(struct client *cl, ZOOM_resultset rs)
459 struct session_database *sdb = client_get_database(cl);
460 ZOOM_facet_field *facets = ZOOM_resultset_facets(rs);
464 struct session *se = client_get_session(cl);
465 int facet_num = ZOOM_resultset_facets_size(rs);
468 for (s = sdb->settings[PZ_FACETMAP]; s; s = s->next)
470 const char *p = strchr(s->name + 3, ':');
471 if (p && p[1] && s->value && s->value[0])
474 p++; /* p now holds logical facet name */
475 for (facet_idx = 0; facet_idx < facet_num; facet_idx++)
477 const char *native_name =
478 ZOOM_facet_field_name(facets[facet_idx]);
479 if (native_name && !strcmp(s->value, native_name))
483 ZOOM_facet_field_term_count(facets[facet_idx]);
484 for (term_idx = 0; term_idx < term_num; term_idx++ )
488 ZOOM_facet_field_get_term(facets[facet_idx],
491 add_facet(se, p, term, freq);
501 static void ingest_raw_record(struct client *cl, ZOOM_record rec)
507 nativesyntax_to_type(cl->show_raw->nativesyntax, type, rec);
508 buf = ZOOM_record_get(rec, type, &len);
509 cl->show_raw->record_handler(cl->show_raw->data, buf, len);
510 client_show_raw_dequeue(cl);
513 void client_check_preferred_watch(struct client *cl)
515 struct session *se = cl->session;
516 yaz_log(YLOG_DEBUG, "client_check_preferred_watch: %s ", client_get_id(cl));
520 /* TODO possible threading issue. Session can have been destroyed */
521 if (session_is_preferred_clients_ready(se)) {
522 session_alert_watch(se, SESSION_WATCH_SHOW_PREF);
525 yaz_log(YLOG_DEBUG, "client_check_preferred_watch: Still locked on preferred targets.");
530 yaz_log(YLOG_WARN, "client_check_preferred_watch: %s. No session!", client_get_id(cl));
534 struct suggestions* client_suggestions_create(const char* suggestions_string);
535 static void client_suggestions_destroy(struct client *cl);
537 void client_search_response(struct client *cl)
539 struct connection *co = cl->connection;
540 ZOOM_connection link = connection_get_link(co);
541 ZOOM_resultset resultset = cl->resultset;
543 const char *error, *addinfo = 0;
545 if (ZOOM_connection_error(link, &error, &addinfo))
548 client_set_state(cl, Client_Error);
549 yaz_log(YLOG_WARN, "Search error %s (%s): %s",
550 error, addinfo, client_get_id(cl));
554 client_report_facets(cl, resultset);
555 cl->record_offset = cl->startrecs;
556 cl->hits = ZOOM_resultset_size(resultset);
557 yaz_log(YLOG_DEBUG, "client_search_response: hits " ODR_INT_PRINTF, cl->hits);
559 client_suggestions_destroy(cl);
560 cl->suggestions = client_suggestions_create(ZOOM_resultset_option_get(resultset, "suggestions"));
564 void client_got_records(struct client *cl)
566 struct session *se = cl->session;
569 if (reclist_get_num_records(se->reclist) > 0)
572 session_alert_watch(se, SESSION_WATCH_SHOW);
573 session_alert_watch(se, SESSION_WATCH_BYTARGET);
574 session_alert_watch(se, SESSION_WATCH_TERMLIST);
575 session_alert_watch(se, SESSION_WATCH_RECORD);
581 static void client_record_ingest(struct client *cl)
583 const char *msg, *addinfo;
585 ZOOM_resultset resultset = cl->resultset;
586 struct session *se = client_get_session(cl);
588 if ((rec = ZOOM_resultset_record_immediate(resultset, cl->record_offset)))
590 int offset = ++cl->record_offset;
591 if (cl->session == 0) {
594 else if (ZOOM_record_error(rec, &msg, &addinfo, 0))
596 session_log(se, YLOG_WARN, "Record error %s (%s): %s #%d",
597 msg, addinfo, client_get_id(cl), offset);
601 struct session_database *sdb = client_get_database(cl);
602 NMEM nmem = nmem_create();
606 const char *s = session_setting_oneval(sdb, PZ_NATIVESYNTAX);
607 if (nativesyntax_to_type(s, type, rec))
608 session_log(se, YLOG_WARN, "Failed to determine record type");
609 xmlrec = ZOOM_record_get(rec, type, NULL);
612 const char *rec_syn = ZOOM_record_get(rec, "syntax", NULL);
613 session_log(se, YLOG_WARN, "ZOOM_record_get failed from %s #%d",
614 client_get_id(cl), offset);
615 session_log(se, YLOG_LOG, "pz:nativesyntax=%s . "
616 "ZOOM record type=%s . Actual record syntax=%s",
617 s ? s : "null", type,
618 rec_syn ? rec_syn : "null");
622 /* OK = 0, -1 = failure, -2 = Filtered */
623 int rc = ingest_record(cl, xmlrec, cl->record_offset, nmem);
626 const char *rec_syn = ZOOM_record_get(rec, "syntax", NULL);
627 session_log(se, YLOG_WARN,
628 "Failed to ingest record from %s #%d",
629 client_get_id(cl), offset);
630 session_log(se, YLOG_LOG, "pz:nativesyntax=%s . "
631 "ZOOM record type=%s . Actual record syntax=%s",
632 s ? s : "null", type,
633 rec_syn ? rec_syn : "null");
643 session_log(se, YLOG_WARN, "Got NULL record from %s #%d",
644 client_get_id(cl), cl->record_offset);
648 void client_record_response(struct client *cl)
650 struct connection *co = cl->connection;
651 ZOOM_connection link = connection_get_link(co);
652 ZOOM_resultset resultset = cl->resultset;
653 const char *error, *addinfo;
655 if (ZOOM_connection_error(link, &error, &addinfo))
657 client_set_state(cl, Client_Error);
658 yaz_log(YLOG_WARN, "Search error %s (%s): %s",
659 error, addinfo, client_get_id(cl));
663 if (cl->show_raw && cl->show_raw->active)
666 if ((rec = ZOOM_resultset_record_immediate(
667 resultset, cl->show_raw->position-1)))
669 cl->show_raw->active = 0;
670 ingest_raw_record(cl, rec);
674 yaz_log(YLOG_WARN, "Expected record, but got NULL, offset=%d",
675 cl->show_raw->position-1);
680 client_record_ingest(cl);
685 int client_reingest(struct client *cl)
687 int i = cl->startrecs;
688 int to = cl->record_offset;
691 cl->record_offset = i;
693 client_record_ingest(cl);
697 static void client_set_facets_request(struct client *cl, ZOOM_connection link)
699 struct session_database *sdb = client_get_database(cl);
701 WRBUF w = wrbuf_alloc();
705 for (s = sdb->settings[PZ_FACETMAP]; s; s = s->next)
707 const char *p = strchr(s->name + 3, ':');
710 yaz_log(YLOG_WARN, "Malformed facetmap name: %s", s->name);
712 else if (s->value && s->value[0])
714 wrbuf_puts(w, "@attr 1=");
715 yaz_encode_pqf_term(w, s->value, strlen(s->value));
720 yaz_log(YLOG_DEBUG, "using facets str: %s", wrbuf_cstr(w));
721 ZOOM_connection_option_set(link, "facets",
722 wrbuf_len(w) ? wrbuf_cstr(w) : 0);
726 int client_has_facet(struct client *cl, const char *name)
728 struct session_database *sdb = client_get_database(cl);
731 for (s = sdb->settings[PZ_FACETMAP]; s; s = s->next)
733 const char *p = strchr(s->name + 3, ':');
734 if (p && !strcmp(name, p + 1))
740 static const char *get_strategy_plus_sort(struct client *l, const char *field)
742 struct session_database *sdb = client_get_database(l);
745 const char *strategy_plus_sort = 0;
747 for (s = sdb->settings[PZ_SORTMAP]; s; s = s->next)
749 char *p = strchr(s->name + 3, ':');
752 yaz_log(YLOG_WARN, "Malformed sortmap name: %s", s->name);
756 if (!strcmp(p, field))
758 strategy_plus_sort = s->value;
762 return strategy_plus_sort;
765 int client_parse_init(struct client *cl, int same_search)
767 cl->same_search = same_search;
772 * TODO consider how to extend the range
774 int client_parse_range(struct client *cl, const char *startrecs, const char *maxrecs)
776 if (maxrecs && atoi(maxrecs) != cl->maxrecs)
779 cl->maxrecs = atoi(maxrecs);
782 if (startrecs && atoi(startrecs) != cl->startrecs)
785 cl->startrecs = atoi(startrecs);
791 int client_start_search(struct client *cl)
793 struct session_database *sdb = client_get_database(cl);
794 struct connection *co = 0;
795 ZOOM_connection link = 0;
796 struct session *se = client_get_session(cl);
798 const char *opt_piggyback = session_setting_oneval(sdb, PZ_PIGGYBACK);
799 const char *opt_queryenc = session_setting_oneval(sdb, PZ_QUERYENCODING);
800 const char *opt_elements = session_setting_oneval(sdb, PZ_ELEMENTS);
801 const char *opt_requestsyn = session_setting_oneval(sdb, PZ_REQUESTSYNTAX);
802 const char *opt_maxrecs = session_setting_oneval(sdb, PZ_MAXRECS);
803 const char *opt_sru = session_setting_oneval(sdb, PZ_SRU);
804 const char *opt_sort = session_setting_oneval(sdb, PZ_SORT);
805 const char *opt_preferred = session_setting_oneval(sdb, PZ_PREFERRED);
806 const char *extra_args = session_setting_oneval(sdb, PZ_EXTRA_ARGS);
807 const char *opt_present_chunk = session_setting_oneval(sdb, PZ_PRESENT_CHUNK);
809 char maxrecs_str[24], startrecs_str[24], present_chunk_str[24];
811 int present_chunk = 20; // Default chunk size
812 int rc_prep_connection;
815 yaz_gettimeofday(&tval);
818 if (opt_present_chunk && strcmp(opt_present_chunk,"")) {
819 present_chunk = atoi(opt_present_chunk);
820 yaz_log(YLOG_DEBUG, "Present chunk set to %d", present_chunk);
823 client_prep_connection(cl, se->service->z3950_operation_timeout,
824 se->service->z3950_session_timeout,
825 se->service->server->iochan_man,
827 /* Nothing has changed and we already have a result */
828 if (cl->same_search == 1 && rc_prep_connection == 2)
830 session_log(se, YLOG_LOG, "client %s REUSE result", client_get_id(cl));
831 return client_reingest(cl);
833 else if (!rc_prep_connection)
835 session_log(se, YLOG_LOG, "client %s FAILED to search: No connection.", client_get_id(cl));
838 co = client_get_connection(cl);
840 link = connection_get_link(co);
843 session_log(se, YLOG_LOG, "client %s NEW search", client_get_id(cl));
848 if (extra_args && *extra_args)
849 ZOOM_connection_option_set(link, "extraArgs", extra_args);
852 cl->preferred = atoi(opt_preferred);
854 yaz_log(YLOG_LOG, "Target %s has preferred status: %d",
855 client_get_id(cl), cl->preferred);
859 ZOOM_connection_option_set(link, "piggyback", opt_piggyback);
861 ZOOM_connection_option_set(link, "piggyback", "1");
863 ZOOM_connection_option_set(link, "rpnCharset", opt_queryenc);
864 if (*opt_sru && *opt_elements)
865 ZOOM_connection_option_set(link, "schema", opt_elements);
866 else if (*opt_elements)
867 ZOOM_connection_option_set(link, "elementSetName", opt_elements);
869 ZOOM_connection_option_set(link, "preferredRecordSyntax", opt_requestsyn);
871 if (opt_maxrecs && *opt_maxrecs)
873 cl->maxrecs = atoi(opt_maxrecs);
876 /* convert back to string representation used in ZOOM API */
877 sprintf(maxrecs_str, "%d", cl->maxrecs);
878 ZOOM_connection_option_set(link, "count", maxrecs_str);
880 /* A present_chunk less than 1 will disable chunking. */
881 if (present_chunk > 0 && cl->maxrecs > present_chunk) {
882 sprintf(present_chunk_str, "%d", present_chunk);
883 ZOOM_connection_option_set(link, "presentChunk", present_chunk_str);
884 yaz_log(YLOG_DEBUG, "Present chunk set to %s", present_chunk_str);
887 ZOOM_connection_option_set(link, "presentChunk", maxrecs_str);
888 yaz_log(YLOG_DEBUG, "Present chunk set to %s (maxrecs)", maxrecs_str);
890 sprintf(startrecs_str, "%d", cl->startrecs);
891 ZOOM_connection_option_set(link, "start", startrecs_str);
893 /* TODO Verify does it break something for CQL targets(non-SOLR) ? */
894 /* facets definition is in PQF */
895 client_set_facets_request(cl, link);
897 query = ZOOM_query_create();
900 yaz_log(YLOG_LOG, "Client %s: Search CQL: %s", client_get_id(cl), cl->cqlquery);
901 ZOOM_query_cql(query, cl->cqlquery);
903 ZOOM_query_sortby(query, opt_sort);
907 yaz_log(YLOG_LOG, "Client %s: Search PQF: %s", client_get_id(cl), cl->pquery);
909 ZOOM_query_prefix(query, cl->pquery);
911 if (cl->sort_strategy && cl->sort_criteria) {
912 yaz_log(YLOG_LOG, "Client %s: Setting ZOOM sort strategy and criteria: %s %s",
913 client_get_id(cl), cl->sort_strategy, cl->sort_criteria);
914 ZOOM_query_sortby2(query, cl->sort_strategy, cl->sort_criteria);
917 yaz_log(YLOG_DEBUG,"Client %s: Starting search", client_get_id(cl));
918 client_set_state(cl, Client_Working);
920 cl->record_offset = 0;
921 rs = ZOOM_connection_search(link, query);
922 ZOOM_query_destroy(query);
923 ZOOM_resultset_destroy(cl->resultset);
925 connection_continue(co);
929 struct client *client_create(const char *id)
931 struct client *cl = xmalloc(sizeof(*cl));
942 cl->record_offset = 0;
945 cl->state = Client_Disconnected;
950 pazpar2_mutex_create(&cl->mutex, "client");
953 cl->facet_limits = 0;
954 cl->sort_strategy = 0;
955 cl->sort_criteria = 0;
957 cl->id = xstrdup(id);
963 void client_lock(struct client *c)
965 yaz_mutex_enter(c->mutex);
968 void client_unlock(struct client *c)
970 yaz_mutex_leave(c->mutex);
973 void client_incref(struct client *c)
975 pazpar2_incref(&c->ref_count, c->mutex);
976 yaz_log(YLOG_DEBUG, "client_incref c=%p %s cnt=%d",
977 c, client_get_id(c), c->ref_count);
980 int client_destroy(struct client *c)
984 yaz_log(YLOG_DEBUG, "client_destroy c=%p %s cnt=%d",
985 c, client_get_id(c), c->ref_count);
986 if (!pazpar2_decref(&c->ref_count, c->mutex))
997 xfree(c->sort_strategy);
998 xfree(c->sort_criteria);
999 assert(!c->connection);
1000 facet_limits_destroy(c->facet_limits);
1004 ZOOM_resultset_destroy(c->resultset);
1006 yaz_mutex_destroy(&c->mutex);
1015 void client_set_connection(struct client *cl, struct connection *con)
1018 ZOOM_resultset_release(cl->resultset);
1021 assert(cl->connection == 0);
1022 cl->connection = con;
1027 cl->connection = con;
1032 void client_disconnect(struct client *cl)
1034 if (cl->state != Client_Idle)
1035 client_set_state(cl, Client_Disconnected);
1036 client_set_connection(cl, 0);
1040 // Initialize CCL map for a target
1041 static CCL_bibset prepare_cclmap(struct client *cl, CCL_bibset base_bibset)
1043 struct session_database *sdb = client_get_database(cl);
1050 res = ccl_qual_dup(base_bibset);
1052 res = ccl_qual_mk();
1053 for (s = sdb->settings[PZ_CCLMAP]; s; s = s->next)
1055 const char *addinfo = 0;
1056 char *p = strchr(s->name + 3, ':');
1059 WRBUF w = wrbuf_alloc();
1060 wrbuf_printf(w, "Malformed cclmap. name=%s", s->name);
1061 yaz_log(YLOG_WARN, "%s: %s", client_get_id(cl), wrbuf_cstr(w));
1062 client_set_diagnostic(cl, ZOOM_ERROR_CCL_CONFIG,
1063 ZOOM_diag_str(ZOOM_ERROR_CCL_CONFIG),
1065 client_set_state_nb(cl, Client_Error);
1071 if (ccl_qual_fitem2(res, s->value, p, &addinfo))
1073 WRBUF w = wrbuf_alloc();
1075 wrbuf_printf(w, "Malformed cclmap. name=%s: value=%s (%s)",
1076 s->name, p, addinfo);
1077 yaz_log(YLOG_WARN, "%s: %s", client_get_id(cl), wrbuf_cstr(w));
1078 client_set_diagnostic(cl, ZOOM_ERROR_CCL_CONFIG,
1079 ZOOM_diag_str(ZOOM_ERROR_CCL_CONFIG),
1081 client_set_state_nb(cl, Client_Error);
1090 // returns a xmalloced CQL query corresponding to the pquery in client
1091 static char *make_cqlquery(struct client *cl, Z_RPNQuery *zquery)
1093 cql_transform_t cqlt = cql_transform_create();
1095 WRBUF wrb = wrbuf_alloc();
1098 if ((status = cql_transform_rpn2cql_wrbuf(cqlt, wrb, zquery)))
1100 yaz_log(YLOG_WARN, "Failed to generate CQL query, code=%d", status);
1104 r = xstrdup(wrbuf_cstr(wrb));
1107 cql_transform_close(cqlt);
1111 // returns a xmalloced SOLR query corresponding to the pquery in client
1112 // TODO Could prob. be merge with the similar make_cqlquery
1113 static char *make_solrquery(struct client *cl, Z_RPNQuery *zquery)
1115 solr_transform_t sqlt = solr_transform_create();
1117 WRBUF wrb = wrbuf_alloc();
1120 if ((status = solr_transform_rpn2solr_wrbuf(sqlt, wrb, zquery)))
1122 yaz_log(YLOG_WARN, "Failed to generate SOLR query, code=%d", status);
1126 r = xstrdup(wrbuf_cstr(wrb));
1129 solr_transform_close(sqlt);
1133 const char *client_get_facet_limit_local(struct client *cl,
1134 struct session_database *sdb,
1136 NMEM nmem, int *num, char ***values)
1138 const char *name = 0;
1139 const char *value = 0;
1140 for (; (name = facet_limits_get(cl->facet_limits, *l, &value)); (*l)++)
1142 struct setting *s = 0;
1144 for (s = sdb->settings[PZ_LIMITMAP]; s; s = s->next)
1146 const char *p = strchr(s->name + 3, ':');
1147 if (p && !strcmp(p + 1, name) && s->value)
1151 nmem_strsplit_escape2(nmem, ",", s->value, &cvalues,
1153 for (j = 0; j < cnum; j++)
1155 const char *cvalue = cvalues[j];
1156 while (*cvalue == ' ')
1158 if (!strncmp(cvalue, "local:", 6))
1160 const char *cp = cvalue + 6;
1163 nmem_strsplit_escape2(nmem, "|", value, values,
1166 return *cp ? cp : name;
1175 static int apply_limit(struct session_database *sdb,
1176 facet_limits_t facet_limits,
1177 WRBUF w_pqf, CCL_bibset ccl_map)
1184 NMEM nmem_tmp = nmem_create();
1185 for (i = 0; (name = facet_limits_get(facet_limits, i, &value)); i++)
1187 struct setting *s = 0;
1188 nmem_reset(nmem_tmp);
1189 /* name="pz:limitmap:author" value="rpn:@attr 1=4|local:other" */
1190 for (s = sdb->settings[PZ_LIMITMAP]; s; s = s->next)
1192 const char *p = strchr(s->name + 3, ':');
1193 if (p && !strcmp(p + 1, name) && s->value)
1199 nmem_strsplit_escape2(nmem_tmp, "|", value, &values,
1202 nmem_strsplit_escape2(nmem_tmp, ",", s->value, &cvalues,
1205 for (j = 0; ret == 0 && j < cnum; j++)
1207 const char *cvalue = cvalues[j];
1208 while (*cvalue == ' ')
1210 if (!strncmp(cvalue, "rpn:", 4))
1212 const char *pqf = cvalue + 4;
1213 wrbuf_puts(w_pqf, "@and ");
1214 wrbuf_puts(w_pqf, pqf);
1215 wrbuf_puts(w_pqf, " ");
1216 for (i = 0; i < num; i++)
1219 wrbuf_puts(w_pqf, "@or ");
1220 yaz_encode_pqf_term(w_pqf, values[i],
1224 else if (!strncmp(cvalue, "ccl:", 4))
1226 const char *ccl = cvalue + 4;
1227 WRBUF ccl_w = wrbuf_alloc();
1228 for (i = 0; i < num; i++)
1231 struct ccl_rpn_node *cn;
1232 wrbuf_rewind(ccl_w);
1233 wrbuf_puts(ccl_w, ccl);
1234 wrbuf_puts(ccl_w, "=\"");
1235 wrbuf_puts(ccl_w, values[i]);
1236 wrbuf_puts(ccl_w, "\"");
1238 cn = ccl_find_str(ccl_map, wrbuf_cstr(ccl_w),
1243 wrbuf_printf(w_pqf, "@and ");
1245 /* or multiple values.. could be bad if last
1246 CCL parse fails, but this is unlikely to
1249 wrbuf_printf(w_pqf, "@or ");
1250 ccl_pquery(w_pqf, cn);
1254 wrbuf_destroy(ccl_w);
1256 else if (!strncmp(cvalue, "local:", 6)) {
1261 yaz_log(YLOG_WARN, "Target %s: Bad limitmap '%s'",
1262 sdb->database->id, cvalue);
1263 ret = -1; /* bad limitmap */
1271 yaz_log(YLOG_WARN, "Target %s: limit %s used, but no limitmap defined",
1272 (sdb->database ? sdb->database->id : "<no id>"), name);
1275 nmem_destroy(nmem_tmp);
1279 // Parse the query given the settings specific to this client
1280 // client variable same_search is set as below as well as returned:
1281 // 0 if query is OK but different from before
1282 // 1 if query is OK but same as before
1283 // return -1 on query error
1284 // return -2 on limit error
1285 int client_parse_query(struct client *cl, const char *query,
1286 facet_limits_t facet_limits,
1289 struct session *se = client_get_session(cl);
1290 struct session_database *sdb = client_get_database(cl);
1291 struct ccl_rpn_node *cn;
1294 CCL_bibset ccl_map = prepare_cclmap(cl, bibset);
1295 const char *sru = session_setting_oneval(sdb, PZ_SRU);
1296 const char *pqf_prefix = session_setting_oneval(sdb, PZ_PQF_PREFIX);
1297 const char *pqf_strftime = session_setting_oneval(sdb, PZ_PQF_STRFTIME);
1298 const char *query_syntax = session_setting_oneval(sdb, PZ_QUERY_SYNTAX);
1306 w_ccl = wrbuf_alloc();
1307 wrbuf_puts(w_ccl, query);
1309 w_pqf = wrbuf_alloc();
1312 wrbuf_puts(w_pqf, pqf_prefix);
1313 wrbuf_puts(w_pqf, " ");
1316 if (apply_limit(sdb, facet_limits, w_pqf, ccl_map))
1318 ccl_qual_rm(&ccl_map);
1322 facet_limits_destroy(cl->facet_limits);
1323 cl->facet_limits = facet_limits_dup(facet_limits);
1325 yaz_log(YLOG_LOG, "Client %s: CCL query: %s limit: %s", client_get_id(cl), wrbuf_cstr(w_ccl), wrbuf_cstr(w_pqf));
1326 cn = ccl_find_str(ccl_map, wrbuf_cstr(w_ccl), &cerror, &cpos);
1327 ccl_qual_rm(&ccl_map);
1330 client_set_state(cl, Client_Error);
1331 session_log(se, YLOG_WARN, "Client %s: Failed to parse CCL query '%s'",
1334 wrbuf_destroy(w_ccl);
1335 wrbuf_destroy(w_pqf);
1338 wrbuf_destroy(w_ccl);
1340 if (!pqf_strftime || !*pqf_strftime)
1341 ccl_pquery(w_pqf, cn);
1344 time_t cur_time = time(0);
1345 struct tm *tm = localtime(&cur_time);
1347 const char *cp = tmp_str;
1349 /* see man strftime(3) for things .. In particular %% gets converted
1350 to %.. And That's our original query .. */
1351 strftime(tmp_str, sizeof(tmp_str)-1, pqf_strftime, tm);
1355 ccl_pquery(w_pqf, cn);
1357 wrbuf_putc(w_pqf, cp[0]);
1361 /* Compares query and limit with old one. If different we need to research */
1362 if (!cl->pquery || strcmp(cl->pquery, wrbuf_cstr(w_pqf)))
1365 session_log(se, YLOG_LOG, "Client %s: Re-search due query/limit change: %s to %s",
1366 client_get_id(cl), cl->pquery, wrbuf_cstr(w_pqf));
1368 cl->pquery = xstrdup(wrbuf_cstr(w_pqf));
1369 // return value is no longer used.
1371 // Need to (re)search
1374 wrbuf_destroy(w_pqf);
1376 xfree(cl->cqlquery);
1379 odr_out = odr_createmem(ODR_ENCODE);
1380 zquery = p_query_rpn(odr_out, cl->pquery);
1384 session_log(se, YLOG_WARN, "Invalid PQF query for Client %s: %s",
1385 client_get_id(cl), cl->pquery);
1390 session_log(se, YLOG_LOG, "PQF for Client %s: %s",
1391 client_get_id(cl), cl->pquery);
1393 /* Support for PQF on SRU targets. */
1394 if (strcmp(query_syntax, "pqf") != 0 && *sru)
1396 if (!strcmp(sru, "solr"))
1397 cl->cqlquery = make_solrquery(cl, zquery);
1399 cl->cqlquery = make_cqlquery(cl, zquery);
1403 session_log(se, YLOG_LOG, "Client %s native query: %s (%s)",
1404 client_get_id(cl), cl->cqlquery, sru);
1407 odr_destroy(odr_out);
1409 /* TODO FIX Not thread safe */
1412 // Initialize relevance structure with query terms
1413 se->relevance = relevance_create_ccl(se->service->charsets, cn,
1414 se->service->rank_cluster,
1415 se->service->rank_follow,
1416 se->service->rank_lead,
1417 se->service->rank_length);
1423 int client_parse_sort(struct client *cl, struct reclist_sortparms *sp)
1427 const char *sort_strategy_and_spec =
1428 get_strategy_plus_sort(cl, sp->name);
1429 int increasing = sp->increasing;
1430 if (sort_strategy_and_spec && strlen(sort_strategy_and_spec) < 40)
1432 char strategy[50], *p;
1433 strcpy(strategy, sort_strategy_and_spec);
1434 p = strchr(strategy, ':');
1437 // Split the string in two
1445 yaz_log(YLOG_LOG, "Client %s: applying sorting %s %s", client_get_id(cl), strategy, p);
1446 if (!cl->sort_strategy || strcmp(cl->sort_strategy, strategy))
1447 cl->same_search = 0;
1448 if (!cl->sort_criteria || strcmp(cl->sort_criteria, p))
1449 cl->same_search = 0;
1450 if (cl->same_search == 0) {
1451 xfree(cl->sort_strategy);
1452 cl->sort_strategy = xstrdup(strategy);
1453 xfree(cl->sort_criteria);
1454 cl->sort_criteria = xstrdup(p);
1458 yaz_log(YLOG_LOG, "Client %s: Invalid sort strategy and spec found %s", client_get_id(cl), sort_strategy_and_spec);
1459 xfree(cl->sort_strategy);
1460 cl->sort_strategy = 0;
1461 xfree(cl->sort_criteria);
1462 cl->sort_criteria = 0;
1465 yaz_log(YLOG_DEBUG, "Client %s: No sort strategy and spec found.", client_get_id(cl));
1466 xfree(cl->sort_strategy);
1467 cl->sort_strategy = 0;
1468 xfree(cl->sort_criteria);
1469 cl->sort_criteria = 0;
1473 return !cl->same_search;
1476 void client_set_session(struct client *cl, struct session *se)
1481 int client_is_active(struct client *cl)
1483 if (cl->connection && (cl->state == Client_Connecting ||
1484 cl->state == Client_Working))
1489 int client_is_active_preferred(struct client *cl)
1491 /* only count if this is a preferred target. */
1494 /* TODO No sure this the condition that Seb wants */
1495 if (cl->connection && (cl->state == Client_Connecting ||
1496 cl->state == Client_Working))
1501 Odr_int client_get_hits(struct client *cl)
1506 Odr_int client_get_approximation(struct client *cl)
1508 if (cl->record_offset > 0) {
1509 Odr_int approx = ((10 * cl->hits * (cl->record_offset - cl->filtered)) / cl->record_offset + 5) /10;
1510 yaz_log(YLOG_DEBUG, "%s: Approx: %lld * %d / %d = %lld ", client_get_id(cl), cl->hits, cl->record_offset - cl->filtered, cl->record_offset, approx);
1516 int client_get_num_records(struct client *cl)
1518 return cl->record_offset;
1521 int client_get_num_records_filtered(struct client *cl)
1523 return cl->filtered;
1526 void client_set_diagnostic(struct client *cl, int diagnostic,
1527 const char *message, const char *addinfo)
1529 cl->diagnostic = diagnostic;
1531 cl->message = xstrdup(message);
1535 cl->addinfo = xstrdup(addinfo);
1538 int client_get_diagnostic(struct client *cl, const char **message,
1539 const char **addinfo)
1542 *message = cl->message;
1544 *addinfo = cl->addinfo;
1545 return cl->diagnostic;
1548 const char * client_get_suggestions_xml(struct client *cl, WRBUF wrbuf)
1551 struct suggestions *suggestions = cl->suggestions;
1554 //yaz_log(YLOG_DEBUG, "No suggestions found");
1557 if (suggestions->passthrough) {
1558 yaz_log(YLOG_DEBUG, "Passthrough Suggestions: \n%s\n", suggestions->passthrough);
1559 return suggestions->passthrough;
1561 if (suggestions->num == 0) {
1565 for (idx = 0; idx < suggestions->num; idx++) {
1566 wrbuf_printf(wrbuf, "<suggest term=\"%s\"", suggestions->suggest[idx]);
1567 if (suggestions->misspelled[idx] && suggestions->misspelled[idx]) {
1568 wrbuf_puts(wrbuf, suggestions->misspelled[idx]);
1569 wrbuf_puts(wrbuf, "</suggest>\n");
1572 wrbuf_puts(wrbuf, "/>\n");
1575 return wrbuf_cstr(wrbuf);
1579 void client_set_database(struct client *cl, struct session_database *db)
1584 const char *client_get_id(struct client *cl)
1589 int client_get_maxrecs(struct client *cl)
1594 void client_set_preferred(struct client *cl, int v)
1600 struct suggestions* client_suggestions_create(const char* suggestions_string)
1604 struct suggestions *suggestions;
1605 if (suggestions_string == 0 || suggestions_string[0] == 0 )
1607 nmem = nmem_create();
1608 suggestions = nmem_malloc(nmem, sizeof(*suggestions));
1609 yaz_log(YLOG_DEBUG, "client target suggestions: %s.", suggestions_string);
1611 suggestions->nmem = nmem;
1612 suggestions->num = 0;
1613 suggestions->misspelled = 0;
1614 suggestions->suggest = 0;
1615 suggestions->passthrough = nmem_strdup_null(nmem, suggestions_string);
1617 if (suggestions_string)
1618 nmem_strsplit_escape2(suggestions->nmem, "\n", suggestions_string, &suggestions->suggest,
1619 &suggestions->num, 1, '\\', 0);
1620 /* Set up misspelled array */
1621 suggestions->misspelled = (char **) nmem_malloc(nmem, suggestions->num * sizeof(**suggestions->misspelled));
1622 /* replace = with \0 .. for each item */
1623 for (i = 0; i < suggestions->num; i++)
1625 char *cp = strchr(suggestions->suggest[i], '=');
1628 suggestions->misspelled[i] = cp+1;
1634 static void client_suggestions_destroy(struct client *cl)
1636 NMEM nmem = cl->suggestions->nmem;
1637 cl->suggestions = 0;
1641 int client_test_sort_order(struct client *cl, struct reclist_sortparms *sp)
1643 //TODO implement correctly.
1649 * c-file-style: "Stroustrup"
1650 * indent-tabs-mode: nil
1652 * vim: shiftwidth=4 tabstop=8 expandtab