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