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