Holding a copy of the database url for logging even after session database is gone
[pazpar2-moved-to-github.git] / src / client.c
1 /* This file is part of Pazpar2.
2    Copyright (C) 2006-2011 Index Data
3
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
7 version.
8
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
12 for more details.
13
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
17
18 */
19
20 /** \file client.c
21     \brief Z39.50 client 
22 */
23
24 #if HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <string.h>
30 #if HAVE_SYS_TIME_H
31 #include <sys/time.h>
32 #endif
33 #if HAVE_UNISTD_H
34 #include <unistd.h>
35 #endif
36 #include <signal.h>
37 #include <assert.h>
38
39 #include <yaz/marcdisp.h>
40 #include <yaz/comstack.h>
41 #include <yaz/tcpip.h>
42 #include <yaz/proto.h>
43 #include <yaz/readconf.h>
44 #include <yaz/pquery.h>
45 #include <yaz/otherinfo.h>
46 #include <yaz/yaz-util.h>
47 #include <yaz/nmem.h>
48 #include <yaz/query-charset.h>
49 #include <yaz/querytowrbuf.h>
50 #include <yaz/oid_db.h>
51 #include <yaz/diagbib1.h>
52 #include <yaz/snprintf.h>
53 #include <yaz/rpn2cql.h>
54 #include <yaz/rpn2solr.h>
55
56 #define USE_TIMING 0
57 #if USE_TIMING
58 #include <yaz/timing.h>
59 #endif
60
61 #include "ppmutex.h"
62 #include "session.h"
63 #include "parameters.h"
64 #include "client.h"
65 #include "connection.h"
66 #include "settings.h"
67 #include "relevance.h"
68 #include "incref.h"
69
70 /* client counting (1) , disable client counting (0) */
71 #if 1
72 static YAZ_MUTEX g_mutex = 0;
73 static int no_clients = 0;
74
75 static void client_use(int delta)
76 {
77     if (!g_mutex)
78         yaz_mutex_create(&g_mutex);
79     yaz_mutex_enter(g_mutex);
80     no_clients += delta;
81     yaz_mutex_leave(g_mutex);
82     yaz_log(YLOG_DEBUG, "%s clients=%d", delta > 0 ? "INC" : "DEC", no_clients);
83 }
84 #else
85 #define client_use(x)
86 #endif
87
88 /** \brief Represents client state for a connection to one search target */
89 struct client {
90     struct session_database *database;
91     struct connection *connection;
92     struct session *session;
93     char *pquery; // Current search
94     char *cqlquery; // used for SRU targets only
95     Odr_int hits;
96     int record_offset;
97     int maxrecs;
98     int startrecs;
99     int diagnostic;
100     int preferred;
101     enum client_state state;
102     struct show_raw *show_raw;
103     ZOOM_resultset resultset;
104     YAZ_MUTEX mutex;
105     int ref_count;
106     /* copy of database->url */
107     char *url;
108 };
109
110 struct show_raw {
111     int active; // whether this request has been sent to the server
112     int position;
113     int binary;
114     char *syntax;
115     char *esn;
116     void (*error_handler)(void *data, const char *addinfo);
117     void (*record_handler)(void *data, const char *buf, size_t sz);
118     void *data;
119     struct show_raw *next;
120 };
121
122 static const char *client_states[] = {
123     "Client_Connecting",
124     "Client_Idle",
125     "Client_Working",
126     "Client_Error",
127     "Client_Failed",
128     "Client_Disconnected"
129 };
130
131 const char *client_get_state_str(struct client *cl)
132 {
133     return client_states[cl->state];
134 }
135
136 enum client_state client_get_state(struct client *cl)
137 {
138     return cl->state;
139 }
140
141 void client_set_state(struct client *cl, enum client_state st)
142 {
143     int was_active = 0;
144     if (client_is_active(cl))
145         was_active = 1;
146     cl->state = st;
147     /* If client is going from being active to inactive and all clients
148        are now idle we fire a watch for the session . The assumption is
149        that session is not mutex locked if client is already active */
150     if (was_active && !client_is_active(cl) && cl->session)
151     {
152
153         int no_active = session_active_clients(cl->session);
154         yaz_log(YLOG_DEBUG, "%s: releasing watches on zero active: %d", client_get_url(cl), no_active);
155         if (no_active == 0) {
156             session_alert_watch(cl->session, SESSION_WATCH_SHOW);
157             session_alert_watch(cl->session, SESSION_WATCH_SHOW_PREF);
158         }
159     }
160 }
161
162 static void client_show_raw_error(struct client *cl, const char *addinfo);
163
164 struct connection *client_get_connection(struct client *cl)
165 {
166     return cl->connection;
167 }
168
169 struct session_database *client_get_database(struct client *cl)
170 {
171     return cl->database;
172 }
173
174 struct session *client_get_session(struct client *cl)
175 {
176     return cl->session;
177 }
178
179 const char *client_get_pquery(struct client *cl)
180 {
181     return cl->pquery;
182 }
183
184 static void client_send_raw_present(struct client *cl);
185 static int nativesyntax_to_type(struct session_database *sdb, char *type,
186                                 ZOOM_record rec);
187
188 static void client_show_immediate(
189     ZOOM_resultset resultset, struct session_database *sdb, int position,
190     void *data,
191     void (*error_handler)(void *data, const char *addinfo),
192     void (*record_handler)(void *data, const char *buf, size_t sz),
193     int binary)
194 {
195     ZOOM_record rec = 0;
196     char type[80];
197     const char *buf;
198     int len;
199
200     if (!resultset)
201     {
202         error_handler(data, "no resultset");
203         return;
204     }
205     rec = ZOOM_resultset_record(resultset, position-1);
206     if (!rec)
207     {
208         error_handler(data, "no record");
209         return;
210     }
211     if (binary)
212         strcpy(type, "raw");
213     else
214         nativesyntax_to_type(sdb, type, rec);
215     buf = ZOOM_record_get(rec, type, &len);
216     if (!buf)
217     {
218         error_handler(data, "no record");
219         return;
220     }
221     record_handler(data, buf, len);
222 }
223
224
225 int client_show_raw_begin(struct client *cl, int position,
226                           const char *syntax, const char *esn,
227                           void *data,
228                           void (*error_handler)(void *data, const char *addinfo),
229                           void (*record_handler)(void *data, const char *buf,
230                                                  size_t sz),
231                           int binary)
232 {
233     if (syntax == 0 && esn == 0)
234         client_show_immediate(cl->resultset, client_get_database(cl),
235                               position, data,
236                               error_handler, record_handler,
237                               binary);
238     else
239     {
240         struct show_raw *rr, **rrp;
241
242         if (!cl->connection)
243             return -1;
244     
245
246         rr = xmalloc(sizeof(*rr));
247         rr->position = position;
248         rr->active = 0;
249         rr->data = data;
250         rr->error_handler = error_handler;
251         rr->record_handler = record_handler;
252         rr->binary = binary;
253         if (syntax)
254             rr->syntax = xstrdup(syntax);
255         else
256             rr->syntax = 0;
257         if (esn)
258             rr->esn = xstrdup(esn);
259         else
260             rr->esn = 0;
261         rr->next = 0;
262         
263         for (rrp = &cl->show_raw; *rrp; rrp = &(*rrp)->next)
264             ;
265         *rrp = rr;
266         
267         if (cl->state == Client_Failed)
268         {
269             client_show_raw_error(cl, "client failed");
270         }
271         else if (cl->state == Client_Disconnected)
272         {
273             client_show_raw_error(cl, "client disconnected");
274         }
275         else
276         {
277             client_send_raw_present(cl);
278         }
279     }
280     return 0;
281 }
282
283 static void client_show_raw_delete(struct show_raw *r)
284 {
285     xfree(r->syntax);
286     xfree(r->esn);
287     xfree(r);
288 }
289
290 void client_show_raw_remove(struct client *cl, void *data)
291 {
292     struct show_raw *rr = data;
293     struct show_raw **rrp = &cl->show_raw;
294     while (*rrp != rr)
295         rrp = &(*rrp)->next;
296     if (*rrp)
297     {
298         *rrp = rr->next;
299         client_show_raw_delete(rr);
300     }
301 }
302
303 void client_show_raw_dequeue(struct client *cl)
304 {
305     struct show_raw *rr = cl->show_raw;
306
307     cl->show_raw = rr->next;
308     client_show_raw_delete(rr);
309 }
310
311 static void client_show_raw_error(struct client *cl, const char *addinfo)
312 {
313     while (cl->show_raw)
314     {
315         cl->show_raw->error_handler(cl->show_raw->data, addinfo);
316         client_show_raw_dequeue(cl);
317     }
318 }
319
320 static void client_send_raw_present(struct client *cl)
321 {
322     struct session_database *sdb = client_get_database(cl);
323     struct connection *co = client_get_connection(cl);
324     ZOOM_resultset set = cl->resultset;
325
326     int offset = cl->show_raw->position;
327     const char *syntax = 0;
328     const char *elements = 0;
329
330     assert(cl->show_raw);
331     assert(set);
332
333     yaz_log(YLOG_DEBUG, "%s: trying to present %d record(s) from %d",
334             client_get_url(cl), 1, offset);
335
336     if (cl->show_raw->syntax)
337         syntax = cl->show_raw->syntax;
338     else
339         syntax = session_setting_oneval(sdb, PZ_REQUESTSYNTAX);
340     ZOOM_resultset_option_set(set, "preferredRecordSyntax", syntax);
341
342     if (cl->show_raw->esn)
343         elements = cl->show_raw->esn;
344     else
345         elements = session_setting_oneval(sdb, PZ_ELEMENTS);
346     if (elements && *elements)
347         ZOOM_resultset_option_set(set, "elementSetName", elements);
348
349     ZOOM_resultset_records(set, 0, offset-1, 1);
350     cl->show_raw->active = 1;
351
352     connection_continue(co);
353 }
354
355 static int nativesyntax_to_type(struct session_database *sdb, char *type,
356                                 ZOOM_record rec)
357 {
358     const char *s = session_setting_oneval(sdb, PZ_NATIVESYNTAX);
359
360     if (s && *s)
361     {
362         if (!strncmp(s, "iso2709", 7))
363         {
364             const char *cp = strchr(s, ';');
365             yaz_snprintf(type, 80, "xml; charset=%s", cp ? cp+1 : "marc-8s");
366         }
367         else if (!strncmp(s, "xml", 3))
368         {
369             strcpy(type, "xml");
370         }
371         else if (!strncmp(s, "txml", 4))
372         {
373             const char *cp = strchr(s, ';');
374             yaz_snprintf(type, 80, "txml; charset=%s", cp ? cp+1 : "marc-8s");
375         }
376         else
377             return -1;
378         return 0;
379     }
380     else  /* attempt to deduce structure */
381     {
382         const char *syntax = ZOOM_record_get(rec, "syntax", NULL);
383         if (syntax)
384         {
385             if (!strcmp(syntax, "XML"))
386             {
387                 strcpy(type, "xml");
388                 return 0;
389             }
390             else if (!strcmp(syntax, "TXML"))
391                 {
392                     strcpy(type, "txml");
393                     return 0;
394                 }
395             else if (!strcmp(syntax, "USmarc") || !strcmp(syntax, "MARC21"))
396             {
397                 strcpy(type, "xml; charset=marc8-s");
398                 return 0;
399             }
400             else return -1;
401         }
402         else return -1;
403     }
404 }
405
406 /**
407  * TODO Consider thread safety!!!
408  *
409  */
410 int client_report_facets(struct client *cl, ZOOM_resultset rs) {
411     int facet_idx;
412     ZOOM_facet_field *facets = ZOOM_resultset_facets(rs);
413     int facet_num;
414     struct session *se = client_get_session(cl);
415     facet_num = ZOOM_resultset_facets_size(rs);
416     yaz_log(YLOG_DEBUG, "client_report_facets: %d", facet_num);
417
418     for (facet_idx = 0; facet_idx < facet_num; facet_idx++) {
419         const char *name = ZOOM_facet_field_name(facets[facet_idx]);
420         size_t term_idx;
421         size_t term_num = ZOOM_facet_field_term_count(facets[facet_idx]);
422         for (term_idx = 0; term_idx < term_num; term_idx++ ) {
423             int freq;
424             const char *term = ZOOM_facet_field_get_term(facets[facet_idx], term_idx, &freq);
425             if (term)
426                 add_facet(se, name, term, freq);
427         }
428     }
429
430     return 0;
431 }
432
433 static void ingest_raw_record(struct client *cl, ZOOM_record rec)
434 {
435     const char *buf;
436     int len;
437     char type[80];
438
439     if (cl->show_raw->binary)
440         strcpy(type, "raw");
441     else
442     {
443         struct session_database *sdb = client_get_database(cl);
444         nativesyntax_to_type(sdb, type, rec);
445     }
446
447     buf = ZOOM_record_get(rec, type, &len);
448     cl->show_raw->record_handler(cl->show_raw->data,  buf, len);
449     client_show_raw_dequeue(cl);
450 }
451
452 void client_check_preferred_watch(struct client *cl)
453 {
454     struct session *se = cl->session;
455     yaz_log(YLOG_DEBUG, "client_check_preferred_watch: %s ", client_get_url(cl));
456     if (se)
457     {
458         client_unlock(cl);
459         if (session_is_preferred_clients_ready(se)) {
460             session_alert_watch(se, SESSION_WATCH_SHOW_PREF);
461         }
462         else
463             yaz_log(YLOG_DEBUG, "client_check_preferred_watch: Still locked on preferred targets.");
464
465         client_lock(cl);
466     }
467     else
468         yaz_log(YLOG_WARN, "client_check_preferred_watch: %s. No session!", client_get_url(cl));
469
470 }
471
472 void client_search_response(struct client *cl)
473 {
474     struct connection *co = cl->connection;
475     struct session *se = cl->session;
476     ZOOM_connection link = connection_get_link(co);
477     ZOOM_resultset resultset = cl->resultset;
478
479     const char *error, *addinfo = 0;
480     
481     if (ZOOM_connection_error(link, &error, &addinfo))
482     {
483         cl->hits = 0;
484         client_set_state(cl, Client_Error);
485         yaz_log(YLOG_WARN, "Search error %s (%s): %s",
486                 error, addinfo, client_get_url(cl));
487     }
488     else
489     {
490         yaz_log(YLOG_DEBUG, "client_search_response: hits "
491                 ODR_INT_PRINTF, cl->hits);
492         client_report_facets(cl, resultset);
493         cl->record_offset = cl->startrecs;
494         cl->hits = ZOOM_resultset_size(resultset);
495         if (se) {
496             se->total_hits += cl->hits;
497             yaz_log(YLOG_DEBUG, "client_search_response: total hits "
498                     ODR_INT_PRINTF, se->total_hits);
499         }
500     }
501 }
502
503 void client_got_records(struct client *cl)
504 {
505     struct session *se = cl->session;
506     if (se)
507     {
508         client_unlock(cl);
509         session_alert_watch(se, SESSION_WATCH_SHOW);
510         session_alert_watch(se, SESSION_WATCH_RECORD);
511         client_lock(cl);
512     }
513 }
514
515 void client_record_response(struct client *cl)
516 {
517     struct connection *co = cl->connection;
518     ZOOM_connection link = connection_get_link(co);
519     ZOOM_resultset resultset = cl->resultset;
520     const char *error, *addinfo;
521
522     if (ZOOM_connection_error(link, &error, &addinfo))
523     {
524         client_set_state(cl, Client_Error);
525         yaz_log(YLOG_WARN, "Search error %s (%s): %s",
526             error, addinfo, client_get_url(cl));
527     }
528     else
529     {
530         ZOOM_record rec = 0;
531         const char *msg, *addinfo;
532         
533         if (cl->show_raw && cl->show_raw->active)
534         {
535             if ((rec = ZOOM_resultset_record(resultset,
536                                              cl->show_raw->position-1)))
537             {
538                 cl->show_raw->active = 0;
539                 ingest_raw_record(cl, rec);
540             }
541             else
542             {
543                 yaz_log(YLOG_WARN, "Expected record, but got NULL, offset=%d",
544                         cl->show_raw->position-1);
545             }
546         }
547         else
548         {
549             int offset = cl->record_offset;
550             if ((rec = ZOOM_resultset_record(resultset, offset)))
551             {
552                 cl->record_offset++;
553                 if (cl->session == 0)
554                     ;
555                 else if (ZOOM_record_error(rec, &msg, &addinfo, 0))
556                 {
557                     yaz_log(YLOG_WARN, "Record error %s (%s): %s (rec #%d)",
558                             msg, addinfo, client_get_url(cl),
559                             cl->record_offset);
560                 }
561                 else
562                 {
563                     struct session_database *sdb = client_get_database(cl);
564                     NMEM nmem = nmem_create();
565                     const char *xmlrec;
566                     char type[80];
567
568                     if (nativesyntax_to_type(sdb, type, rec))
569                         yaz_log(YLOG_WARN, "Failed to determine record type");
570                     xmlrec = ZOOM_record_get(rec, type, NULL);
571                     if (!xmlrec)
572                         yaz_log(YLOG_WARN, "ZOOM_record_get failed from %s",
573                                 client_get_url(cl));
574                     else
575                     {
576                         if (ingest_record(cl, xmlrec, cl->record_offset, nmem))
577                             yaz_log(YLOG_WARN, "Failed to ingest from %s",
578                                     client_get_url(cl));
579                     }
580                     nmem_destroy(nmem);
581                 }
582             }
583             else
584             {
585                 yaz_log(YLOG_WARN, "Expected record, but got NULL, offset=%d",
586                         offset);
587             }
588         }
589     }
590 }
591
592 static int client_set_facets_request(struct client *cl, ZOOM_connection link)
593 {
594     struct session_database *sdb = client_get_database(cl);
595     const char *opt_facet_term_sort  = session_setting_oneval(sdb, PZ_TERMLIST_TERM_SORT);
596     const char *opt_facet_term_count = session_setting_oneval(sdb, PZ_TERMLIST_TERM_COUNT);
597
598     /* Future record filtering on target */
599     /* const char *opt_facet_record_filter = session_setting_oneval(sdb, PZ_RECORDFILTER); */
600
601     /* Disable when no count is set */
602     /* TODO Verify: Do we need to reset the  ZOOM facets if a ZOOM Connection is being reused??? */
603     if (opt_facet_term_count && *opt_facet_term_count)
604     {
605         int index = 0;
606         struct session *session = client_get_session(cl);
607         struct conf_service *service = session->service;
608         int num = service->num_metadata;
609         WRBUF wrbuf = wrbuf_alloc();
610         yaz_log(YLOG_DEBUG, "Facet settings, sort: %s count: %s",
611                 opt_facet_term_sort, opt_facet_term_count);
612         for (index = 0; index < num; index++)
613         {
614             struct conf_metadata *conf_meta = &service->metadata[index];
615             if (conf_meta->termlist)
616             {
617                 if (wrbuf_len(wrbuf))
618                     wrbuf_puts(wrbuf, ", ");
619                 wrbuf_printf(wrbuf, "@attr 1=%s", conf_meta->name);
620                 
621                 if (opt_facet_term_sort && *opt_facet_term_sort)
622                     wrbuf_printf(wrbuf, " @attr 2=%s", opt_facet_term_sort);
623                 wrbuf_printf(wrbuf, " @attr 3=%s", opt_facet_term_count);
624             }
625         }
626         if (wrbuf_len(wrbuf))
627         {
628             yaz_log(YLOG_LOG, "Setting ZOOM facets option: %s", wrbuf_cstr(wrbuf));
629             ZOOM_connection_option_set(link, "facets", wrbuf_cstr(wrbuf));
630             return 1;
631         }
632     }
633     return 0;
634 }
635
636 int client_has_facet(struct client *cl, const char *name) {
637     ZOOM_facet_field facet_field;
638     if (!cl || !cl->resultset || !name) {
639         yaz_log(YLOG_DEBUG, "client has facet: Missing %p %p %s", cl, (cl ? cl->resultset: 0), name);
640         return 0;
641     }
642     facet_field = ZOOM_resultset_get_facet_field(cl->resultset, name);
643     if (facet_field) {
644         yaz_log(YLOG_DEBUG, "client: has facets for %s", name);
645         return 1;
646     }
647     yaz_log(YLOG_DEBUG, "client: No facets for %s", name);
648     return 0;
649 }
650
651
652 void client_start_search(struct client *cl)
653 {
654     struct session_database *sdb = client_get_database(cl);
655     struct connection *co = client_get_connection(cl);
656     ZOOM_connection link = connection_get_link(co);
657     ZOOM_resultset rs;
658     char *databaseName = sdb->database->databases[0];
659     const char *opt_piggyback   = session_setting_oneval(sdb, PZ_PIGGYBACK);
660     const char *opt_queryenc    = session_setting_oneval(sdb, PZ_QUERYENCODING);
661     const char *opt_elements    = session_setting_oneval(sdb, PZ_ELEMENTS);
662     const char *opt_requestsyn  = session_setting_oneval(sdb, PZ_REQUESTSYNTAX);
663     const char *opt_maxrecs     = session_setting_oneval(sdb, PZ_MAXRECS);
664     const char *opt_sru         = session_setting_oneval(sdb, PZ_SRU);
665     const char *opt_sort        = session_setting_oneval(sdb, PZ_SORT);
666     const char *opt_preferred   = session_setting_oneval(sdb, PZ_PREFERRED);
667     char maxrecs_str[24], startrecs_str[24];
668
669     assert(link);
670
671     cl->hits = -1;
672     cl->record_offset = 0;
673     cl->diagnostic = 0;
674
675     if (opt_preferred) {
676         cl->preferred = atoi(opt_preferred);
677         if (cl->preferred)
678             yaz_log(YLOG_LOG, "Target %s has preferred status: %d", sdb->database->url, cl->preferred);
679     }
680     client_set_state(cl, Client_Working);
681
682     if (*opt_piggyback)
683         ZOOM_connection_option_set(link, "piggyback", opt_piggyback);
684     else
685         ZOOM_connection_option_set(link, "piggyback", "1");
686     if (*opt_queryenc)
687         ZOOM_connection_option_set(link, "rpnCharset", opt_queryenc);
688     if (*opt_sru && *opt_elements)
689         ZOOM_connection_option_set(link, "schema", opt_elements);
690     else if (*opt_elements)
691         ZOOM_connection_option_set(link, "elementSetName", opt_elements);
692     if (*opt_requestsyn)
693         ZOOM_connection_option_set(link, "preferredRecordSyntax", opt_requestsyn);
694
695     if (!*opt_maxrecs)
696     {
697         sprintf(maxrecs_str, "%d", cl->maxrecs);
698         opt_maxrecs = maxrecs_str;
699     }
700     ZOOM_connection_option_set(link, "count", opt_maxrecs);
701
702
703     if (atoi(opt_maxrecs) > 20)
704         ZOOM_connection_option_set(link, "presentChunk", "20");
705     else
706         ZOOM_connection_option_set(link, "presentChunk", opt_maxrecs);
707
708     sprintf(startrecs_str, "%d", cl->startrecs);
709     ZOOM_connection_option_set(link, "start", startrecs_str);
710
711     if (databaseName)
712         ZOOM_connection_option_set(link, "databaseName", databaseName);
713
714     /* TODO Verify does it break something for CQL targets(non-SOLR) ? */
715     /* facets definition is in PQF */
716     client_set_facets_request(cl, link);
717
718     if (cl->cqlquery)
719     {
720         ZOOM_query q = ZOOM_query_create();
721         yaz_log(YLOG_LOG, "Search %s CQL: %s", sdb->database->url, cl->cqlquery);
722         ZOOM_query_cql(q, cl->cqlquery);
723         if (*opt_sort)
724             ZOOM_query_sortby(q, opt_sort);
725         rs = ZOOM_connection_search(link, q);
726         ZOOM_query_destroy(q);
727     }
728     else
729     {
730         yaz_log(YLOG_LOG, "Search %s PQF: %s", sdb->database->url, cl->pquery);
731         rs = ZOOM_connection_search_pqf(link, cl->pquery);
732     }
733     ZOOM_resultset_destroy(cl->resultset);
734     cl->resultset = rs;
735     connection_continue(co);
736 }
737
738 struct client *client_create(void)
739 {
740     struct client *cl = xmalloc(sizeof(*cl));
741     cl->maxrecs = 100;
742     cl->startrecs = 0;
743     cl->pquery = 0;
744     cl->cqlquery = 0;
745     cl->database = 0;
746     cl->connection = 0;
747     cl->session = 0;
748     cl->hits = 0;
749     cl->record_offset = 0;
750     cl->diagnostic = 0;
751     cl->state = Client_Disconnected;
752     cl->show_raw = 0;
753     cl->resultset = 0;
754     cl->mutex = 0;
755     pazpar2_mutex_create(&cl->mutex, "client");
756     cl->preferred = 0;
757     cl->ref_count = 1;
758     cl->url = 0;
759     client_use(1);
760     
761     return cl;
762 }
763
764 void client_lock(struct client *c)
765 {
766     yaz_mutex_enter(c->mutex);
767 }
768
769 void client_unlock(struct client *c)
770 {
771     yaz_mutex_leave(c->mutex);
772 }
773
774 void client_incref(struct client *c)
775 {
776     pazpar2_incref(&c->ref_count, c->mutex);
777     yaz_log(YLOG_DEBUG, "client_incref c=%p %s cnt=%d",
778             c, client_get_url(c), c->ref_count);
779 }
780
781 int client_destroy(struct client *c)
782 {
783     if (c)
784     {
785         yaz_log(YLOG_DEBUG, "client_destroy c=%p %s cnt=%d",
786                 c, client_get_url(c), c->ref_count);
787         if (!pazpar2_decref(&c->ref_count, c->mutex))
788         {
789             xfree(c->pquery);
790             c->pquery = 0;
791             xfree(c->cqlquery);
792             c->cqlquery = 0;
793             xfree(c->url);
794             assert(!c->connection);
795
796             if (c->resultset)
797             {
798                 ZOOM_resultset_destroy(c->resultset);
799             }
800             yaz_mutex_destroy(&c->mutex);
801             xfree(c);
802             client_use(-1);
803             return 1;
804         }
805     }
806     return 0;
807 }
808
809 void client_set_connection(struct client *cl, struct connection *con)
810 {
811     if (cl->resultset)
812         ZOOM_resultset_release(cl->resultset);
813     if (con)
814     {
815         assert(cl->connection == 0);
816         cl->connection = con;
817         client_incref(cl);
818     }
819     else
820     {
821         cl->connection = con;
822         client_destroy(cl);
823     }
824 }
825
826 void client_disconnect(struct client *cl)
827 {
828     if (cl->state != Client_Idle)
829         client_set_state(cl, Client_Disconnected);
830     client_set_connection(cl, 0);
831 }
832
833 // Extract terms from query into null-terminated termlist
834 static void extract_terms(NMEM nmem, struct ccl_rpn_node *query, char **termlist)
835 {
836     int num = 0;
837
838     pull_terms(nmem, query, termlist, &num);
839     termlist[num] = 0;
840 }
841
842 // Initialize CCL map for a target
843 static CCL_bibset prepare_cclmap(struct client *cl)
844 {
845     struct session_database *sdb = client_get_database(cl);
846     struct setting *s;
847     CCL_bibset res;
848
849     if (!sdb->settings)
850         return 0;
851     res = ccl_qual_mk();
852     for (s = sdb->settings[PZ_CCLMAP]; s; s = s->next)
853     {
854         char *p = strchr(s->name + 3, ':');
855         if (!p)
856         {
857             yaz_log(YLOG_WARN, "Malformed cclmap name: %s", s->name);
858             ccl_qual_rm(&res);
859             return 0;
860         }
861         p++;
862         ccl_qual_fitem(res, s->value, p);
863     }
864     return res;
865 }
866
867 // returns a xmalloced CQL query corresponding to the pquery in client
868 static char *make_cqlquery(struct client *cl)
869 {
870     cql_transform_t cqlt = cql_transform_create();
871     Z_RPNQuery *zquery;
872     char *r;
873     WRBUF wrb = wrbuf_alloc();
874     int status;
875     ODR odr_out = odr_createmem(ODR_ENCODE);
876
877     zquery = p_query_rpn(odr_out, cl->pquery);
878     yaz_log(YLOG_LOG, "PQF: %s", cl->pquery);
879     if ((status = cql_transform_rpn2cql_wrbuf(cqlt, wrb, zquery)))
880     {
881         yaz_log(YLOG_WARN, "Failed to generate CQL query, code=%d", status);
882         r = 0;
883     }
884     else
885     {
886         r = xstrdup(wrbuf_cstr(wrb));
887     }     
888     wrbuf_destroy(wrb);
889     odr_destroy(odr_out);
890     cql_transform_close(cqlt);
891     return r;
892 }
893
894 // returns a xmalloced SOLR query corresponding to the pquery in client
895 // TODO Could prob. be merge with the similar make_cqlquery
896 static char *make_solrquery(struct client *cl)
897 {
898     solr_transform_t sqlt = solr_transform_create();
899     Z_RPNQuery *zquery;
900     char *r;
901     WRBUF wrb = wrbuf_alloc();
902     int status;
903     ODR odr_out = odr_createmem(ODR_ENCODE);
904
905     zquery = p_query_rpn(odr_out, cl->pquery);
906     yaz_log(YLOG_LOG, "PQF: %s", cl->pquery);
907     if ((status = solr_transform_rpn2solr_wrbuf(sqlt, wrb, zquery)))
908     {
909         yaz_log(YLOG_WARN, "Failed to generate SOLR query, code=%d", status);
910         r = 0;
911     }
912     else
913     {
914         r = xstrdup(wrbuf_cstr(wrb));
915     }
916     wrbuf_destroy(wrb);
917     odr_destroy(odr_out);
918     solr_transform_close(sqlt);
919     return r;
920 }
921
922 // Parse the query given the settings specific to this client
923 int client_parse_query(struct client *cl, const char *query)
924 {
925     struct session *se = client_get_session(cl);
926     struct session_database *sdb = client_get_database(cl);
927     struct ccl_rpn_node *cn;
928     int cerror, cpos;
929     CCL_bibset ccl_map = prepare_cclmap(cl);
930     const char *sru = session_setting_oneval(sdb, PZ_SRU);
931     const char *pqf_prefix = session_setting_oneval(sdb, PZ_PQF_PREFIX);
932     const char *pqf_strftime = session_setting_oneval(sdb, PZ_PQF_STRFTIME);
933
934     if (!ccl_map)
935         return -1;
936
937     cn = ccl_find_str(ccl_map, query, &cerror, &cpos);
938     ccl_qual_rm(&ccl_map);
939     if (!cn)
940     {
941         client_set_state(cl, Client_Error);
942         session_log(se, YLOG_WARN, "Failed to parse CCL query '%s' for %s",
943                 query,
944                 client_get_database(cl)->database->url);
945         return -1;
946     }
947     wrbuf_rewind(se->wrbuf);
948     if (*pqf_prefix)
949     {
950         wrbuf_puts(se->wrbuf, pqf_prefix);
951         wrbuf_puts(se->wrbuf, " ");
952     }
953     if (!pqf_strftime || !*pqf_strftime)
954         ccl_pquery(se->wrbuf, cn);
955     else
956     {
957         time_t cur_time = time(0);
958         struct tm *tm =  localtime(&cur_time);
959         char tmp_str[300];
960         const char *cp = tmp_str;
961
962         /* see man strftime(3) for things .. In particular %% gets converted
963          to %.. And That's our original query .. */
964         strftime(tmp_str, sizeof(tmp_str)-1, pqf_strftime, tm);
965         for (; *cp; cp++)
966         {
967             if (cp[0] == '%')
968                 ccl_pquery(se->wrbuf, cn);
969             else
970                 wrbuf_putc(se->wrbuf, cp[0]);
971         }
972     }
973     xfree(cl->pquery);
974     cl->pquery = xstrdup(wrbuf_cstr(se->wrbuf));
975
976     xfree(cl->cqlquery);
977     if (*sru)
978     {
979         if (!strcmp(sru, "solr")) {
980             if (!(cl->cqlquery = make_solrquery(cl)))
981                 return -1;
982         }
983         else {
984             if (!(cl->cqlquery = make_cqlquery(cl)))
985                 return -1;
986         }
987     }
988     else
989         cl->cqlquery = 0;
990
991     /* TODO FIX Not thread safe */
992     if (!se->relevance)
993     {
994         // Initialize relevance structure with query terms
995         char *p[512];
996         extract_terms(se->nmem, cn, p);
997         se->relevance = relevance_create(
998             se->service->relevance_pct,
999             se->nmem, (const char **) p);
1000     }
1001
1002     ccl_rpn_delete(cn);
1003     return 0;
1004 }
1005
1006 void client_set_session(struct client *cl, struct session *se)
1007 {
1008     cl->session = se;
1009 }
1010
1011 int client_is_active(struct client *cl)
1012 {
1013     if (cl->connection && (cl->state == Client_Connecting ||
1014                            cl->state == Client_Working))
1015         return 1;
1016     return 0;
1017 }
1018
1019 int client_is_active_preferred(struct client *cl)
1020 {
1021     /* only count if this is a preferred target. */
1022     if (!cl->preferred)
1023         return 0;
1024     /* TODO No sure this the condition that Seb wants */
1025     if (cl->connection && (cl->state == Client_Connecting ||
1026                            cl->state == Client_Working))
1027         return 1;
1028     return 0;
1029 }
1030
1031
1032 Odr_int client_get_hits(struct client *cl)
1033 {
1034     return cl->hits;
1035 }
1036
1037 int client_get_num_records(struct client *cl)
1038 {
1039     return cl->record_offset;
1040 }
1041
1042 void client_set_diagnostic(struct client *cl, int diagnostic)
1043 {
1044     cl->diagnostic = diagnostic;
1045 }
1046
1047 int client_get_diagnostic(struct client *cl)
1048 {
1049     return cl->diagnostic;
1050 }
1051
1052 void client_set_database(struct client *cl, struct session_database *db)
1053 {
1054     cl->database = db;
1055     /* Copy the URL for safe logging even after session is gone */
1056     if (db) {
1057         cl->url = xstrdup(db->database->url);
1058     }
1059 }
1060
1061 struct host *client_get_host(struct client *cl)
1062 {
1063     return client_get_database(cl)->database->host;
1064 }
1065
1066 const char *client_get_url(struct client *cl)
1067 {
1068     if (cl->url)
1069         return cl->url;
1070     else
1071         /* This must not happen anymore, as the url is present until destruction of client  */
1072         return "NOURL";
1073 }
1074
1075 void client_set_maxrecs(struct client *cl, int v)
1076 {
1077     cl->maxrecs = v;
1078 }
1079
1080 int client_get_maxrecs(struct client *cl)
1081 {
1082     return cl->maxrecs;
1083 }
1084
1085 void client_set_startrecs(struct client *cl, int v)
1086 {
1087     cl->startrecs = v;
1088 }
1089
1090 void client_set_preferred(struct client *cl, int v)
1091 {
1092     cl->preferred = v;
1093 }
1094
1095
1096 /*
1097  * Local variables:
1098  * c-basic-offset: 4
1099  * c-file-style: "Stroustrup"
1100  * indent-tabs-mode: nil
1101  * End:
1102  * vim: shiftwidth=4 tabstop=8 expandtab
1103  */
1104