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