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