Ensure fname is 0-terminated in parse_cmd_doc for yaz-client.
[yaz-moved-to-github.git] / client / client.c
1 /* 
2  * Copyright (C) 1995-2007, Index Data ApS
3  * See the file LICENSE for details.
4  *
5  * $Id: client.c,v 1.354 2007-12-21 08:31:42 adam Exp $
6  */
7 /** \file client.c
8  *  \brief yaz-client program
9  */
10
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <assert.h>
14 #include <time.h>
15 #include <ctype.h>
16 #ifndef WIN32
17 #include <signal.h>
18 #endif
19 #if HAVE_SYS_TYPES_H
20 #include <sys/types.h>
21 #endif
22 #if HAVE_LOCALE_H
23 #include <locale.h>
24 #endif
25 #if HAVE_LANGINFO_H
26 #include <langinfo.h>
27 #endif
28 #if HAVE_UNISTD_H
29 #include <unistd.h>
30 #endif
31 #if HAVE_SYS_STAT_H
32 #include <sys/stat.h>
33 #endif
34 #if HAVE_SYS_TIME_H
35 #include <sys/time.h>
36 #endif
37
38 #if HAVE_OPENSSL_SSL_H
39 #include <openssl/bio.h>
40 #include <openssl/crypto.h>
41 #include <openssl/x509.h>
42 #include <openssl/pem.h>
43 #include <openssl/ssl.h>
44 #include <openssl/err.h>
45 #endif
46
47 #ifdef WIN32
48 #include <sys/stat.h>
49 #include <io.h>
50 #include <windows.h>
51 #define S_ISREG(x) (x & _S_IFREG)
52 #define S_ISDIR(x) (x & _S_IFDIR)
53 #endif
54
55 #include <yaz/yaz-util.h>
56
57 #include <yaz/comstack.h>
58
59 #include <yaz/oid_db.h>
60 #define NO_OID 1
61 #include <yaz/proto.h>
62 #include <yaz/marcdisp.h>
63 #include <yaz/diagbib1.h>
64 #include <yaz/otherinfo.h>
65 #include <yaz/charneg.h>
66 #include <yaz/query-charset.h>
67
68 #include <yaz/pquery.h>
69 #include <yaz/sortspec.h>
70
71 #include <yaz/ill.h>
72 #include <yaz/srw.h>
73 #include <yaz/yaz-ccl.h>
74 #include <yaz/cql.h>
75 #include <yaz/log.h>
76
77 #if HAVE_READLINE_READLINE_H
78 #include <readline/readline.h>
79 #endif
80 #if HAVE_READLINE_HISTORY_H
81 #include <readline/history.h>
82 #endif
83
84
85 #include "admin.h"
86 #include "tabcomplete.h"
87 #include "fhistory.h"
88
89 #define C_PROMPT "Z> "
90
91 static file_history_t file_history = 0;
92
93 static char sru_method[10] = "soap";
94 static char sru_version[10] = "1.2";
95 static char *codeset = 0;               /* character set for output */
96 static int hex_dump = 0;
97 static char *dump_file_prefix = 0;
98 static ODR out, in, print;              /* encoding and decoding streams */
99 #if YAZ_HAVE_XML2
100 static ODR srw_sr_odr_out = 0;
101 static Z_SRW_PDU *srw_sr = 0;
102 #endif
103 static FILE *apdu_file = 0;
104 static FILE *ber_file = 0;
105 static COMSTACK conn = 0;               /* our z-association */
106 static Z_IdAuthentication *auth = 0;    /* our current auth definition */
107 char *databaseNames[128];
108 int num_databaseNames = 0;
109 static Z_External *record_last = 0;
110 static int setnumber = -1;              /* current result set number */
111 static int smallSetUpperBound = 0;
112 static int largeSetLowerBound = 1;
113 static int mediumSetPresentNumber = 0;
114 static Z_ElementSetNames *elementSetNames = 0; 
115 static int setno = 1;                   /* current set offset */
116 static enum oid_proto protocol = PROTO_Z3950;      /* current app protocol */
117 #define RECORDSYNTAX_MAX 20
118 static char *recordsyntax_list[RECORDSYNTAX_MAX];
119 static int recordsyntax_size = 0;
120
121 static char *record_schema = 0;
122 static int sent_close = 0;
123 static NMEM session_mem = NULL;         /* memory handle for init-response */
124 static Z_InitResponse *session_initResponse = 0;   /* session parameters */
125 static char last_scan_line[512] = "0";
126 static char last_scan_query[512] = "0";
127 static char ccl_fields[512] = "default.bib";
128 /* ### How can I set this path to use wherever YAZ is installed? */
129 static char cql_fields[512] = "/usr/local/share/yaz/etc/pqf.properties";
130 static char *esPackageName = 0;
131 static char *yazProxy = 0;
132 static int kilobytes = 1024;
133 static char *negotiationCharset = 0;
134 static int  negotiationCharsetRecords = 1;
135 static int  negotiationCharsetVersion = 3;
136 static char *outputCharset = 0;
137 static char *marcCharset = 0;
138 static char *queryCharset = 0;
139 static char* yazLang = 0;
140
141 static char last_cmd[32] = "?";
142 static FILE *marc_file = 0;
143 static char *refid = NULL;
144 static char *last_open_command = NULL;
145 static int auto_reconnect = 0;
146 static int auto_wait = 1;
147 static Odr_bitmask z3950_options;
148 static int z3950_version = 3;
149 static int scan_stepSize = 0;
150 static int scan_position = 1;
151 static int scan_size = 20;
152 static char cur_host[200];
153 static int last_hit_count = 0;
154
155 typedef enum {
156     QueryType_Prefix,
157     QueryType_CCL,
158     QueryType_CCL2RPN,
159     QueryType_CQL,
160     QueryType_CQL2RPN
161 } QueryType;
162
163 static QueryType queryType = QueryType_Prefix;
164
165 static CCL_bibset bibset;               /* CCL bibset handle */
166 static cql_transform_t cqltrans = 0; /* CQL context-set handle */
167
168 #if HAVE_READLINE_COMPLETION_OVER
169
170 #else
171 /* readline doesn't have this var. Define it ourselves. */
172 int rl_attempted_completion_over = 0;
173 #endif
174
175 #define maxOtherInfosSupported 10
176 struct eoi {
177     Odr_oid oid[OID_SIZE];
178     char* value;
179 } extraOtherInfos[maxOtherInfosSupported];
180
181 void process_cmd_line(char* line);
182 #if HAVE_READLINE_READLINE_H
183 char **readline_completer(char *text, int start, int end);
184 #endif
185 static char *command_generator(const char *text, int state);
186 int cmd_register_tab(const char* arg);
187 int cmd_querycharset(const char *arg);
188
189 static void close_session (void);
190
191 ODR getODROutputStream(void)
192 {
193     return out;
194 }
195
196 const char* query_type_as_string(QueryType q) 
197 {
198     switch (q) { 
199     case QueryType_Prefix: return "prefix (RPN sent to server)";
200     case QueryType_CCL: return "CCL (CCL sent to server) ";
201     case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
202     case QueryType_CQL: return "CQL (CQL sent to server)";
203     case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
204     default: 
205         return "unknown Query type internal yaz-client error";
206     }
207 }
208
209 static void do_hex_dump(const char* buf, int len) 
210 {
211     if (hex_dump)
212     {
213         int i,x;
214         for( i=0; i<len ; i=i+16 ) 
215         {                       
216             printf(" %4.4d ",i);
217             for(x=0 ; i+x<len && x<16; ++x) 
218             {
219                 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
220             }
221             printf("\n");
222         }
223     }
224     if (dump_file_prefix)
225     {
226         static int no = 0;
227         if (++no < 1000 && strlen(dump_file_prefix) < 500)
228         {
229             char fname[1024];
230             FILE *of;
231             sprintf (fname, "%s.%03d.raw", dump_file_prefix, no);
232             of = fopen(fname, "wb");
233             
234             fwrite (buf, 1, len, of);
235             
236             fclose(of);
237         }
238     }
239 }
240
241 void add_otherInfos(Z_APDU *a) 
242 {
243     Z_OtherInformation **oi;
244     int i;
245                 
246     yaz_oi_APDU(a, &oi);
247     for(i=0; i<maxOtherInfosSupported; ++i) 
248     {
249         if (oid_oidlen(extraOtherInfos[i].oid) > 0)
250             yaz_oi_set_string_oid(oi, out, extraOtherInfos[i].oid,
251                                      1, extraOtherInfos[i].value);
252     }   
253 }
254
255 int send_apdu(Z_APDU *a)
256 {
257     char *buf;
258     int len;
259     
260     add_otherInfos(a);
261     
262     if (apdu_file)
263     {
264         z_APDU(print, &a, 0, 0);
265         odr_reset(print);
266     }
267     if (!z_APDU(out, &a, 0, 0))
268     {
269         odr_perror(out, "Encoding APDU");
270         close_session();
271         return 0;
272     }
273     buf = odr_getbuf(out, &len, 0);
274     if (ber_file)
275         odr_dumpBER(ber_file, buf, len);
276     /* printf ("sending APDU of size %d\n", len); */
277     do_hex_dump(buf, len);
278     if (cs_put(conn, buf, len) < 0)
279     {
280         fprintf(stderr, "cs_put: %s", cs_errmsg(cs_errno(conn)));
281         close_session();
282         return 0;
283     }
284     odr_reset(out); /* release the APDU structure  */
285     return 1;
286 }
287
288 static void print_stringn(const unsigned char *buf, size_t len)
289 {
290     size_t i;
291     for (i = 0; i<len; i++)
292         if ((buf[i] <= 126 && buf[i] >= 32) || strchr ("\n\r\t\f", buf[i]))
293             printf ("%c", buf[i]);
294         else
295             printf ("\\X%02X", buf[i]);
296 }
297
298 static void print_refid (Z_ReferenceId *id)
299 {
300     if (id)
301     {
302         printf ("Reference Id: ");
303         print_stringn (id->buf, id->len);
304         printf ("\n");
305     }
306 }
307
308 static Z_ReferenceId *set_refid (ODR out)
309 {
310     Z_ReferenceId *id;
311     if (!refid)
312         return 0;
313     id = (Z_ReferenceId *) odr_malloc (out, sizeof(*id));
314     id->size = id->len = strlen(refid);
315     id->buf = (unsigned char *) odr_malloc (out, id->len);
316     memcpy (id->buf, refid, id->len);
317     return id;
318 }   
319
320 /* INIT SERVICE ------------------------------- */
321
322 static void send_initRequest(const char* type_and_host)
323 {
324     Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
325     Z_InitRequest *req = apdu->u.initRequest;
326     int i;
327
328     req->options = &z3950_options;
329
330     ODR_MASK_ZERO(req->protocolVersion);
331     for (i = 0; i<z3950_version; i++)
332         ODR_MASK_SET(req->protocolVersion, i);
333
334     *req->maximumRecordSize = 1024*kilobytes;
335     *req->preferredMessageSize = 1024*kilobytes;
336
337     req->idAuthentication = auth;
338
339     req->referenceId = set_refid (out);
340
341     if (yazProxy && type_and_host)
342     {
343         yaz_oi_set_string_oid(&req->otherInfo, out, yaz_oid_userinfo_proxy,
344                               1, type_and_host);
345     }
346     
347     if (negotiationCharset || yazLang) {
348         Z_OtherInformation **p;
349         Z_OtherInformationUnit *p0;
350         
351         yaz_oi_APDU(apdu, &p);
352         
353         if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
354         {
355             ODR_MASK_SET(req->options, Z_Options_negotiationModel);
356             
357             p0->which = Z_OtherInfo_externallyDefinedInfo;
358             p0->information.externallyDefinedInfo =
359                 yaz_set_proposal_charneg_list(out, ",", 
360                                               negotiationCharset, 
361                                               yazLang,
362                                               negotiationCharsetRecords);
363         }
364     }
365     else if (ODR_MASK_GET(req->options, Z_Options_negotiationModel))
366     {
367         Z_OtherInformation **p;
368         Z_OtherInformationUnit *p0;
369         
370         yaz_oi_APDU(apdu, &p);
371         
372         if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
373         {
374             p0->which = Z_OtherInfo_externallyDefinedInfo;
375             p0->information.externallyDefinedInfo =
376                 yaz_set_proposal_charneg(out, 0, 0, 0, 0, 0);
377         }
378
379     }
380     if (send_apdu(apdu))
381         printf("Sent initrequest.\n");
382 }
383
384
385 /* These two are used only from process_initResponse() */
386 static void render_initUserInfo(Z_OtherInformation *ui1);
387 static void render_diag(Z_DiagnosticFormat *diag);
388
389 static void pr_opt(const char *opt, void *clientData)
390 {
391     printf (" %s", opt);
392 }
393
394 static int process_initResponse(Z_InitResponse *res)
395 {
396     int ver = 0;
397     /* save session parameters for later use */
398     session_mem = odr_extract_mem(in);
399     session_initResponse = res;
400
401     for (ver = 0; ver < 8; ver++)
402         if (!ODR_MASK_GET(res->protocolVersion, ver))
403             break;
404
405     if (!*res->result)
406         printf("Connection rejected by v%d target.\n", ver);
407     else
408         printf("Connection accepted by v%d target.\n", ver);
409     if (res->implementationId)
410         printf("ID     : %s\n", res->implementationId);
411     if (res->implementationName)
412         printf("Name   : %s\n", res->implementationName);
413     if (res->implementationVersion)
414         printf("Version: %s\n", res->implementationVersion);
415     if (res->userInformationField)
416     {
417         Z_External *uif = res->userInformationField;
418         if (uif->which == Z_External_userInfo1) {
419             render_initUserInfo(uif->u.userInfo1);
420         } else {
421             printf("UserInformationfield:\n");
422             if (!z_External(print, (Z_External**)&uif, 0, 0))
423             {
424                 odr_perror(print, "Printing userinfo\n");
425                 odr_reset(print);
426             }
427             if (uif->which == Z_External_octet) {
428                 printf("Guessing visiblestring:\n");
429                 printf("'%.*s'\n", uif->u.octet_aligned->len,
430                        uif->u.octet_aligned->buf);
431             }
432             else if (uif->which == Z_External_single) 
433             {
434                 Odr_any *sat = uif->u.single_ASN1_type;
435                 if (!oid_oidcmp(uif->direct_reference,
436                                 yaz_oid_userinfo_oclc_userinfo))
437                 {
438                     Z_OCLC_UserInformation *oclc_ui;
439                     ODR decode = odr_createmem(ODR_DECODE);
440                     odr_setbuf(decode, (char *) sat->buf, sat->len, 0);
441                     if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
442                         printf ("Bad OCLC UserInformation:\n");
443                     else
444                         printf ("OCLC UserInformation:\n");
445                     if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
446                         printf ("Bad OCLC UserInformation spec\n");
447                     odr_destroy(decode);
448                 }
449                 else
450                 {
451                     /* Peek at any private Init-diagnostic APDUs */
452                     printf("### NAUGHTY: External is '%.*s'\n",
453                            sat->len, sat->buf);
454                 }
455             }
456             odr_reset (print);
457         }
458     }
459     printf ("Options:");
460     yaz_init_opt_decode(res->options, pr_opt, 0);
461     printf ("\n");
462
463     if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
464         setnumber = 0;
465     
466     if (ODR_MASK_GET(res->options, Z_Options_negotiationModel)) {
467     
468         Z_CharSetandLanguageNegotiation *p =
469                 yaz_get_charneg_record(res->otherInfo);
470
471         if (p) 
472         {
473             char *charset=NULL, *lang=NULL;
474             int selected;
475             
476             yaz_get_response_charneg(session_mem, p, &charset, &lang,
477                                      &selected);
478
479             printf("Accepted character set : %s\n", charset ? charset:"none");
480             printf("Accepted code language : %s\n", lang ? lang:"none");
481             printf("Accepted records in ...: %d\n", selected );
482
483             if (outputCharset && charset)
484             {
485                 printf("Converting between %s and %s\n",
486                        outputCharset, charset);
487                 odr_set_charset(out, charset, outputCharset);
488                 odr_set_charset(in, outputCharset, charset);
489                 cmd_querycharset(charset);
490             }
491             else
492             {
493                 odr_set_charset(out, 0, 0);
494                 odr_set_charset(in, 0, 0);
495             }
496         }
497     }
498     fflush (stdout);
499     return 0;
500 }
501
502
503 static void render_initUserInfo(Z_OtherInformation *ui1) {
504     int i;
505     printf("Init response contains %d otherInfo unit%s:\n",
506            ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
507
508     for (i = 0; i < ui1->num_elements; i++) {
509         Z_OtherInformationUnit *unit = ui1->list[i];
510         printf("  %d: otherInfo unit contains ", i+1);
511         if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
512             unit->information.externallyDefinedInfo &&
513             unit->information.externallyDefinedInfo->which ==
514             Z_External_diag1) {
515             render_diag(unit->information.externallyDefinedInfo->u.diag1);
516         } 
517         else if (unit->which != Z_OtherInfo_externallyDefinedInfo)
518         {
519             printf("unsupported otherInfo unit->which = %d\n", unit->which);
520         }
521         else 
522         {
523             printf("unsupported otherInfo unit external %d\n",
524                    unit->information.externallyDefinedInfo ? 
525                    unit->information.externallyDefinedInfo->which : -2);
526         }
527     }
528 }
529
530
531 /* ### should this share code with display_diagrecs()? */
532 static void render_diag(Z_DiagnosticFormat *diag) {
533     int i;
534
535     printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
536     for (i = 0; i < diag->num; i++) {
537         Z_DiagnosticFormat_s *ds = diag->elements[i];
538         printf("    %d: ", i+1);
539         switch (ds->which) {
540         case Z_DiagnosticFormat_s_defaultDiagRec: {
541             Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
542             /* ### should check `dd->diagnosticSetId' */
543             printf("code=%d (%s)", *dd->condition,
544                    diagbib1_str(*dd->condition));
545             /* Both types of addinfo are the same, so use type-pun */
546             if (dd->u.v2Addinfo != 0)
547                 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
548             break;
549         }
550         case Z_DiagnosticFormat_s_explicitDiagnostic:
551             printf("Explicit diagnostic (not supported)");
552             break;
553         default:
554             printf("Unrecognised diagnostic type %d", ds->which);
555             break;
556         }
557
558         if (ds->message != 0)
559             printf(", message='%s'", ds->message);
560         printf("\n");
561     }
562 }
563
564
565 static int set_base(const char *arg)
566 {
567     int i;
568     const char *cp;
569
570     for (i = 0; i<num_databaseNames; i++)
571         xfree (databaseNames[i]);
572     num_databaseNames = 0;
573     while (1)
574     {
575         char *cp1;
576         if (!(cp = strchr(arg, ' ')))
577             cp = arg + strlen(arg);
578         if (cp - arg < 1)
579             break;
580         databaseNames[num_databaseNames] = (char *)xmalloc (1 + cp - arg);
581         memcpy (databaseNames[num_databaseNames], arg, cp - arg);
582         databaseNames[num_databaseNames][cp - arg] = '\0';
583
584         for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
585             if (*cp1 == '+')
586                 *cp1 = ' ';
587         num_databaseNames++;
588
589         if (!*cp)
590             break;
591         arg = cp+1;
592     }
593     if (num_databaseNames == 0)
594     {
595         num_databaseNames = 1;
596         databaseNames[0] = xstrdup("");
597     }
598     return 1;
599 }
600
601 static int parse_cmd_doc(const char **arg, ODR out, char **buf,
602                          int *len, int opt)
603 {
604     const char *sep;
605     while (**arg && strchr(" \t\n\r\f", **arg))
606         (*arg)++;
607     if ((*arg)[0] == '\"' && (sep=strchr(*arg+1, '"')))
608     {
609         (*arg)++;
610         *len = sep - *arg;
611         *buf = odr_strdupn(out, *arg, *len);
612         (*arg) = sep+1;
613         return 1;
614     }
615     else if ((*arg)[0] && (*arg)[0] != '\"')
616     {
617         long fsize;
618         FILE *inf;
619         const char *fname;
620         const char *arg_start = *arg;
621         
622         while (**arg != '\0' && **arg != ' ')
623             (*arg)++;
624             
625         fname = odr_strdupn(out, arg_start, *arg - arg_start);
626
627         inf = fopen(fname, "rb");
628         if (!inf)
629         {
630             printf("Couldn't open %s\n", fname);
631             return 0;
632         }
633         if (fseek(inf, 0L, SEEK_END) == -1)
634         {
635             printf("Couldn't seek in %s\n", fname);
636             fclose(inf);
637             return 0;
638         }
639         fsize = ftell(inf);
640         if (fseek(inf, 0L, SEEK_SET) == -1)
641         {
642             printf("Couldn't seek in %s\n", fname);
643             fclose(inf);
644             return 0;
645         }
646         *len = fsize;
647         *buf = (char *) odr_malloc(out, fsize);
648         if (fread(*buf, 1, fsize, inf) != fsize)
649         {
650             printf("Unable to read %s\n", fname);
651             fclose(inf);
652             return 0;
653         }
654         fclose(inf);
655         return 1;
656     }
657     else if (**arg == '\0')
658     {
659         if (opt)
660         {
661             *len = 0;
662             *buf = 0;
663             return 1;
664         }
665         printf("Missing doc argument\n");
666     }
667     else
668         printf("Bad doc argument %s\n", *arg);
669     return 0;
670 }
671
672 static int cmd_base(const char *arg)
673 {
674     if (!*arg)
675     {
676         printf("Usage: base <database> <database> ...\n");
677         return 0;
678     }
679     return set_base(arg);
680 }
681
682 void cmd_open_remember_last_open_command(const char* arg, char* new_open_command)
683 {
684     if(last_open_command != arg) 
685     {
686         if(last_open_command) xfree(last_open_command);
687         last_open_command = xstrdup(new_open_command);
688     }
689 }
690
691 int session_connect(const char *arg)
692 {
693     void *add;
694     char type_and_host[101];
695     const char *basep = 0;
696 #if HAVE_OPENSSL_SSL_H
697     SSL *ssl;
698 #endif
699     if (conn)
700     {
701         cs_close (conn);
702         conn = 0;
703     }   
704     if (session_mem)
705     {
706         nmem_destroy (session_mem);
707         session_mem = NULL;
708         session_initResponse = 0;
709     }
710     cs_get_host_args(arg, &basep);
711
712     strncpy(type_and_host, arg, sizeof(type_and_host)-1);
713     type_and_host[sizeof(type_and_host)-1] = '\0';
714
715     cmd_open_remember_last_open_command(arg, type_and_host);
716
717     if (yazProxy)
718         conn = cs_create_host(yazProxy, 1, &add);
719     else
720         conn = cs_create_host(arg, 1, &add);
721     if (!conn)
722     {
723         printf ("Could not resolve address %s\n", arg);
724         return 0;
725     }
726 #if YAZ_HAVE_XML2
727     if (conn->protocol == PROTO_HTTP)
728         queryType = QueryType_CQL;
729 #else
730     if (conn->protocol == PROTO_HTTP)
731     {
732         printf ("SRW/HTTP not enabled in this YAZ\n");
733         cs_close(conn);
734         conn = 0;
735         return 0;
736     }
737 #endif
738     protocol = conn->protocol;
739     if (conn->protocol == PROTO_HTTP)
740         set_base("");
741     else
742         set_base("Default");
743     printf("Connecting...");
744     fflush(stdout);
745     if (cs_connect(conn, add) < 0)
746     {
747         printf ("error = %s\n", cs_strerror(conn));
748         cs_close(conn);
749         conn = 0;
750         return 0;
751     }
752     printf("OK.\n");
753 #if HAVE_OPENSSL_SSL_H
754     if ((ssl = (SSL *) cs_get_ssl(conn)))
755     {
756         X509 *server_cert = SSL_get_peer_certificate (ssl);
757
758         if (server_cert)
759         {
760             char *pem_buf;
761             int pem_len;
762             BIO *bio = BIO_new(BIO_s_mem());
763
764             /* get PEM buffer in memory */
765             PEM_write_bio_X509(bio, server_cert);
766             pem_len = BIO_get_mem_data(bio, &pem_buf);
767             fwrite(pem_buf, pem_len, 1, stdout);
768         
769             /* print all info on screen .. */
770             X509_print_fp(stdout, server_cert);
771             BIO_free(bio);
772
773             X509_free (server_cert);
774         }
775     }
776 #endif
777     if (basep && *basep)
778         set_base (basep);
779     if (protocol == PROTO_Z3950)
780     {
781         send_initRequest(type_and_host);
782         return 2;
783     }
784     return 0;
785 }
786
787 int cmd_open(const char *arg)
788 {
789     if (arg)
790     {
791         strncpy (cur_host, arg, sizeof(cur_host)-1);
792         cur_host[sizeof(cur_host)-1] = 0;
793     }
794     return session_connect(cur_host);
795 }
796
797 void try_reconnect(void)
798 {
799     char* open_command;
800         
801     if(!( auto_reconnect && last_open_command) ) return ;
802
803     open_command = (char *) xmalloc (strlen(last_open_command)+6);
804     strcpy (open_command, "open ");
805         
806     strcat (open_command, last_open_command);
807
808     process_cmd_line(open_command);
809         
810     xfree(open_command);                                
811 }
812
813 int cmd_authentication(const char *arg)
814 {
815     static Z_IdAuthentication au;
816     static char user[40], group[40], pass[40];
817     static Z_IdPass idPass;
818     int r;
819
820     if (!*arg)
821     {
822         printf("Auth field set to null\n");
823         auth = 0;
824         return 1;
825     }
826     r = sscanf (arg, "%39s %39s %39s", user, group, pass);
827     if (r == 0)
828     {
829         printf("Authentication set to null\n");
830         auth = 0;
831     }
832     if (r == 1)
833     {
834         auth = &au;
835         if (!strcmp(user, "-")) {
836             au.which = Z_IdAuthentication_anonymous;
837             printf("Authentication set to Anonymous\n");
838         } else {
839             au.which = Z_IdAuthentication_open;
840             au.u.open = user;
841             printf("Authentication set to Open (%s)\n", user);
842         }
843     }
844     if (r == 2)
845     {
846         auth = &au;
847         au.which = Z_IdAuthentication_idPass;
848         au.u.idPass = &idPass;
849         idPass.groupId = NULL;
850         idPass.userId = !strcmp(user, "-") ? 0 : user;
851         idPass.password = !strcmp(group, "-") ? 0 : group;
852         printf("Authentication set to User (%s), Pass (%s)\n", user, group);
853     }
854     if (r == 3)
855     {
856         auth = &au;
857         au.which = Z_IdAuthentication_idPass;
858         au.u.idPass = &idPass;
859         idPass.groupId = group;
860         idPass.userId = user;
861         idPass.password = pass;
862         printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
863                user, group, pass);
864     }
865     return 1;
866 }
867
868 /* SEARCH SERVICE ------------------------------ */
869 static void display_record(Z_External *r);
870
871 static void print_record(const unsigned char *buf, size_t len)
872 {
873     size_t i = len;
874     print_stringn (buf, len);
875     /* add newline if not already added ... */
876     if (i <= 0 || buf[i-1] != '\n')
877         printf ("\n");
878 }
879
880 static void display_record(Z_External *r)
881 {
882     const Odr_oid *oid = r->direct_reference;
883     
884     record_last = r;
885     /*
886      * Tell the user what we got.
887      */
888     if (oid)
889     {
890         oid_class oclass;
891         char oid_name_buf[OID_STR_MAX];
892         const char *oid_name
893             =  yaz_oid_to_string_buf(oid, &oclass, oid_name_buf);
894         printf("Record type: ");
895         if (oid_name)
896             printf("%s\n", oid_name);
897     }
898     /* Check if this is a known, ASN.1 type tucked away in an octet string */
899     if (r->which == Z_External_octet)
900     {
901         Z_ext_typeent *type = z_ext_getentbyref(r->direct_reference);
902         char *rr;
903
904         if (type)
905         {
906             /*
907              * Call the given decoder to process the record.
908              */
909             odr_setbuf(in, (char*)r->u.octet_aligned->buf,
910                 r->u.octet_aligned->len, 0);
911             if (!(*type->fun)(in, &rr, 0, 0))
912             {
913                 odr_perror(in, "Decoding constructed record.");
914                 fprintf(stdout, "[Near %ld]\n", (long) odr_offset(in));
915                 fprintf(stdout, "Packet dump:\n---------\n");
916                 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
917                             r->u.octet_aligned->len);
918                 fprintf(stdout, "---------\n");
919                 
920                 /* note just ignores the error ant print the bytes form the octet_aligned later */
921             } else {
922                 /*
923                  * Note: we throw away the original, BER-encoded record here.
924                  * Do something else with it if you want to keep it.
925                  */
926                 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
927                 r->which = type->what;
928             }
929         }
930     }
931     if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_soif))
932     {
933         print_record((const unsigned char *) r->u.octet_aligned->buf,
934                      r->u.octet_aligned->len);
935         if (marc_file)
936             fwrite (r->u.octet_aligned->buf, 1, r->u.octet_aligned->len, marc_file);
937     }
938     else if (oid && r->which == Z_External_octet)
939     {
940         const char *octet_buf = (char*)r->u.octet_aligned->buf;
941         if (oid && (!oid_oidcmp(oid, yaz_oid_recsyn_xml)
942                     || !oid_oidcmp(oid, yaz_oid_recsyn_xml)
943                     || !oid_oidcmp(oid, yaz_oid_recsyn_html)))
944         {
945             print_record((const unsigned char *) octet_buf,
946                          r->u.octet_aligned->len);
947         }
948         else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_postscript))
949         {
950             int size = r->u.octet_aligned->len;
951             if (size > 100)
952                 size = 100;
953             print_record((const unsigned char *) octet_buf, size);
954         }
955         else
956         {
957             if (oid && yaz_oid_is_iso2709(oid))
958             {
959                 const char *result;
960                 size_t rlen;
961                 yaz_iconv_t cd = 0;
962                 yaz_marc_t mt = yaz_marc_create();
963                 const char *from = 0;
964
965                 if (marcCharset && !strcmp(marcCharset, "auto"))
966                 {
967                     if (!oid_oidcmp(oid, yaz_oid_recsyn_usmarc))
968                     {
969                         if (octet_buf[9] == 'a')
970                             from = "UTF-8";
971                         else
972                             from = "MARC-8";
973                     }
974                     else
975                         from = "ISO-8859-1";
976                 }
977                 else if (marcCharset)
978                     from = marcCharset;
979                 if (outputCharset && from)
980                 {   
981                     cd = yaz_iconv_open(outputCharset, from);
982                     printf ("convert from %s to %s", from, 
983                             outputCharset);
984                     if (!cd)
985                         printf (" unsupported\n");
986                     else
987                     {
988                         yaz_marc_iconv(mt, cd);
989                         printf ("\n");
990                     }
991                 }
992                     
993                 if (yaz_marc_decode_buf(mt, octet_buf, r->u.octet_aligned->len,
994                                         &result, &rlen)> 0)
995                 {
996                     fwrite (result, rlen, 1, stdout);
997                 }
998                 else
999                 {
1000                     printf ("bad MARC. Dumping as it is:\n");
1001                     print_record((const unsigned char*) octet_buf,
1002                                   r->u.octet_aligned->len);
1003                 }       
1004                 yaz_marc_destroy(mt);
1005                 if (cd)
1006                     yaz_iconv_close(cd);
1007             }
1008             else
1009             {
1010                 print_record((const unsigned char*) octet_buf,
1011                              r->u.octet_aligned->len);
1012             }
1013         }
1014         if (marc_file)
1015             fwrite (octet_buf, 1, r->u.octet_aligned->len, marc_file);
1016     }
1017     else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_sutrs))
1018     {
1019         if (r->which != Z_External_sutrs)
1020         {
1021             printf("Expecting single SUTRS type for SUTRS.\n");
1022             return;
1023         }
1024         print_record(r->u.sutrs->buf, r->u.sutrs->len);
1025         if (marc_file)
1026             fwrite (r->u.sutrs->buf, 1, r->u.sutrs->len, marc_file);
1027     }
1028     else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_grs_1))
1029     {
1030         WRBUF w;
1031         if (r->which != Z_External_grs1)
1032         {
1033             printf("Expecting single GRS type for GRS.\n");
1034             return;
1035         }
1036         w = wrbuf_alloc();
1037         yaz_display_grs1(w, r->u.grs1, 0);
1038         puts (wrbuf_cstr(w));
1039         wrbuf_destroy(w);
1040     }
1041     else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_opac))
1042     {
1043         int i;
1044         if (r->u.opac->bibliographicRecord)
1045             display_record(r->u.opac->bibliographicRecord);
1046         for (i = 0; i<r->u.opac->num_holdingsData; i++)
1047         {
1048             Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
1049             if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
1050             {
1051                 printf ("MARC holdings %d\n", i);
1052                 display_record(h->u.marcHoldingsRecord);
1053             }
1054             else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
1055             {
1056                 int j;
1057
1058                 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
1059
1060                 printf ("Data holdings %d\n", i);
1061                 if (data->typeOfRecord)
1062                     printf ("typeOfRecord: %s\n", data->typeOfRecord);
1063                 if (data->encodingLevel)
1064                     printf ("encodingLevel: %s\n", data->encodingLevel);
1065                 if (data->receiptAcqStatus)
1066                     printf ("receiptAcqStatus: %s\n", data->receiptAcqStatus);
1067                 if (data->generalRetention)
1068                     printf ("generalRetention: %s\n", data->generalRetention);
1069                 if (data->completeness)
1070                     printf ("completeness: %s\n", data->completeness);
1071                 if (data->dateOfReport)
1072                     printf ("dateOfReport: %s\n", data->dateOfReport);
1073                 if (data->nucCode)
1074                     printf ("nucCode: %s\n", data->nucCode);
1075                 if (data->localLocation)
1076                     printf ("localLocation: %s\n", data->localLocation);
1077                 if (data->shelvingLocation)
1078                     printf ("shelvingLocation: %s\n", data->shelvingLocation);
1079                 if (data->callNumber)
1080                     printf ("callNumber: %s\n", data->callNumber);
1081                 if (data->shelvingData)
1082                     printf ("shelvingData: %s\n", data->shelvingData);
1083                 if (data->copyNumber)
1084                     printf ("copyNumber: %s\n", data->copyNumber);
1085                 if (data->publicNote)
1086                     printf ("publicNote: %s\n", data->publicNote);
1087                 if (data->reproductionNote)
1088                     printf ("reproductionNote: %s\n", data->reproductionNote);
1089                 if (data->termsUseRepro)
1090                     printf ("termsUseRepro: %s\n", data->termsUseRepro);
1091                 if (data->enumAndChron)
1092                     printf ("enumAndChron: %s\n", data->enumAndChron);
1093                 for (j = 0; j<data->num_volumes; j++)
1094                 {
1095                     printf ("volume %d\n", j);
1096                     if (data->volumes[j]->enumeration)
1097                         printf (" enumeration: %s\n",
1098                                 data->volumes[j]->enumeration);
1099                     if (data->volumes[j]->chronology)
1100                         printf (" chronology: %s\n",
1101                                 data->volumes[j]->chronology);
1102                     if (data->volumes[j]->enumAndChron)
1103                         printf (" enumAndChron: %s\n",
1104                                 data->volumes[j]->enumAndChron);
1105                 }
1106                 for (j = 0; j<data->num_circulationData; j++)
1107                 {
1108                     printf ("circulation %d\n", j);
1109                     if (data->circulationData[j]->availableNow)
1110                         printf (" availableNow: %d\n",
1111                                 *data->circulationData[j]->availableNow);
1112                     if (data->circulationData[j]->availablityDate)
1113                         printf (" availabiltyDate: %s\n",
1114                                 data->circulationData[j]->availablityDate);
1115                     if (data->circulationData[j]->availableThru)
1116                         printf (" availableThru: %s\n",
1117                                 data->circulationData[j]->availableThru);
1118                     if (data->circulationData[j]->restrictions)
1119                         printf (" restrictions: %s\n",
1120                                 data->circulationData[j]->restrictions);
1121                     if (data->circulationData[j]->itemId)
1122                         printf (" itemId: %s\n",
1123                                 data->circulationData[j]->itemId);
1124                     if (data->circulationData[j]->renewable)
1125                         printf (" renewable: %d\n",
1126                                 *data->circulationData[j]->renewable);
1127                     if (data->circulationData[j]->onHold)
1128                         printf (" onHold: %d\n",
1129                                 *data->circulationData[j]->onHold);
1130                     if (data->circulationData[j]->enumAndChron)
1131                         printf (" enumAndChron: %s\n",
1132                                 data->circulationData[j]->enumAndChron);
1133                     if (data->circulationData[j]->midspine)
1134                         printf (" midspine: %s\n",
1135                                 data->circulationData[j]->midspine);
1136                     if (data->circulationData[j]->temporaryLocation)
1137                         printf (" temporaryLocation: %s\n",
1138                                 data->circulationData[j]->temporaryLocation);
1139                 }
1140             }
1141         }
1142     }
1143     else 
1144     {
1145         printf("Unknown record representation.\n");
1146         if (!z_External(print, &r, 0, 0))
1147         {
1148             odr_perror(print, "Printing external");
1149             odr_reset(print);
1150         }
1151     }
1152 }
1153
1154 static void display_diagrecs(Z_DiagRec **pp, int num)
1155 {
1156     int i;
1157     Z_DefaultDiagFormat *r;
1158
1159     printf("Diagnostic message(s) from database:\n");
1160     for (i = 0; i<num; i++)
1161     {
1162         Z_DiagRec *p = pp[i];
1163         if (p->which != Z_DiagRec_defaultFormat)
1164         {
1165             printf("Diagnostic record not in default format.\n");
1166             return;
1167         }
1168         else
1169             r = p->u.defaultFormat;
1170
1171         if (!r->diagnosticSetId)
1172             printf("Missing diagset\n");
1173         else
1174         {
1175             oid_class oclass;
1176             char diag_name_buf[OID_STR_MAX];
1177             const char *diag_name = 0;
1178             diag_name = yaz_oid_to_string_buf
1179                 (r->diagnosticSetId, &oclass, diag_name_buf);
1180             if (oid_oidcmp(r->diagnosticSetId, yaz_oid_diagset_bib_1))
1181                 printf("Unknown diagset: %s\n", diag_name);
1182         }
1183         printf("    [%d] %s", *r->condition, diagbib1_str(*r->condition));
1184         switch (r->which)
1185         {
1186         case Z_DefaultDiagFormat_v2Addinfo:
1187             printf (" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1188             break;
1189         case Z_DefaultDiagFormat_v3Addinfo:
1190             printf (" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1191             break;
1192         }
1193     }
1194 }
1195
1196
1197 static void display_nameplusrecord(Z_NamePlusRecord *p)
1198 {
1199     if (p->databaseName)
1200         printf("[%s]", p->databaseName);
1201     if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1202         display_diagrecs(&p->u.surrogateDiagnostic, 1);
1203     else if (p->which == Z_NamePlusRecord_databaseRecord)
1204         display_record(p->u.databaseRecord);
1205 }
1206
1207 static void display_records(Z_Records *p)
1208 {
1209     int i;
1210
1211     if (p->which == Z_Records_NSD)
1212     {
1213         Z_DiagRec dr, *dr_p = &dr;
1214         dr.which = Z_DiagRec_defaultFormat;
1215         dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1216         display_diagrecs (&dr_p, 1);
1217     }
1218     else if (p->which == Z_Records_multipleNSD)
1219         display_diagrecs (p->u.multipleNonSurDiagnostics->diagRecs,
1220                           p->u.multipleNonSurDiagnostics->num_diagRecs);
1221     else 
1222     {
1223         printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1224         for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1225             display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1226     }
1227 }
1228
1229 static int send_deleteResultSetRequest(const char *arg)
1230 {
1231     char names[8][32];
1232     int i;
1233
1234     Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1235     Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1236
1237     req->referenceId = set_refid (out);
1238
1239     req->num_resultSetList =
1240         sscanf (arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1241                 names[0], names[1], names[2], names[3],
1242                 names[4], names[5], names[6], names[7]);
1243
1244     req->deleteFunction = (int *)
1245         odr_malloc (out, sizeof(*req->deleteFunction));
1246     if (req->num_resultSetList > 0)
1247     {
1248         *req->deleteFunction = Z_DeleteResultSetRequest_list;
1249         req->resultSetList = (char **)
1250             odr_malloc (out, sizeof(*req->resultSetList)*
1251                         req->num_resultSetList);
1252         for (i = 0; i<req->num_resultSetList; i++)
1253             req->resultSetList[i] = names[i];
1254     }
1255     else
1256     {
1257         *req->deleteFunction = Z_DeleteResultSetRequest_all;
1258         req->resultSetList = 0;
1259     }
1260     
1261     send_apdu(apdu);
1262     printf("Sent deleteResultSetRequest.\n");
1263     return 2;
1264 }
1265
1266 #if YAZ_HAVE_XML2
1267 static int send_srw(Z_SRW_PDU *sr)
1268 {
1269     const char *charset = negotiationCharset;
1270     const char *host_port = cur_host;
1271     Z_GDU *gdu;
1272     char *path = 0;
1273
1274     path = (char *) odr_malloc(out, 2+strlen(databaseNames[0]));
1275     *path = '/';
1276     strcpy(path+1, databaseNames[0]);
1277
1278     gdu = z_get_HTTP_Request_host_path(out, host_port, path);
1279
1280     if (!yaz_matchstr(sru_method, "get"))
1281     {
1282         yaz_sru_get_encode(gdu->u.HTTP_Request, sr, out, charset);
1283     }
1284     else if (!yaz_matchstr(sru_method, "post"))
1285     {
1286         yaz_sru_post_encode(gdu->u.HTTP_Request, sr, out, charset);
1287     }
1288     else if (!yaz_matchstr(sru_method, "soap"))
1289     {
1290         yaz_sru_soap_encode(gdu->u.HTTP_Request, sr, out, charset);
1291     }
1292
1293     if (z_GDU(out, &gdu, 0, 0))
1294     {
1295         /* encode OK */
1296         char *buf_out;
1297         int len_out;
1298         int r;
1299         if (apdu_file)
1300         {
1301             if (!z_GDU(print, &gdu, 0, 0))
1302                 printf ("Failed to print outgoing SRU package\n");
1303             odr_reset(print);
1304         }
1305         buf_out = odr_getbuf(out, &len_out, 0);
1306         
1307         /* we don't odr_reset(out), since we may need the buffer again */
1308
1309         do_hex_dump(buf_out, len_out);
1310
1311         r = cs_put(conn, buf_out, len_out);
1312
1313         if (r >= 0)
1314             return 2;
1315     }
1316     return 0;
1317 }
1318 #endif
1319
1320 #if YAZ_HAVE_XML2
1321 static char *encode_SRW_term(ODR o, const char *q)
1322 {
1323     const char *in_charset = "ISO-8859-1";
1324     WRBUF w = wrbuf_alloc();
1325     yaz_iconv_t cd;
1326     char *res;
1327     if (outputCharset)
1328         in_charset = outputCharset;
1329     cd = yaz_iconv_open("UTF-8", in_charset);
1330     if (!cd)
1331     {
1332         wrbuf_destroy(w);
1333         return odr_strdup(o, q);
1334     }
1335     wrbuf_iconv_write(w, cd, q, strlen(q));
1336     if (wrbuf_len(w))
1337         res = odr_strdup(o, wrbuf_cstr(w));
1338     else
1339         res = odr_strdup(o, q);    
1340     yaz_iconv_close(cd);
1341     wrbuf_destroy(w);
1342     return res;
1343 }
1344
1345
1346 static int send_SRW_scanRequest(const char *arg, int pos, int num)
1347 {
1348     Z_SRW_PDU *sr = 0;
1349     
1350     /* regular requestse .. */
1351     sr = yaz_srw_get_pdu(out, Z_SRW_scan_request, sru_version);
1352
1353     switch(queryType)
1354     {
1355     case QueryType_CQL:
1356         sr->u.scan_request->query_type = Z_SRW_query_type_cql;
1357         sr->u.scan_request->scanClause.cql = encode_SRW_term(out, arg);
1358         break;
1359     case QueryType_Prefix:
1360         sr->u.scan_request->query_type = Z_SRW_query_type_pqf;
1361         sr->u.scan_request->scanClause.pqf = encode_SRW_term(out, arg);
1362         break;
1363     default:
1364         printf ("Only CQL and PQF supported in SRW\n");
1365         return 0;
1366     }
1367     sr->u.scan_request->responsePosition = odr_intdup(out, pos);
1368     sr->u.scan_request->maximumTerms = odr_intdup(out, num);
1369     return send_srw(sr);
1370 }
1371
1372 static int send_SRW_searchRequest(const char *arg)
1373 {
1374     Z_SRW_PDU *sr = 0;
1375     
1376     if (!srw_sr)
1377     {
1378         assert(srw_sr_odr_out == 0);
1379         srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1380     }
1381     odr_reset(srw_sr_odr_out);
1382
1383     setno = 1;
1384
1385     /* save this for later .. when fetching individual records */
1386     srw_sr =  yaz_srw_get_pdu(srw_sr_odr_out, Z_SRW_searchRetrieve_request,
1387                               sru_version);
1388     
1389     /* regular request .. */
1390     sr = yaz_srw_get_pdu(out, Z_SRW_searchRetrieve_request, sru_version);
1391
1392     switch(queryType)
1393     {
1394     case QueryType_CQL:
1395         srw_sr->u.request->query_type = Z_SRW_query_type_cql;
1396         srw_sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1397
1398         sr->u.request->query_type = Z_SRW_query_type_cql;
1399         sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1400         break;
1401     case QueryType_Prefix:
1402         srw_sr->u.request->query_type = Z_SRW_query_type_pqf;
1403         srw_sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1404
1405         sr->u.request->query_type = Z_SRW_query_type_pqf;
1406         sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1407         break;
1408     default:
1409         printf ("Only CQL and PQF supported in SRW\n");
1410         return 0;
1411     }
1412     sr->u.request->maximumRecords = odr_intdup(out, 0);
1413
1414     if (record_schema)
1415         sr->u.request->recordSchema = record_schema;
1416     if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
1417         sr->u.request->recordPacking = "xml";
1418     return send_srw(sr);
1419 }
1420 #endif
1421
1422 static void query_charset_convert(Z_RPNQuery *q)
1423 {
1424     if (queryCharset && outputCharset)
1425     {
1426         yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
1427         if (!cd)
1428         {
1429             printf("Conversion from %s to %s unsupported\n",
1430                    outputCharset, queryCharset);
1431             return;
1432         }
1433         yaz_query_charset_convert_rpnquery(q, out, cd);
1434         yaz_iconv_close(cd);
1435     }
1436 }
1437
1438 static int send_searchRequest(const char *arg)
1439 {
1440     Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1441     Z_SearchRequest *req = apdu->u.searchRequest;
1442     Z_Query query;
1443     struct ccl_rpn_node *rpn = NULL;
1444     int error, pos;
1445     char setstring[100];
1446     Z_RPNQuery *RPNquery;
1447     Odr_oct ccl_query;
1448     YAZ_PQF_Parser pqf_parser;
1449     Z_External *ext;
1450     QueryType myQueryType = queryType;
1451     char pqfbuf[512];
1452
1453     if (myQueryType == QueryType_CCL2RPN)
1454     {
1455         rpn = ccl_find_str(bibset, arg, &error, &pos);
1456         if (error)
1457         {
1458             printf("CCL ERROR: %s\n", ccl_err_msg(error));
1459             return 0;
1460         }
1461     } else if (myQueryType == QueryType_CQL2RPN) {
1462         /* ### All this code should be wrapped in a utility function */
1463         CQL_parser parser;
1464         struct cql_node *node;
1465         const char *addinfo;
1466         if (cqltrans == 0) {
1467             printf("Can't use CQL: no translation file.  Try set_cqlfile\n");
1468             return 0;
1469         }
1470         parser = cql_parser_create();
1471         if ((error = cql_parser_string(parser, arg)) != 0) {
1472             printf("Can't parse CQL: must be a syntax error\n");
1473             return 0;
1474         }
1475         node = cql_parser_result(parser);
1476         if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1477                                        sizeof pqfbuf)) != 0) {
1478             error = cql_transform_error(cqltrans, &addinfo);
1479             printf ("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1480                     cql_strerror(error), addinfo);
1481             return 0;
1482         }
1483         arg = pqfbuf;
1484         myQueryType = QueryType_Prefix;
1485     }
1486
1487     req->referenceId = set_refid (out);
1488     if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1489     {
1490         static unsigned char big[2100];
1491         static Odr_oct bigo;
1492
1493         /* send a very big referenceid to test transport stack etc. */
1494         memset(big, 'A', 2100);
1495         bigo.len = bigo.size = 2100;
1496         bigo.buf = big;
1497         req->referenceId = &bigo;
1498     }
1499     
1500     if (setnumber >= 0)
1501     {
1502         sprintf(setstring, "%d", ++setnumber);
1503         req->resultSetName = setstring;
1504     }
1505     *req->smallSetUpperBound = smallSetUpperBound;
1506     *req->largeSetLowerBound = largeSetLowerBound;
1507     *req->mediumSetPresentNumber = mediumSetPresentNumber;
1508     if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1509         mediumSetPresentNumber > 0))
1510     {
1511         if (recordsyntax_size)
1512             req->preferredRecordSyntax =
1513                 yaz_string_to_oid_odr(yaz_oid_std(), 
1514                                       CLASS_RECSYN, recordsyntax_list[0], out);
1515
1516         req->smallSetElementSetNames =
1517             req->mediumSetElementSetNames = elementSetNames;
1518     }
1519     req->num_databaseNames = num_databaseNames;
1520     req->databaseNames = databaseNames;
1521
1522     req->query = &query;
1523
1524     switch (myQueryType)
1525     {
1526     case QueryType_Prefix:
1527         query.which = Z_Query_type_1;
1528         pqf_parser = yaz_pqf_create ();
1529         RPNquery = yaz_pqf_parse (pqf_parser, out, arg);
1530         if (!RPNquery)
1531         {
1532             const char *pqf_msg;
1533             size_t off;
1534             int code = yaz_pqf_error (pqf_parser, &pqf_msg, &off);
1535             int ioff = off;
1536             printf("%*s^\n", ioff+4, "");
1537             printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1538             
1539             yaz_pqf_destroy (pqf_parser);
1540             return 0;
1541         }
1542         yaz_pqf_destroy (pqf_parser);
1543         query_charset_convert(RPNquery);
1544         query.u.type_1 = RPNquery;
1545         break;
1546     case QueryType_CCL:
1547         query.which = Z_Query_type_2;
1548         query.u.type_2 = &ccl_query;
1549         ccl_query.buf = (unsigned char*) arg;
1550         ccl_query.len = strlen(arg);
1551         break;
1552     case QueryType_CCL2RPN:
1553         query.which = Z_Query_type_1;
1554         RPNquery = ccl_rpn_query(out, rpn);
1555         if (!RPNquery)
1556         {
1557             printf ("Couldn't convert from CCL to RPN\n");
1558             return 0;
1559         }
1560         query_charset_convert(RPNquery);
1561         query.u.type_1 = RPNquery;
1562         ccl_rpn_delete (rpn);
1563         break;
1564     case QueryType_CQL:
1565         query.which = Z_Query_type_104;
1566         ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1567         ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1568         ext->indirect_reference = 0;
1569         ext->descriptor = 0;
1570         ext->which = Z_External_CQL;
1571         ext->u.cql = odr_strdup(out, arg);
1572         query.u.type_104 =  ext;
1573         break;
1574     default:
1575         printf ("Unsupported query type\n");
1576         return 0;
1577     }
1578     if (send_apdu(apdu))
1579         printf("Sent searchRequest.\n");
1580     setno = 1;
1581     return 2;
1582 }
1583
1584 /* display Query Expression as part of searchResult-1 */
1585 static void display_queryExpression (const char *lead, Z_QueryExpression *qe)
1586 {
1587     if (!qe)
1588         return;
1589     printf(" %s=", lead);
1590     if (qe->which == Z_QueryExpression_term)
1591     {
1592         if (qe->u.term->queryTerm)
1593         {
1594             Z_Term *term = qe->u.term->queryTerm;
1595             switch (term->which)
1596             {
1597             case Z_Term_general:
1598                 printf ("%.*s", term->u.general->len, term->u.general->buf);
1599                 break;
1600             case Z_Term_characterString:
1601                 printf ("%s", term->u.characterString);
1602                 break;
1603             case Z_Term_numeric:
1604                 printf ("%d", *term->u.numeric);
1605                 break;
1606             case Z_Term_null:
1607                 printf ("null");
1608                 break;
1609             }
1610         }
1611     }
1612 }
1613
1614 /* see if we can find USR:SearchResult-1 */
1615 static void display_searchResult (Z_OtherInformation *o)
1616 {
1617     int i;
1618     if (!o)
1619         return ;
1620     for (i = 0; i < o->num_elements; i++)
1621     {
1622         if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1623         {
1624             Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1625             
1626             if (ext->which == Z_External_searchResult1)
1627             {
1628                 int j;
1629                 Z_SearchInfoReport *sr = ext->u.searchResult1;
1630                 printf ("SearchResult-1:");
1631                 for (j = 0; j < sr->num; j++)
1632                 {
1633                     if (j)
1634                         printf(",");
1635                     if (!sr->elements[j]->subqueryExpression)
1636                         printf("%d", j);
1637                     display_queryExpression("term",
1638                         sr->elements[j]->subqueryExpression);
1639                     display_queryExpression("interpretation",
1640                         sr->elements[j]->subqueryInterpretation);
1641                     display_queryExpression("recommendation",
1642                         sr->elements[j]->subqueryRecommendation);
1643                     if (sr->elements[j]->subqueryCount)
1644                         printf(" cnt=%d", *sr->elements[j]->subqueryCount);
1645                     if (sr->elements[j]->subqueryId)
1646                         printf(" id=%s ", sr->elements[j]->subqueryId);
1647                 }
1648                 printf ("\n");
1649             }
1650         }
1651     }
1652 }
1653
1654 static int process_searchResponse(Z_SearchResponse *res)
1655 {
1656     printf ("Received SearchResponse.\n");
1657     print_refid (res->referenceId);
1658     if (*res->searchStatus)
1659         printf("Search was a success.\n");
1660     else
1661         printf("Search was a bloomin' failure.\n");
1662     printf("Number of hits: %d", *res->resultCount);
1663     last_hit_count = *res->resultCount;
1664     if (setnumber >= 0)
1665         printf (", setno %d", setnumber);
1666     putchar('\n');
1667     if (res->resultSetStatus)
1668     {
1669         printf("Result Set Status: ");
1670         switch(*res->resultSetStatus)
1671         {
1672         case Z_SearchResponse_subset:
1673             printf("subset"); break;
1674         case Z_SearchResponse_interim:
1675             printf("interim"); break;
1676         case Z_SearchResponse_none:
1677             printf("none"); break;
1678         case Z_SearchResponse_estimate:
1679             printf("estimate"); break;
1680         default:
1681             printf("%d", *res->resultSetStatus);
1682         }            
1683         putchar('\n');
1684     }
1685     display_searchResult (res->additionalSearchInfo);
1686     printf("records returned: %d\n",
1687            *res->numberOfRecordsReturned);
1688     setno += *res->numberOfRecordsReturned;
1689     if (res->records)
1690         display_records(res->records);
1691     return 0;
1692 }
1693
1694 static void print_level(int iLevel)
1695 {
1696     int i;
1697     for (i = 0; i < iLevel * 4; i++)
1698         printf(" ");
1699 }
1700
1701 static void print_int(int iLevel, const char *pTag, int *pInt)
1702 {
1703     if (pInt != NULL)
1704     {
1705         print_level(iLevel);
1706         printf("%s: %d\n", pTag, *pInt);
1707     }
1708 }
1709
1710 static void print_string(int iLevel, const char *pTag, const char *pString)
1711 {
1712     if (pString != NULL)
1713     {
1714         print_level(iLevel);
1715         printf("%s: %s\n", pTag, pString);
1716     }
1717 }
1718
1719 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1720 {
1721     if (pOid != NULL)
1722     {
1723         Odr_oid *pInt = pOid;
1724
1725         print_level(iLevel);
1726         printf("%s:", pTag);
1727         for (; *pInt != -1; pInt++)
1728             printf(" %d", *pInt);
1729         printf("\n");
1730     }
1731 }
1732
1733 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1734 {
1735     if (referenceId != NULL)
1736     {
1737         int i;
1738
1739         print_level(iLevel);
1740         printf("Ref Id (%d, %d): ", referenceId->len, referenceId->size);
1741         for (i = 0; i < referenceId->len; i++)
1742             printf("%c", referenceId->buf[i]);
1743         printf("\n");
1744     }
1745 }
1746
1747 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1748 {
1749     if (pStringNumeric != NULL)
1750     {
1751         switch (pStringNumeric->which)
1752         {
1753         case Z_StringOrNumeric_string:
1754             print_string(iLevel, pTag, pStringNumeric->u.string);
1755             break;
1756             
1757         case Z_StringOrNumeric_numeric:
1758             print_int(iLevel, pTag, pStringNumeric->u.numeric);
1759             break;
1760             
1761         default:
1762             print_level(iLevel);
1763             printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1764             break;
1765         }
1766     }
1767 }
1768
1769 static void print_universe_report_duplicate(
1770     int iLevel,
1771     Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1772 {
1773     if (pUniverseReportDuplicate != NULL)
1774     {
1775         print_level(iLevel);
1776         printf("Universe Report Duplicate: \n");
1777         iLevel++;
1778         print_string_or_numeric(iLevel, "Hit No",
1779                                 pUniverseReportDuplicate->hitno);
1780     }
1781 }
1782
1783 static void print_universe_report_hits(
1784     int iLevel,
1785     Z_UniverseReportHits *pUniverseReportHits)
1786 {
1787     if (pUniverseReportHits != NULL)
1788     {
1789         print_level(iLevel);
1790         printf("Universe Report Hits: \n");
1791         iLevel++;
1792         print_string_or_numeric(iLevel, "Database",
1793                                 pUniverseReportHits->database);
1794         print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1795     }
1796 }
1797
1798 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1799 {
1800     if (pUniverseReport != NULL)
1801     {
1802         print_level(iLevel);
1803         printf("Universe Report: \n");
1804         iLevel++;
1805         print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1806         switch (pUniverseReport->which)
1807         {
1808         case Z_UniverseReport_databaseHits:
1809             print_universe_report_hits(iLevel,
1810                                        pUniverseReport->u.databaseHits);
1811             break;
1812             
1813         case Z_UniverseReport_duplicate:
1814             print_universe_report_duplicate(iLevel,
1815                                             pUniverseReport->u.duplicate);
1816             break;
1817             
1818         default:
1819             print_level(iLevel);
1820             printf("Type: %d\n", pUniverseReport->which);
1821             break;
1822         }
1823     }
1824 }
1825
1826 static void print_external(int iLevel, Z_External *pExternal)
1827 {
1828     if (pExternal != NULL)
1829     {
1830         print_level(iLevel);
1831         printf("External: \n");
1832         iLevel++;
1833         print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
1834         print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
1835         print_string(iLevel, "Descriptor", pExternal->descriptor);
1836         switch (pExternal->which)
1837         {
1838         case Z_External_universeReport:
1839             print_universe_report(iLevel, pExternal->u.universeReport);
1840             break;
1841             
1842         default:
1843             print_level(iLevel);
1844             printf("Type: %d\n", pExternal->which);
1845             break;
1846         }
1847     }
1848 }
1849
1850 static int process_resourceControlRequest (Z_ResourceControlRequest *req)
1851 {
1852     printf ("Received ResourceControlRequest.\n");
1853     print_referenceId(1, req->referenceId);
1854     print_int(1, "Suspended Flag", req->suspendedFlag);
1855     print_int(1, "Partial Results Available", req->partialResultsAvailable);
1856     print_int(1, "Response Required", req->responseRequired);
1857     print_int(1, "Triggered Request Flag", req->triggeredRequestFlag);
1858     print_external(1, req->resourceReport);
1859     return 0;
1860 }
1861
1862 void process_ESResponse(Z_ExtendedServicesResponse *res)
1863 {
1864     printf("Status: ");
1865     switch (*res->operationStatus)
1866     {
1867     case Z_ExtendedServicesResponse_done:
1868         printf ("done\n");
1869         break;
1870     case Z_ExtendedServicesResponse_accepted:
1871         printf ("accepted\n");
1872         break;
1873     case Z_ExtendedServicesResponse_failure:
1874         printf ("failure\n");
1875         display_diagrecs(res->diagnostics, res->num_diagnostics);
1876         break;
1877     default:
1878         printf ("unknown\n");
1879     }
1880     if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
1881         (res->num_diagnostics != 0) ) {
1882         display_diagrecs(res->diagnostics, res->num_diagnostics);
1883     }
1884     print_refid (res->referenceId);
1885     if (res->taskPackage && 
1886         res->taskPackage->which == Z_External_extendedService)
1887     {
1888         Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
1889         Odr_oct *id = taskPackage->targetReference;
1890         Z_External *ext = taskPackage->taskSpecificParameters;
1891         
1892         if (id)
1893         {
1894             printf ("Target Reference: ");
1895             print_stringn (id->buf, id->len);
1896             printf ("\n");
1897         }
1898         if (ext->which == Z_External_update)
1899         {
1900             Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
1901             if (utp && utp->targetPart)
1902             {
1903                 Z_IUTargetPart *targetPart = utp->targetPart;
1904                 int i;
1905
1906                 for (i = 0; i<targetPart->num_taskPackageRecords;  i++)
1907                 {
1908
1909                     Z_IUTaskPackageRecordStructure *tpr =
1910                         targetPart->taskPackageRecords[i];
1911                     printf ("task package record %d\n", i+1);
1912                     if (tpr->which == Z_IUTaskPackageRecordStructure_record)
1913                     {
1914                         display_record (tpr->u.record);
1915                     }
1916                     else
1917                     {
1918                         printf ("other type\n");
1919                     }
1920                 }
1921             }
1922         }
1923         if (ext->which == Z_External_itemOrder)
1924         {
1925             Z_IOTaskPackage *otp = ext->u.itemOrder->u.taskPackage;
1926             if (otp && otp->targetPart && otp->targetPart->itemRequest)
1927             {
1928                 Z_External *ext = otp->targetPart->itemRequest;
1929                 if (ext->which == Z_External_octet)
1930                 {
1931                     Odr_oct *doc = ext->u.octet_aligned;
1932                     printf("Got itemRequest doc %.*s\n",
1933                            doc->len, doc->buf);
1934                 }
1935             }
1936         }
1937     }
1938     if (res->taskPackage && res->taskPackage->which == Z_External_octet)
1939     {
1940         Odr_oct *doc = res->taskPackage->u.octet_aligned;
1941         printf("%.*s\n", doc->len, doc->buf);
1942     }
1943 }
1944
1945 const char *get_ill_element (void *clientData, const char *element)
1946 {
1947     return 0;
1948 }
1949
1950 static Z_External *create_external_itemRequest(void)
1951 {
1952     struct ill_get_ctl ctl;
1953     ILL_ItemRequest *req;
1954     Z_External *r = 0;
1955     int item_request_size = 0;
1956     char *item_request_buf = 0;
1957
1958     ctl.odr = out;
1959     ctl.clientData = 0;
1960     ctl.f = get_ill_element;
1961     
1962     req = ill_get_ItemRequest(&ctl, "ill", 0);
1963     if (!req)
1964         printf ("ill_get_ItemRequest failed\n");
1965         
1966     if (!ill_ItemRequest (out, &req, 0, 0))
1967     {
1968         if (apdu_file)
1969         {
1970             ill_ItemRequest(print, &req, 0, 0);
1971             odr_reset(print);
1972         }
1973         item_request_buf = odr_getbuf (out, &item_request_size, 0);
1974         if (item_request_buf)
1975             odr_setbuf (out, item_request_buf, item_request_size, 1);
1976         printf ("Couldn't encode ItemRequest, size %d\n", item_request_size);
1977         return 0;
1978     }
1979     else
1980     {
1981         r = (Z_External *) odr_malloc (out, sizeof(*r));
1982         r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
1983         r->indirect_reference = 0;
1984         r->descriptor = 0;
1985         r->which = Z_External_single;
1986         
1987         r->u.single_ASN1_type = (Odr_oct *)
1988             odr_malloc (out, sizeof(*r->u.single_ASN1_type));
1989         r->u.single_ASN1_type->buf = (unsigned char *)
1990         odr_malloc (out, item_request_size);
1991         r->u.single_ASN1_type->len = item_request_size;
1992         r->u.single_ASN1_type->size = item_request_size;
1993         memcpy (r->u.single_ASN1_type->buf, item_request_buf,
1994                 item_request_size);
1995         
1996         do_hex_dump(item_request_buf,item_request_size);
1997     }
1998     return r;
1999 }
2000
2001 static Z_External *create_external_ILL_APDU(int which)
2002 {
2003     struct ill_get_ctl ctl;
2004     ILL_APDU *ill_apdu;
2005     Z_External *r = 0;
2006     int ill_request_size = 0;
2007     char *ill_request_buf = 0;
2008         
2009     ctl.odr = out;
2010     ctl.clientData = 0;
2011     ctl.f = get_ill_element;
2012
2013     ill_apdu = ill_get_APDU(&ctl, "ill", 0);
2014
2015     if (!ill_APDU (out, &ill_apdu, 0, 0))
2016     {
2017         if (apdu_file)
2018         {
2019             printf ("-------------------\n");
2020             ill_APDU(print, &ill_apdu, 0, 0);
2021             odr_reset(print);
2022             printf ("-------------------\n");
2023         }
2024         ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2025         if (ill_request_buf)
2026             odr_setbuf (out, ill_request_buf, ill_request_size, 1);
2027         printf ("Couldn't encode ILL-Request, size %d\n", ill_request_size);
2028         return 0;
2029     }
2030     else
2031     {
2032         ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2033         
2034         r = (Z_External *) odr_malloc (out, sizeof(*r));
2035         r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2036         r->indirect_reference = 0;
2037         r->descriptor = 0;
2038         r->which = Z_External_single;
2039         
2040         r->u.single_ASN1_type = (Odr_oct *)
2041             odr_malloc (out, sizeof(*r->u.single_ASN1_type));
2042         r->u.single_ASN1_type->buf = (unsigned char *)
2043         odr_malloc (out, ill_request_size);
2044         r->u.single_ASN1_type->len = ill_request_size;
2045         r->u.single_ASN1_type->size = ill_request_size;
2046         memcpy (r->u.single_ASN1_type->buf, ill_request_buf, ill_request_size);
2047 /*         printf ("len = %d\n", ill_request_size); */
2048 /*              do_hex_dump(ill_request_buf,ill_request_size); */
2049 /*              printf("--- end of extenal\n"); */
2050
2051     }
2052     return r;
2053 }
2054
2055
2056 static Z_External *create_ItemOrderExternal(const char *type, int itemno)
2057 {
2058     Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
2059     r->direct_reference = odr_oiddup(out, yaz_oid_extserv_item_order);
2060     r->indirect_reference = 0;
2061     r->descriptor = 0;
2062
2063     r->which = Z_External_itemOrder;
2064
2065     r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
2066     memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
2067     r->u.itemOrder->which=Z_IOItemOrder_esRequest;
2068
2069     r->u.itemOrder->u.esRequest = (Z_IORequest *) 
2070         odr_malloc(out,sizeof(Z_IORequest));
2071     memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
2072
2073     r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
2074         odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
2075     memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
2076     r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
2077         odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
2078     memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
2079
2080     r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
2081     r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
2082     r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
2083
2084     r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
2085         (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
2086     memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
2087     r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
2088
2089     r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
2090         (int *) odr_malloc(out, sizeof(int));
2091     *r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item = itemno;
2092
2093     if (!strcmp (type, "item") || !strcmp(type, "2"))
2094     {
2095         printf ("using item-request\n");
2096         r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 
2097             create_external_itemRequest();
2098     }
2099     else if (!strcmp(type, "ill") || !strcmp(type, "1"))
2100     {
2101         printf ("using ILL-request\n");
2102         r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 
2103             create_external_ILL_APDU(ILL_APDU_ILL_Request);
2104     }
2105     else if (!strcmp(type, "xml") || !strcmp(type, "3"))
2106     {
2107         const char *xml_buf =
2108             "<itemorder>\n"
2109             "  <type>request</type>\n"
2110             "  <libraryNo>000200</libraryNo>\n"
2111             "  <borrowerTicketNo> 1212 </borrowerTicketNo>\n"
2112             "</itemorder>";
2113         r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2114             z_ext_record_oid(out, yaz_oid_recsyn_xml, xml_buf, strlen(xml_buf));
2115     }
2116     else
2117         r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2118
2119     return r;
2120 }
2121
2122 static int send_itemorder(const char *type, int itemno)
2123 {
2124     Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2125     Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2126
2127     req->referenceId = set_refid (out);
2128
2129     req->packageType = odr_oiddup(out, yaz_oid_extserv_item_order);
2130     req->packageName = esPackageName;
2131
2132     req->taskSpecificParameters = create_ItemOrderExternal(type, itemno);
2133
2134     send_apdu(apdu);
2135     return 0;
2136 }
2137
2138 static int only_z3950(void)
2139 {
2140     if (!conn)
2141     {
2142         printf ("Not connected yet\n");
2143         return 1;
2144     }
2145     if (protocol == PROTO_HTTP)
2146     {
2147         printf ("Not supported by SRW\n");
2148         return 1;
2149     }
2150     return 0;
2151 }
2152
2153 static int cmd_update_common(const char *arg, int version);
2154
2155 static int cmd_update(const char *arg)
2156 {
2157     return cmd_update_common(arg, 1);
2158 }
2159
2160 static int cmd_update0(const char *arg)
2161 {
2162     return cmd_update_common(arg, 0);
2163 }
2164
2165 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2166                             char *rec_buf, int rec_len);
2167
2168 static int cmd_update_SRW(int action_no, const char *recid,
2169                           char *rec_buf, int rec_len);
2170
2171 static int cmd_update_common(const char *arg, int version)
2172 {
2173     char action[20], recid_buf[20];
2174     const char *recid = 0;
2175     char *rec_buf;
2176     int rec_len;
2177     int action_no;
2178     int noread = 0;
2179
2180     *action = 0;
2181     *recid_buf = 0;
2182     sscanf (arg, "%19s %19s%n", action, recid_buf, &noread);
2183     if (noread == 0)
2184     {
2185         printf("Use: update action recid [fname]\n");
2186         printf(" where action is one of insert,replace,delete.update\n");
2187         printf(" recid is some record ID. Use none for no ID\n");
2188         printf(" fname is file of record to be updated\n");
2189         return 0;
2190     }
2191
2192     if (!strcmp (action, "insert"))
2193         action_no = Z_IUOriginPartToKeep_recordInsert;
2194     else if (!strcmp (action, "replace"))
2195         action_no = Z_IUOriginPartToKeep_recordReplace;
2196     else if (!strcmp (action, "delete"))
2197         action_no = Z_IUOriginPartToKeep_recordDelete;
2198     else if (!strcmp (action, "update"))
2199         action_no = Z_IUOriginPartToKeep_specialUpdate;
2200     else 
2201     {
2202         printf ("Bad action: %s\n", action);
2203         printf ("Possible values: insert, replace, delete, update\n");
2204         return 0;
2205     }
2206
2207     if (strcmp(recid_buf, "none")) /* none means no record ID */
2208         recid = recid_buf;
2209
2210     arg += noread;
2211     if (parse_cmd_doc(&arg, out, &rec_buf, &rec_len, 1) == 0)
2212         return 0;
2213
2214 #if YAZ_HAVE_XML2
2215     if (protocol == PROTO_HTTP)
2216         return cmd_update_SRW(action_no, recid, rec_buf, rec_len);
2217 #endif
2218     return cmd_update_Z3950(version, action_no, recid, rec_buf, rec_len);
2219 }
2220
2221 #if YAZ_HAVE_XML2
2222 static int cmd_update_SRW(int action_no, const char *recid,
2223                           char *rec_buf, int rec_len)
2224 {
2225     if (!conn)
2226         cmd_open(0);
2227     if (!conn)
2228         return 0;
2229     else
2230     {
2231         Z_SRW_PDU *srw = yaz_srw_get(out, Z_SRW_update_request);
2232         Z_SRW_updateRequest *sr = srw->u.update_request;
2233
2234         switch(action_no)
2235         {
2236         case Z_IUOriginPartToKeep_recordInsert:
2237             sr->operation = "info:srw/action/1/create";
2238             break;
2239         case Z_IUOriginPartToKeep_recordReplace:
2240             sr->operation = "info:srw/action/1/replace";
2241             break;
2242         case Z_IUOriginPartToKeep_recordDelete:
2243             sr->operation = "info:srw/action/1/delete";
2244             break;
2245         }
2246         if (rec_buf)
2247         {
2248             sr->record = yaz_srw_get_record(out);
2249             sr->record->recordData_buf = rec_buf;
2250             sr->record->recordData_len = rec_len;
2251             sr->record->recordSchema = record_schema;
2252         }
2253         if (recid)
2254             sr->recordId = odr_strdup(out, recid);
2255         return send_srw(srw);
2256     }
2257 }
2258 #endif
2259                           
2260 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2261                             char *rec_buf, int rec_len)
2262 {
2263     Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
2264     Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2265     Z_External *r;
2266     Z_External *record_this = 0;
2267     if (rec_buf)
2268         record_this = z_ext_record_oid(out, yaz_oid_recsyn_xml,
2269                                        rec_buf, rec_len);
2270     else
2271     {
2272         if (!record_last)
2273         {
2274             printf ("No last record (update ignored)\n");
2275             return 0;
2276         }
2277         record_this = record_last;
2278     }
2279
2280     req->packageType = odr_oiddup(out, (version == 0 ? 
2281        yaz_oid_extserv_database_update_first_version :
2282        yaz_oid_extserv_database_update));
2283
2284     req->packageName = esPackageName;
2285     
2286     req->referenceId = set_refid (out);
2287
2288     r = req->taskSpecificParameters = (Z_External *)
2289         odr_malloc (out, sizeof(*r));
2290     r->direct_reference = req->packageType;
2291     r->indirect_reference = 0;
2292     r->descriptor = 0;
2293     if (version == 0)
2294     {
2295         Z_IU0OriginPartToKeep *toKeep;
2296         Z_IU0SuppliedRecords *notToKeep;
2297
2298         r->which = Z_External_update0;
2299         r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2300         r->u.update0->which = Z_IUUpdate_esRequest;
2301         r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2302             odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2303         toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2304             odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2305         
2306         toKeep->databaseName = databaseNames[0];
2307         toKeep->schema = 0;
2308         if (record_schema)
2309         {
2310             toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2311                                                    CLASS_SCHEMA,
2312                                                    record_schema, out);
2313         }
2314         toKeep->elementSetName = 0;
2315
2316         toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2317         *toKeep->action = action_no;
2318         
2319         notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2320             odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2321         notToKeep->num = 1;
2322         notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2323             odr_malloc(out, sizeof(*notToKeep->elements));
2324         notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2325             odr_malloc(out, sizeof(**notToKeep->elements));
2326         notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2327         if (recid)
2328         {
2329             notToKeep->elements[0]->u.opaque = (Odr_oct *)
2330                 odr_malloc (out, sizeof(Odr_oct));
2331             notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2332             notToKeep->elements[0]->u.opaque->size = strlen(recid);
2333             notToKeep->elements[0]->u.opaque->len = strlen(recid);
2334         }
2335         else
2336             notToKeep->elements[0]->u.opaque = 0;
2337         notToKeep->elements[0]->supplementalId = 0;
2338         notToKeep->elements[0]->correlationInfo = 0;
2339         notToKeep->elements[0]->record = record_this;
2340     }
2341     else
2342     {
2343         Z_IUOriginPartToKeep *toKeep;
2344         Z_IUSuppliedRecords *notToKeep;
2345
2346         r->which = Z_External_update;
2347         r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2348         r->u.update->which = Z_IUUpdate_esRequest;
2349         r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2350             odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2351         toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2352             odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2353         
2354         toKeep->databaseName = databaseNames[0];
2355         toKeep->schema = 0;
2356         if (record_schema)
2357         {
2358             toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2359                                                    CLASS_SCHEMA,
2360                                                    record_schema, out);
2361         }
2362         toKeep->elementSetName = 0;
2363         toKeep->actionQualifier = 0;
2364         toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2365         *toKeep->action = action_no;
2366
2367         notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2368             odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2369         notToKeep->num = 1;
2370         notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2371             odr_malloc(out, sizeof(*notToKeep->elements));
2372         notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2373             odr_malloc(out, sizeof(**notToKeep->elements));
2374         notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2375         if (recid)
2376         {
2377             notToKeep->elements[0]->u.opaque = (Odr_oct *)
2378                 odr_malloc (out, sizeof(Odr_oct));
2379             notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2380             notToKeep->elements[0]->u.opaque->size = strlen(recid);
2381             notToKeep->elements[0]->u.opaque->len = strlen(recid);
2382         }
2383         else
2384             notToKeep->elements[0]->u.opaque = 0;
2385         notToKeep->elements[0]->supplementalId = 0;
2386         notToKeep->elements[0]->correlationInfo = 0;
2387         notToKeep->elements[0]->record = record_this;
2388     }
2389     
2390     send_apdu(apdu);
2391
2392     return 2;
2393 }
2394
2395 static int cmd_xmles(const char *arg)
2396 {
2397     if (only_z3950())
2398         return 1;
2399     else
2400     {
2401         char *asn_buf = 0;
2402         int noread = 0;
2403         Odr_oid *oid;
2404         char oid_str[51];
2405         Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2406         Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2407         
2408
2409         Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
2410         
2411         req->referenceId = set_refid (out);
2412         req->taskSpecificParameters = ext;
2413         ext->indirect_reference = 0;
2414         ext->descriptor = 0;
2415         ext->which = Z_External_octet;
2416         ext->u.single_ASN1_type = (Odr_oct *) odr_malloc (out, sizeof(Odr_oct));        
2417         sscanf(arg, "%50s%n", oid_str, &noread);
2418         if (noread == 0)
2419         {
2420             printf("Missing OID for xmles\n");
2421             return 0;
2422         }
2423         arg += noread;
2424         if (parse_cmd_doc(&arg, out, &asn_buf,
2425                           &ext->u.single_ASN1_type->len, 0) == 0)
2426             return 0;
2427
2428         ext->u.single_ASN1_type->buf = (unsigned char *) asn_buf;
2429
2430         oid = yaz_string_to_oid_odr(yaz_oid_std(),
2431                                     CLASS_EXTSERV, oid_str, out);
2432         if (!oid)
2433         {
2434             printf("Bad OID: %s\n", oid_str);
2435             return 0;
2436         }
2437
2438         req->packageType = oid;
2439         
2440         ext->direct_reference = oid;
2441
2442         send_apdu(apdu);
2443         
2444         return 2;
2445     }
2446 }
2447
2448 static int cmd_itemorder(const char *arg)
2449 {
2450     char type[12];
2451     int itemno;
2452    
2453     if (only_z3950())
2454         return 1;
2455     if (sscanf (arg, "%10s %d", type, &itemno) != 2)
2456         return 0;
2457
2458     printf("Item order request\n");
2459     fflush(stdout);
2460     send_itemorder(type, itemno);
2461     return 2;
2462 }
2463
2464 static void show_opt(const char *arg, void *clientData)
2465 {
2466     printf ("%s ", arg);
2467 }
2468
2469 static int cmd_zversion(const char *arg)
2470 {
2471     if (*arg && arg)
2472         z3950_version = atoi(arg);
2473     else
2474         printf ("version is %d\n", z3950_version);
2475     return 0;
2476 }
2477
2478 static int cmd_options(const char *arg)
2479 {
2480     if (*arg)
2481     {
2482         int r;
2483         int pos;
2484         r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2485         if (r == -1)
2486             printf("Unknown option(s) near %s\n", arg+pos);
2487     }
2488     else
2489     {
2490         yaz_init_opt_decode(&z3950_options, show_opt, 0);
2491         printf ("\n");
2492     }
2493     return 0;
2494 }
2495
2496 static int cmd_explain(const char *arg)
2497 {
2498     if (protocol != PROTO_HTTP)
2499         return 0;
2500 #if YAZ_HAVE_XML2
2501     if (!conn)
2502         cmd_open(0);
2503     if (conn)
2504     {
2505         Z_SRW_PDU *sr = 0;
2506         
2507         setno = 1;
2508         
2509         /* save this for later .. when fetching individual records */
2510         sr = yaz_srw_get(out, Z_SRW_explain_request);
2511         if (recordsyntax_size == 1 
2512             && !yaz_matchstr(recordsyntax_list[0], "xml"))
2513             sr->u.explain_request->recordPacking = "xml";
2514         send_srw(sr);
2515         return 2;
2516     }
2517 #endif
2518     return 0;
2519 }
2520
2521 static int cmd_init(const char *arg)
2522 {
2523     if (*arg)
2524     {
2525         strncpy (cur_host, arg, sizeof(cur_host)-1);
2526         cur_host[sizeof(cur_host)-1] = 0;
2527     }
2528     if (only_z3950())
2529         return 1;
2530     send_initRequest(cur_host);
2531     return 2;
2532 }
2533
2534 static int cmd_sru(const char *arg)
2535 {
2536     if (!*arg)
2537     {
2538         printf("SRU method is: %s\n", sru_method);
2539         printf("SRU version is: %s\n", sru_version);
2540     }
2541     else
2542     {
2543         int r;
2544         r = sscanf(arg, "%9s %9s", sru_method, sru_version);
2545         if (r >= 1)
2546         {
2547             if (!yaz_matchstr(sru_method, "post"))
2548                 ;
2549             else if (!yaz_matchstr(sru_method, "get"))
2550                 ;
2551             else if (!yaz_matchstr(sru_method, "soap"))
2552                 ;
2553             else
2554             {
2555                 strcpy(sru_method, "soap");
2556                 printf("Unknown SRU method: %s\n", arg);
2557                 printf("Specify one of POST, GET, SOAP\n");
2558             }
2559         }
2560     }
2561     return 0;
2562 }
2563
2564 static int cmd_find(const char *arg)
2565 {
2566     if (!*arg)
2567     {
2568         printf("Find what?\n");
2569         return 0;
2570     }
2571     if (protocol == PROTO_HTTP)
2572     {
2573 #if YAZ_HAVE_XML2
2574         if (!conn)
2575             cmd_open(0);
2576         if (!conn)
2577             return 0;
2578         if (!send_SRW_searchRequest(arg))
2579             return 0;
2580 #else
2581         return 0;
2582 #endif
2583     }
2584     else
2585     {
2586         if (!conn)
2587         {
2588             try_reconnect(); 
2589             
2590             if (!conn) {                                        
2591                 printf("Not connected yet\n");
2592                 return 0;
2593             }
2594         }
2595         if (!send_searchRequest(arg))
2596             return 0;
2597     }
2598     return 2;
2599 }
2600
2601 static int cmd_delete(const char *arg)
2602 {
2603     if (only_z3950())
2604         return 0;
2605     if (!send_deleteResultSetRequest(arg))
2606         return 0;
2607     return 2;
2608 }
2609
2610 static int cmd_ssub(const char *arg)
2611 {
2612     if (!(smallSetUpperBound = atoi(arg)))
2613         return 0;
2614     return 1;
2615 }
2616
2617 static int cmd_lslb(const char *arg)
2618 {
2619     if (!(largeSetLowerBound = atoi(arg)))
2620         return 0;
2621     return 1;
2622 }
2623
2624 static int cmd_mspn(const char *arg)
2625 {
2626     if (!(mediumSetPresentNumber = atoi(arg)))
2627         return 0;
2628     return 1;
2629 }
2630
2631 static int cmd_status(const char *arg)
2632 {
2633     printf("smallSetUpperBound: %d\n", smallSetUpperBound);
2634     printf("largeSetLowerBound: %d\n", largeSetLowerBound);
2635     printf("mediumSetPresentNumber: %d\n", mediumSetPresentNumber);
2636     return 1;
2637 }
2638
2639 static int cmd_setnames(const char *arg)
2640 {
2641     if (*arg == '1')         /* enable ? */
2642         setnumber = 0;
2643     else if (*arg == '0')    /* disable ? */
2644         setnumber = -1;
2645     else if (setnumber < 0)  /* no args, toggle .. */
2646         setnumber = 0;
2647     else
2648         setnumber = -1;
2649    
2650     if (setnumber >= 0)
2651         printf("Set numbering enabled.\n");
2652     else
2653         printf("Set numbering disabled.\n");
2654     return 1;
2655 }
2656
2657 /* PRESENT SERVICE ----------------------------- */
2658
2659 static void parse_show_args(const char *arg_c, char *setstring,
2660                             int *start, int *number)
2661 {
2662     char arg[40];
2663     char *p;
2664
2665     strncpy(arg, arg_c, sizeof(arg)-1);
2666     arg[sizeof(arg)-1] = '\0';
2667
2668     if ((p = strchr(arg, '+')))
2669     {
2670         *number = atoi(p + 1);
2671         *p = '\0';
2672     }
2673     if (*arg)
2674     {
2675         if (!strcmp(arg, "all"))
2676         {
2677             *number = last_hit_count;
2678             *start = 1;
2679         }
2680         else
2681             *start = atoi(arg);
2682     }
2683     if (p && (p=strchr(p+1, '+')))
2684         strcpy (setstring, p+1);
2685     else if (setnumber >= 0)
2686         sprintf(setstring, "%d", setnumber);
2687     else
2688         *setstring = '\0';
2689 }
2690
2691 static int send_presentRequest(const char *arg)
2692 {
2693     Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
2694     Z_PresentRequest *req = apdu->u.presentRequest;
2695     Z_RecordComposition compo;
2696     int nos = 1;
2697     char setstring[100];
2698
2699     req->referenceId = set_refid (out);
2700
2701     parse_show_args(arg, setstring, &setno, &nos);
2702     if (*setstring)
2703         req->resultSetId = setstring;
2704
2705     req->resultSetStartPoint = &setno;
2706     req->numberOfRecordsRequested = &nos;
2707
2708     if (recordsyntax_size)
2709         req->preferredRecordSyntax =
2710             yaz_string_to_oid_odr(yaz_oid_std(),
2711                                   CLASS_RECSYN, recordsyntax_list[0], out);
2712
2713     if (record_schema || recordsyntax_size >= 2)
2714     {
2715         req->recordComposition = &compo;
2716         compo.which = Z_RecordComp_complex;
2717         compo.u.complex = (Z_CompSpec *)
2718             odr_malloc(out, sizeof(*compo.u.complex));
2719         compo.u.complex->selectAlternativeSyntax = (bool_t *) 
2720             odr_malloc(out, sizeof(bool_t));
2721         *compo.u.complex->selectAlternativeSyntax = 0;
2722
2723         compo.u.complex->generic = (Z_Specification *)
2724             odr_malloc(out, sizeof(*compo.u.complex->generic));
2725         
2726         compo.u.complex->generic->which = Z_Schema_oid;
2727         if (!record_schema)
2728             compo.u.complex->generic->schema.oid = 0;
2729         else 
2730         {
2731             compo.u.complex->generic->schema.oid =
2732                 yaz_string_to_oid_odr(yaz_oid_std(),
2733                                       CLASS_SCHEMA, record_schema, out);
2734             
2735             if (!compo.u.complex->generic->schema.oid)
2736             {
2737                 /* OID wasn't a schema! Try record syntax instead. */
2738                 compo.u.complex->generic->schema.oid = (Odr_oid *)
2739                     yaz_string_to_oid_odr(yaz_oid_std(),
2740                                           CLASS_RECSYN, record_schema, out);
2741             }
2742         }
2743         if (!elementSetNames)
2744             compo.u.complex->generic->elementSpec = 0;
2745         else
2746         {
2747             compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
2748                 odr_malloc(out, sizeof(Z_ElementSpec));
2749             compo.u.complex->generic->elementSpec->which =
2750                 Z_ElementSpec_elementSetName;
2751             compo.u.complex->generic->elementSpec->u.elementSetName =
2752                 elementSetNames->u.generic;
2753         }
2754         compo.u.complex->num_dbSpecific = 0;
2755         compo.u.complex->dbSpecific = 0;
2756
2757         compo.u.complex->num_recordSyntax = 0;
2758         compo.u.complex->recordSyntax = 0;
2759         if (recordsyntax_size >= 2)
2760         {
2761             int i;
2762             compo.u.complex->num_recordSyntax = recordsyntax_size;
2763             compo.u.complex->recordSyntax = (Odr_oid **)
2764                 odr_malloc(out, recordsyntax_size * sizeof(Odr_oid*));
2765             for (i = 0; i < recordsyntax_size; i++)
2766             compo.u.complex->recordSyntax[i] =                 
2767                 yaz_string_to_oid_odr(yaz_oid_std(), 
2768                                       CLASS_RECSYN, recordsyntax_list[i], out);
2769         }
2770     }
2771     else if (elementSetNames)
2772     {
2773         req->recordComposition = &compo;
2774         compo.which = Z_RecordComp_simple;
2775         compo.u.simple = elementSetNames;
2776     }
2777     send_apdu(apdu);
2778     printf("Sent presentRequest (%d+%d).\n", setno, nos);
2779     return 2;
2780 }
2781
2782 #if YAZ_HAVE_XML2
2783 static int send_SRW_presentRequest(const char *arg)
2784 {
2785     char setstring[100];
2786     int nos = 1;
2787     Z_SRW_PDU *sr = srw_sr;
2788
2789     if (!sr)
2790         return 0;
2791     parse_show_args(arg, setstring, &setno, &nos);
2792     sr->u.request->startRecord = odr_intdup(out, setno);
2793     sr->u.request->maximumRecords = odr_intdup(out, nos);
2794     if (record_schema)
2795         sr->u.request->recordSchema = record_schema;
2796     if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2797         sr->u.request->recordPacking = "xml";
2798     return send_srw(sr);
2799 }
2800 #endif
2801
2802 static void close_session (void)
2803 {
2804     if (conn)
2805         cs_close (conn);
2806     conn = 0;
2807     sent_close = 0;
2808     odr_reset(out);
2809     odr_reset(in);
2810     odr_reset(print);
2811     last_hit_count = 0;
2812 }
2813
2814 void process_close(Z_Close *req)
2815 {
2816     Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
2817     Z_Close *res = apdu->u.close;
2818
2819     static char *reasons[] =
2820     {
2821         "finished",
2822         "shutdown",
2823         "system problem",
2824         "cost limit reached",
2825         "resources",
2826         "security violation",
2827         "protocolError",
2828         "lack of activity",
2829         "peer abort",
2830         "unspecified"
2831     };
2832
2833     printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
2834         req->diagnosticInformation ? req->diagnosticInformation : "NULL");
2835     if (sent_close)
2836         close_session ();
2837     else
2838     {
2839         *res->closeReason = Z_Close_finished;
2840         send_apdu(apdu);
2841         printf("Sent response.\n");
2842         sent_close = 1;
2843     }
2844 }
2845
2846 static int cmd_show(const char *arg)
2847 {
2848     if (protocol == PROTO_HTTP)
2849     {
2850 #if YAZ_HAVE_XML2
2851         if (!conn)
2852             cmd_open(0);
2853         if (!conn)
2854             return 0;
2855         if (!send_SRW_presentRequest(arg))
2856             return 0;
2857 #else
2858         return 0;
2859 #endif
2860     }
2861     else
2862     {
2863         if (!conn)
2864         {
2865             printf("Not connected yet\n");
2866             return 0;
2867         }
2868         if (!send_presentRequest(arg))
2869             return 0;
2870     }
2871     return 2;
2872 }
2873
2874 void exit_client(int code)
2875 {
2876     file_history_save(file_history);
2877     file_history_destroy(&file_history);
2878     exit(code);
2879 }
2880
2881 int cmd_quit(const char *arg)
2882 {
2883     printf("See you later, alligator.\n");
2884     xmalloc_trav ("");
2885     exit_client(0);
2886     return 0;
2887 }
2888
2889 int cmd_cancel(const char *arg)
2890 {
2891     Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
2892     Z_TriggerResourceControlRequest *req =
2893         apdu->u.triggerResourceControlRequest;
2894     bool_t rfalse = 0;
2895     char command[16];
2896   
2897     *command = '\0';
2898     sscanf(arg, "%15s", command);
2899
2900     if (only_z3950())
2901         return 0;
2902     if (session_initResponse &&
2903         !ODR_MASK_GET(session_initResponse->options,
2904                       Z_Options_triggerResourceCtrl))
2905     {
2906         printf("Target doesn't support cancel (trigger resource ctrl)\n");
2907         return 0;
2908     }
2909     *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
2910     req->resultSetWanted = &rfalse;
2911     req->referenceId = set_refid (out);
2912
2913     send_apdu(apdu);
2914     printf("Sent cancel request\n");
2915     if (!strcmp(command, "wait"))
2916          return 2;
2917     return 1;
2918 }
2919
2920
2921 int cmd_cancel_find(const char *arg) {
2922     int fres;
2923     fres=cmd_find(arg);
2924     if( fres > 0 ) {
2925         return cmd_cancel("");
2926     };
2927     return fres;
2928 }
2929
2930 int send_scanrequest(const char *set,  const char *query,
2931                      int pp, int num, const char *term)
2932 {
2933     Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
2934     Z_ScanRequest *req = apdu->u.scanRequest;
2935     
2936     if (only_z3950())
2937         return 0;
2938     if (queryType == QueryType_CCL2RPN)
2939     {
2940         int error, pos;
2941         struct ccl_rpn_node *rpn;
2942
2943         rpn = ccl_find_str (bibset,  query, &error, &pos);
2944         if (error)
2945         {
2946             printf("CCL ERROR: %s\n", ccl_err_msg(error));
2947             return -1;
2948         }
2949         req->attributeSet =
2950             yaz_string_to_oid_odr(yaz_oid_std(),
2951                                   CLASS_ATTSET, "Bib-1", out);
2952         if (!(req->termListAndStartPoint = ccl_scan_query (out, rpn)))
2953         {
2954             printf("Couldn't convert CCL to Scan term\n");
2955             return -1;
2956         }
2957         ccl_rpn_delete (rpn);
2958     }
2959     else
2960     {
2961         YAZ_PQF_Parser pqf_parser = yaz_pqf_create ();
2962
2963         if (!(req->termListAndStartPoint =
2964               yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
2965         {
2966             const char *pqf_msg;
2967             size_t off;
2968             int code = yaz_pqf_error (pqf_parser, &pqf_msg, &off);
2969             int ioff = off;
2970             printf("%*s^\n", ioff+7, "");
2971             printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
2972             yaz_pqf_destroy (pqf_parser);
2973             return -1;
2974         }
2975         yaz_pqf_destroy (pqf_parser);
2976     }
2977     if (queryCharset && outputCharset)
2978     {
2979         yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
2980         if (!cd)
2981         {
2982             printf("Conversion from %s to %s unsupported\n",
2983                    outputCharset, queryCharset);
2984             return -1;
2985         }
2986         yaz_query_charset_convert_apt(req->termListAndStartPoint, out, cd);
2987         yaz_iconv_close(cd);
2988     }
2989     if (term && *term)
2990     {
2991         if (req->termListAndStartPoint->term &&
2992             req->termListAndStartPoint->term->which == Z_Term_general &&
2993             req->termListAndStartPoint->term->u.general)
2994         {
2995             req->termListAndStartPoint->term->u.general->buf =
2996                 (unsigned char *) odr_strdup(out, term);
2997             req->termListAndStartPoint->term->u.general->len =
2998                 req->termListAndStartPoint->term->u.general->size =
2999                 strlen(term);
3000         }
3001     }
3002     req->referenceId = set_refid (out);
3003     req->num_databaseNames = num_databaseNames;
3004     req->databaseNames = databaseNames;
3005     req->numberOfTermsRequested = &num;
3006     req->preferredPositionInResponse = &pp;
3007     req->stepSize = odr_intdup(out, scan_stepSize);
3008
3009     if (set)
3010         yaz_oi_set_string_oid(&req->otherInfo, out,
3011                               yaz_oid_userinfo_scan_set, 1, set);
3012
3013     send_apdu(apdu);
3014     return 2;
3015 }
3016
3017 int send_sortrequest(const char *arg, int newset)
3018 {
3019     Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
3020     Z_SortRequest *req = apdu->u.sortRequest;
3021     Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
3022         odr_malloc (out, sizeof(*sksl));
3023     char setstring[32];
3024
3025     if (only_z3950())
3026         return 0;
3027     if (setnumber >= 0)
3028         sprintf (setstring, "%d", setnumber);
3029     else
3030         sprintf (setstring, "default");
3031
3032     req->referenceId = set_refid (out);
3033
3034     req->num_inputResultSetNames = 1;
3035     req->inputResultSetNames = (Z_InternationalString **)
3036         odr_malloc (out, sizeof(*req->inputResultSetNames));
3037     req->inputResultSetNames[0] = odr_strdup (out, setstring);
3038
3039     if (newset && setnumber >= 0)
3040         sprintf (setstring, "%d", ++setnumber);
3041
3042     req->sortedResultSetName = odr_strdup (out, setstring);
3043
3044     req->sortSequence = yaz_sort_spec (out, arg);
3045     if (!req->sortSequence)
3046     {
3047         printf ("Missing sort specifications\n");
3048         return -1;
3049     }
3050     send_apdu(apdu);
3051     return 2;
3052 }
3053
3054 void display_term(Z_TermInfo *t)
3055 {
3056     if (t->displayTerm)
3057         printf("%s", t->displayTerm);
3058     else if (t->term->which == Z_Term_general)
3059         printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
3060     else
3061         printf("Term (not general)");
3062     if (t->term->which == Z_Term_general)
3063         sprintf(last_scan_line, "%.*s", t->term->u.general->len,
3064             t->term->u.general->buf);
3065
3066     if (t->globalOccurrences)
3067         printf (" (%d)\n", *t->globalOccurrences);
3068     else
3069         printf ("\n");
3070 }
3071
3072 void process_scanResponse(Z_ScanResponse *res)
3073 {
3074     int i;
3075     Z_Entry **entries = NULL;
3076     int num_entries = 0;
3077    
3078     printf("Received ScanResponse\n"); 
3079     print_refid (res->referenceId);
3080     printf("%d entries", *res->numberOfEntriesReturned);
3081     if (res->positionOfTerm)
3082         printf (", position=%d", *res->positionOfTerm); 
3083     printf ("\n");
3084     if (*res->scanStatus != Z_Scan_success)
3085         printf("Scan returned code %d\n", *res->scanStatus);
3086     if (!res->entries)
3087         return;
3088     if ((entries = res->entries->entries))
3089         num_entries = res->entries->num_entries;
3090     for (i = 0; i < num_entries; i++)
3091     {
3092         int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
3093         if (entries[i]->which == Z_Entry_termInfo)
3094         {
3095             printf("%c ", i + 1 == pos_term ? '*' : ' ');
3096             display_term(entries[i]->u.termInfo);
3097         }
3098         else
3099             display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
3100     }
3101     if (res->entries->nonsurrogateDiagnostics)
3102         display_diagrecs (res->entries->nonsurrogateDiagnostics,
3103                           res->entries->num_nonsurrogateDiagnostics);
3104 }
3105
3106 void process_sortResponse(Z_SortResponse *res)
3107 {
3108     printf("Received SortResponse: status=");
3109     switch (*res->sortStatus)
3110     {
3111     case Z_SortResponse_success:
3112         printf ("success"); break;
3113     case Z_SortResponse_partial_1:
3114         printf ("partial"); break;
3115     case Z_SortResponse_failure:
3116         printf ("failure"); break;
3117     default:
3118         printf ("unknown (%d)", *res->sortStatus);
3119     }
3120     printf ("\n");
3121     print_refid (res->referenceId);
3122     if (res->diagnostics)
3123         display_diagrecs(res->diagnostics,
3124                          res->num_diagnostics);
3125 }
3126
3127 void process_deleteResultSetResponse (Z_DeleteResultSetResponse *res)
3128 {
3129     printf("Got deleteResultSetResponse status=%d\n",
3130            *res->deleteOperationStatus);
3131     if (res->deleteListStatuses)
3132     {
3133         int i;
3134         for (i = 0; i < res->deleteListStatuses->num; i++)
3135         {
3136             printf ("%s status=%d\n", res->deleteListStatuses->elements[i]->id,
3137                     *res->deleteListStatuses->elements[i]->status);
3138         }
3139     }
3140 }
3141
3142 int cmd_sort_generic(const char *arg, int newset)
3143 {
3144     if (only_z3950())
3145         return 0;
3146     if (session_initResponse && 
3147         !ODR_MASK_GET(session_initResponse->options, Z_Options_sort))
3148     {
3149         printf("Target doesn't support sort\n");
3150         return 0;
3151     }
3152     if (*arg)
3153     {
3154         if (send_sortrequest(arg, newset) < 0)
3155             return 0;
3156         return 2;
3157     }
3158     return 0;
3159 }
3160
3161 int cmd_sort(const char *arg)
3162 {
3163     return cmd_sort_generic (arg, 0);
3164 }
3165
3166 int cmd_sort_newset (const char *arg)
3167 {
3168     return cmd_sort_generic (arg, 1);
3169 }
3170
3171 int cmd_scanstep(const char *arg)
3172 {
3173     scan_stepSize = atoi(arg);
3174     return 0;
3175 }
3176
3177 int cmd_scanpos(const char *arg)
3178 {
3179     int r = sscanf(arg, "%d", &scan_position);
3180     if (r == 0)
3181         scan_position = 1;
3182     return 0;
3183 }
3184
3185 int cmd_scansize(const char *arg)
3186 {
3187     int r = sscanf(arg, "%d", &scan_size);
3188     if (r == 0)
3189         scan_size = 20;
3190     return 0;
3191 }
3192
3193 static int cmd_scan_common(const char *set, const char *arg)
3194 {
3195     if (protocol == PROTO_HTTP)
3196     {
3197 #if YAZ_HAVE_XML2
3198         if (!conn)
3199             cmd_open(0);
3200         if (!conn)
3201             return 0;
3202         if (*arg)
3203         {
3204             if (send_SRW_scanRequest(arg, scan_position, scan_size) < 0)
3205                 return 0;
3206         }
3207         else
3208         {
3209             if (send_SRW_scanRequest(last_scan_line, 1, scan_size) < 0)
3210                 return 0;
3211         }
3212         return 2;
3213 #else
3214         return 0;
3215 #endif
3216     }
3217     else
3218     {
3219         if (!conn)
3220         {
3221             try_reconnect();
3222             
3223             if (!conn) {                                                                
3224                 printf("Session not initialized yet\n");
3225                 return 0;
3226             }
3227         }
3228         if (session_initResponse && 
3229             !ODR_MASK_GET(session_initResponse->options, Z_Options_scan))
3230         {
3231             printf("Target doesn't support scan\n");
3232             return 0;
3233         }
3234         if (*arg)
3235         {
3236             strcpy (last_scan_query, arg);
3237             if (send_scanrequest(set, arg, 
3238                                  scan_position, scan_size, 0) < 0)
3239                 return 0;
3240         }
3241         else
3242         {
3243             if (send_scanrequest(set, last_scan_query, 
3244                                  1, scan_size, last_scan_line) < 0)
3245                 return 0;
3246         }
3247         return 2;
3248     }
3249 }
3250
3251 int cmd_scan(const char *arg)
3252 {
3253     return cmd_scan_common(0, arg);
3254 }
3255
3256 int cmd_setscan(const char *arg)
3257 {
3258     char setstring[100];
3259     int nor;
3260     if (sscanf(arg, "%99s%n", setstring, &nor) < 1)
3261     {
3262         printf("missing set for setscan\n");
3263         return 0;
3264     }
3265     return cmd_scan_common(setstring, arg + nor);
3266 }
3267
3268 int cmd_schema(const char *arg)
3269 {
3270     xfree(record_schema);
3271     record_schema = 0;
3272     if (arg && *arg)
3273         record_schema = xstrdup(arg);
3274     return 1;
3275 }
3276
3277 int cmd_format(const char *arg)
3278 {
3279     const char *cp = arg;
3280     int nor;
3281     int idx = 0;
3282     int i;
3283     char form_str[41];
3284     if (!arg || !*arg)
3285     {
3286         printf("Usage: format <recordsyntax>\n");
3287         return 0;
3288     }
3289     for (i = 0; i < recordsyntax_size; i++)
3290     {
3291         xfree(recordsyntax_list[i]);
3292         recordsyntax_list[i] = 0;
3293     }
3294
3295     while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0 
3296            && idx < RECORDSYNTAX_MAX)
3297     {
3298         if (!strcmp(form_str, "none"))
3299             break;
3300         recordsyntax_list[idx] = xstrdup(form_str);
3301         cp += nor;
3302         idx++;
3303     }
3304     recordsyntax_size = idx;
3305     return 1;
3306 }
3307
3308 int cmd_elements(const char *arg)
3309 {
3310     static Z_ElementSetNames esn;
3311     static char what[100];
3312
3313     if (!arg || !*arg)
3314     {
3315         elementSetNames = 0;
3316         return 1;
3317     }
3318     strcpy(what, arg);
3319     esn.which = Z_ElementSetNames_generic;
3320     esn.u.generic = what;
3321     elementSetNames = &esn;
3322     return 1;
3323 }
3324
3325 int cmd_querytype (const char *arg)
3326 {
3327     if (!strcmp (arg, "ccl"))
3328         queryType = QueryType_CCL;
3329     else if (!strcmp (arg, "prefix") || !strcmp(arg, "rpn"))
3330         queryType = QueryType_Prefix;
3331     else if (!strcmp (arg, "ccl2rpn") || !strcmp (arg, "cclrpn"))
3332         queryType = QueryType_CCL2RPN;
3333     else if (!strcmp(arg, "cql"))
3334         queryType = QueryType_CQL;        
3335     else if (!strcmp (arg, "cql2rpn") || !strcmp (arg, "cqlrpn"))
3336         queryType = QueryType_CQL2RPN;
3337     else
3338     {
3339         printf ("Querytype must be one of:\n");
3340         printf (" prefix         - Prefix query\n");
3341         printf (" ccl            - CCL query\n");
3342         printf (" ccl2rpn        - CCL query converted to RPN\n");
3343         printf (" cql            - CQL\n");
3344         printf (" cql2rpn        - CQL query converted to RPN\n");
3345         return 0;
3346     }
3347     return 1;
3348 }
3349
3350 int cmd_refid (const char *arg)
3351 {
3352     xfree (refid);
3353     refid = NULL;
3354     if (*arg)
3355         refid = xstrdup (arg);
3356     return 1;
3357 }
3358
3359 int cmd_close(const char *arg)
3360 {
3361     Z_APDU *apdu;
3362     Z_Close *req;
3363     if (only_z3950())
3364         return 0;
3365     apdu = zget_APDU(out, Z_APDU_close);
3366     req = apdu->u.close;
3367     *req->closeReason = Z_Close_finished;
3368     send_apdu(apdu);
3369     printf("Sent close request.\n");
3370     sent_close = 1;
3371     return 2;
3372 }
3373
3374 int cmd_packagename(const char* arg)
3375 {
3376     xfree (esPackageName);
3377     esPackageName = NULL;
3378     if (*arg)
3379         esPackageName = xstrdup(arg);
3380     return 1;
3381 }
3382
3383 int cmd_proxy(const char* arg)
3384 {
3385     xfree(yazProxy);
3386     yazProxy = 0;
3387     if (*arg)
3388         yazProxy = xstrdup (arg);
3389     return 1;
3390 }
3391
3392 int cmd_marccharset(const char *arg)
3393 {
3394     char l1[30];
3395
3396     *l1 = 0;
3397     if (sscanf(arg, "%29s", l1) < 1)
3398     {
3399         printf("MARC character set is `%s'\n", 
3400                marcCharset ? marcCharset: "none");
3401         return 1;
3402     }
3403     xfree (marcCharset);
3404     marcCharset = 0;
3405     if (strcmp(l1, "-") && strcmp(l1, "none"))
3406         marcCharset = xstrdup(l1);
3407     return 1;
3408 }
3409
3410 int cmd_querycharset(const char *arg)
3411 {
3412     char l1[30];
3413
3414     *l1 = 0;
3415     if (sscanf(arg, "%29s", l1) < 1)
3416     {
3417         printf("Query character set is `%s'\n", 
3418                queryCharset ? queryCharset: "none");
3419         return 1;
3420     }
3421     xfree (queryCharset);
3422     queryCharset = 0;
3423     if (strcmp(l1, "-") && strcmp(l1, "none"))
3424         queryCharset = xstrdup(l1);
3425     return 1;
3426 }
3427
3428 int cmd_displaycharset(const char *arg)
3429 {
3430     char l1[30];
3431
3432     *l1 = 0;
3433     if (sscanf(arg, "%29s", l1) < 1)
3434     {
3435         printf("Display character set is `%s'\n", 
3436                outputCharset ? outputCharset: "none");
3437     }
3438     else
3439     {
3440         xfree (outputCharset);
3441         outputCharset = 0;
3442         if (!strcmp(l1, "auto") && codeset)
3443         {
3444             if (codeset)
3445             {
3446                 printf ("Display character set: %s\n", codeset);
3447                 outputCharset = xstrdup(codeset);
3448             }
3449             else
3450                 printf ("No codeset found on this system\n");
3451         }
3452         else if (strcmp(l1, "-") && strcmp(l1, "none"))
3453             outputCharset = xstrdup(l1);
3454     } 
3455     return 1;
3456 }
3457
3458 int cmd_negcharset(const char *arg)
3459 {
3460     char l1[30];
3461
3462     *l1 = 0;
3463     if (sscanf(arg, "%29s %d %d", l1, &negotiationCharsetRecords,
3464                &negotiationCharsetVersion) < 1)
3465     {
3466         printf("Negotiation character set `%s'\n", 
3467                negotiationCharset ? negotiationCharset: "none");  
3468         if (negotiationCharset)
3469         {
3470             printf("Records in charset %s\n", negotiationCharsetRecords ? 
3471                    "yes" : "no");
3472             printf("Charneg version %d\n", negotiationCharsetVersion);
3473         }
3474     }
3475     else
3476     {
3477         xfree (negotiationCharset);
3478         negotiationCharset = NULL;
3479         if (*l1 && strcmp(l1, "-") && strcmp(l1, "none"))
3480         {
3481             negotiationCharset = xstrdup(l1);
3482             printf ("Character set negotiation : %s\n", negotiationCharset);
3483         }
3484     }
3485     return 1;
3486 }
3487
3488 int cmd_charset(const char* arg)
3489 {
3490     char l1[30], l2[30], l3[30], l4[30];
3491
3492     *l1 = *l2 = *l3 = *l4 = '\0';
3493     if (sscanf(arg, "%29s %29s %29s %29s", l1, l2, l3, l4) < 1)
3494     {
3495         cmd_negcharset("");
3496         cmd_displaycharset("");
3497         cmd_marccharset("");
3498         cmd_querycharset("");
3499     }
3500     else
3501     {
3502         cmd_negcharset(l1);
3503         if (*l2)
3504             cmd_displaycharset(l2);
3505         if (*l3)
3506             cmd_marccharset(l3);
3507         if (*l4)
3508             cmd_querycharset(l4);
3509     }
3510     return 1;
3511 }
3512
3513 int cmd_lang(const char* arg)
3514 {
3515     if (*arg == '\0') {
3516         printf("Current language is `%s'\n", yazLang ? yazLang : "none");
3517         return 1;
3518     }
3519     xfree (yazLang);
3520     yazLang = NULL;
3521     if (*arg)
3522         yazLang = xstrdup(arg);
3523     return 1;
3524 }
3525
3526 int cmd_source(const char* arg, int echo ) 
3527 {
3528     /* first should open the file and read one line at a time.. */
3529     FILE* includeFile;
3530     char line[102400], *cp;
3531
3532     if(strlen(arg)<1) {
3533         fprintf(stderr,"Error in source command use a filename\n");
3534         return -1;
3535     }
3536     
3537     includeFile = fopen (arg, "r");
3538     
3539     if(!includeFile) {
3540         fprintf(stderr,"Unable to open file %s for reading\n",arg);
3541         return -1;
3542     }
3543     
3544     while(!feof(includeFile)) {
3545         memset(line,0,sizeof(line));
3546         fgets(line,sizeof(line),includeFile);
3547         
3548         if(strlen(line) < 2) continue;
3549         if(line[0] == '#') continue;
3550         
3551         if ((cp = strrchr (line, '\n')))
3552             *cp = '\0';
3553         
3554         if( echo ) {
3555             printf( "processing line: %s\n",line );
3556         };
3557         process_cmd_line(line);
3558     }
3559     
3560     if(fclose(includeFile)<0) {
3561         perror("unable to close include file");
3562         exit(1);
3563     }
3564     return 1;
3565 }
3566
3567 int cmd_source_echo(const char* arg)
3568
3569     cmd_source(arg, 1);
3570     return 1;
3571 }
3572
3573 int cmd_source_noecho(const char* arg)
3574 {
3575     cmd_source(arg, 0);
3576     return 1;
3577 }
3578
3579
3580 int cmd_subshell(const char* args)
3581 {
3582     if(strlen(args)) 
3583         system(args);
3584     else 
3585         system(getenv("SHELL"));
3586     
3587     printf("\n");
3588     return 1;
3589 }
3590
3591 int cmd_set_berfile(const char *arg)
3592 {
3593     if (ber_file && ber_file != stdout && ber_file != stderr)
3594         fclose(ber_file);
3595     if (!strcmp(arg, ""))
3596         ber_file = 0;
3597     else if (!strcmp(arg, "-"))
3598         ber_file = stdout;
3599     else
3600         ber_file = fopen(arg, "a");
3601     return 1;
3602 }
3603
3604 int cmd_set_apdufile(const char *arg)
3605 {
3606     if(apdu_file && apdu_file != stderr && apdu_file != stderr)
3607         fclose(apdu_file);
3608     if (!strcmp(arg, ""))
3609         apdu_file = 0;
3610     else if (!strcmp(arg, "-"))
3611         apdu_file = stderr;
3612     else
3613     {
3614         apdu_file = fopen(arg, "a");
3615         if (!apdu_file)
3616             perror("unable to open apdu log file");
3617     }
3618     if (apdu_file)
3619         odr_setprint(print, apdu_file);
3620     return 1;
3621 }
3622
3623 int cmd_set_cclfile(const char* arg)
3624 {  
3625     FILE *inf;
3626
3627     bibset = ccl_qual_mk (); 
3628     inf = fopen (arg, "r");
3629     if (!inf)
3630         perror("unable to open CCL file");
3631     else
3632     {
3633         ccl_qual_file (bibset, inf);
3634         fclose (inf);
3635     }
3636     strcpy(ccl_fields,arg);
3637     return 0;
3638 }
3639
3640 int cmd_set_cqlfile(const char* arg)
3641 {
3642     cql_transform_t newcqltrans;
3643
3644     if ((newcqltrans = cql_transform_open_fname(arg)) == 0) {
3645         perror("unable to open CQL file");
3646         return 0;
3647     }
3648     if (cqltrans != 0)
3649         cql_transform_close(cqltrans);
3650
3651     cqltrans = newcqltrans;
3652     strcpy(cql_fields, arg);
3653     return 0;
3654 }
3655
3656 int cmd_set_auto_reconnect(const char* arg)
3657 {  
3658     if(strlen(arg)==0) {
3659         auto_reconnect = ! auto_reconnect;
3660     } else if(strcmp(arg,"on")==0) {
3661         auto_reconnect = 1;
3662     } else if(strcmp(arg,"off")==0) {
3663         auto_reconnect = 0;             
3664     } else {
3665         printf("Error use on or off\n");
3666         return 1;
3667     }
3668     
3669     if (auto_reconnect)
3670         printf("Set auto reconnect enabled.\n");
3671     else
3672         printf("Set auto reconnect disabled.\n");
3673     
3674     return 0;
3675 }
3676
3677
3678 int cmd_set_auto_wait(const char* arg)
3679 {  
3680     if(strlen(arg)==0) {
3681         auto_wait = ! auto_wait;
3682     } else if(strcmp(arg,"on")==0) {
3683         auto_wait = 1;
3684     } else if(strcmp(arg,"off")==0) {
3685         auto_wait = 0;          
3686     } else {
3687         printf("Error use on or off\n");
3688         return 1;
3689     }
3690     
3691     if (auto_wait)
3692         printf("Set auto wait enabled.\n");
3693     else
3694         printf("Set auto wait disabled.\n");
3695     
3696     return 0;
3697 }
3698
3699 int cmd_set_marcdump(const char* arg)
3700 {
3701     if(marc_file && marc_file != stderr) { /* don't close stdout*/
3702         fclose(marc_file);
3703     }
3704
3705     if (!strcmp(arg, ""))
3706         marc_file = 0;
3707     else if (!strcmp(arg, "-"))
3708         marc_file = stderr;
3709     else
3710     {
3711         marc_file = fopen(arg, "a");
3712         if (!marc_file)
3713             perror("unable to open marc log file");
3714     }
3715     return 1;
3716 }
3717
3718 /* 
3719    this command takes 3 arge {name class oid} 
3720 */
3721 int cmd_register_oid(const char* args) {
3722     static struct {
3723         char* className;
3724         oid_class oclass;
3725     } oid_classes[] = {
3726         {"appctx",CLASS_APPCTX},
3727         {"absyn",CLASS_ABSYN},
3728         {"attset",CLASS_ATTSET},
3729         {"transyn",CLASS_TRANSYN},
3730         {"diagset",CLASS_DIAGSET},
3731         {"recsyn",CLASS_RECSYN},
3732         {"resform",CLASS_RESFORM},
3733         {"accform",CLASS_ACCFORM},
3734         {"extserv",CLASS_EXTSERV},
3735         {"userinfo",CLASS_USERINFO},
3736         {"elemspec",CLASS_ELEMSPEC},
3737         {"varset",CLASS_VARSET},
3738         {"schema",CLASS_SCHEMA},
3739         {"tagset",CLASS_TAGSET},
3740         {"general",CLASS_GENERAL},
3741         {0,(enum oid_class) 0}
3742     };
3743     char oname_str[101], oclass_str[101], oid_str[101];  
3744     int i;
3745     oid_class oidclass = CLASS_GENERAL;
3746     Odr_oid oid[OID_SIZE];
3747
3748     if (sscanf (args, "%100[^ ] %100[^ ] %100s",
3749                 oname_str,oclass_str, oid_str) < 1) {
3750         printf("Error in register command \n");
3751         return 0;
3752     }
3753     
3754     for (i = 0; oid_classes[i].className; i++) {
3755         if (!strcmp(oid_classes[i].className, oclass_str))
3756         {
3757             oidclass=oid_classes[i].oclass;
3758             break;
3759         }
3760     }
3761     
3762     if(!(oid_classes[i].className)) {
3763         printf("Unknown oid class %s\n",oclass_str);
3764         return 0;
3765     }
3766     
3767     oid_dotstring_to_oid(oid_str, oid);
3768
3769     if (yaz_oid_add(yaz_oid_std(), oidclass, oname_str, oid))
3770     {
3771         printf("oid %s already exists, registration failed\n",
3772                oname_str);
3773     }
3774     return 1;  
3775 }
3776
3777 int cmd_push_command(const char* arg) 
3778 {
3779 #if HAVE_READLINE_HISTORY_H
3780     if(strlen(arg)>1) 
3781         add_history(arg);
3782 #else 
3783     fprintf(stderr,"Not compiled with the readline/history module\n");
3784 #endif
3785     return 1;
3786 }
3787
3788 void source_rc_file(const char *rc_file)
3789 {
3790     /*  If rc_file != NULL, source that. Else
3791         Look for .yazclientrc and read it if it exists. 
3792         If it does not exist, read  $HOME/.yazclientrc instead */
3793     struct stat statbuf;
3794
3795     if (rc_file)
3796     {
3797         if (stat(rc_file, &statbuf) == 0)
3798             cmd_source(rc_file, 0);
3799         else
3800         {
3801             fprintf(stderr, "yaz_client: cannot source '%s'\n", rc_file);
3802             exit(1);
3803         }
3804     }
3805     else
3806     {
3807         char fname[1000];
3808         strcpy(fname, ".yazclientrc");
3809         if (stat(fname, &statbuf)==0)
3810         {
3811             cmd_source(fname, 0);
3812         }
3813         else
3814         {
3815             const char* homedir = getenv("HOME");
3816             if (homedir)
3817             {
3818                 sprintf(fname, "%.800s/%s", homedir, ".yazclientrc");
3819                 if (stat(fname, &statbuf)==0)
3820                     cmd_source(fname, 0);
3821             }
3822         }
3823     }
3824 }
3825
3826 void add_to_readline_history(void *client_data, const char *line)
3827 {
3828 #if HAVE_READLINE_HISTORY_H
3829     if (strlen(line))
3830         add_history(line);
3831 #endif
3832 }
3833
3834 static void initialize(const char *rc_file)
3835 {
3836     FILE *inf;
3837     int i;
3838     
3839     if (!(out = odr_createmem(ODR_ENCODE)) ||
3840         !(in = odr_createmem(ODR_DECODE)) ||
3841         !(print = odr_createmem(ODR_PRINT)))
3842     {
3843         fprintf(stderr, "failed to allocate ODR streams\n");
3844         exit(1);
3845     }
3846     
3847     setvbuf(stdout, 0, _IONBF, 0);
3848     if (apdu_file)
3849         odr_setprint(print, apdu_file);
3850
3851     bibset = ccl_qual_mk (); 
3852     inf = fopen (ccl_fields, "r");
3853     if (inf)
3854     {
3855         ccl_qual_file (bibset, inf);
3856         fclose (inf);
3857     }
3858
3859     cqltrans = cql_transform_open_fname(cql_fields);
3860     /* If this fails, no problem: we detect cqltrans == 0 later */
3861
3862 #if HAVE_READLINE_READLINE_H
3863     rl_attempted_completion_function = 
3864         (char **(*)(const char *, int, int)) readline_completer;
3865 #endif
3866     for(i = 0; i < maxOtherInfosSupported; ++i) {
3867         extraOtherInfos[i].oid[0] = -1;
3868         extraOtherInfos[i].value = 0;
3869     }
3870
3871     cmd_format("usmarc");
3872     
3873     source_rc_file(rc_file);
3874
3875     file_history = file_history_new();
3876     file_history_load(file_history);
3877     file_history_trav(file_history, 0, add_to_readline_history);
3878 }
3879
3880
3881 #if HAVE_GETTIMEOFDAY
3882 struct timeval tv_start;
3883 #endif
3884
3885 #if YAZ_HAVE_XML2
3886 static void handle_srw_record(Z_SRW_record *rec)
3887 {
3888     if (rec->recordPosition)
3889     {
3890         printf ("pos=%d", *rec->recordPosition);
3891         setno = *rec->recordPosition + 1;
3892     }
3893     if (rec->recordSchema)
3894         printf (" schema=%s", rec->recordSchema);
3895     printf ("\n");
3896     if (rec->recordData_buf && rec->recordData_len)
3897     {
3898         fwrite(rec->recordData_buf, 1, rec->recordData_len, stdout);
3899         if (marc_file)
3900             fwrite (rec->recordData_buf, 1, rec->recordData_len, marc_file);
3901     }
3902     else
3903         printf ("No data!");
3904     printf("\n");
3905 }
3906
3907 static void handle_srw_explain_response(Z_SRW_explainResponse *res)
3908 {
3909     handle_srw_record(&res->record);
3910 }
3911
3912 static void handle_srw_response(Z_SRW_searchRetrieveResponse *res)
3913 {
3914     int i;
3915
3916     printf ("Received SRW SearchRetrieve Response\n");
3917     
3918     for (i = 0; i<res->num_diagnostics; i++)
3919     {
3920         if (res->diagnostics[i].uri)
3921             printf ("SRW diagnostic %s\n",
3922                     res->diagnostics[i].uri);
3923         else
3924             printf ("SRW diagnostic missing or could not be decoded\n");
3925         if (res->diagnostics[i].message)
3926             printf ("Message: %s\n", res->diagnostics[i].message);
3927         if (res->diagnostics[i].details)
3928             printf ("Details: %s\n", res->diagnostics[i].details);
3929     }
3930     if (res->numberOfRecords)
3931         printf ("Number of hits: %d\n", *res->numberOfRecords);
3932     for (i = 0; i<res->num_records; i++)
3933         handle_srw_record(res->records + i);
3934 }
3935
3936 static void handle_srw_scan_term(Z_SRW_scanTerm *term)
3937 {
3938     if (term->displayTerm)
3939         printf("%s:", term->displayTerm);
3940     else if (term->value)
3941         printf("%s:", term->value);
3942     else
3943         printf("No value:");
3944     if (term->numberOfRecords)
3945         printf(" %d", *term->numberOfRecords);
3946     if (term->whereInList)
3947         printf(" %s", term->whereInList);
3948     if (term->value && term->displayTerm)
3949         printf(" %s", term->value);
3950
3951     strcpy(last_scan_line, term->value);
3952     printf("\n");
3953 }
3954
3955 static void handle_srw_scan_response(Z_SRW_scanResponse *res)
3956 {
3957     int i;
3958
3959     printf ("Received SRW Scan Response\n");
3960     
3961     for (i = 0; i<res->num_diagnostics; i++)
3962     {
3963         if (res->diagnostics[i].uri)
3964             printf ("SRW diagnostic %s\n",
3965                     res->diagnostics[i].uri);
3966         else
3967             printf ("SRW diagnostic missing or could not be decoded\n");
3968         if (res->diagnostics[i].message)
3969             printf ("Message: %s\n", res->diagnostics[i].message);
3970         if (res->diagnostics[i].details)
3971             printf ("Details: %s\n", res->diagnostics[i].details);
3972     }
3973     if (res->terms)
3974         for (i = 0; i<res->num_terms; i++)
3975             handle_srw_scan_term(res->terms + i);
3976 }
3977
3978 static void http_response(Z_HTTP_Response *hres)
3979 {
3980     int ret = -1;
3981     const char *connection_head = z_HTTP_header_lookup(hres->headers,
3982                                                        "Connection");
3983     if (!yaz_srw_check_content_type(hres))
3984         printf("Content type does not appear to be XML\n");
3985     else
3986     {
3987         Z_SOAP *soap_package = 0;
3988         ODR o = odr_createmem(ODR_DECODE);
3989         Z_SOAP_Handler soap_handlers[3] = {
3990             {YAZ_XMLNS_SRU_v1_1, 0, (Z_SOAP_fun) yaz_srw_codec},
3991             {YAZ_XMLNS_UPDATE_v0_9, 0, (Z_SOAP_fun) yaz_ucp_codec},
3992             {0, 0, 0}
3993         };
3994         ret = z_soap_codec(o, &soap_package,
3995                            &hres->content_buf, &hres->content_len,
3996                            soap_handlers);
3997         if (!ret && soap_package->which == Z_SOAP_generic)
3998         {
3999             Z_SRW_PDU *sr = (Z_SRW_PDU *) soap_package->u.generic->p;
4000             if (sr->which == Z_SRW_searchRetrieve_response)
4001                 handle_srw_response(sr->u.response);
4002             else if (sr->which == Z_SRW_explain_response)
4003                 handle_srw_explain_response(sr->u.explain_response);
4004             else if (sr->which == Z_SRW_scan_response)
4005                 handle_srw_scan_response(sr->u.scan_response);
4006             else if (sr->which == Z_SRW_update_response)
4007                 printf("Got update response. Status: %s\n",
4008                        sr->u.update_response->operationStatus);
4009             else
4010                 ret = -1;
4011         }
4012         else if (soap_package && (soap_package->which == Z_SOAP_fault
4013                                   || soap_package->which == Z_SOAP_error))
4014         {
4015             printf ("HTTP Error Status=%d\n", hres->code);
4016             printf ("SOAP Fault code %s\n",
4017                     soap_package->u.fault->fault_code);
4018             printf ("SOAP Fault string %s\n", 
4019                     soap_package->u.fault->fault_string);
4020             if (soap_package->u.fault->details)
4021                 printf ("SOAP Details %s\n", 
4022                         soap_package->u.fault->details);
4023         }
4024         else
4025         {
4026             printf("z_soap_codec failed. (no SOAP error)\n");
4027             ret = -1;
4028         }
4029         odr_destroy(o);
4030     }
4031     if (ret)
4032     {
4033         if (hres->code != 200)
4034         {
4035             printf ("HTTP Error Status=%d\n", hres->code);
4036         }
4037         else
4038         {
4039             printf ("Decoding of SRW package failed\n");
4040         }
4041         close_session();
4042     }
4043     else
4044     {
4045         if (!strcmp(hres->version, "1.0"))
4046         {
4047             /* HTTP 1.0: only if Keep-Alive we stay alive.. */
4048             if (!connection_head || strcmp(connection_head, "Keep-Alive"))
4049                 close_session();
4050         }
4051         else 
4052         {
4053             /* HTTP 1.1: only if no close we stay alive .. */
4054             if (connection_head && !strcmp(connection_head, "close"))
4055                 close_session();
4056         }
4057     }
4058 }
4059 #endif
4060
4061 void wait_and_handle_response(int one_response_only) 
4062 {
4063     int reconnect_ok = 1;
4064     int res;
4065     char *netbuffer= 0;
4066     int netbufferlen = 0;
4067 #if HAVE_GETTIMEOFDAY
4068     int got_tv_end = 0;
4069     struct timeval tv_end;
4070 #endif
4071     Z_GDU *gdu;
4072     
4073     while(conn)
4074     {
4075         res = cs_get(conn, &netbuffer, &netbufferlen);
4076         if (reconnect_ok && res <= 0 && protocol == PROTO_HTTP)
4077         {
4078             cs_close(conn);
4079             conn = 0;
4080             cmd_open(0);
4081             reconnect_ok = 0;
4082             if (conn)
4083             {
4084                 char *buf_out;
4085                 int len_out;
4086                 
4087                 buf_out = odr_getbuf(out, &len_out, 0);
4088                 
4089                 do_hex_dump(buf_out, len_out);
4090
4091                 cs_put(conn, buf_out, len_out);
4092                 
4093                 odr_reset(out);
4094                 continue;
4095             }
4096         }
4097         else if (res <= 0)
4098         {
4099             printf("Target closed connection\n");
4100             close_session();
4101             break;
4102         }
4103 #if HAVE_GETTIMEOFDAY
4104         if (got_tv_end == 0)
4105             gettimeofday (&tv_end, 0); /* count first one only */
4106         got_tv_end++;
4107 #endif
4108         odr_reset(out);
4109         odr_reset(in); /* release APDU from last round */
4110         record_last = 0;
4111         do_hex_dump(netbuffer, res);
4112         odr_setbuf(in, netbuffer, res, 0);
4113         
4114         if (!z_GDU(in, &gdu, 0, 0))
4115         {
4116             FILE *f = ber_file ? ber_file : stdout;
4117             odr_perror(in, "Decoding incoming APDU");
4118             fprintf(f, "[Near %ld]\n", (long) odr_offset(in));
4119             fprintf(f, "Packet dump:\n---------\n");
4120             odr_dumpBER(f, netbuffer, res);
4121             fprintf(f, "---------\n");
4122             if (apdu_file)
4123             {
4124                 z_GDU(print, &gdu, 0, 0);
4125                 odr_reset(print);
4126             }
4127             if (conn && cs_more(conn))
4128                 continue;
4129             break;
4130         }
4131         if (ber_file)
4132             odr_dumpBER(ber_file, netbuffer, res);
4133         if (apdu_file && !z_GDU(print, &gdu, 0, 0))
4134         {
4135             odr_perror(print, "Failed to print incoming APDU");
4136             odr_reset(print);
4137                 continue;
4138         }
4139         if (gdu->which == Z_GDU_Z3950)
4140         {
4141             Z_APDU *apdu = gdu->u.z3950;
4142             switch(apdu->which)
4143             {
4144             case Z_APDU_initResponse:
4145                 process_initResponse(apdu->u.initResponse);
4146                 break;
4147             case Z_APDU_searchResponse:
4148                 process_searchResponse(apdu->u.searchResponse);
4149                 break;
4150             case Z_APDU_scanResponse:
4151                 process_scanResponse(apdu->u.scanResponse);
4152                 break;
4153             case Z_APDU_presentResponse:
4154                 print_refid (apdu->u.presentResponse->referenceId);
4155                 setno +=
4156                     *apdu->u.presentResponse->numberOfRecordsReturned;
4157                 if (apdu->u.presentResponse->records)
4158                     display_records(apdu->u.presentResponse->records);
4159                 else
4160                     printf("No records.\n");
4161                 printf ("nextResultSetPosition = %d\n",
4162                         *apdu->u.presentResponse->nextResultSetPosition);
4163                 break;
4164             case Z_APDU_sortResponse:
4165                 process_sortResponse(apdu->u.sortResponse);
4166                 break;
4167             case Z_APDU_extendedServicesResponse:
4168                 printf("Got extended services response\n");
4169                 process_ESResponse(apdu->u.extendedServicesResponse);
4170                 break;
4171             case Z_APDU_close:
4172                 printf("Target has closed the association.\n");
4173                 process_close(apdu->u.close);
4174                 break;
4175             case Z_APDU_resourceControlRequest:
4176                 process_resourceControlRequest
4177                     (apdu->u.resourceControlRequest);
4178                 break;
4179             case Z_APDU_deleteResultSetResponse:
4180                 process_deleteResultSetResponse(apdu->u.
4181                                                 deleteResultSetResponse);
4182                 break;
4183             default:
4184                 printf("Received unknown APDU type (%d).\n", 
4185                        apdu->which);
4186                 close_session ();
4187             }
4188         }
4189 #if YAZ_HAVE_XML2
4190         else if (gdu->which == Z_GDU_HTTP_Response)
4191         {
4192             http_response(gdu->u.HTTP_Response);
4193         }
4194 #endif
4195         if (one_response_only)
4196             break;
4197         if (conn && !cs_more(conn))
4198             break;
4199     }
4200 #if HAVE_GETTIMEOFDAY
4201     if (got_tv_end)
4202     {
4203 #if 0
4204         printf ("S/U S/U=%ld/%ld %ld/%ld",
4205                 (long) tv_start.tv_sec,
4206                 (long) tv_start.tv_usec,
4207                 (long) tv_end.tv_sec,
4208                 (long) tv_end.tv_usec);
4209 #endif
4210         printf ("Elapsed: %.6f\n",
4211                 (double) tv_end.tv_usec / 1e6 + tv_end.tv_sec -
4212                 ((double) tv_start.tv_usec / 1e6 + tv_start.tv_sec));
4213     }
4214 #endif
4215     xfree (netbuffer);
4216 }
4217
4218
4219 int cmd_cclparse(const char* arg) 
4220 {
4221     int error, pos;
4222     struct ccl_rpn_node *rpn=NULL;
4223     
4224     
4225     rpn = ccl_find_str (bibset, arg, &error, &pos);
4226     
4227     if (error) {
4228         int ioff = 3+strlen(last_cmd)+1+pos;
4229         printf ("%*s^ - ", ioff, " ");
4230         printf ("%s\n", ccl_err_msg (error));
4231     }
4232     else
4233     {
4234         if (rpn)
4235         {       
4236             ccl_pr_tree(rpn, stdout); 
4237         }
4238     }
4239     if (rpn)
4240         ccl_rpn_delete(rpn);
4241     
4242     printf ("\n");
4243     
4244     return 0;
4245 }
4246
4247
4248 int cmd_set_otherinfo(const char* args)
4249 {
4250     char oidstr[101], otherinfoString[101];
4251     int otherinfoNo;
4252     int sscan_res;
4253     
4254     sscan_res = sscanf (args, "%d %100[^ ] %100s", 
4255                         &otherinfoNo, oidstr, otherinfoString);
4256
4257     if (sscan_res > 0 && otherinfoNo >= maxOtherInfosSupported) {
4258         printf("Error otherinfo index too large (%d>=%d)\n",
4259                otherinfoNo,maxOtherInfosSupported);
4260         return 0;
4261     }
4262     
4263
4264     if (sscan_res==1) 
4265     {
4266         /* reset this otherinfo */
4267         extraOtherInfos[otherinfoNo].oid[0] = -1;
4268         xfree(extraOtherInfos[otherinfoNo].value);                   
4269         extraOtherInfos[otherinfoNo].value = 0;
4270         return 0;
4271     }
4272     if (sscan_res != 3) {
4273         printf("Error in set_otherinfo command \n");
4274         return 0;
4275     }
4276     else
4277     {
4278         NMEM oid_tmp = nmem_create();
4279         const Odr_oid *oid =
4280             yaz_string_to_oid_nmem(yaz_oid_std(),
4281                                    CLASS_GENERAL, oidstr, oid_tmp);
4282         oid_oidcpy(extraOtherInfos[otherinfoNo].oid, oid);
4283             
4284         xfree(extraOtherInfos[otherinfoNo].value);
4285         extraOtherInfos[otherinfoNo].value = xstrdup(otherinfoString);
4286
4287         nmem_destroy(oid_tmp);
4288     }
4289     
4290     return 0;
4291 }
4292
4293 int cmd_sleep(const char* args ) 
4294 {
4295     int sec=atoi(args);
4296     if( sec > 0 ) {
4297 #ifdef WIN32
4298         Sleep(sec*1000);
4299 #else
4300         sleep(sec);
4301 #endif
4302         printf("Done sleeping %d seconds\n", sec);      
4303     }
4304     return 1;    
4305 }
4306
4307 int cmd_list_otherinfo(const char* args)
4308 {
4309     int i;         
4310     
4311     if (strlen(args)>0)
4312     {
4313         i = atoi(args);
4314         if (i >= maxOtherInfosSupported)
4315         {
4316             printf("Error otherinfo index to large (%d>%d)\n",i,maxOtherInfosSupported);
4317             return 0;
4318         }
4319         if (extraOtherInfos[i].value)
4320         {
4321             char name_oid[OID_STR_MAX];
4322             oid_class oclass;
4323             const char *name =
4324                 yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4325                                       name_oid);
4326             printf("  otherinfo %d %s %s\n",
4327                    i, name ? name : "null",
4328                    extraOtherInfos[i].value);
4329         }
4330         
4331     } 
4332     else 
4333     {            
4334         for(i = 0; i < maxOtherInfosSupported; ++i)
4335         {
4336             if (extraOtherInfos[i].value)
4337             {
4338                 char name_oid[OID_STR_MAX];
4339                 oid_class oclass;
4340                 const char *name =
4341                     yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4342                                           name_oid);
4343                 printf("  otherinfo %d %s %s\n",
4344                        i, name ? name : "null",
4345                        extraOtherInfos[i].value);
4346             }
4347         }
4348     }
4349     return 0;
4350 }
4351
4352
4353 int cmd_list_all(const char* args) {
4354     int i;
4355     
4356     /* connection options */
4357     if(conn) {
4358         printf("Connected to         : %s\n",last_open_command);
4359     } else {
4360         if(last_open_command) 
4361             printf("Not connected to     : %s\n",last_open_command);
4362         else 
4363             printf("Not connected        : \n");
4364         
4365     }
4366     if(yazProxy) printf("using proxy          : %s\n",yazProxy);                
4367     
4368     printf("auto_reconnect       : %s\n",auto_reconnect?"on":"off");
4369     printf("auto_wait            : %s\n",auto_wait?"on":"off");
4370     
4371     if (!auth) {
4372         printf("Authentication       : none\n");
4373     } else {
4374         switch(auth->which) {
4375         case Z_IdAuthentication_idPass:
4376             printf("Authentication       : IdPass\n"); 
4377             printf("    Login User       : %s\n",auth->u.idPass->userId?auth->u.idPass->userId:"");
4378             printf("    Login Group      : %s\n",auth->u.idPass->groupId?auth->u.idPass->groupId:"");
4379             printf("    Password         : %s\n",auth->u.idPass->password?auth->u.idPass->password:"");
4380             break;
4381         case Z_IdAuthentication_open:
4382             printf("Authentication       : psOpen\n");                  
4383             printf("    Open string      : %s\n",auth->u.open); 
4384             break;
4385         default:
4386             printf("Authentication       : Unknown\n");
4387         }
4388     }
4389     if (negotiationCharset)
4390         printf("Neg. Character set   : `%s'\n", negotiationCharset);
4391     
4392     /* bases */
4393     printf("Bases                : ");
4394     for (i = 0; i<num_databaseNames; i++) printf("%s ",databaseNames[i]);
4395     printf("\n");
4396     
4397     /* Query options */
4398     printf("CCL file             : %s\n",ccl_fields);
4399     printf("CQL file             : %s\n",cql_fields);
4400     printf("Query type           : %s\n",query_type_as_string(queryType));
4401     
4402     printf("Named Result Sets    : %s\n",setnumber==-1?"off":"on");
4403     
4404     /* piggy back options */
4405     printf("ssub/lslb/mspn       : %d/%d/%d\n",smallSetUpperBound,largeSetLowerBound,mediumSetPresentNumber);
4406     
4407     /* print present related options */
4408     if (recordsyntax_size > 0)
4409     {
4410         printf("Format               : %s\n", recordsyntax_list[0]);
4411     }
4412     printf("Schema               : %s\n",record_schema ? record_schema : "not set");
4413     printf("Elements             : %s\n",elementSetNames?elementSetNames->u.generic:"");
4414     
4415     /* loging options */
4416     printf("APDU log             : %s\n",apdu_file?"on":"off");
4417     printf("Record log           : %s\n",marc_file?"on":"off");
4418     
4419     /* other infos */
4420     printf("Other Info: \n");
4421     cmd_list_otherinfo("");
4422     
4423     return 0;
4424 }
4425
4426 int cmd_clear_otherinfo(const char* args) 
4427 {
4428     if(strlen(args)>0) {
4429         int otherinfoNo = atoi(args);
4430         if (otherinfoNo >= maxOtherInfosSupported) {
4431             printf("Error otherinfo index too large (%d>=%d)\n",
4432                    otherinfoNo, maxOtherInfosSupported);
4433             return 0;
4434         }
4435         if (extraOtherInfos[otherinfoNo].value)
4436         {                 
4437             /* only clear if set. */
4438             extraOtherInfos[otherinfoNo].oid[0] = -1;
4439             xfree(extraOtherInfos[otherinfoNo].value);
4440             extraOtherInfos[otherinfoNo].value = 0;
4441         }
4442     } else {
4443         int i;
4444         for(i = 0; i < maxOtherInfosSupported; ++i) 
4445         {
4446             if (extraOtherInfos[i].value)
4447             {                               
4448                 extraOtherInfos[i].oid[0] = -1;
4449                 xfree(extraOtherInfos[i].value);
4450                 extraOtherInfos[i].value = 0;
4451             }
4452         }
4453     }
4454     return 0;
4455 }
4456
4457 int cmd_wait_response(const char *arg)
4458 {
4459     int wait_for = atoi(arg);
4460     int i=0;
4461     if( wait_for < 1 ) {
4462         wait_for = 1;
4463     };
4464     
4465     for( i=0 ; i < wait_for ; ++i ) {
4466         wait_and_handle_response(1);
4467     };
4468     return 0;
4469 }
4470
4471 static int cmd_help (const char *line);
4472
4473 typedef char *(*completerFunctionType)(const char *text, int state);
4474
4475 static struct {
4476     char *cmd;
4477     int (*fun)(const char *arg);
4478     char *ad;
4479         completerFunctionType rl_completerfunction;
4480     int complete_filenames;
4481     const char **local_tabcompletes;
4482 } cmd_array[] = {
4483     {"open", cmd_open, "('tcp'|'ssl')':<host>[':'<port>][/<db>]",NULL,0,NULL},
4484     {"quit", cmd_quit, "",NULL,0,NULL},
4485     {"find", cmd_find, "<query>",NULL,0,NULL},
4486     {"delete", cmd_delete, "<setname>",NULL,0,NULL},
4487     {"base", cmd_base, "<base-name>",NULL,0,NULL},
4488     {"show", cmd_show, "<rec#>['+'<#recs>['+'<setname>]]",NULL,0,NULL},
4489     {"setscan", cmd_setscan, "<term>",NULL,0,NULL},
4490     {"scan", cmd_scan, "<term>",NULL,0,NULL},
4491     {"scanstep", cmd_scanstep, "<size>",NULL,0,NULL},
4492     {"scanpos", cmd_scanpos, "<size>",NULL,0,NULL},
4493     {"scansize", cmd_scansize, "<size>",NULL,0,NULL},
4494     {"sort", cmd_sort, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4495     {"sort+", cmd_sort_newset, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4496     {"authentication", cmd_authentication, "<acctstring>",NULL,0,NULL},
4497     {"lslb", cmd_lslb, "<largeSetLowerBound>",NULL,0,NULL},
4498     {"ssub", cmd_ssub, "<smallSetUpperBound>",NULL,0,NULL},
4499     {"mspn", cmd_mspn, "<mediumSetPresentNumber>",NULL,0,NULL},
4500     {"status", cmd_status, "",NULL,0,NULL},
4501     {"setnames", cmd_setnames, "",NULL,0,NULL},
4502     {"cancel", cmd_cancel, "",NULL,0,NULL},
4503     {"cancel_find", cmd_cancel_find, "<query>",NULL,0,NULL},
4504     {"format", cmd_format, "<recordsyntax>",complete_format,0,NULL},
4505     {"schema", cmd_schema, "<schema>",complete_schema,0,NULL},
4506     {"elements", cmd_elements, "<elementSetName>",NULL,0,NULL},
4507     {"close", cmd_close, "",NULL,0,NULL},
4508     {"querytype", cmd_querytype, "<type>",complete_querytype,0,NULL},
4509     {"refid", cmd_refid, "<id>",NULL,0,NULL},
4510     {"itemorder", cmd_itemorder, "ill|item|xml <itemno>",NULL,0,NULL},
4511     {"update", cmd_update, "<action> <recid> [<doc>]",NULL,0,NULL},
4512     {"update0", cmd_update0, "<action> <recid> [<doc>]",NULL,0,NULL},
4513     {"xmles", cmd_xmles, "<OID> <doc>",NULL,0,NULL},
4514     {"packagename", cmd_packagename, "<packagename>",NULL,0,NULL},
4515     {"proxy", cmd_proxy, "[('tcp'|'ssl')]<host>[':'<port>]",NULL,0,NULL},
4516     {"charset", cmd_charset, "<nego_charset> <output_charset>",NULL,0,NULL},
4517     {"negcharset", cmd_negcharset, "<nego_charset>",NULL,0,NULL},
4518     {"displaycharset", cmd_displaycharset, "<output_charset>",NULL,0,NULL},
4519     {"marccharset", cmd_marccharset, "<charset_name>",NULL,0,NULL},
4520     {"querycharset", cmd_querycharset, "<charset_name>",NULL,0,NULL},
4521     {"lang", cmd_lang, "<language_code>",NULL,0,NULL},
4522     {"source", cmd_source_echo, "<filename>",NULL,1,NULL},
4523     {".", cmd_source_echo, "<filename>",NULL,1,NULL},
4524     {"!", cmd_subshell, "Subshell command",NULL,1,NULL},
4525     {"set_apdufile", cmd_set_apdufile, "<filename>",NULL,1,NULL},
4526     {"set_berfile", cmd_set_berfile, "<filename>",NULL,1,NULL},
4527     {"set_marcdump", cmd_set_marcdump," <filename>",NULL,1,NULL},
4528     {"set_cclfile", cmd_set_cclfile," <filename>",NULL,1,NULL},
4529     {"set_cqlfile", cmd_set_cqlfile," <filename>",NULL,1,NULL},
4530     {"set_auto_reconnect", cmd_set_auto_reconnect," on|off",complete_auto_reconnect,1,NULL},
4531     {"set_auto_wait", cmd_set_auto_wait," on|off",complete_auto_reconnect,1,NULL},
4532     {"set_otherinfo", cmd_set_otherinfo,"<otherinfoinddex> <oid> <string>",NULL,0,NULL},
4533     {"sleep", cmd_sleep,"<seconds>",NULL,0,NULL},
4534     {"register_oid", cmd_register_oid,"<name> <class> <oid>",NULL,0,NULL},
4535     {"push_command", cmd_push_command,"<command>",command_generator,0,NULL},
4536     {"register_tab", cmd_register_tab,"<commandname> <tab>",command_generator,0,NULL},
4537     {"cclparse", cmd_cclparse,"<ccl find command>",NULL,0,NULL},
4538     {"list_otherinfo",cmd_list_otherinfo,"[otherinfoinddex]",NULL,0,NULL},
4539     {"list_all",cmd_list_all,"",NULL,0,NULL},
4540     {"clear_otherinfo",cmd_clear_otherinfo,"",NULL,0,NULL},
4541     {"wait_response",cmd_wait_response,"<number>",NULL,0,NULL},
4542     /* Server Admin Functions */
4543     {"adm-reindex", cmd_adm_reindex, "<database-name>",NULL,0,NULL},
4544     {"adm-truncate", cmd_adm_truncate, "('database'|'index')<object-name>",NULL,0,NULL},
4545     {"adm-create", cmd_adm_create, "",NULL,0,NULL},
4546     {"adm-drop", cmd_adm_drop, "('database'|'index')<object-name>",NULL,0,NULL},
4547     {"adm-import", cmd_adm_import, "<record-type> <dir> <pattern>",NULL,0,NULL},
4548     {"adm-refresh", cmd_adm_refresh, "",NULL,0,NULL},
4549     {"adm-commit", cmd_adm_commit, "",NULL,0,NULL},
4550     {"adm-shutdown", cmd_adm_shutdown, "",NULL,0,NULL},
4551     {"adm-startup", cmd_adm_startup, "",NULL,0,NULL},
4552     {"explain", cmd_explain, "", NULL, 0, NULL},
4553     {"options", cmd_options, "", NULL, 0, NULL},
4554     {"zversion", cmd_zversion, "", NULL, 0, NULL},
4555     {"help", cmd_help, "", NULL,0,NULL},
4556     {"init", cmd_init, "", NULL,0,NULL},
4557     {"sru", cmd_sru, "<method> <version>", NULL,0,NULL},
4558     {"exit", cmd_quit, "",NULL,0,NULL},
4559     {0,0,0,0,0,0}
4560 };
4561
4562 static int cmd_help (const char *line)
4563 {
4564     int i;
4565     char topic[21];
4566     
4567     *topic = 0;
4568     sscanf (line, "%20s", topic);
4569
4570     if (*topic == 0)
4571         printf("Commands:\n");
4572     for (i = 0; cmd_array[i].cmd; i++)
4573         if (*topic == 0 || strcmp (topic, cmd_array[i].cmd) == 0)
4574             printf("   %s %s\n", cmd_array[i].cmd, cmd_array[i].ad);
4575     if (!strcmp(topic, "find"))
4576     {
4577         printf("RPN:\n");
4578         printf(" \"term\"                        Simple Term\n");
4579         printf(" @attr [attset] type=value op  Attribute\n");
4580         printf(" @and opl opr                  And\n");
4581         printf(" @or opl opr                   Or\n");
4582         printf(" @not opl opr                  And-Not\n");
4583         printf(" @set set                      Result set\n");
4584         printf(" @prox exl dist ord rel uc ut  Proximity. Use help prox\n");
4585         printf("\n");
4586         printf("Bib-1 attribute types\n");
4587         printf("1=Use:         ");
4588         printf("4=Title 7=ISBN 8=ISSN 30=Date 62=Abstract 1003=Author 1016=Any\n");
4589         printf("2=Relation:    ");
4590         printf("1<   2<=  3=  4>=  5>  6!=  102=Relevance\n");
4591         printf("3=Position:    ");
4592         printf("1=First in Field  2=First in subfield  3=Any position\n");
4593         printf("4=Structure:   ");
4594         printf("1=Phrase  2=Word  3=Key  4=Year  5=Date  6=WordList\n");
4595         printf("5=Truncation:  ");
4596         printf("1=Right  2=Left  3=L&R  100=No  101=#  102=Re-1  103=Re-2\n");
4597         printf("6=Completeness:");
4598         printf("1=Incomplete subfield  2=Complete subfield  3=Complete field\n");
4599     }
4600     if (!strcmp(topic, "prox"))
4601     {
4602         printf("Proximity:\n");
4603         printf(" @prox exl dist ord rel uc ut\n");
4604         printf(" exl:  exclude flag . 0=include, 1=exclude.\n");
4605         printf(" dist: distance integer.\n");
4606         printf(" ord:  order flag. 0=unordered, 1=ordered.\n");
4607         printf(" rel:  relation integer. 1<  2<=  3= 4>=  5>  6!= .\n");
4608         printf(" uc:   unit class. k=known, p=private.\n");
4609         printf(" ut:   unit type. 1=character, 2=word, 3=sentence,\n");
4610         printf("        4=paragraph, 5=section, 6=chapter, 7=document,\n");
4611         printf("        8=element, 9=subelement, 10=elementType, 11=byte.\n");
4612         printf("\nExamples:\n");
4613         printf(" Search for a and b in-order at most 3 words apart:\n");
4614         printf("  @prox 0 3 1 2 k 2 a b\n");
4615         printf(" Search for any order of a and b next to each other:\n");
4616         printf("  @prox 0 1 0 3 k 2 a b\n");
4617     }
4618     return 1;
4619 }
4620
4621 int cmd_register_tab(const char* arg) 
4622 {
4623 #if HAVE_READLINE_READLINE_H
4624     char command[101], tabargument[101];
4625     int i;
4626     int num_of_tabs;
4627     const char** tabslist;
4628     
4629     if (sscanf (arg, "%100s %100s", command, tabargument) < 1) {
4630         return 0;
4631     }
4632     
4633     /* locate the amdn in the list */
4634     for (i = 0; cmd_array[i].cmd; i++) {
4635         if (!strncmp(cmd_array[i].cmd, command, strlen(command))) {
4636             break;
4637         }
4638     }
4639     
4640     if (!cmd_array[i].cmd) { 
4641         fprintf(stderr,"Unknown command %s\n",command);
4642         return 1;
4643     }
4644     
4645         
4646     if (!cmd_array[i].local_tabcompletes)
4647         cmd_array[i].local_tabcompletes = (const char **) calloc(1,sizeof(char**));
4648     
4649     num_of_tabs=0;              
4650     
4651     tabslist = cmd_array[i].local_tabcompletes;
4652     for(; tabslist && *tabslist; tabslist++) {
4653         num_of_tabs++;
4654     }
4655     
4656     cmd_array[i].local_tabcompletes = (const char **)
4657         realloc(cmd_array[i].local_tabcompletes,
4658                 (num_of_tabs+2)*sizeof(char**));
4659     tabslist = cmd_array[i].local_tabcompletes;
4660     tabslist[num_of_tabs] = strdup(tabargument);
4661     tabslist[num_of_tabs+1] = NULL;
4662 #endif
4663     return 1;
4664 }
4665
4666
4667 void process_cmd_line(char* line)
4668 {  
4669     int i, res;
4670     char word[32], arg[10240];
4671     
4672 #if HAVE_GETTIMEOFDAY
4673     gettimeofday (&tv_start, 0);
4674 #endif
4675     
4676     if ((res = sscanf(line, "%31s %10239[^;]", word, arg)) <= 0)
4677     {
4678         strcpy(word, last_cmd);
4679         *arg = '\0';
4680     }
4681     else if (res == 1)
4682         *arg = 0;
4683     strcpy(last_cmd, word);
4684     
4685     /* removed tailing spaces from the arg command */
4686     { 
4687         char* p = arg;
4688         char* lastnonspace=NULL;
4689         
4690         for(;*p; ++p) {
4691             if(!isspace(*(unsigned char *) p)) {
4692                 lastnonspace = p;
4693             }
4694         }
4695         if(lastnonspace) 
4696             *(++lastnonspace) = 0;
4697     }
4698     
4699     for (i = 0; cmd_array[i].cmd; i++)
4700         if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
4701         {
4702             res = (*cmd_array[i].fun)(arg);
4703             break;
4704         }
4705     
4706     if (!cmd_array[i].cmd) /* dump our help-screen */
4707     {
4708         printf("Unknown command: %s.\n", word);
4709         printf("Type 'help' for list of commands\n");
4710         res = 1;
4711     }
4712     
4713     if(apdu_file) fflush(apdu_file);
4714     
4715     if (res >= 2 && auto_wait)
4716         wait_and_handle_response(0);
4717     
4718     if(apdu_file)
4719         fflush(apdu_file);
4720     if(marc_file)
4721         fflush(marc_file);
4722 }
4723
4724 static char *command_generator(const char *text, int state) 
4725 {
4726 #if HAVE_READLINE_READLINE_H
4727     static int idx; 
4728     if (state==0) {
4729         idx = 0;
4730     }
4731     for( ; cmd_array[idx].cmd; ++idx) {
4732         if (!strncmp(cmd_array[idx].cmd, text, strlen(text))) {
4733             ++idx;  /* skip this entry on the next run */
4734             return strdup(cmd_array[idx-1].cmd);
4735         }
4736     }
4737 #endif
4738     return NULL;
4739 }
4740
4741 #if HAVE_READLINE_READLINE_H
4742 static const char** default_completer_list = NULL;
4743
4744 static char* default_completer(const char* text, int state)
4745 {
4746     return complete_from_list(default_completer_list, text, state);
4747 }
4748 #endif
4749
4750 #if HAVE_READLINE_READLINE_H
4751
4752 /* 
4753    This function only known how to complete on the first word
4754 */
4755 char **readline_completer(char *text, int start, int end)
4756 {
4757     completerFunctionType completerToUse;
4758     
4759     if(start == 0) {
4760 #if HAVE_READLINE_RL_COMPLETION_MATCHES
4761         char** res = rl_completion_matches(text, command_generator); 
4762 #else
4763         char** res = completion_matches(text,
4764                                         (CPFunction*)command_generator); 
4765 #endif
4766         rl_attempted_completion_over = 1;
4767         return res;
4768     } else {
4769         char arg[10240],word[32];
4770         int i=0 ,res;
4771         if ((res = sscanf(rl_line_buffer, "%31s %10239[^;]", word, arg)) <= 0) {     
4772             rl_attempted_completion_over = 1;
4773             return NULL;
4774         }
4775         
4776         for (i = 0; cmd_array[i].cmd; i++)
4777             if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
4778                 break;
4779         
4780         if(!cmd_array[i].cmd)
4781             return NULL;
4782         
4783         default_completer_list = cmd_array[i].local_tabcompletes;
4784         
4785         completerToUse = cmd_array[i].rl_completerfunction;
4786         if (!completerToUse) 
4787         { /* if command completer is not defined use the default completer */
4788             completerToUse = default_completer;
4789         }
4790         if (completerToUse) {
4791 #ifdef HAVE_READLINE_RL_COMPLETION_MATCHES
4792             char** res=
4793                 rl_completion_matches(text, completerToUse);
4794 #else
4795             char** res=
4796                 completion_matches(text, (CPFunction*)completerToUse);
4797 #endif
4798             if (!cmd_array[i].complete_filenames) 
4799                 rl_attempted_completion_over = 1;
4800             return res;
4801         } else {
4802             if (!cmd_array[i].complete_filenames) 
4803                 rl_attempted_completion_over = 1;
4804             return 0;
4805         }
4806     }
4807 }
4808 #endif
4809
4810 #ifndef WIN32
4811 void ctrl_c_handler(int x)
4812 {
4813     exit_client(0);
4814 }
4815 #endif
4816
4817 static void client(void)
4818 {
4819     char line[10240];
4820
4821     line[10239] = '\0';
4822
4823 #ifndef WIN32
4824     signal(SIGINT, ctrl_c_handler);
4825 #endif
4826
4827 #if HAVE_GETTIMEOFDAY
4828     gettimeofday (&tv_start, 0);
4829 #endif
4830
4831     while (1)
4832     {
4833         char *line_in = NULL;
4834 #if HAVE_READLINE_READLINE_H
4835         if (isatty(0))
4836         {
4837             line_in=readline(C_PROMPT);
4838             if (!line_in)
4839                 break;
4840 #if HAVE_READLINE_HISTORY_H
4841             if (*line_in)
4842                 add_history(line_in);
4843 #endif
4844             strncpy(line, line_in, sizeof(line)-1);
4845             free(line_in);
4846         }
4847 #endif 
4848         if (!line_in)
4849         {
4850             char *end_p;
4851             printf (C_PROMPT);
4852             fflush(stdout);
4853             if (!fgets(line, sizeof(line)-1, stdin))
4854                 break;
4855             if ((end_p = strchr (line, '\n')))
4856                 *end_p = '\0';
4857         }
4858         if (isatty(0))
4859             file_history_add_line(file_history, line);
4860         process_cmd_line(line);
4861     }
4862 }
4863
4864 static void show_version(void)
4865 {
4866     char vstr[20];
4867
4868     yaz_version(vstr, 0);
4869     printf ("YAZ version: %s\n", YAZ_VERSION);
4870     if (strcmp(vstr, YAZ_VERSION))
4871         printf ("YAZ DLL/SO: %s\n", vstr);
4872     exit(0);
4873 }
4874
4875 int main(int argc, char **argv)
4876 {
4877     char *prog = *argv;
4878     char *open_command = 0;
4879     char *auth_command = 0;
4880     char *arg;
4881     const char *rc_file = 0;
4882     int ret;
4883     
4884 #if HAVE_LOCALE_H
4885     if (!setlocale(LC_CTYPE, ""))
4886         fprintf (stderr, "setlocale failed\n");
4887 #endif
4888 #if HAVE_LANGINFO_H
4889 #ifdef CODESET
4890     codeset = nl_langinfo(CODESET);
4891 #endif
4892 #endif
4893     if (codeset)
4894         outputCharset = xstrdup(codeset);
4895     
4896     ODR_MASK_SET(&z3950_options, Z_Options_search);
4897     ODR_MASK_SET(&z3950_options, Z_Options_present);
4898     ODR_MASK_SET(&z3950_options, Z_Options_namedResultSets);
4899     ODR_MASK_SET(&z3950_options, Z_Options_triggerResourceCtrl);
4900     ODR_MASK_SET(&z3950_options, Z_Options_scan);
4901     ODR_MASK_SET(&z3950_options, Z_Options_sort);
4902     ODR_MASK_SET(&z3950_options, Z_Options_extendedServices);
4903     ODR_MASK_SET(&z3950_options, Z_Options_delSet);
4904     ODR_MASK_SET(&z3950_options, Z_Options_negotiationModel);
4905
4906     while ((ret = options("k:c:q:a:b:m:v:p:u:t:Vxd:f:", argv, argc, &arg)) != -2)
4907     {
4908         switch (ret)
4909         {
4910         case 0:
4911             if (!open_command)
4912             {
4913                 open_command = (char *) xmalloc (strlen(arg)+6);
4914                 strcpy (open_command, "open ");
4915                 strcat (open_command, arg);
4916             }
4917             else
4918             {
4919                 fprintf(stderr, "%s: Specify at most one server address\n",
4920                         prog);
4921                 exit(1);
4922             }
4923             break;
4924         case 'a':
4925             if (!strcmp(arg, "-"))
4926                 apdu_file=stderr;
4927             else
4928                 apdu_file=fopen(arg, "a");
4929             break;
4930         case 'b':
4931             if (!strcmp(arg, "-"))
4932                 ber_file=stderr;
4933             else
4934                 ber_file=fopen(arg, "a");
4935             break;
4936         case 'c':
4937             strncpy (ccl_fields, arg, sizeof(ccl_fields)-1);
4938             ccl_fields[sizeof(ccl_fields)-1] = '\0';
4939             break;
4940         case 'd':
4941             dump_file_prefix = arg;
4942             break;
4943         case 'f':
4944             rc_file = arg;
4945             break;
4946         case 'k':
4947             kilobytes = atoi(arg);
4948             break;
4949         case 'm':
4950             if (!(marc_file = fopen (arg, "a")))
4951             {
4952                 perror (arg);
4953                 exit (1);
4954             }
4955             break;
4956         case 'p':
4957             yazProxy = xstrdup(arg);
4958             break;
4959         case 'q':
4960             strncpy (cql_fields, arg, sizeof(cql_fields)-1);
4961             cql_fields[sizeof(cql_fields)-1] = '\0';
4962             break;
4963         case 't':
4964             outputCharset = xstrdup(arg);
4965             break;
4966         case 'u':
4967             if (!auth_command)
4968             {
4969                 auth_command = (char *) xmalloc (strlen(arg)+6);
4970                 strcpy (auth_command, "auth ");
4971                 strcat (auth_command, arg);
4972             }
4973             break;
4974         case 'v':
4975             yaz_log_init(yaz_log_mask_str(arg), "", 0);
4976             break;
4977         case 'V':
4978             show_version();
4979             break;
4980         case 'x':
4981             hex_dump = 1;
4982             break;
4983         default:
4984             fprintf (stderr, "Usage: %s "
4985                      " [-a apdulog]"
4986                      " [-b berdump]"
4987                      " [-c cclfile]"
4988                      " [-d dump]"
4989                      " [-f cmdfile]"
4990                      " [-k size]"
4991                      " [-m marclog]" 
4992                      " [-p proxy-addr]"
4993                      " [-q cqlfile]"
4994                      " [-t dispcharset]"
4995                      " [-u auth]"
4996                      " [-v loglevel]"
4997                      " [-V]"
4998                      " [-x]"
4999                      " [server-addr]\n",
5000                      prog);
5001             exit (1);
5002         }      
5003     }
5004     initialize(rc_file);
5005     if (auth_command)
5006     {
5007 #ifdef HAVE_GETTIMEOFDAY
5008         gettimeofday (&tv_start, 0);
5009 #endif
5010         process_cmd_line (auth_command);
5011 #if HAVE_READLINE_HISTORY_H
5012         add_history(auth_command);
5013 #endif
5014         xfree(auth_command);
5015     }
5016     if (open_command)
5017     {
5018 #ifdef HAVE_GETTIMEOFDAY
5019         gettimeofday (&tv_start, 0);
5020 #endif
5021         process_cmd_line (open_command);
5022 #if HAVE_READLINE_HISTORY_H
5023         add_history(open_command);
5024 #endif
5025         xfree(open_command);
5026     }
5027     client();
5028     exit_client(0);
5029     return 0;
5030 }
5031 /*
5032  * Local variables:
5033  * c-basic-offset: 4
5034  * indent-tabs-mode: nil
5035  * End:
5036  * vim: shiftwidth=4 tabstop=8 expandtab
5037  */
5038