1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2013 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;
77 static int client_use(int delta)
81 yaz_mutex_create(&g_mutex);
82 yaz_mutex_enter(g_mutex);
85 yaz_mutex_leave(g_mutex);
86 yaz_log(YLOG_DEBUG, "%s clients=%d",
87 delta == 0 ? "" : (delta > 0 ? "INC" : "DEC"), clients);
91 int clients_count(void)
96 /** \brief Represents client state for a connection to one search target */
98 struct session_database *database;
99 struct connection *connection;
100 struct session *session;
101 char *pquery; // Current search
102 char *cqlquery; // used for SRU targets only
103 char *addinfo; // diagnostic info for most resent error
107 int filtered; // When using local:, this will count the number of filtered records.
113 struct suggestions *suggestions;
114 enum client_state state;
115 struct show_raw *show_raw;
116 ZOOM_resultset resultset;
120 facet_limits_t facet_limits;
135 int active; // whether this request has been sent to the server
141 void (*error_handler)(void *data, const char *addinfo);
142 void (*record_handler)(void *data, const char *buf, size_t sz);
144 struct show_raw *next;
147 static const char *client_states[] = {
153 "Client_Disconnected"
156 const char *client_get_state_str(struct client *cl)
158 return client_states[cl->state];
161 enum client_state client_get_state(struct client *cl)
166 void client_set_state_nb(struct client *cl, enum client_state st)
171 void client_set_state(struct client *cl, enum client_state st)
174 if (client_is_active(cl))
177 /* If client is going from being active to inactive and all clients
178 are now idle we fire a watch for the session . The assumption is
179 that session is not mutex locked if client is already active */
180 if (was_active && !client_is_active(cl) && cl->session)
183 int no_active = session_active_clients(cl->session);
184 yaz_log(YLOG_DEBUG, "%s: releasing watches on zero active: %d",
185 client_get_id(cl), no_active);
186 if (no_active == 0) {
187 session_alert_watch(cl->session, SESSION_WATCH_SHOW);
188 session_alert_watch(cl->session, SESSION_WATCH_BYTARGET);
189 session_alert_watch(cl->session, SESSION_WATCH_TERMLIST);
190 session_alert_watch(cl->session, SESSION_WATCH_SHOW_PREF);
195 static void client_show_raw_error(struct client *cl, const char *addinfo);
197 struct connection *client_get_connection(struct client *cl)
199 return cl->connection;
202 struct session_database *client_get_database(struct client *cl)
207 struct session *client_get_session(struct client *cl)
212 static void client_send_raw_present(struct client *cl);
213 static int nativesyntax_to_type(const char *s, char *type, ZOOM_record rec);
215 static void client_show_immediate(
216 ZOOM_resultset resultset, struct session_database *sdb, int position,
218 void (*error_handler)(void *data, const char *addinfo),
219 void (*record_handler)(void *data, const char *buf, size_t sz),
221 const char *nativesyntax)
230 error_handler(data, "no resultset");
233 rec = ZOOM_resultset_record_immediate(resultset, position-1);
236 error_handler(data, "no record");
239 nativesyntax_to_type(nativesyntax, type, rec);
240 buf = ZOOM_record_get(rec, type, &len);
243 error_handler(data, "no record");
246 record_handler(data, buf, len);
250 int client_show_raw_begin(struct client *cl, int position,
251 const char *syntax, const char *esn,
253 void (*error_handler)(void *data, const char *addinfo),
254 void (*record_handler)(void *data, const char *buf,
257 const char *nativesyntax)
262 nativesyntax = "raw";
265 struct session_database *sdb = client_get_database(cl);
266 nativesyntax = session_setting_oneval(sdb, PZ_NATIVESYNTAX);
270 if (syntax == 0 && esn == 0)
271 client_show_immediate(cl->resultset, client_get_database(cl),
273 error_handler, record_handler,
274 binary, nativesyntax);
277 struct show_raw *rr, **rrp;
283 rr = xmalloc(sizeof(*rr));
284 rr->position = position;
287 rr->error_handler = error_handler;
288 rr->record_handler = record_handler;
291 rr->syntax = xstrdup(syntax);
295 rr->esn = xstrdup(esn);
299 assert(nativesyntax);
300 rr->nativesyntax = xstrdup(nativesyntax);
304 for (rrp = &cl->show_raw; *rrp; rrp = &(*rrp)->next)
308 if (cl->state == Client_Failed)
310 client_show_raw_error(cl, "client failed");
312 else if (cl->state == Client_Disconnected)
314 client_show_raw_error(cl, "client disconnected");
318 client_send_raw_present(cl);
324 static void client_show_raw_delete(struct show_raw *r)
328 xfree(r->nativesyntax);
332 void client_show_raw_remove(struct client *cl, void *data)
334 struct show_raw *rr = data;
335 struct show_raw **rrp = &cl->show_raw;
341 client_show_raw_delete(rr);
345 static void client_show_raw_dequeue(struct client *cl)
347 struct show_raw *rr = cl->show_raw;
349 cl->show_raw = rr->next;
350 client_show_raw_delete(rr);
353 static void client_show_raw_error(struct client *cl, const char *addinfo)
357 cl->show_raw->error_handler(cl->show_raw->data, addinfo);
358 client_show_raw_dequeue(cl);
362 static void client_send_raw_present(struct client *cl)
364 struct session_database *sdb = client_get_database(cl);
365 struct connection *co = client_get_connection(cl);
366 ZOOM_resultset set = cl->resultset;
368 int offset = cl->show_raw->position;
369 const char *syntax = 0;
370 const char *elements = 0;
372 assert(cl->show_raw);
375 yaz_log(YLOG_DEBUG, "%s: trying to present %d record(s) from %d",
376 client_get_id(cl), 1, offset);
378 if (cl->show_raw->syntax)
379 syntax = cl->show_raw->syntax;
381 syntax = session_setting_oneval(sdb, PZ_REQUESTSYNTAX);
382 ZOOM_resultset_option_set(set, "preferredRecordSyntax", syntax);
384 if (cl->show_raw->esn)
385 elements = cl->show_raw->esn;
387 elements = session_setting_oneval(sdb, PZ_ELEMENTS);
388 if (elements && *elements)
389 ZOOM_resultset_option_set(set, "elementSetName", elements);
391 ZOOM_resultset_records(set, 0, offset-1, 1);
392 cl->show_raw->active = 1;
394 connection_continue(co);
397 static int nativesyntax_to_type(const char *s, char *type,
402 if (!strncmp(s, "iso2709", 7))
404 const char *cp = strchr(s, ';');
405 yaz_snprintf(type, 80, "xml; charset=%s", cp ? cp+1 : "marc-8s");
407 else if (!strncmp(s, "txml", 4))
409 const char *cp = strchr(s, ';');
410 yaz_snprintf(type, 80, "txml; charset=%s", cp ? cp+1 : "marc-8s");
412 else /* pass verbatim to ZOOM - including "xml" */
416 else /* attempt to deduce structure */
418 const char *syntax = ZOOM_record_get(rec, "syntax", NULL);
421 if (!strcmp(syntax, "XML"))
426 else if (!strcmp(syntax, "USmarc") || !strcmp(syntax, "MARC21"))
428 strcpy(type, "xml; charset=marc8-s");
438 * TODO Consider thread safety!!!
441 static void client_report_facets(struct client *cl, ZOOM_resultset rs)
443 struct session_database *sdb = client_get_database(cl);
444 ZOOM_facet_field *facets = ZOOM_resultset_facets(rs);
448 struct session *se = client_get_session(cl);
449 int facet_num = ZOOM_resultset_facets_size(rs);
452 for (s = sdb->settings[PZ_FACETMAP]; s; s = s->next)
454 const char *p = strchr(s->name + 3, ':');
455 if (p && p[1] && s->value && s->value[0])
458 p++; /* p now holds logical facet name */
459 for (facet_idx = 0; facet_idx < facet_num; facet_idx++)
461 const char *native_name =
462 ZOOM_facet_field_name(facets[facet_idx]);
463 if (native_name && !strcmp(s->value, native_name))
467 ZOOM_facet_field_term_count(facets[facet_idx]);
468 for (term_idx = 0; term_idx < term_num; term_idx++ )
472 ZOOM_facet_field_get_term(facets[facet_idx],
475 add_facet(se, p, term, freq);
485 static void ingest_raw_record(struct client *cl, ZOOM_record rec)
491 nativesyntax_to_type(cl->show_raw->nativesyntax, type, rec);
492 buf = ZOOM_record_get(rec, type, &len);
493 cl->show_raw->record_handler(cl->show_raw->data, buf, len);
494 client_show_raw_dequeue(cl);
497 void client_check_preferred_watch(struct client *cl)
499 struct session *se = cl->session;
500 yaz_log(YLOG_DEBUG, "client_check_preferred_watch: %s ", client_get_id(cl));
504 /* TODO possible threading issue. Session can have been destroyed */
505 if (session_is_preferred_clients_ready(se)) {
506 session_alert_watch(se, SESSION_WATCH_SHOW_PREF);
509 yaz_log(YLOG_DEBUG, "client_check_preferred_watch: Still locked on preferred targets.");
514 yaz_log(YLOG_WARN, "client_check_preferred_watch: %s. No session!", client_get_id(cl));
518 struct suggestions* client_suggestions_create(const char* suggestions_string);
519 static void client_suggestions_destroy(struct client *cl);
521 void client_search_response(struct client *cl)
523 struct connection *co = cl->connection;
524 ZOOM_connection link = connection_get_link(co);
525 ZOOM_resultset resultset = cl->resultset;
527 const char *error, *addinfo = 0;
529 if (ZOOM_connection_error(link, &error, &addinfo))
532 client_set_state(cl, Client_Error);
533 yaz_log(YLOG_WARN, "Search error %s (%s): %s",
534 error, addinfo, client_get_id(cl));
538 client_report_facets(cl, resultset);
539 cl->record_offset = cl->startrecs;
540 cl->hits = ZOOM_resultset_size(resultset);
541 yaz_log(YLOG_DEBUG, "client_search_response: hits " ODR_INT_PRINTF,
544 client_suggestions_destroy(cl);
546 client_suggestions_create(ZOOM_resultset_option_get(
547 resultset, "suggestions"));
551 void client_got_records(struct client *cl)
553 struct session *se = cl->session;
556 if (reclist_get_num_records(se->reclist) > 0)
559 session_alert_watch(se, SESSION_WATCH_SHOW);
560 session_alert_watch(se, SESSION_WATCH_BYTARGET);
561 session_alert_watch(se, SESSION_WATCH_TERMLIST);
562 session_alert_watch(se, SESSION_WATCH_RECORD);
568 static void client_record_ingest(struct client *cl)
570 const char *msg, *addinfo;
572 ZOOM_resultset resultset = cl->resultset;
573 struct session *se = client_get_session(cl);
575 if ((rec = ZOOM_resultset_record_immediate(resultset, cl->record_offset)))
577 int offset = ++cl->record_offset;
578 if (cl->session == 0)
580 else if (ZOOM_record_error(rec, &msg, &addinfo, 0))
582 session_log(se, YLOG_WARN, "Record error %s (%s): %s #%d",
583 msg, addinfo, client_get_id(cl), offset);
587 struct session_database *sdb = client_get_database(cl);
588 NMEM nmem = nmem_create();
592 const char *s = session_setting_oneval(sdb, PZ_NATIVESYNTAX);
593 if (nativesyntax_to_type(s, type, rec))
594 session_log(se, YLOG_WARN, "Failed to determine record type");
595 xmlrec = ZOOM_record_get(rec, type, NULL);
598 const char *rec_syn = ZOOM_record_get(rec, "syntax", NULL);
599 session_log(se, YLOG_WARN, "ZOOM_record_get failed from %s #%d",
600 client_get_id(cl), offset);
601 session_log(se, YLOG_LOG, "pz:nativesyntax=%s . "
602 "ZOOM record type=%s . Actual record syntax=%s",
603 s ? s : "null", type,
604 rec_syn ? rec_syn : "null");
608 /* OK = 0, -1 = failure, -2 = Filtered */
609 int rc = ingest_record(cl, xmlrec, cl->record_offset, nmem);
612 const char *rec_syn = ZOOM_record_get(rec, "syntax", NULL);
613 session_log(se, YLOG_WARN,
614 "Failed to ingest record from %s #%d",
615 client_get_id(cl), offset);
616 session_log(se, YLOG_LOG, "pz:nativesyntax=%s . "
617 "ZOOM record type=%s . Actual record syntax=%s",
618 s ? s : "null", type,
619 rec_syn ? rec_syn : "null");
629 session_log(se, YLOG_WARN, "Got NULL record from %s #%d",
630 client_get_id(cl), cl->record_offset);
634 void client_record_response(struct client *cl, int *got_records)
636 struct connection *co = cl->connection;
637 ZOOM_connection link = connection_get_link(co);
638 ZOOM_resultset resultset = cl->resultset;
639 const char *error, *addinfo;
641 if (ZOOM_connection_error(link, &error, &addinfo))
643 client_set_state(cl, Client_Error);
644 yaz_log(YLOG_WARN, "Search error %s (%s): %s",
645 error, addinfo, client_get_id(cl));
649 if (cl->show_raw && cl->show_raw->active)
652 if ((rec = ZOOM_resultset_record_immediate(
653 resultset, cl->show_raw->position-1)))
655 cl->show_raw->active = 0;
656 ingest_raw_record(cl, rec);
660 yaz_log(YLOG_WARN, "Expected record, but got NULL, offset=%d",
661 cl->show_raw->position-1);
666 client_record_ingest(cl);
672 int client_reingest(struct client *cl)
674 int i = cl->startrecs;
675 int to = cl->record_offset;
678 cl->record_offset = i;
680 client_record_ingest(cl);
684 static void client_set_facets_request(struct client *cl, ZOOM_connection link)
686 struct session_database *sdb = client_get_database(cl);
688 WRBUF w = wrbuf_alloc();
692 for (s = sdb->settings[PZ_FACETMAP]; s; s = s->next)
694 const char *p = strchr(s->name + 3, ':');
697 yaz_log(YLOG_WARN, "Malformed facetmap name: %s", s->name);
699 else if (s->value && s->value[0])
701 wrbuf_puts(w, "@attr 1=");
702 yaz_encode_pqf_term(w, s->value, strlen(s->value));
707 yaz_log(YLOG_DEBUG, "using facets str: %s", wrbuf_cstr(w));
708 ZOOM_connection_option_set(link, "facets",
709 wrbuf_len(w) ? wrbuf_cstr(w) : 0);
713 int client_has_facet(struct client *cl, const char *name)
715 struct session_database *sdb = client_get_database(cl);
718 for (s = sdb->settings[PZ_FACETMAP]; s; s = s->next)
720 const char *p = strchr(s->name + 3, ':');
721 if (p && !strcmp(name, p + 1))
727 static const char *get_strategy_plus_sort(struct client *l, const char *field)
729 struct session_database *sdb = client_get_database(l);
732 const char *strategy_plus_sort = 0;
734 for (s = sdb->settings[PZ_SORTMAP]; s; s = s->next)
736 char *p = strchr(s->name + 3, ':');
739 yaz_log(YLOG_WARN, "Malformed sortmap name: %s", s->name);
743 if (!strcmp(p, field))
745 strategy_plus_sort = s->value;
749 return strategy_plus_sort;
752 void client_update_show_stat(struct client *cl, int cmd)
755 cl->show_stat_no = 0;
760 int client_fetch_more(struct client *cl)
762 struct session_database *sdb = client_get_database(cl);
765 int number = cl->hits - cl->record_offset;
767 str = session_setting_oneval(sdb, PZ_EXTENDRECS);
771 extend_recs = atoi(str);
773 yaz_log(YLOG_LOG, "cl=%s show_stat_no=%d got=%d",
774 client_get_id(cl), cl->show_stat_no, cl->record_offset);
775 if (cl->show_stat_no < cl->record_offset)
777 yaz_log(YLOG_LOG, "cl=%s Trying to fetch more", client_get_id(cl));
779 if (number > extend_recs)
780 number = extend_recs;
783 ZOOM_resultset set = cl->resultset;
784 struct connection *co = client_get_connection(cl);
786 str = session_setting_oneval(sdb, PZ_REQUESTSYNTAX);
787 ZOOM_resultset_option_set(set, "preferredRecordSyntax", str);
788 str = session_setting_oneval(sdb, PZ_ELEMENTS);
790 ZOOM_resultset_option_set(set, "elementSetName", str);
792 ZOOM_resultset_records(set, 0, cl->record_offset, number);
793 client_set_state(cl, Client_Working);
794 connection_continue(co);
799 yaz_log(YLOG_LOG, "cl=%s. OK no more in total set", client_get_id(cl));
804 int client_parse_init(struct client *cl, int same_search)
806 cl->same_search = same_search;
811 * TODO consider how to extend the range
813 int client_parse_range(struct client *cl, const char *startrecs,
816 if (maxrecs && atoi(maxrecs) != cl->maxrecs)
819 cl->maxrecs = atoi(maxrecs);
822 if (startrecs && atoi(startrecs) != cl->startrecs)
825 cl->startrecs = atoi(startrecs);
831 int client_start_search(struct client *cl)
833 struct session_database *sdb = client_get_database(cl);
834 struct connection *co = 0;
835 ZOOM_connection link = 0;
836 struct session *se = client_get_session(cl);
838 const char *opt_piggyback = session_setting_oneval(sdb, PZ_PIGGYBACK);
839 const char *opt_queryenc = session_setting_oneval(sdb, PZ_QUERYENCODING);
840 const char *opt_elements = session_setting_oneval(sdb, PZ_ELEMENTS);
841 const char *opt_requestsyn = session_setting_oneval(sdb, PZ_REQUESTSYNTAX);
842 const char *opt_maxrecs = session_setting_oneval(sdb, PZ_MAXRECS);
843 const char *opt_sru = session_setting_oneval(sdb, PZ_SRU);
844 const char *opt_sort = session_setting_oneval(sdb, PZ_SORT);
845 const char *opt_preferred = session_setting_oneval(sdb, PZ_PREFERRED);
846 const char *extra_args = session_setting_oneval(sdb, PZ_EXTRA_ARGS);
847 const char *opt_present_chunk = session_setting_oneval(sdb, PZ_PRESENT_CHUNK);
849 char maxrecs_str[24], startrecs_str[24], present_chunk_str[24];
851 int present_chunk = 20; // Default chunk size
852 int rc_prep_connection;
855 yaz_gettimeofday(&tval);
858 if (opt_present_chunk && strcmp(opt_present_chunk,"")) {
859 present_chunk = atoi(opt_present_chunk);
860 yaz_log(YLOG_DEBUG, "Present chunk set to %d", present_chunk);
863 client_prep_connection(cl, se->service->z3950_operation_timeout,
864 se->service->z3950_session_timeout,
865 se->service->server->iochan_man,
867 /* Nothing has changed and we already have a result */
868 if (cl->same_search == 1 && rc_prep_connection == 2)
870 session_log(se, YLOG_LOG, "client %s resuse result", client_get_id(cl));
871 return client_reingest(cl);
873 else if (!rc_prep_connection)
875 session_log(se, YLOG_LOG, "client %s postponing search: No connection",
879 co = client_get_connection(cl);
881 link = connection_get_link(co);
884 session_log(se, YLOG_LOG, "client %s new search", client_get_id(cl));
889 if (extra_args && *extra_args)
890 ZOOM_connection_option_set(link, "extraArgs", extra_args);
893 cl->preferred = atoi(opt_preferred);
895 yaz_log(YLOG_LOG, "Target %s has preferred status: %d",
896 client_get_id(cl), cl->preferred);
900 ZOOM_connection_option_set(link, "piggyback", opt_piggyback);
902 ZOOM_connection_option_set(link, "piggyback", "1");
904 ZOOM_connection_option_set(link, "rpnCharset", opt_queryenc);
905 if (*opt_sru && *opt_elements)
906 ZOOM_connection_option_set(link, "schema", opt_elements);
907 else if (*opt_elements)
908 ZOOM_connection_option_set(link, "elementSetName", opt_elements);
910 ZOOM_connection_option_set(link, "preferredRecordSyntax", opt_requestsyn);
912 if (opt_maxrecs && *opt_maxrecs)
914 cl->maxrecs = atoi(opt_maxrecs);
917 /* convert back to string representation used in ZOOM API */
918 sprintf(maxrecs_str, "%d", cl->maxrecs);
919 ZOOM_connection_option_set(link, "count", maxrecs_str);
921 /* A present_chunk less than 1 will disable chunking. */
922 if (present_chunk > 0 && cl->maxrecs > present_chunk) {
923 sprintf(present_chunk_str, "%d", present_chunk);
924 ZOOM_connection_option_set(link, "presentChunk", present_chunk_str);
925 yaz_log(YLOG_DEBUG, "Present chunk set to %s", present_chunk_str);
928 ZOOM_connection_option_set(link, "presentChunk", maxrecs_str);
929 yaz_log(YLOG_DEBUG, "Present chunk set to %s (maxrecs)", maxrecs_str);
931 sprintf(startrecs_str, "%d", cl->startrecs);
932 ZOOM_connection_option_set(link, "start", startrecs_str);
934 /* TODO Verify does it break something for CQL targets(non-SOLR) ? */
935 /* facets definition is in PQF */
936 client_set_facets_request(cl, link);
938 query = ZOOM_query_create();
941 yaz_log(YLOG_LOG, "Client %s: Search CQL: %s", client_get_id(cl),
943 ZOOM_query_cql(query, cl->cqlquery);
945 ZOOM_query_sortby(query, opt_sort);
949 yaz_log(YLOG_LOG, "Client %s: Search PQF: %s", client_get_id(cl),
952 ZOOM_query_prefix(query, cl->pquery);
954 if (cl->sort_strategy && cl->sort_criteria) {
955 yaz_log(YLOG_LOG, "Client %s: "
956 "Set ZOOM sort strategy and criteria: %s %s",
957 client_get_id(cl), cl->sort_strategy, cl->sort_criteria);
958 ZOOM_query_sortby2(query, cl->sort_strategy, cl->sort_criteria);
961 yaz_log(YLOG_DEBUG,"Client %s: Starting search", client_get_id(cl));
962 client_set_state(cl, Client_Working);
964 cl->record_offset = 0;
965 rs = ZOOM_connection_search(link, query);
966 ZOOM_query_destroy(query);
967 ZOOM_resultset_destroy(cl->resultset);
969 connection_continue(co);
973 struct client *client_create(const char *id)
975 struct client *cl = xmalloc(sizeof(*cl));
986 cl->record_offset = 0;
989 cl->state = Client_Disconnected;
994 pazpar2_mutex_create(&cl->mutex, "client");
997 cl->facet_limits = 0;
998 cl->sort_strategy = 0;
999 cl->sort_criteria = 0;
1001 cl->id = xstrdup(id);
1004 yaz_log(YLOG_DEBUG, "client_create c=%p %s", cl, id);
1008 void client_lock(struct client *c)
1010 yaz_mutex_enter(c->mutex);
1013 void client_unlock(struct client *c)
1015 yaz_mutex_leave(c->mutex);
1018 void client_incref(struct client *c)
1020 pazpar2_incref(&c->ref_count, c->mutex);
1021 yaz_log(YLOG_DEBUG, "client_incref c=%p %s cnt=%d",
1022 c, client_get_id(c), c->ref_count);
1025 int client_destroy(struct client *c)
1029 yaz_log(YLOG_DEBUG, "client_destroy c=%p %s cnt=%d",
1030 c, client_get_id(c), c->ref_count);
1031 if (!pazpar2_decref(&c->ref_count, c->mutex))
1042 xfree(c->sort_strategy);
1043 xfree(c->sort_criteria);
1044 assert(!c->connection);
1045 facet_limits_destroy(c->facet_limits);
1049 ZOOM_resultset_destroy(c->resultset);
1051 yaz_mutex_destroy(&c->mutex);
1060 void client_set_connection(struct client *cl, struct connection *con)
1063 ZOOM_resultset_release(cl->resultset);
1066 assert(cl->connection == 0);
1067 cl->connection = con;
1072 cl->connection = con;
1077 void client_disconnect(struct client *cl)
1079 if (cl->state != Client_Idle)
1080 client_set_state(cl, Client_Disconnected);
1081 client_set_connection(cl, 0);
1084 // Initialize CCL map for a target
1085 static CCL_bibset prepare_cclmap(struct client *cl, CCL_bibset base_bibset)
1087 struct session_database *sdb = client_get_database(cl);
1094 res = ccl_qual_dup(base_bibset);
1096 res = ccl_qual_mk();
1097 for (s = sdb->settings[PZ_CCLMAP]; s; s = s->next)
1099 const char *addinfo = 0;
1100 char *p = strchr(s->name + 3, ':');
1103 WRBUF w = wrbuf_alloc();
1104 wrbuf_printf(w, "Malformed cclmap. name=%s", s->name);
1105 yaz_log(YLOG_WARN, "%s: %s", client_get_id(cl), wrbuf_cstr(w));
1106 client_set_diagnostic(cl, ZOOM_ERROR_CCL_CONFIG,
1107 ZOOM_diag_str(ZOOM_ERROR_CCL_CONFIG),
1109 client_set_state_nb(cl, Client_Error);
1115 if (ccl_qual_fitem2(res, s->value, p, &addinfo))
1117 WRBUF w = wrbuf_alloc();
1119 wrbuf_printf(w, "Malformed cclmap. name=%s: value=%s (%s)",
1120 s->name, p, addinfo);
1121 yaz_log(YLOG_WARN, "%s: %s", client_get_id(cl), wrbuf_cstr(w));
1122 client_set_diagnostic(cl, ZOOM_ERROR_CCL_CONFIG,
1123 ZOOM_diag_str(ZOOM_ERROR_CCL_CONFIG),
1125 client_set_state_nb(cl, Client_Error);
1134 // returns a xmalloced CQL query corresponding to the pquery in client
1135 static char *make_cqlquery(struct client *cl, Z_RPNQuery *zquery)
1137 cql_transform_t cqlt = cql_transform_create();
1139 WRBUF wrb = wrbuf_alloc();
1142 if ((status = cql_transform_rpn2cql_wrbuf(cqlt, wrb, zquery)))
1144 yaz_log(YLOG_WARN, "Failed to generate CQL query, code=%d", status);
1148 r = xstrdup(wrbuf_cstr(wrb));
1151 cql_transform_close(cqlt);
1155 // returns a xmalloced SOLR query corresponding to the pquery in client
1156 // TODO Could prob. be merge with the similar make_cqlquery
1157 static char *make_solrquery(struct client *cl, Z_RPNQuery *zquery)
1159 solr_transform_t sqlt = solr_transform_create();
1161 WRBUF wrb = wrbuf_alloc();
1164 if ((status = solr_transform_rpn2solr_wrbuf(sqlt, wrb, zquery)))
1166 yaz_log(YLOG_WARN, "Failed to generate SOLR query, code=%d", status);
1170 r = xstrdup(wrbuf_cstr(wrb));
1173 solr_transform_close(sqlt);
1177 const char *client_get_facet_limit_local(struct client *cl,
1178 struct session_database *sdb,
1180 NMEM nmem, int *num, char ***values)
1182 const char *name = 0;
1183 const char *value = 0;
1184 for (; (name = facet_limits_get(cl->facet_limits, *l, &value)); (*l)++)
1186 struct setting *s = 0;
1188 for (s = sdb->settings[PZ_LIMITMAP]; s; s = s->next)
1190 const char *p = strchr(s->name + 3, ':');
1191 if (p && !strcmp(p + 1, name) && s->value)
1195 nmem_strsplit_escape2(nmem, ",", s->value, &cvalues,
1197 for (j = 0; j < cnum; j++)
1199 const char *cvalue = cvalues[j];
1200 while (*cvalue == ' ')
1202 if (!strncmp(cvalue, "local:", 6))
1204 const char *cp = cvalue + 6;
1207 nmem_strsplit_escape2(nmem, "|", value, values,
1210 return *cp ? cp : name;
1219 static int apply_limit(struct session_database *sdb,
1220 facet_limits_t facet_limits,
1221 WRBUF w_pqf, CCL_bibset ccl_map,
1222 struct conf_service *service)
1229 NMEM nmem_tmp = nmem_create();
1230 for (i = 0; (name = facet_limits_get(facet_limits, i, &value)); i++)
1232 struct setting *s = 0;
1233 nmem_reset(nmem_tmp);
1234 /* name="pz:limitmap:author" value="rpn:@attr 1=4|local:other" */
1235 for (s = sdb->settings[PZ_LIMITMAP]; s; s = s->next)
1237 const char *p = strchr(s->name + 3, ':');
1238 if (p && !strcmp(p + 1, name) && s->value)
1244 nmem_strsplit_escape2(nmem_tmp, "|", value, &values,
1247 nmem_strsplit_escape2(nmem_tmp, ",", s->value, &cvalues,
1250 for (j = 0; ret == 0 && j < cnum; j++)
1252 const char *cvalue = cvalues[j];
1253 while (*cvalue == ' ')
1255 if (!strncmp(cvalue, "rpn:", 4))
1257 const char *pqf = cvalue + 4;
1258 wrbuf_puts(w_pqf, "@and ");
1259 wrbuf_puts(w_pqf, pqf);
1260 wrbuf_puts(w_pqf, " ");
1261 for (i = 0; i < num; i++)
1264 wrbuf_puts(w_pqf, "@or ");
1265 yaz_encode_pqf_term(w_pqf, values[i],
1269 else if (!strncmp(cvalue, "ccl:", 4))
1271 const char *ccl = cvalue + 4;
1272 WRBUF ccl_w = wrbuf_alloc();
1273 for (i = 0; i < num; i++)
1276 struct ccl_rpn_node *cn;
1277 wrbuf_rewind(ccl_w);
1278 wrbuf_puts(ccl_w, ccl);
1279 wrbuf_puts(ccl_w, "=\"");
1280 wrbuf_puts(ccl_w, values[i]);
1281 wrbuf_puts(ccl_w, "\"");
1283 cn = ccl_find_str(ccl_map, wrbuf_cstr(ccl_w),
1288 wrbuf_printf(w_pqf, "@and ");
1290 /* or multiple values.. could be bad if last
1291 CCL parse fails, but this is unlikely to
1294 wrbuf_printf(w_pqf, "@or ");
1295 ccl_pquery(w_pqf, cn);
1299 wrbuf_destroy(ccl_w);
1301 else if (!strncmp(cvalue, "local:", 6)) {
1306 yaz_log(YLOG_WARN, "Target %s: Bad limitmap '%s'",
1307 sdb->database->id, cvalue);
1308 ret = -1; /* bad limitmap */
1317 for (i = 0; i < service->num_metadata; i++)
1319 struct conf_metadata *md = service->metadata + i;
1320 if (!strcmp(md->name, name) && md->limitcluster)
1322 yaz_log(YLOG_LOG, "limitcluster in use for %s",
1327 if (i == service->num_metadata)
1329 yaz_log(YLOG_WARN, "Target %s: limit %s used, but no limitmap defined",
1330 (sdb->database ? sdb->database->id : "<no id>"), name);
1334 nmem_destroy(nmem_tmp);
1338 // Parse the query given the settings specific to this client
1339 // client variable same_search is set as below as well as returned:
1340 // 0 if query is OK but different from before
1341 // 1 if query is OK but same as before
1342 // return -1 on query error
1343 // return -2 on limit error
1344 int client_parse_query(struct client *cl, const char *query,
1345 facet_limits_t facet_limits, const char **error_msg)
1347 struct session *se = client_get_session(cl);
1348 struct conf_service *service = se->service;
1349 struct session_database *sdb = client_get_database(cl);
1350 struct ccl_rpn_node *cn;
1353 CCL_bibset ccl_map = prepare_cclmap(cl, service->ccl_bibset);
1354 const char *sru = session_setting_oneval(sdb, PZ_SRU);
1355 const char *pqf_prefix = session_setting_oneval(sdb, PZ_PQF_PREFIX);
1356 const char *pqf_strftime = session_setting_oneval(sdb, PZ_PQF_STRFTIME);
1357 const char *query_syntax = session_setting_oneval(sdb, PZ_QUERY_SYNTAX);
1365 w_ccl = wrbuf_alloc();
1366 wrbuf_puts(w_ccl, query);
1368 w_pqf = wrbuf_alloc();
1371 wrbuf_puts(w_pqf, pqf_prefix);
1372 wrbuf_puts(w_pqf, " ");
1375 if (apply_limit(sdb, facet_limits, w_pqf, ccl_map, service))
1377 ccl_qual_rm(&ccl_map);
1381 facet_limits_destroy(cl->facet_limits);
1382 cl->facet_limits = facet_limits_dup(facet_limits);
1384 yaz_log(YLOG_LOG, "Client %s: CCL query: %s limit: %s",
1385 client_get_id(cl), wrbuf_cstr(w_ccl), wrbuf_cstr(w_pqf));
1386 cn = ccl_find_str(ccl_map, wrbuf_cstr(w_ccl), &cerror, &cpos);
1387 ccl_qual_rm(&ccl_map);
1391 *error_msg = ccl_err_msg(cerror);
1392 client_set_state(cl, Client_Error);
1393 session_log(se, YLOG_WARN, "Client %s: Failed to parse CCL query '%s'",
1396 wrbuf_destroy(w_ccl);
1397 wrbuf_destroy(w_pqf);
1400 wrbuf_destroy(w_ccl);
1402 if (!pqf_strftime || !*pqf_strftime)
1403 ccl_pquery(w_pqf, cn);
1406 time_t cur_time = time(0);
1407 struct tm *tm = localtime(&cur_time);
1409 const char *cp = tmp_str;
1411 /* see man strftime(3) for things .. In particular %% gets converted
1412 to %.. And That's our original query .. */
1413 strftime(tmp_str, sizeof(tmp_str)-1, pqf_strftime, tm);
1417 ccl_pquery(w_pqf, cn);
1419 wrbuf_putc(w_pqf, cp[0]);
1423 /* Compares query and limit with old one. If different we need to research */
1424 if (!cl->pquery || strcmp(cl->pquery, wrbuf_cstr(w_pqf)))
1427 session_log(se, YLOG_LOG, "Client %s: "
1428 "Re-search due query/limit change: %s to %s",
1429 client_get_id(cl), cl->pquery, wrbuf_cstr(w_pqf));
1431 cl->pquery = xstrdup(wrbuf_cstr(w_pqf));
1432 // return value is no longer used.
1434 // Need to (re)search
1437 wrbuf_destroy(w_pqf);
1439 xfree(cl->cqlquery);
1442 odr_out = odr_createmem(ODR_ENCODE);
1443 zquery = p_query_rpn(odr_out, cl->pquery);
1447 session_log(se, YLOG_WARN, "Invalid PQF query for Client %s: %s",
1448 client_get_id(cl), cl->pquery);
1450 *error_msg = "Invalid PQF after CCL to PQF conversion";
1454 session_log(se, YLOG_LOG, "PQF for Client %s: %s",
1455 client_get_id(cl), cl->pquery);
1457 /* Support for PQF on SRU targets. */
1458 if (strcmp(query_syntax, "pqf") != 0 && *sru)
1460 if (!strcmp(sru, "solr"))
1461 cl->cqlquery = make_solrquery(cl, zquery);
1463 cl->cqlquery = make_cqlquery(cl, zquery);
1466 *error_msg = "Cannot convert PQF to Solr/CQL";
1470 session_log(se, YLOG_LOG, "Client %s native query: %s (%s)",
1471 client_get_id(cl), cl->cqlquery, sru);
1474 odr_destroy(odr_out);
1476 /* TODO FIX Not thread safe */
1479 // Initialize relevance structure with query terms
1480 se->relevance = relevance_create_ccl(se->service->charsets, cn,
1481 se->service->rank_cluster,
1482 se->service->rank_follow,
1483 se->service->rank_lead,
1484 se->service->rank_length);
1490 int client_parse_sort(struct client *cl, struct reclist_sortparms *sp)
1494 const char *sort_strategy_and_spec =
1495 get_strategy_plus_sort(cl, sp->name);
1496 int increasing = sp->increasing;
1497 if (sort_strategy_and_spec && strlen(sort_strategy_and_spec) < 40)
1499 char strategy[50], *p;
1500 strcpy(strategy, sort_strategy_and_spec);
1501 p = strchr(strategy, ':');
1504 // Split the string in two
1512 yaz_log(YLOG_LOG, "Client %s: "
1513 "applying sorting %s %s", client_get_id(cl),
1515 if (!cl->sort_strategy || strcmp(cl->sort_strategy, strategy))
1516 cl->same_search = 0;
1517 if (!cl->sort_criteria || strcmp(cl->sort_criteria, p))
1518 cl->same_search = 0;
1519 if (cl->same_search == 0) {
1520 xfree(cl->sort_strategy);
1521 cl->sort_strategy = xstrdup(strategy);
1522 xfree(cl->sort_criteria);
1523 cl->sort_criteria = xstrdup(p);
1527 yaz_log(YLOG_LOG, "Client %s: "
1528 "Invalid sort strategy and spec found %s",
1529 client_get_id(cl), sort_strategy_and_spec);
1530 xfree(cl->sort_strategy);
1531 cl->sort_strategy = 0;
1532 xfree(cl->sort_criteria);
1533 cl->sort_criteria = 0;
1538 yaz_log(YLOG_DEBUG, "Client %s: "
1539 "No sort strategy and spec found.", client_get_id(cl));
1540 xfree(cl->sort_strategy);
1541 cl->sort_strategy = 0;
1542 xfree(cl->sort_criteria);
1543 cl->sort_criteria = 0;
1547 return !cl->same_search;
1550 void client_set_session(struct client *cl, struct session *se)
1555 int client_is_active(struct client *cl)
1557 if (cl->connection && (cl->state == Client_Connecting ||
1558 cl->state == Client_Working))
1563 int client_is_active_preferred(struct client *cl)
1565 /* only count if this is a preferred target. */
1568 /* TODO No sure this the condition that Seb wants */
1569 if (cl->connection && (cl->state == Client_Connecting ||
1570 cl->state == Client_Working))
1575 Odr_int client_get_hits(struct client *cl)
1580 Odr_int client_get_approximation(struct client *cl)
1582 if (cl->record_offset > 0)
1584 Odr_int approx = ((10 * cl->hits * (cl->record_offset - cl->filtered))
1585 / cl->record_offset + 5) /10;
1586 yaz_log(YLOG_DEBUG, "%s: Approx: %lld * %d / %d = %lld ",
1587 client_get_id(cl), cl->hits,
1588 cl->record_offset - cl->filtered, cl->record_offset, approx);
1594 int client_get_num_records(struct client *cl)
1596 return cl->record_offset;
1599 int client_get_num_records_filtered(struct client *cl)
1601 return cl->filtered;
1604 void client_set_diagnostic(struct client *cl, int diagnostic,
1605 const char *message, const char *addinfo)
1607 cl->diagnostic = diagnostic;
1609 cl->message = xstrdup(message);
1613 cl->addinfo = xstrdup(addinfo);
1616 int client_get_diagnostic(struct client *cl, const char **message,
1617 const char **addinfo)
1620 *message = cl->message;
1622 *addinfo = cl->addinfo;
1623 return cl->diagnostic;
1626 const char * client_get_suggestions_xml(struct client *cl, WRBUF wrbuf)
1629 struct suggestions *suggestions = cl->suggestions;
1633 if (suggestions->passthrough)
1635 yaz_log(YLOG_DEBUG, "Passthrough Suggestions: \n%s\n",
1636 suggestions->passthrough);
1637 return suggestions->passthrough;
1639 if (suggestions->num == 0)
1642 for (idx = 0; idx < suggestions->num; idx++) {
1643 wrbuf_printf(wrbuf, "<suggest term=\"%s\"", suggestions->suggest[idx]);
1644 if (suggestions->misspelled[idx] && suggestions->misspelled[idx]) {
1645 wrbuf_puts(wrbuf, suggestions->misspelled[idx]);
1646 wrbuf_puts(wrbuf, "</suggest>\n");
1649 wrbuf_puts(wrbuf, "/>\n");
1652 return wrbuf_cstr(wrbuf);
1656 void client_set_database(struct client *cl, struct session_database *db)
1661 const char *client_get_id(struct client *cl)
1666 int client_get_maxrecs(struct client *cl)
1671 void client_set_preferred(struct client *cl, int v)
1677 struct suggestions* client_suggestions_create(const char* suggestions_string)
1681 struct suggestions *suggestions;
1682 if (suggestions_string == 0 || suggestions_string[0] == 0 )
1684 nmem = nmem_create();
1685 suggestions = nmem_malloc(nmem, sizeof(*suggestions));
1686 yaz_log(YLOG_DEBUG, "client target suggestions: %s.", suggestions_string);
1688 suggestions->nmem = nmem;
1689 suggestions->num = 0;
1690 suggestions->misspelled = 0;
1691 suggestions->suggest = 0;
1692 suggestions->passthrough = nmem_strdup_null(nmem, suggestions_string);
1694 if (suggestions_string)
1695 nmem_strsplit_escape2(suggestions->nmem, "\n", suggestions_string, &suggestions->suggest,
1696 &suggestions->num, 1, '\\', 0);
1697 /* Set up misspelled array */
1698 suggestions->misspelled = (char **)
1699 nmem_malloc(nmem, suggestions->num * sizeof(*suggestions->misspelled));
1700 /* replace = with \0 .. for each item */
1701 for (i = 0; i < suggestions->num; i++)
1703 char *cp = strchr(suggestions->suggest[i], '=');
1706 suggestions->misspelled[i] = cp+1;
1712 static void client_suggestions_destroy(struct client *cl)
1714 NMEM nmem = cl->suggestions->nmem;
1715 cl->suggestions = 0;
1722 * c-file-style: "Stroustrup"
1723 * indent-tabs-mode: nil
1725 * vim: shiftwidth=4 tabstop=8 expandtab