Merge cookies on SRU redirects.
[yaz-moved-to-github.git] / client / client.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2010 Index Data
3  * See the file LICENSE for details.
4  */
5 /** \file client.c
6  *  \brief yaz-client program
7  */
8
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <assert.h>
12 #include <time.h>
13 #include <ctype.h>
14 #ifndef WIN32
15 #include <signal.h>
16 #endif
17 #if HAVE_SYS_TYPES_H
18 #include <sys/types.h>
19 #endif
20 #if HAVE_LOCALE_H
21 #include <locale.h>
22 #endif
23 #if HAVE_LANGINFO_H
24 #include <langinfo.h>
25 #endif
26 #if HAVE_UNISTD_H
27 #include <unistd.h>
28 #endif
29 #if HAVE_SYS_STAT_H
30 #include <sys/stat.h>
31 #endif
32 #if HAVE_SYS_TIME_H
33 #include <sys/time.h>
34 #endif
35
36 #ifdef WIN32
37 #include <sys/stat.h>
38 #include <io.h>
39 #include <windows.h>
40 #define S_ISREG(x) (x & _S_IFREG)
41 #define S_ISDIR(x) (x & _S_IFDIR)
42 #endif
43
44 #include <yaz/yaz-util.h>
45
46 #include <yaz/comstack.h>
47
48 #include <yaz/oid_db.h>
49 #define NO_OID 1
50 #include <yaz/proto.h>
51 #include <yaz/marcdisp.h>
52 #include <yaz/diagbib1.h>
53 #include <yaz/otherinfo.h>
54 #include <yaz/charneg.h>
55 #include <yaz/query-charset.h>
56
57 #include <yaz/pquery.h>
58 #include <yaz/sortspec.h>
59
60 #include <yaz/ill.h>
61 #include <yaz/srw.h>
62 #include <yaz/yaz-ccl.h>
63 #include <yaz/cql.h>
64 #include <yaz/log.h>
65
66 #if HAVE_READLINE_READLINE_H
67 #include <readline/readline.h>
68 #endif
69 #if HAVE_READLINE_HISTORY_H
70 #include <readline/history.h>
71 #endif
72
73
74 #include "admin.h"
75 #include "tabcomplete.h"
76 #include "fhistory.h"
77
78 #define C_PROMPT "Z> "
79
80 static file_history_t file_history = 0;
81
82 static char sru_method[10] = "soap";
83 static char sru_version[10] = "1.2";
84 static char *codeset = 0;               /* character set for output */
85 static int hex_dump = 0;
86 static char *dump_file_prefix = 0;
87 static ODR out, in, print;              /* encoding and decoding streams */
88 #if YAZ_HAVE_XML2
89 static ODR srw_sr_odr_out = 0;
90 static Z_SRW_PDU *srw_sr = 0;
91 #endif
92 static FILE *apdu_file = 0;
93 static FILE *ber_file = 0;
94 static COMSTACK conn = 0;               /* our z-association */
95
96 static Z_IdAuthentication *auth = 0;    /* our current auth definition */
97 static NMEM nmem_auth = NULL;
98
99 char *databaseNames[128];
100 int num_databaseNames = 0;
101 static Z_External *record_last = 0;
102 static int setnumber = -1;              /* current result set number */
103 static int smallSetUpperBound = 0;
104 static int largeSetLowerBound = 1;
105 static int mediumSetPresentNumber = 0;
106 static Z_ElementSetNames *elementSetNames = 0;
107 static Odr_int setno = 1;                   /* current set offset */
108 static enum oid_proto protocol = PROTO_Z3950;      /* current app protocol */
109 #define RECORDSYNTAX_MAX 20
110 static char *recordsyntax_list[RECORDSYNTAX_MAX];
111 static int recordsyntax_size = 0;
112
113 static char *record_schema = 0;
114 static int sent_close = 0;
115 static NMEM session_mem = NULL;         /* memory handle for init-response */
116 static Z_InitResponse *session_initResponse = 0;   /* session parameters */
117 static char last_scan_line[512] = "0";
118 static char last_scan_query[512] = "0";
119 static char ccl_fields[512] = "default.bib";
120 /* ### How can I set this path to use wherever YAZ is installed? */
121 static char cql_fields[512] = "/usr/local/share/yaz/etc/pqf.properties";
122 static char *esPackageName = 0;
123 static char *yazProxy = 0;
124 static int kilobytes = 1024;
125 static char *negotiationCharset = 0;
126 static int  negotiationCharsetRecords = 1;
127 static int  negotiationCharsetVersion = 3;
128 static char *outputCharset = 0;
129 static char *marcCharset = 0;
130 static char *queryCharset = 0;
131 static char* yazLang = 0;
132
133 static char last_cmd[32] = "?";
134 static FILE *marc_file = 0;
135 static char *refid = NULL;
136 static int auto_reconnect = 0;
137 static int auto_wait = 1;
138 static Odr_bitmask z3950_options;
139 static int z3950_version = 3;
140 static int scan_stepSize = 0;
141 static int scan_position = 1;
142 static int scan_size = 20;
143 static char cur_host[200];
144 static Odr_int last_hit_count = 0;
145
146 typedef enum {
147     QueryType_Prefix,
148     QueryType_CCL,
149     QueryType_CCL2RPN,
150     QueryType_CQL,
151     QueryType_CQL2RPN
152 } QueryType;
153
154 static QueryType queryType = QueryType_Prefix;
155
156 static CCL_bibset bibset;               /* CCL bibset handle */
157 static cql_transform_t cqltrans = 0; /* CQL context-set handle */
158
159 #if HAVE_READLINE_COMPLETION_OVER
160
161 #else
162 /* readline doesn't have this var. Define it ourselves. */
163 int rl_attempted_completion_over = 0;
164 #endif
165
166 #define maxOtherInfosSupported 10
167 struct eoi {
168     Odr_oid oid[OID_SIZE];
169     char* value;
170 } extraOtherInfos[maxOtherInfosSupported];
171
172 void process_cmd_line(char* line);
173 #if HAVE_READLINE_READLINE_H
174 char **readline_completer(char *text, int start, int end);
175 #endif
176 static char *command_generator(const char *text, int state);
177 int cmd_register_tab(const char* arg);
178 int cmd_querycharset(const char *arg);
179
180 static void close_session(void);
181
182 static void marc_file_write(const char *buf, size_t sz);
183
184 static void wait_and_handle_response(int one_response_only);
185 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url);
186
187 ODR getODROutputStream(void)
188 {
189     return out;
190 }
191
192 const char* query_type_as_string(QueryType q)
193 {
194     switch (q) {
195     case QueryType_Prefix: return "prefix (RPN sent to server)";
196     case QueryType_CCL: return "CCL (CCL sent to server) ";
197     case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
198     case QueryType_CQL: return "CQL (CQL sent to server)";
199     case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
200     default:
201         return "unknown Query type internal yaz-client error";
202     }
203 }
204
205 static void do_hex_dump(const char* buf, size_t len)
206 {
207     if (hex_dump)
208     {
209         size_t i;
210         int x;
211         for (i = 0; i < len ; i = i+16 )
212         {
213             printf(" %4.4ld ", (long) i);
214             for(x=0 ; i+x<len && x<16; ++x)
215             {
216                 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
217             }
218             printf("\n");
219         }
220     }
221     if (dump_file_prefix)
222     {
223         static int no = 0;
224         if (++no < 1000 && strlen(dump_file_prefix) < 500)
225         {
226             char fname[1024];
227             FILE *of;
228             sprintf(fname, "%s.%03d.raw", dump_file_prefix, no);
229             of = fopen(fname, "wb");
230
231             if (fwrite(buf, 1, len, of) != len)
232             {
233                 printf("write failed for %s", fname);
234             }
235             if (fclose(of))
236             {
237                 printf("close failed for %s", fname);
238             }
239         }
240     }
241 }
242
243 void add_otherInfos(Z_APDU *a)
244 {
245     Z_OtherInformation **oi;
246     int i;
247
248     yaz_oi_APDU(a, &oi);
249     for(i=0; i<maxOtherInfosSupported; ++i)
250     {
251         if (oid_oidlen(extraOtherInfos[i].oid) > 0)
252             yaz_oi_set_string_oid(oi, out, extraOtherInfos[i].oid,
253                                      1, extraOtherInfos[i].value);
254     }
255 }
256
257 int send_apdu(Z_APDU *a)
258 {
259     char *buf;
260     int len;
261
262     add_otherInfos(a);
263
264     if (apdu_file)
265     {
266         z_APDU(print, &a, 0, 0);
267         odr_reset(print);
268     }
269     if (!z_APDU(out, &a, 0, 0))
270     {
271         odr_perror(out, "Encoding APDU");
272         close_session();
273         return 0;
274     }
275     buf = odr_getbuf(out, &len, 0);
276     if (ber_file)
277         odr_dumpBER(ber_file, buf, len);
278     /* printf ("sending APDU of size %d\n", len); */
279     do_hex_dump(buf, len);
280     if (cs_put(conn, buf, len) < 0)
281     {
282         fprintf(stderr, "cs_put: %s", cs_errmsg(cs_errno(conn)));
283         close_session();
284         return 0;
285     }
286     odr_reset(out); /* release the APDU structure  */
287     return 1;
288 }
289
290 static void print_stringn(const char *buf, size_t len)
291 {
292     size_t i;
293     for (i = 0; i < len; i++)
294         if ((buf[i] <= 126 && buf[i] >= 32) || strchr("\n\r\t\f", buf[i]))
295             printf("%c", buf[i]);
296         else
297             printf("\\X%02X", ((const unsigned char *)buf)[i]);
298 }
299
300 static void print_refid(Z_ReferenceId *id)
301 {
302     if (id)
303     {
304         printf("Reference Id: ");
305         print_stringn((const char *) id->buf, id->len);
306         printf("\n");
307     }
308 }
309
310 static Z_ReferenceId *set_refid(ODR out)
311 {
312     Z_ReferenceId *id;
313     if (!refid)
314         return 0;
315     id = (Z_ReferenceId *) odr_malloc(out, sizeof(*id));
316     id->size = id->len = strlen(refid);
317     id->buf = (unsigned char *) odr_malloc(out, id->len);
318     memcpy(id->buf, refid, id->len);
319     return id;
320 }
321
322 /* INIT SERVICE ------------------------------- */
323
324 static void send_initRequest(const char* type_and_host)
325 {
326     Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
327     Z_InitRequest *req = apdu->u.initRequest;
328     int i;
329
330     req->options = &z3950_options;
331
332     ODR_MASK_ZERO(req->protocolVersion);
333     for (i = 0; i<z3950_version; i++)
334         ODR_MASK_SET(req->protocolVersion, i);
335
336     *req->maximumRecordSize = 1024*kilobytes;
337     *req->preferredMessageSize = 1024*kilobytes;
338
339     req->idAuthentication = auth;
340
341     req->referenceId = set_refid(out);
342
343     if (yazProxy && type_and_host)
344     {
345         yaz_oi_set_string_oid(&req->otherInfo, out, yaz_oid_userinfo_proxy,
346                               1, type_and_host);
347     }
348
349     if (negotiationCharset || yazLang) {
350         Z_OtherInformation **p;
351         Z_OtherInformationUnit *p0;
352
353         yaz_oi_APDU(apdu, &p);
354
355         if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
356         {
357             ODR_MASK_SET(req->options, Z_Options_negotiationModel);
358
359             p0->which = Z_OtherInfo_externallyDefinedInfo;
360             p0->information.externallyDefinedInfo =
361                 yaz_set_proposal_charneg_list(out, ",",
362                                               negotiationCharset,
363                                               yazLang,
364                                               negotiationCharsetRecords);
365         }
366     }
367     if (send_apdu(apdu))
368         printf("Sent initrequest.\n");
369 }
370
371
372 /* These two are used only from process_initResponse() */
373 static void render_initUserInfo(Z_OtherInformation *ui1);
374 static void render_diag(Z_DiagnosticFormat *diag);
375
376 static void pr_opt(const char *opt, void *clientData)
377 {
378     printf(" %s", opt);
379 }
380
381 static int process_initResponse(Z_InitResponse *res)
382 {
383     int ver = 0;
384     /* save session parameters for later use */
385     session_mem = odr_extract_mem(in);
386     session_initResponse = res;
387
388     for (ver = 0; ver < 8; ver++)
389         if (!ODR_MASK_GET(res->protocolVersion, ver))
390             break;
391
392     if (!*res->result)
393         printf("Connection rejected by v%d target.\n", ver);
394     else
395         printf("Connection accepted by v%d target.\n", ver);
396     if (res->implementationId)
397         printf("ID     : %s\n", res->implementationId);
398     if (res->implementationName)
399         printf("Name   : %s\n", res->implementationName);
400     if (res->implementationVersion)
401         printf("Version: %s\n", res->implementationVersion);
402     if (res->userInformationField)
403     {
404         Z_External *uif = res->userInformationField;
405         if (uif->which == Z_External_userInfo1) {
406             render_initUserInfo(uif->u.userInfo1);
407         } else {
408             printf("UserInformationfield:\n");
409             if (!z_External(print, (Z_External**)&uif, 0, 0))
410             {
411                 odr_perror(print, "Printing userinfo\n");
412                 odr_reset(print);
413             }
414             if (uif->which == Z_External_octet) {
415                 printf("Guessing visiblestring:\n");
416                 printf("'%.*s'\n", uif->u.octet_aligned->len,
417                        uif->u.octet_aligned->buf);
418             }
419             else if (uif->which == Z_External_single)
420             {
421                 Odr_any *sat = uif->u.single_ASN1_type;
422                 if (!oid_oidcmp(uif->direct_reference,
423                                 yaz_oid_userinfo_oclc_userinfo))
424                 {
425                     Z_OCLC_UserInformation *oclc_ui;
426                     ODR decode = odr_createmem(ODR_DECODE);
427                     odr_setbuf(decode, (char *) sat->buf, sat->len, 0);
428                     if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
429                         printf("Bad OCLC UserInformation:\n");
430                     else
431                         printf("OCLC UserInformation:\n");
432                     if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
433                         printf("Bad OCLC UserInformation spec\n");
434                     odr_destroy(decode);
435                 }
436                 else
437                 {
438                     /* Peek at any private Init-diagnostic APDUs */
439                     printf("yaz-client ignoring unrecognised userInformationField: %d-octet External '%.*s'\n",
440                            (int) sat->len, sat->len, sat->buf);
441                 }
442             }
443             odr_reset(print);
444         }
445     }
446     printf("Options:");
447     yaz_init_opt_decode(res->options, pr_opt, 0);
448     printf("\n");
449
450     if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
451         setnumber = 0;
452
453     if (ODR_MASK_GET(res->options, Z_Options_negotiationModel)) {
454
455         Z_CharSetandLanguageNegotiation *p =
456                 yaz_get_charneg_record(res->otherInfo);
457
458         if (p)
459         {
460             char *charset=NULL, *lang=NULL;
461             int selected;
462
463             yaz_get_response_charneg(session_mem, p, &charset, &lang,
464                                      &selected);
465
466             printf("Accepted character set : %s\n", charset ? charset:"none");
467             printf("Accepted code language : %s\n", lang ? lang:"none");
468             printf("Accepted records in ...: %d\n", selected );
469
470             if (outputCharset && charset)
471             {
472                 printf("Converting between %s and %s\n",
473                        outputCharset, charset);
474                 odr_set_charset(out, charset, outputCharset);
475                 odr_set_charset(in, outputCharset, charset);
476                 cmd_querycharset(charset);
477             }
478             else
479             {
480                 odr_set_charset(out, 0, 0);
481                 odr_set_charset(in, 0, 0);
482             }
483         }
484     }
485     fflush(stdout);
486     return 0;
487 }
488
489
490 static void render_initUserInfo(Z_OtherInformation *ui1) {
491     int i;
492     printf("Init response contains %d otherInfo unit%s:\n",
493            ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
494
495     for (i = 0; i < ui1->num_elements; i++) {
496         Z_OtherInformationUnit *unit = ui1->list[i];
497         printf("  %d: otherInfo unit contains ", i+1);
498         if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
499             unit->information.externallyDefinedInfo &&
500             unit->information.externallyDefinedInfo->which ==
501             Z_External_diag1) {
502             render_diag(unit->information.externallyDefinedInfo->u.diag1);
503         }
504         else if (unit->which != Z_OtherInfo_externallyDefinedInfo)
505         {
506             printf("unsupported otherInfo unit->which = %d\n", unit->which);
507         }
508         else
509         {
510             printf("unsupported otherInfo unit external %d\n",
511                    unit->information.externallyDefinedInfo ?
512                    unit->information.externallyDefinedInfo->which : -2);
513         }
514     }
515 }
516
517
518 /* ### should this share code with display_diagrecs()? */
519 static void render_diag(Z_DiagnosticFormat *diag) {
520     int i;
521
522     printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
523     for (i = 0; i < diag->num; i++) {
524         Z_DiagnosticFormat_s *ds = diag->elements[i];
525         printf("    %d: ", i+1);
526         switch (ds->which) {
527         case Z_DiagnosticFormat_s_defaultDiagRec: {
528             Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
529             /* ### should check `dd->diagnosticSetId' */
530             printf("code=" ODR_INT_PRINTF " (%s)", *dd->condition,
531                    diagbib1_str(*dd->condition));
532             /* Both types of addinfo are the same, so use type-pun */
533             if (dd->u.v2Addinfo != 0)
534                 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
535             break;
536         }
537         case Z_DiagnosticFormat_s_explicitDiagnostic:
538             printf("Explicit diagnostic (not supported)");
539             break;
540         default:
541             printf("Unrecognised diagnostic type %d", ds->which);
542             break;
543         }
544
545         if (ds->message != 0)
546             printf(", message='%s'", ds->message);
547         printf("\n");
548     }
549 }
550
551
552 static int set_base(const char *arg)
553 {
554     int i;
555     const char *cp;
556
557     for (i = 0; i<num_databaseNames; i++)
558         xfree(databaseNames[i]);
559     num_databaseNames = 0;
560     while (1)
561     {
562         char *cp1;
563         if (!(cp = strchr(arg, ' ')))
564             cp = arg + strlen(arg);
565         if (cp - arg < 1)
566             break;
567         databaseNames[num_databaseNames] = (char *)xmalloc(1 + cp - arg);
568         memcpy(databaseNames[num_databaseNames], arg, cp - arg);
569         databaseNames[num_databaseNames][cp - arg] = '\0';
570
571         for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
572             if (*cp1 == '+')
573                 *cp1 = ' ';
574         num_databaseNames++;
575
576         if (!*cp)
577             break;
578         arg = cp+1;
579     }
580     if (num_databaseNames == 0)
581     {
582         num_databaseNames = 1;
583         databaseNames[0] = xstrdup("");
584     }
585     return 1;
586 }
587
588 static int parse_cmd_doc(const char **arg, ODR out, char **buf, int *len)
589 {
590     const char *sep;
591     while (**arg && strchr(" \t\n\r\f", **arg))
592         (*arg)++;
593     if (**arg == '\0')
594     {
595         return 0;
596     }
597     else if ((*arg)[0] == '<')
598     {
599         size_t fsize;
600         FILE *inf;
601         const char *fname;
602         const char *arg_start = ++(*arg);
603
604         while (**arg != '\0' && **arg != ' ')
605             (*arg)++;
606
607         fname = odr_strdupn(out, arg_start, *arg - arg_start);
608
609         inf = fopen(fname, "rb");
610         if (!inf)
611         {
612             printf("Couldn't open %s\n", fname);
613             return 0;
614         }
615         if (fseek(inf, 0L, SEEK_END) == -1)
616         {
617             printf("Couldn't seek in %s\n", fname);
618             fclose(inf);
619             return 0;
620         }
621         fsize = ftell(inf);
622         if (fseek(inf, 0L, SEEK_SET) == -1)
623         {
624             printf("Couldn't seek in %s\n", fname);
625             fclose(inf);
626             return 0;
627         }
628         *len = fsize;
629         *buf = (char *) odr_malloc(out, fsize+1);
630         (*buf)[fsize] = '\0';
631         if (fread(*buf, 1, fsize, inf) != fsize)
632         {
633             printf("Unable to read %s\n", fname);
634             fclose(inf);
635             return 0;
636         }
637         fclose(inf);
638     }
639     else if ((*arg)[0] == '\"' && (sep=strchr(*arg+1, '"')))
640     {
641         (*arg)++;
642         *len = sep - *arg;
643         *buf = odr_strdupn(out, *arg, *len);
644         (*arg) = sep+1;
645     }
646     else
647     {
648         const char *arg_start = *arg;
649
650         while (**arg != '\0' && **arg != ' ')
651             (*arg)++;
652
653         *len = *arg - arg_start;
654         *buf = odr_strdupn(out, arg_start, *len);
655     }
656     return 1;
657 }
658
659 static int cmd_base(const char *arg)
660 {
661     if (!*arg)
662     {
663         printf("Usage: base <database> <database> ...\n");
664         return 0;
665     }
666     return set_base(arg);
667 }
668
669 static int session_connect_base(const char *arg, const char **basep)
670 {
671     void *add;
672     char type_and_host[101];
673     if (conn)
674     {
675         cs_close(conn);
676         conn = 0;
677     }
678     if (session_mem)
679     {
680         nmem_destroy(session_mem);
681         session_mem = NULL;
682         session_initResponse = 0;
683     }
684     cs_get_host_args(arg, basep);
685
686     strncpy(type_and_host, arg, sizeof(type_and_host)-1);
687     type_and_host[sizeof(type_and_host)-1] = '\0';
688
689     if (yazProxy)
690         conn = cs_create_host(yazProxy, 1, &add);
691     else
692         conn = cs_create_host(arg, 1, &add);
693     if (!conn)
694     {
695         printf("Could not resolve address %s\n", arg);
696         return 0;
697     }
698 #if YAZ_HAVE_XML2
699 #else
700     if (conn->protocol == PROTO_HTTP)
701     {
702         printf("SRW/HTTP not enabled in this YAZ\n");
703         cs_close(conn);
704         conn = 0;
705         return 0;
706     }
707 #endif
708     protocol = conn->protocol;
709     printf("Connecting...");
710     fflush(stdout);
711     if (cs_connect(conn, add) < 0)
712     {
713         printf("error = %s\n", cs_strerror(conn));
714         cs_close(conn);
715         conn = 0;
716         return 0;
717     }
718     printf("OK.\n");
719     cs_print_session_info(conn);
720     if (protocol == PROTO_Z3950)
721     {
722         send_initRequest(type_and_host);
723         return 2;
724     }
725     return 0;
726 }
727
728 static int session_connect(const char *arg)
729 {
730     int r;
731     const char *basep = 0;
732
733     r = session_connect_base(arg, &basep);
734     if (basep && *basep)
735         set_base(basep);
736     else if (protocol == PROTO_Z3950)
737         set_base("Default");
738     return r;
739 }
740
741 int cmd_open(const char *arg)
742 {
743     int r;
744     if (arg)
745     {
746         strncpy(cur_host, arg, sizeof(cur_host)-1);
747         cur_host[sizeof(cur_host)-1] = 0;
748     }
749
750     set_base("");
751     r = session_connect(cur_host);
752     if (conn && conn->protocol == PROTO_HTTP)
753         queryType = QueryType_CQL;
754
755
756     return r;
757 }
758
759 int cmd_authentication(const char *arg)
760 {
761     char **args;
762     int r;
763
764     nmem_reset(nmem_auth);
765     nmem_strsplit_blank(nmem_auth, arg, &args, &r);
766
767     if (r == 0)
768     {
769         printf("Authentication set to null\n");
770         auth = 0;
771     }
772     else if (r == 1)
773     {
774         auth = (Z_IdAuthentication *) nmem_malloc(nmem_auth, sizeof(*auth));
775         if (!strcmp(args[0], "-"))
776         {
777             auth->which = Z_IdAuthentication_anonymous;
778             auth->u.anonymous = odr_nullval();
779             printf("Authentication set to Anonymous\n");
780         } 
781         else
782         {
783             auth->which = Z_IdAuthentication_open;
784             auth->u.open = args[0];
785             printf("Authentication set to Open (%s)\n", args[0]);
786         }
787     }
788     else if (r == 2)
789     {
790         auth = (Z_IdAuthentication *) nmem_malloc(nmem_auth, sizeof(*auth));
791         auth->which = Z_IdAuthentication_idPass;
792         auth->u.idPass = (Z_IdPass *)
793             nmem_malloc(nmem_auth, sizeof(*auth->u.idPass));
794         auth->u.idPass->groupId = NULL;
795         auth->u.idPass->userId = !strcmp(args[0], "-") ? 0 : args[0];
796         auth->u.idPass->password = !strcmp(args[1], "-") ? 0 : args[1];
797         printf("Authentication set to User (%s), Pass (%s)\n",
798                args[0], args[1]);
799     }
800     else if (r == 3)
801     {
802         auth = (Z_IdAuthentication*) nmem_malloc(nmem_auth, sizeof(*auth));
803         auth->which = Z_IdAuthentication_idPass;
804         auth->u.idPass = (Z_IdPass *)
805             nmem_malloc(nmem_auth, sizeof(*auth->u.idPass));
806         auth->u.idPass->groupId = args[1];
807         auth->u.idPass->userId = args[0];
808         auth->u.idPass->password = args[2];
809         printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
810                args[0], args[1], args[2]);
811     }
812     else
813     {
814         printf("Bad number of args to auth\n");
815         auth = 0;
816     }
817
818     return 1;
819 }
820
821 /* SEARCH SERVICE ------------------------------ */
822 static void display_record(Z_External *r);
823
824 static void print_record(const char *buf, size_t len)
825 {
826     size_t i = len;
827     print_stringn(buf, len);
828     /* add newline if not already added ... */
829     if (i <= 0 || buf[i-1] != '\n')
830         printf("\n");
831 }
832
833 static void display_record(Z_External *r)
834 {
835     const Odr_oid *oid = r->direct_reference;
836
837     record_last = r;
838     /*
839      * Tell the user what we got.
840      */
841     if (oid)
842     {
843         oid_class oclass;
844         char oid_name_buf[OID_STR_MAX];
845         const char *oid_name
846             =  yaz_oid_to_string_buf(oid, &oclass, oid_name_buf);
847         printf("Record type: ");
848         if (oid_name)
849             printf("%s\n", oid_name);
850     }
851     /* Check if this is a known, ASN.1 type tucked away in an octet string */
852     if (r->which == Z_External_octet)
853     {
854         Z_ext_typeent *type = z_ext_getentbyref(r->direct_reference);
855         char *rr;
856
857         if (type)
858         {
859             /*
860              * Call the given decoder to process the record.
861              */
862             odr_setbuf(in, (char*)r->u.octet_aligned->buf,
863                 r->u.octet_aligned->len, 0);
864             if (!(*type->fun)(in, &rr, 0, 0))
865             {
866                 odr_perror(in, "Decoding constructed record.");
867                 fprintf(stdout, "[Near %ld]\n", (long) odr_offset(in));
868                 fprintf(stdout, "Packet dump:\n---------\n");
869                 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
870                             r->u.octet_aligned->len);
871                 fprintf(stdout, "---------\n");
872
873                 /* note just ignores the error ant print the bytes form the octet_aligned later */
874             } else {
875                 /*
876                  * Note: we throw away the original, BER-encoded record here.
877                  * Do something else with it if you want to keep it.
878                  */
879                 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
880                 r->which = type->what;
881             }
882         }
883     }
884     if (oid && r->which == Z_External_octet)
885     {
886         const char *octet_buf = (const char*)r->u.octet_aligned->buf;
887         size_t octet_len = r->u.octet_aligned->len;
888         if (!oid_oidcmp(oid, yaz_oid_recsyn_xml)
889             || !oid_oidcmp(oid, yaz_oid_recsyn_xml)
890             || !oid_oidcmp(oid, yaz_oid_recsyn_html))
891         {
892             fwrite(octet_buf, 1, octet_len, stdout);
893         }
894         else if (yaz_oid_is_iso2709(oid))
895         {
896             const char *result;
897             size_t rlen;
898             yaz_iconv_t cd = 0;
899             yaz_marc_t mt = yaz_marc_create();
900             const char *from = 0;
901             
902             if (marcCharset && !strcmp(marcCharset, "auto"))
903             {
904                 if (!oid_oidcmp(oid, yaz_oid_recsyn_usmarc))
905                 {
906                     if (octet_buf[9] == 'a')
907                         from = "UTF-8";
908                     else
909                         from = "MARC-8";
910                 }
911                 else
912                     from = "ISO-8859-1";
913             }
914             else if (marcCharset)
915                 from = marcCharset;
916             if (outputCharset && from)
917             {
918                 cd = yaz_iconv_open(outputCharset, from);
919                 printf("convert from %s to %s", from,
920                        outputCharset);
921                 if (!cd)
922                     printf(" unsupported\n");
923                 else
924                 {
925                     yaz_marc_iconv(mt, cd);
926                     printf("\n");
927                 }
928             }
929             
930             if (yaz_marc_decode_buf(mt, octet_buf, octet_len,
931                                     &result, &rlen)> 0)
932             {
933                 if (fwrite(result, rlen, 1, stdout) != 1)
934                 {
935                     printf("write to stdout failed\n");
936                 }
937             }
938             else
939             {
940                 printf("bad MARC. Dumping as it is:\n");
941                 print_record(octet_buf, octet_len);
942             }
943             yaz_marc_destroy(mt);
944             if (cd)
945                 yaz_iconv_close(cd);
946         }
947         else
948         {
949             print_record(octet_buf, octet_len);
950         }
951         marc_file_write(octet_buf, r->u.octet_aligned->len);
952     }
953     else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_sutrs))
954     {
955         if (r->which != Z_External_sutrs)
956         {
957             printf("Expecting single SUTRS type for SUTRS.\n");
958             return;
959         }
960         print_record((const char *) r->u.sutrs->buf, r->u.sutrs->len);
961         marc_file_write((const char *) r->u.sutrs->buf, r->u.sutrs->len);
962     }
963     else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_grs_1))
964     {
965         WRBUF w;
966         if (r->which != Z_External_grs1)
967         {
968             printf("Expecting single GRS type for GRS.\n");
969             return;
970         }
971         w = wrbuf_alloc();
972         yaz_display_grs1(w, r->u.grs1, 0);
973         puts(wrbuf_cstr(w));
974         wrbuf_destroy(w);
975     }
976     else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_opac))
977     {
978         int i;
979         if (r->u.opac->bibliographicRecord)
980             display_record(r->u.opac->bibliographicRecord);
981         for (i = 0; i<r->u.opac->num_holdingsData; i++)
982         {
983             Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
984             if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
985             {
986                 printf("MARC holdings %d\n", i);
987                 display_record(h->u.marcHoldingsRecord);
988             }
989             else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
990             {
991                 int j;
992
993                 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
994
995                 printf("Data holdings %d\n", i);
996                 if (data->typeOfRecord)
997                     printf("typeOfRecord: %s\n", data->typeOfRecord);
998                 if (data->encodingLevel)
999                     printf("encodingLevel: %s\n", data->encodingLevel);
1000                 if (data->receiptAcqStatus)
1001                     printf("receiptAcqStatus: %s\n", data->receiptAcqStatus);
1002                 if (data->generalRetention)
1003                     printf("generalRetention: %s\n", data->generalRetention);
1004                 if (data->completeness)
1005                     printf("completeness: %s\n", data->completeness);
1006                 if (data->dateOfReport)
1007                     printf("dateOfReport: %s\n", data->dateOfReport);
1008                 if (data->nucCode)
1009                     printf("nucCode: %s\n", data->nucCode);
1010                 if (data->localLocation)
1011                     printf("localLocation: %s\n", data->localLocation);
1012                 if (data->shelvingLocation)
1013                     printf("shelvingLocation: %s\n", data->shelvingLocation);
1014                 if (data->callNumber)
1015                     printf("callNumber: %s\n", data->callNumber);
1016                 if (data->shelvingData)
1017                     printf("shelvingData: %s\n", data->shelvingData);
1018                 if (data->copyNumber)
1019                     printf("copyNumber: %s\n", data->copyNumber);
1020                 if (data->publicNote)
1021                     printf("publicNote: %s\n", data->publicNote);
1022                 if (data->reproductionNote)
1023                     printf("reproductionNote: %s\n", data->reproductionNote);
1024                 if (data->termsUseRepro)
1025                     printf("termsUseRepro: %s\n", data->termsUseRepro);
1026                 if (data->enumAndChron)
1027                     printf("enumAndChron: %s\n", data->enumAndChron);
1028                 for (j = 0; j<data->num_volumes; j++)
1029                 {
1030                     printf("volume %d\n", j);
1031                     if (data->volumes[j]->enumeration)
1032                         printf(" enumeration: %s\n",
1033                                 data->volumes[j]->enumeration);
1034                     if (data->volumes[j]->chronology)
1035                         printf(" chronology: %s\n",
1036                                 data->volumes[j]->chronology);
1037                     if (data->volumes[j]->enumAndChron)
1038                         printf(" enumAndChron: %s\n",
1039                                 data->volumes[j]->enumAndChron);
1040                 }
1041                 for (j = 0; j<data->num_circulationData; j++)
1042                 {
1043                     printf("circulation %d\n", j);
1044                     if (data->circulationData[j]->availableNow)
1045                         printf(" availableNow: %d\n",
1046                                 *data->circulationData[j]->availableNow);
1047                     if (data->circulationData[j]->availablityDate)
1048                         printf(" availabiltyDate: %s\n",
1049                                 data->circulationData[j]->availablityDate);
1050                     if (data->circulationData[j]->availableThru)
1051                         printf(" availableThru: %s\n",
1052                                 data->circulationData[j]->availableThru);
1053                     if (data->circulationData[j]->restrictions)
1054                         printf(" restrictions: %s\n",
1055                                 data->circulationData[j]->restrictions);
1056                     if (data->circulationData[j]->itemId)
1057                         printf(" itemId: %s\n",
1058                                 data->circulationData[j]->itemId);
1059                     if (data->circulationData[j]->renewable)
1060                         printf(" renewable: %d\n",
1061                                 *data->circulationData[j]->renewable);
1062                     if (data->circulationData[j]->onHold)
1063                         printf(" onHold: %d\n",
1064                                 *data->circulationData[j]->onHold);
1065                     if (data->circulationData[j]->enumAndChron)
1066                         printf(" enumAndChron: %s\n",
1067                                 data->circulationData[j]->enumAndChron);
1068                     if (data->circulationData[j]->midspine)
1069                         printf(" midspine: %s\n",
1070                                 data->circulationData[j]->midspine);
1071                     if (data->circulationData[j]->temporaryLocation)
1072                         printf(" temporaryLocation: %s\n",
1073                                 data->circulationData[j]->temporaryLocation);
1074                 }
1075             }
1076         }
1077     }
1078     else
1079     {
1080         printf("Unknown record representation.\n");
1081         if (!z_External(print, &r, 0, 0))
1082         {
1083             odr_perror(print, "Printing external");
1084             odr_reset(print);
1085         }
1086     }
1087 }
1088
1089 static void display_diagrecs(Z_DiagRec **pp, int num)
1090 {
1091     int i;
1092     Z_DefaultDiagFormat *r;
1093
1094     printf("Diagnostic message(s) from database:\n");
1095     for (i = 0; i<num; i++)
1096     {
1097         Z_DiagRec *p = pp[i];
1098         if (p->which != Z_DiagRec_defaultFormat)
1099         {
1100             printf("Diagnostic record not in default format.\n");
1101             return;
1102         }
1103         else
1104             r = p->u.defaultFormat;
1105
1106         if (!r->diagnosticSetId)
1107             printf("Missing diagset\n");
1108         else
1109         {
1110             oid_class oclass;
1111             char diag_name_buf[OID_STR_MAX];
1112             const char *diag_name = 0;
1113             diag_name = yaz_oid_to_string_buf
1114                 (r->diagnosticSetId, &oclass, diag_name_buf);
1115             if (oid_oidcmp(r->diagnosticSetId, yaz_oid_diagset_bib_1))
1116                 printf("Unknown diagset: %s\n", diag_name);
1117         }
1118         printf("    [" ODR_INT_PRINTF "] %s",
1119                *r->condition, diagbib1_str(*r->condition));
1120         switch (r->which)
1121         {
1122         case Z_DefaultDiagFormat_v2Addinfo:
1123             printf(" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1124             break;
1125         case Z_DefaultDiagFormat_v3Addinfo:
1126             printf(" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1127             break;
1128         }
1129     }
1130 }
1131
1132
1133 static void display_nameplusrecord(Z_NamePlusRecord *p)
1134 {
1135     if (p->databaseName)
1136         printf("[%s]", p->databaseName);
1137     if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1138         display_diagrecs(&p->u.surrogateDiagnostic, 1);
1139     else if (p->which == Z_NamePlusRecord_databaseRecord)
1140         display_record(p->u.databaseRecord);
1141 }
1142
1143 static void display_records(Z_Records *p)
1144 {
1145     int i;
1146
1147     if (p->which == Z_Records_NSD)
1148     {
1149         Z_DiagRec dr, *dr_p = &dr;
1150         dr.which = Z_DiagRec_defaultFormat;
1151         dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1152         display_diagrecs(&dr_p, 1);
1153     }
1154     else if (p->which == Z_Records_multipleNSD)
1155         display_diagrecs(p->u.multipleNonSurDiagnostics->diagRecs,
1156                           p->u.multipleNonSurDiagnostics->num_diagRecs);
1157     else
1158     {
1159         printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1160         for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1161             display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1162     }
1163 }
1164
1165 static int send_deleteResultSetRequest(const char *arg)
1166 {
1167     char names[8][32];
1168     int i;
1169
1170     Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1171     Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1172
1173     req->referenceId = set_refid(out);
1174
1175     req->num_resultSetList =
1176         sscanf(arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1177                names[0], names[1], names[2], names[3],
1178                names[4], names[5], names[6], names[7]);
1179
1180     req->deleteFunction = odr_intdup(out, 0);
1181     if (req->num_resultSetList > 0)
1182     {
1183         *req->deleteFunction = Z_DeleteResultSetRequest_list;
1184         req->resultSetList = (char **)
1185             odr_malloc(out, sizeof(*req->resultSetList)*
1186                         req->num_resultSetList);
1187         for (i = 0; i<req->num_resultSetList; i++)
1188             req->resultSetList[i] = names[i];
1189     }
1190     else
1191     {
1192         *req->deleteFunction = Z_DeleteResultSetRequest_all;
1193         req->resultSetList = 0;
1194     }
1195
1196     send_apdu(apdu);
1197     printf("Sent deleteResultSetRequest.\n");
1198     return 2;
1199 }
1200
1201 #if YAZ_HAVE_XML2
1202 static int send_gdu(Z_GDU *gdu)
1203 {
1204     if (z_GDU(out, &gdu, 0, 0))
1205     {
1206         /* encode OK */
1207         char *buf_out;
1208         int len_out;
1209         int r;
1210         if (apdu_file)
1211         {
1212             if (!z_GDU(print, &gdu, 0, 0))
1213                 printf("Failed to print outgoing SRU package\n");
1214             odr_reset(print);
1215         }
1216         buf_out = odr_getbuf(out, &len_out, 0);
1217
1218         /* we don't odr_reset(out), since we may need the buffer again */
1219
1220         do_hex_dump(buf_out, len_out);
1221
1222         r = cs_put(conn, buf_out, len_out);
1223
1224         if (r >= 0)
1225             return 2;
1226     }
1227     return 0;
1228 }
1229
1230 static int send_srw_host_path(Z_SRW_PDU *sr, const char *host_port,
1231                               char *path)
1232 {
1233     const char *charset = negotiationCharset;
1234     Z_GDU *gdu;
1235
1236     gdu = z_get_HTTP_Request_host_path(out, host_port, path);
1237
1238     if (auth)
1239     {
1240         if (auth->which == Z_IdAuthentication_open)
1241         {
1242             char **darray;
1243             int num;
1244             nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1245             if (num >= 1)
1246                 sr->username = darray[0];
1247             if (num >= 2)
1248                 sr->password = darray[1];
1249         }
1250         else if (auth->which == Z_IdAuthentication_idPass)
1251         {
1252             sr->username = auth->u.idPass->userId;
1253             sr->password = auth->u.idPass->password;
1254         }
1255     }
1256
1257     if (!yaz_matchstr(sru_method, "get"))
1258     {
1259         yaz_sru_get_encode(gdu->u.HTTP_Request, sr, out, charset);
1260     }
1261     else if (!yaz_matchstr(sru_method, "post"))
1262     {
1263         yaz_sru_post_encode(gdu->u.HTTP_Request, sr, out, charset);
1264     }
1265     else if (!yaz_matchstr(sru_method, "soap"))
1266     {
1267         yaz_sru_soap_encode(gdu->u.HTTP_Request, sr, out, charset);
1268     }
1269     return send_gdu(gdu);
1270 }
1271
1272 static int send_srw(Z_SRW_PDU *sr)
1273 {
1274     char *path = yaz_encode_sru_dbpath_odr(out, databaseNames[0]);
1275     return send_srw_host_path(sr, cur_host, path);
1276 }
1277
1278 static int send_SRW_redirect(const char *uri, Z_HTTP_Response *cookie_hres)
1279 {
1280     const char *username = 0;
1281     const char *password = 0;
1282     struct Z_HTTP_Header *h;
1283     char *combined_cookies;
1284     int combined_cookies_len = 0;
1285     Z_GDU *gdu = get_HTTP_Request_url(out, uri);
1286
1287     gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
1288     z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
1289                       "text/xml");
1290     
1291     for (h = cookie_hres->headers; h; h = h->next)
1292     {
1293         if (!strcmp(h->name, "Set-Cookie")) {
1294             char *cp;
1295
1296             if (!(cp = strchr(h->value, ';')))
1297                 cp = h->value + strlen(h->value);
1298             if (cp - h->value >= 1) {
1299                 combined_cookies = xrealloc(combined_cookies, combined_cookies_len + cp - h->value + 3);
1300                 memcpy(combined_cookies+combined_cookies_len, h->value, cp - h->value);
1301                 combined_cookies[combined_cookies_len + cp - h->value] = '\0';
1302                 strcat(combined_cookies,"; ");
1303                 combined_cookies_len = strlen(combined_cookies);
1304             }
1305         }
1306     }
1307     if (combined_cookies_len)
1308     {
1309         z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Cookie", combined_cookies);
1310         xfree(combined_cookies);
1311     }
1312
1313     if (auth)
1314     {
1315         if (auth->which == Z_IdAuthentication_open)
1316         {
1317             char **darray;
1318             int num;
1319             nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1320             if (num >= 1)
1321                 username = darray[0];
1322             if (num >= 2)
1323                 password = darray[1];
1324         }
1325         else if (auth->which == Z_IdAuthentication_idPass)
1326         {
1327             username = auth->u.idPass->userId;
1328             password = auth->u.idPass->password;
1329         }
1330     }
1331
1332     if (username && password)
1333     {
1334         z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
1335                                      username, password);
1336     }
1337
1338     return send_gdu(gdu);
1339 }
1340 #endif
1341
1342 #if YAZ_HAVE_XML2
1343 static char *encode_SRW_term(ODR o, const char *q)
1344 {
1345     const char *in_charset = "ISO-8859-1";
1346     WRBUF w = wrbuf_alloc();
1347     yaz_iconv_t cd;
1348     char *res;
1349     if (outputCharset)
1350         in_charset = outputCharset;
1351     cd = yaz_iconv_open("UTF-8", in_charset);
1352     if (!cd)
1353     {
1354         wrbuf_destroy(w);
1355         return odr_strdup(o, q);
1356     }
1357     wrbuf_iconv_write(w, cd, q, strlen(q));
1358     if (wrbuf_len(w))
1359         res = odr_strdup(o, wrbuf_cstr(w));
1360     else
1361         res = odr_strdup(o, q);
1362     yaz_iconv_close(cd);
1363     wrbuf_destroy(w);
1364     return res;
1365 }
1366
1367
1368 static int send_SRW_scanRequest(const char *arg, int pos, int num)
1369 {
1370     Z_SRW_PDU *sr = 0;
1371
1372     /* regular requestse .. */
1373     sr = yaz_srw_get_pdu(out, Z_SRW_scan_request, sru_version);
1374
1375     switch(queryType)
1376     {
1377     case QueryType_CQL:
1378         sr->u.scan_request->query_type = Z_SRW_query_type_cql;
1379         sr->u.scan_request->scanClause.cql = encode_SRW_term(out, arg);
1380         break;
1381     case QueryType_Prefix:
1382         sr->u.scan_request->query_type = Z_SRW_query_type_pqf;
1383         sr->u.scan_request->scanClause.pqf = encode_SRW_term(out, arg);
1384         break;
1385     default:
1386         printf("Only CQL and PQF supported in SRW\n");
1387         return 0;
1388     }
1389     sr->u.scan_request->responsePosition = odr_intdup(out, pos);
1390     sr->u.scan_request->maximumTerms = odr_intdup(out, num);
1391     return send_srw(sr);
1392 }
1393
1394 static int send_SRW_searchRequest(const char *arg)
1395 {
1396     Z_SRW_PDU *sr = 0;
1397
1398     if (!srw_sr)
1399     {
1400         assert(srw_sr_odr_out == 0);
1401         srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1402     }
1403     odr_reset(srw_sr_odr_out);
1404
1405     setno = 1;
1406
1407     /* save this for later .. when fetching individual records */
1408     srw_sr =  yaz_srw_get_pdu(srw_sr_odr_out, Z_SRW_searchRetrieve_request,
1409                               sru_version);
1410
1411     /* regular request .. */
1412     sr = yaz_srw_get_pdu(out, Z_SRW_searchRetrieve_request, sru_version);
1413
1414     switch(queryType)
1415     {
1416     case QueryType_CQL:
1417         srw_sr->u.request->query_type = Z_SRW_query_type_cql;
1418         srw_sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1419
1420         sr->u.request->query_type = Z_SRW_query_type_cql;
1421         sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1422         break;
1423     case QueryType_Prefix:
1424         srw_sr->u.request->query_type = Z_SRW_query_type_pqf;
1425         srw_sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1426
1427         sr->u.request->query_type = Z_SRW_query_type_pqf;
1428         sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1429         break;
1430     default:
1431         printf("Only CQL and PQF supported in SRW\n");
1432         return 0;
1433     }
1434     sr->u.request->maximumRecords = odr_intdup(out, 0);
1435
1436     if (record_schema)
1437         sr->u.request->recordSchema = record_schema;
1438     if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
1439         sr->u.request->recordPacking = "xml";
1440     return send_srw(sr);
1441 }
1442 #endif
1443
1444 static void query_charset_convert(Z_RPNQuery *q)
1445 {
1446     if (queryCharset && outputCharset)
1447     {
1448         yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
1449         if (!cd)
1450         {
1451             printf("Conversion from %s to %s unsupported\n",
1452                    outputCharset, queryCharset);
1453             return;
1454         }
1455         yaz_query_charset_convert_rpnquery(q, out, cd);
1456         yaz_iconv_close(cd);
1457     }
1458 }
1459
1460 static int send_searchRequest(const char *arg)
1461 {
1462     Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1463     Z_SearchRequest *req = apdu->u.searchRequest;
1464     Z_Query query;
1465     struct ccl_rpn_node *rpn = NULL;
1466     int error, pos;
1467     char setstring[100];
1468     Z_RPNQuery *RPNquery;
1469     Odr_oct ccl_query;
1470     YAZ_PQF_Parser pqf_parser;
1471     Z_External *ext;
1472     QueryType myQueryType = queryType;
1473     char pqfbuf[512];
1474
1475     if (myQueryType == QueryType_CCL2RPN)
1476     {
1477         rpn = ccl_find_str(bibset, arg, &error, &pos);
1478         if (error)
1479         {
1480             printf("CCL ERROR: %s\n", ccl_err_msg(error));
1481             return 0;
1482         }
1483     } else if (myQueryType == QueryType_CQL2RPN) {
1484         /* ### All this code should be wrapped in a utility function */
1485         CQL_parser parser;
1486         struct cql_node *node;
1487         const char *addinfo;
1488         if (cqltrans == 0) {
1489             printf("Can't use CQL: no translation file.  Try set_cqlfile\n");
1490             return 0;
1491         }
1492         parser = cql_parser_create();
1493         if ((error = cql_parser_string(parser, arg)) != 0) {
1494             printf("Can't parse CQL: must be a syntax error\n");
1495             return 0;
1496         }
1497         node = cql_parser_result(parser);
1498         if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1499                                        sizeof pqfbuf)) != 0) {
1500             error = cql_transform_error(cqltrans, &addinfo);
1501             printf("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1502                     cql_strerror(error), addinfo);
1503             return 0;
1504         }
1505         arg = pqfbuf;
1506         myQueryType = QueryType_Prefix;
1507     }
1508
1509     req->referenceId = set_refid(out);
1510     if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1511     {
1512         static unsigned char big[2100];
1513         static Odr_oct bigo;
1514
1515         /* send a very big referenceid to test transport stack etc. */
1516         memset(big, 'A', 2100);
1517         bigo.len = bigo.size = 2100;
1518         bigo.buf = big;
1519         req->referenceId = &bigo;
1520     }
1521
1522     if (setnumber >= 0)
1523     {
1524         sprintf(setstring, "%d", ++setnumber);
1525         req->resultSetName = setstring;
1526     }
1527     *req->smallSetUpperBound = smallSetUpperBound;
1528     *req->largeSetLowerBound = largeSetLowerBound;
1529     *req->mediumSetPresentNumber = mediumSetPresentNumber;
1530     if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1531         mediumSetPresentNumber > 0))
1532     {
1533         if (recordsyntax_size)
1534             req->preferredRecordSyntax =
1535                 yaz_string_to_oid_odr(yaz_oid_std(),
1536                                       CLASS_RECSYN, recordsyntax_list[0], out);
1537
1538         req->smallSetElementSetNames =
1539             req->mediumSetElementSetNames = elementSetNames;
1540     }
1541     req->num_databaseNames = num_databaseNames;
1542     req->databaseNames = databaseNames;
1543
1544     req->query = &query;
1545
1546     switch (myQueryType)
1547     {
1548     case QueryType_Prefix:
1549         query.which = Z_Query_type_1;
1550         pqf_parser = yaz_pqf_create();
1551         RPNquery = yaz_pqf_parse(pqf_parser, out, arg);
1552         if (!RPNquery)
1553         {
1554             const char *pqf_msg;
1555             size_t off;
1556             int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
1557             int ioff = off;
1558             printf("%*s^\n", ioff+4, "");
1559             printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1560
1561             yaz_pqf_destroy(pqf_parser);
1562             return 0;
1563         }
1564         yaz_pqf_destroy(pqf_parser);
1565         query_charset_convert(RPNquery);
1566         query.u.type_1 = RPNquery;
1567         break;
1568     case QueryType_CCL:
1569         query.which = Z_Query_type_2;
1570         query.u.type_2 = &ccl_query;
1571         ccl_query.buf = (unsigned char*) arg;
1572         ccl_query.len = strlen(arg);
1573         break;
1574     case QueryType_CCL2RPN:
1575         query.which = Z_Query_type_1;
1576         RPNquery = ccl_rpn_query(out, rpn);
1577         if (!RPNquery)
1578         {
1579             printf("Couldn't convert from CCL to RPN\n");
1580             return 0;
1581         }
1582         query_charset_convert(RPNquery);
1583         query.u.type_1 = RPNquery;
1584         ccl_rpn_delete(rpn);
1585         break;
1586     case QueryType_CQL:
1587         query.which = Z_Query_type_104;
1588         ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1589         ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1590         ext->indirect_reference = 0;
1591         ext->descriptor = 0;
1592         ext->which = Z_External_CQL;
1593         ext->u.cql = odr_strdup(out, arg);
1594         query.u.type_104 =  ext;
1595         break;
1596     default:
1597         printf("Unsupported query type\n");
1598         return 0;
1599     }
1600     if (send_apdu(apdu))
1601         printf("Sent searchRequest.\n");
1602     setno = 1;
1603     return 2;
1604 }
1605
1606 /* display Query Expression as part of searchResult-1 */
1607 static void display_queryExpression(const char *lead, Z_QueryExpression *qe)
1608 {
1609     if (!qe)
1610         return;
1611     printf(" %s=", lead);
1612     if (qe->which == Z_QueryExpression_term)
1613     {
1614         if (qe->u.term->queryTerm)
1615         {
1616             Z_Term *term = qe->u.term->queryTerm;
1617             switch (term->which)
1618             {
1619             case Z_Term_general:
1620                 printf("%.*s", term->u.general->len, term->u.general->buf);
1621                 break;
1622             case Z_Term_characterString:
1623                 printf("%s", term->u.characterString);
1624                 break;
1625             case Z_Term_numeric:
1626                 printf(ODR_INT_PRINTF, *term->u.numeric);
1627                 break;
1628             case Z_Term_null:
1629                 printf("null");
1630                 break;
1631             }
1632         }
1633     }
1634 }
1635
1636 /* see if we can find USR:SearchResult-1 */
1637 static void display_searchResult(Z_OtherInformation *o)
1638 {
1639     int i;
1640     if (!o)
1641         return ;
1642     for (i = 0; i < o->num_elements; i++)
1643     {
1644         if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1645         {
1646             Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1647
1648             if (ext->which == Z_External_searchResult1)
1649             {
1650                 int j;
1651                 Z_SearchInfoReport *sr = ext->u.searchResult1;
1652                 printf("SearchResult-1:");
1653                 for (j = 0; j < sr->num; j++)
1654                 {
1655                     if (j)
1656                         printf(",");
1657                     if (!sr->elements[j]->subqueryExpression)
1658                         printf("%d", j);
1659                     display_queryExpression("term",
1660                         sr->elements[j]->subqueryExpression);
1661                     display_queryExpression("interpretation",
1662                         sr->elements[j]->subqueryInterpretation);
1663                     display_queryExpression("recommendation",
1664                         sr->elements[j]->subqueryRecommendation);
1665                     if (sr->elements[j]->subqueryCount)
1666                         printf(" cnt=" ODR_INT_PRINTF,
1667                                *sr->elements[j]->subqueryCount);
1668                     if (sr->elements[j]->subqueryId)
1669                         printf(" id=%s ", sr->elements[j]->subqueryId);
1670                 }
1671                 printf("\n");
1672             }
1673         }
1674     }
1675 }
1676
1677 static int process_searchResponse(Z_SearchResponse *res)
1678 {
1679     printf("Received SearchResponse.\n");
1680     print_refid(res->referenceId);
1681     if (*res->searchStatus)
1682         printf("Search was a success.\n");
1683     else
1684         printf("Search was a bloomin' failure.\n");
1685     printf("Number of hits: " ODR_INT_PRINTF, *res->resultCount);
1686     last_hit_count = *res->resultCount;
1687     if (setnumber >= 0)
1688         printf(", setno %d", setnumber);
1689     putchar('\n');
1690     if (res->resultSetStatus)
1691     {
1692         printf("Result Set Status: ");
1693         switch(*res->resultSetStatus)
1694         {
1695         case Z_SearchResponse_subset:
1696             printf("subset"); break;
1697         case Z_SearchResponse_interim:
1698             printf("interim"); break;
1699         case Z_SearchResponse_none:
1700             printf("none"); break;
1701         case Z_SearchResponse_estimate:
1702             printf("estimate"); break;
1703         default:
1704             printf(ODR_INT_PRINTF, *res->resultSetStatus);
1705         }
1706         putchar('\n');
1707     }
1708     display_searchResult(res->additionalSearchInfo);
1709     printf("records returned: " ODR_INT_PRINTF "\n",
1710            *res->numberOfRecordsReturned);
1711     setno += *res->numberOfRecordsReturned;
1712     if (res->records)
1713         display_records(res->records);
1714     return 0;
1715 }
1716
1717 static void print_level(int iLevel)
1718 {
1719     int i;
1720     for (i = 0; i < iLevel * 4; i++)
1721         printf(" ");
1722 }
1723
1724 static void print_int(int iLevel, const char *pTag, Odr_int *pInt)
1725 {
1726     if (pInt != NULL)
1727     {
1728         print_level(iLevel);
1729         printf("%s: " ODR_INT_PRINTF "\n", pTag, *pInt);
1730     }
1731 }
1732
1733 static void print_bool(int iLevel, const char *pTag, Odr_bool *pInt)
1734 {
1735     if (pInt != NULL)
1736     {
1737         print_level(iLevel);
1738         printf("%s: %d\n", pTag, *pInt);
1739     }
1740 }
1741
1742 static void print_string(int iLevel, const char *pTag, const char *pString)
1743 {
1744     if (pString != NULL)
1745     {
1746         print_level(iLevel);
1747         printf("%s: %s\n", pTag, pString);
1748     }
1749 }
1750
1751 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1752 {
1753     if (pOid != NULL)
1754     {
1755         Odr_oid *pInt = pOid;
1756
1757         print_level(iLevel);
1758         printf("%s:", pTag);
1759         for (; *pInt != -1; pInt++)
1760             printf(" %d", *pInt);
1761         printf("\n");
1762     }
1763 }
1764
1765 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1766 {
1767     if (referenceId != NULL)
1768     {
1769         int i;
1770
1771         print_level(iLevel);
1772         printf("Ref Id (%d, %d): ", referenceId->len, referenceId->size);
1773         for (i = 0; i < referenceId->len; i++)
1774             printf("%c", referenceId->buf[i]);
1775         printf("\n");
1776     }
1777 }
1778
1779 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1780 {
1781     if (pStringNumeric != NULL)
1782     {
1783         switch (pStringNumeric->which)
1784         {
1785         case Z_StringOrNumeric_string:
1786             print_string(iLevel, pTag, pStringNumeric->u.string);
1787             break;
1788
1789         case Z_StringOrNumeric_numeric:
1790             print_int(iLevel, pTag, pStringNumeric->u.numeric);
1791             break;
1792
1793         default:
1794             print_level(iLevel);
1795             printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1796             break;
1797         }
1798     }
1799 }
1800
1801 static void print_universe_report_duplicate(
1802     int iLevel,
1803     Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1804 {
1805     if (pUniverseReportDuplicate != NULL)
1806     {
1807         print_level(iLevel);
1808         printf("Universe Report Duplicate: \n");
1809         iLevel++;
1810         print_string_or_numeric(iLevel, "Hit No",
1811                                 pUniverseReportDuplicate->hitno);
1812     }
1813 }
1814
1815 static void print_universe_report_hits(
1816     int iLevel,
1817     Z_UniverseReportHits *pUniverseReportHits)
1818 {
1819     if (pUniverseReportHits != NULL)
1820     {
1821         print_level(iLevel);
1822         printf("Universe Report Hits: \n");
1823         iLevel++;
1824         print_string_or_numeric(iLevel, "Database",
1825                                 pUniverseReportHits->database);
1826         print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1827     }
1828 }
1829
1830 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1831 {
1832     if (pUniverseReport != NULL)
1833     {
1834         print_level(iLevel);
1835         printf("Universe Report: \n");
1836         iLevel++;
1837         print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1838         switch (pUniverseReport->which)
1839         {
1840         case Z_UniverseReport_databaseHits:
1841             print_universe_report_hits(iLevel,
1842                                        pUniverseReport->u.databaseHits);
1843             break;
1844
1845         case Z_UniverseReport_duplicate:
1846             print_universe_report_duplicate(iLevel,
1847                                             pUniverseReport->u.duplicate);
1848             break;
1849
1850         default:
1851             print_level(iLevel);
1852             printf("Type: %d\n", pUniverseReport->which);
1853             break;
1854         }
1855     }
1856 }
1857
1858 static void print_external(int iLevel, Z_External *pExternal)
1859 {
1860     if (pExternal != NULL)
1861     {
1862         print_level(iLevel);
1863         printf("External: \n");
1864         iLevel++;
1865         print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
1866         print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
1867         print_string(iLevel, "Descriptor", pExternal->descriptor);
1868         switch (pExternal->which)
1869         {
1870         case Z_External_universeReport:
1871             print_universe_report(iLevel, pExternal->u.universeReport);
1872             break;
1873
1874         default:
1875             print_level(iLevel);
1876             printf("Type: %d\n", pExternal->which);
1877             break;
1878         }
1879     }
1880 }
1881
1882 static int process_resourceControlRequest(Z_ResourceControlRequest *req)
1883 {
1884     printf("Received ResourceControlRequest.\n");
1885     print_referenceId(1, req->referenceId);
1886     print_bool(1, "Suspended Flag", req->suspendedFlag);
1887     print_int(1, "Partial Results Available", req->partialResultsAvailable);
1888     print_bool(1, "Response Required", req->responseRequired);
1889     print_bool(1, "Triggered Request Flag", req->triggeredRequestFlag);
1890     print_external(1, req->resourceReport);
1891     return 0;
1892 }
1893
1894 void process_ESResponse(Z_ExtendedServicesResponse *res)
1895 {
1896     printf("Status: ");
1897     switch (*res->operationStatus)
1898     {
1899     case Z_ExtendedServicesResponse_done:
1900         printf("done\n");
1901         break;
1902     case Z_ExtendedServicesResponse_accepted:
1903         printf("accepted\n");
1904         break;
1905     case Z_ExtendedServicesResponse_failure:
1906         printf("failure\n");
1907         display_diagrecs(res->diagnostics, res->num_diagnostics);
1908         break;
1909     default:
1910         printf("unknown\n");
1911     }
1912     if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
1913         (res->num_diagnostics != 0) ) {
1914         display_diagrecs(res->diagnostics, res->num_diagnostics);
1915     }
1916     print_refid (res->referenceId);
1917     if (res->taskPackage &&
1918         res->taskPackage->which == Z_External_extendedService)
1919     {
1920         Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
1921         Odr_oct *id = taskPackage->targetReference;
1922         Z_External *ext = taskPackage->taskSpecificParameters;
1923
1924         if (id)
1925         {
1926             printf("Target Reference: ");
1927             print_stringn((const char *) id->buf, id->len);
1928             printf("\n");
1929         }
1930         if (ext->which == Z_External_update)
1931         {
1932             Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
1933             if (utp && utp->targetPart)
1934             {
1935                 Z_IUTargetPart *targetPart = utp->targetPart;
1936                 int i;
1937
1938                 for (i = 0; i<targetPart->num_taskPackageRecords;  i++)
1939                 {
1940
1941                     Z_IUTaskPackageRecordStructure *tpr =
1942                         targetPart->taskPackageRecords[i];
1943                     printf("task package record %d\n", i+1);
1944                     if (tpr->which == Z_IUTaskPackageRecordStructure_record)
1945                     {
1946                         display_record (tpr->u.record);
1947                     }
1948                     else
1949                     {
1950                         printf("other type\n");
1951                     }
1952                 }
1953             }
1954         }
1955         if (ext->which == Z_External_itemOrder)
1956         {
1957             Z_IOTaskPackage *otp = ext->u.itemOrder->u.taskPackage;
1958
1959             if (otp && otp->targetPart)
1960             {
1961                 if (otp->targetPart->itemRequest)
1962                 {
1963                     Z_External *ext = otp->targetPart->itemRequest;
1964                     if (ext->which == Z_External_octet)
1965                     {
1966                         Odr_oct *doc = ext->u.octet_aligned;
1967                         printf("Got itemRequest doc %.*s\n",
1968                                doc->len, doc->buf);
1969                     }
1970                 }
1971                 else if (otp->targetPart->statusOrErrorReport)
1972                 {
1973                     Z_External *ext = otp->targetPart->statusOrErrorReport;
1974                     if (ext->which == Z_External_octet)
1975                     {
1976                         Odr_oct *doc = ext->u.octet_aligned;
1977                         printf("Got Status or Error Report doc %.*s\n",
1978                                doc->len, doc->buf);
1979                     }
1980                 }
1981             }
1982         }
1983     }
1984     if (res->taskPackage && res->taskPackage->which == Z_External_octet)
1985     {
1986         Odr_oct *doc = res->taskPackage->u.octet_aligned;
1987         printf("%.*s\n", doc->len, doc->buf);
1988     }
1989 }
1990
1991 const char *get_ill_element(void *clientData, const char *element)
1992 {
1993     return 0;
1994 }
1995
1996 static Z_External *create_external_itemRequest(void)
1997 {
1998     struct ill_get_ctl ctl;
1999     ILL_ItemRequest *req;
2000     Z_External *r = 0;
2001     int item_request_size = 0;
2002     char *item_request_buf = 0;
2003
2004     ctl.odr = out;
2005     ctl.clientData = 0;
2006     ctl.f = get_ill_element;
2007
2008     req = ill_get_ItemRequest(&ctl, "ill", 0);
2009     if (!req)
2010         printf("ill_get_ItemRequest failed\n");
2011
2012     if (!ill_ItemRequest(out, &req, 0, 0))
2013     {
2014         if (apdu_file)
2015         {
2016             ill_ItemRequest(print, &req, 0, 0);
2017             odr_reset(print);
2018         }
2019         item_request_buf = odr_getbuf (out, &item_request_size, 0);
2020         if (item_request_buf)
2021             odr_setbuf (out, item_request_buf, item_request_size, 1);
2022         printf("Couldn't encode ItemRequest, size %d\n", item_request_size);
2023         return 0;
2024     }
2025     else
2026     {
2027         r = (Z_External *) odr_malloc(out, sizeof(*r));
2028         r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2029         r->indirect_reference = 0;
2030         r->descriptor = 0;
2031         r->which = Z_External_single;
2032
2033         r->u.single_ASN1_type = (Odr_oct *)
2034             odr_malloc(out, sizeof(*r->u.single_ASN1_type));
2035         r->u.single_ASN1_type->buf = (unsigned char *)
2036         odr_malloc(out, item_request_size);
2037         r->u.single_ASN1_type->len = item_request_size;
2038         r->u.single_ASN1_type->size = item_request_size;
2039         memcpy(r->u.single_ASN1_type->buf, item_request_buf,
2040                 item_request_size);
2041
2042         do_hex_dump(item_request_buf,item_request_size);
2043     }
2044     return r;
2045 }
2046
2047 static Z_External *create_external_ILL_APDU(void)
2048 {
2049     struct ill_get_ctl ctl;
2050     ILL_APDU *ill_apdu;
2051     Z_External *r = 0;
2052     int ill_request_size = 0;
2053     char *ill_request_buf = 0;
2054
2055     ctl.odr = out;
2056     ctl.clientData = 0;
2057     ctl.f = get_ill_element;
2058
2059     ill_apdu = ill_get_APDU(&ctl, "ill", 0);
2060
2061     if (!ill_APDU (out, &ill_apdu, 0, 0))
2062     {
2063         if (apdu_file)
2064         {
2065             printf("-------------------\n");
2066             ill_APDU(print, &ill_apdu, 0, 0);
2067             odr_reset(print);
2068             printf("-------------------\n");
2069         }
2070         ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2071         if (ill_request_buf)
2072             odr_setbuf (out, ill_request_buf, ill_request_size, 1);
2073         printf("Couldn't encode ILL-Request, size %d\n", ill_request_size);
2074         return 0;
2075     }
2076     else
2077     {
2078         ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2079
2080         r = (Z_External *) odr_malloc(out, sizeof(*r));
2081         r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2082         r->indirect_reference = 0;
2083         r->descriptor = 0;
2084         r->which = Z_External_single;
2085
2086         r->u.single_ASN1_type = (Odr_oct *)
2087             odr_malloc(out, sizeof(*r->u.single_ASN1_type));
2088         r->u.single_ASN1_type->buf = (unsigned char *)
2089         odr_malloc(out, ill_request_size);
2090         r->u.single_ASN1_type->len = ill_request_size;
2091         r->u.single_ASN1_type->size = ill_request_size;
2092         memcpy(r->u.single_ASN1_type->buf, ill_request_buf, ill_request_size);
2093 /*         printf("len = %d\n", ill_request_size); */
2094 /*              do_hex_dump(ill_request_buf,ill_request_size); */
2095 /*              printf("--- end of extenal\n"); */
2096
2097     }
2098     return r;
2099 }
2100
2101
2102 static Z_External *create_ItemOrderExternal(const char *type, int itemno,
2103                                             const char *xml_buf,
2104                                             int xml_len)
2105 {
2106     Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
2107     r->direct_reference = odr_oiddup(out, yaz_oid_extserv_item_order);
2108     r->indirect_reference = 0;
2109     r->descriptor = 0;
2110
2111     r->which = Z_External_itemOrder;
2112
2113     r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
2114     memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
2115     r->u.itemOrder->which=Z_IOItemOrder_esRequest;
2116
2117     r->u.itemOrder->u.esRequest = (Z_IORequest *)
2118         odr_malloc(out,sizeof(Z_IORequest));
2119     memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
2120
2121     r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
2122         odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
2123     memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
2124     r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
2125         odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
2126     memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
2127
2128     r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
2129     r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
2130     r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
2131
2132     r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
2133         (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
2134     memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
2135     r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
2136
2137     r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
2138         odr_intdup(out, itemno);
2139     if (!strcmp (type, "item") || !strcmp(type, "2"))
2140     {
2141         printf("using item-request\n");
2142         r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2143             create_external_itemRequest();
2144     }
2145     else if (!strcmp(type, "ill") || !strcmp(type, "1"))
2146     {
2147         printf("using ILL-request\n");
2148         r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2149             create_external_ILL_APDU();
2150     }
2151     else if (!strcmp(type, "xml") || !strcmp(type, "3"))
2152     {
2153         printf("using XML ILL-request\n");
2154
2155         if (!xml_buf)
2156         {
2157             printf("no docoument added\n");
2158             r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2159         }
2160         else
2161         {
2162             r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2163                 z_ext_record_oid(out, yaz_oid_recsyn_xml, xml_buf, xml_len);
2164         }
2165     }
2166     else
2167         r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2168
2169     return r;
2170 }
2171
2172 static int send_itemorder(const char *type, int itemno,
2173                           const char *xml_buf, int xml_len)
2174 {
2175     Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2176     Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2177
2178     req->referenceId = set_refid (out);
2179
2180     req->packageType = odr_oiddup(out, yaz_oid_extserv_item_order);
2181     req->packageName = esPackageName;
2182
2183     req->taskSpecificParameters = create_ItemOrderExternal(type, itemno,
2184                                                            xml_buf, xml_len);
2185     send_apdu(apdu);
2186     return 0;
2187 }
2188
2189 static int only_z3950(void)
2190 {
2191     if (!conn)
2192     {
2193         printf("Not connected yet\n");
2194         return 1;
2195     }
2196     if (protocol == PROTO_HTTP)
2197     {
2198         printf("Not supported by SRW\n");
2199         return 1;
2200     }
2201     return 0;
2202 }
2203
2204 static int cmd_update_common(const char *arg, int version);
2205
2206 static int cmd_update(const char *arg)
2207 {
2208     return cmd_update_common(arg, 1);
2209 }
2210
2211 static int cmd_update0(const char *arg)
2212 {
2213     return cmd_update_common(arg, 0);
2214 }
2215
2216 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2217                             char *rec_buf, int rec_len);
2218
2219 #if YAZ_HAVE_XML2
2220 static int cmd_update_SRW(int action_no, const char *recid,
2221                           char *rec_buf, int rec_len);
2222 #endif
2223
2224 static int cmd_update_common(const char *arg, int version)
2225 {
2226     char *action_buf;
2227     int action_len;
2228     char *recid_buf;
2229     int recid_len;
2230     const char *recid = 0;
2231     char *rec_buf;
2232     int rec_len;
2233     int action_no;
2234     int noread = 0;
2235
2236     if (parse_cmd_doc(&arg, out, &action_buf, &action_len) == 0)
2237     {
2238         printf("Use: update action recid [fname]\n");
2239         printf(" where action is one of insert,replace,delete.update\n");
2240         printf(" recid is some record ID. Use none for no ID\n");
2241         printf(" fname is file of record to be updated\n");
2242         return 0;
2243     }
2244
2245     if (parse_cmd_doc(&arg, out, &recid_buf, &recid_len) == 0)
2246     {
2247         printf("Missing recid\n");
2248         return 0;
2249     }
2250
2251     if (!strcmp(action_buf, "insert"))
2252         action_no = Z_IUOriginPartToKeep_recordInsert;
2253     else if (!strcmp(action_buf, "replace"))
2254         action_no = Z_IUOriginPartToKeep_recordReplace;
2255     else if (!strcmp(action_buf, "delete"))
2256         action_no = Z_IUOriginPartToKeep_recordDelete;
2257     else if (!strcmp(action_buf, "update"))
2258         action_no = Z_IUOriginPartToKeep_specialUpdate;
2259     else
2260     {
2261         printf("Bad action: %s\n", action_buf);
2262         printf("Possible values: insert, replace, delete, update\n");
2263         return 0;
2264     }
2265
2266     if (strcmp(recid_buf, "none")) /* none means no record ID */
2267         recid = recid_buf;
2268
2269     arg += noread;
2270     if (parse_cmd_doc(&arg, out, &rec_buf, &rec_len) == 0)
2271         return 0;
2272
2273 #if YAZ_HAVE_XML2
2274     if (protocol == PROTO_HTTP)
2275         return cmd_update_SRW(action_no, recid_buf, rec_buf, rec_len);
2276 #endif
2277     return cmd_update_Z3950(version, action_no, recid_buf, rec_buf, rec_len);
2278 }
2279
2280 #if YAZ_HAVE_XML2
2281 static int cmd_update_SRW(int action_no, const char *recid,
2282                           char *rec_buf, int rec_len)
2283 {
2284     if (!conn)
2285         session_connect(cur_host);
2286     if (!conn)
2287         return 0;
2288     else
2289     {
2290         Z_SRW_PDU *srw = yaz_srw_get(out, Z_SRW_update_request);
2291         Z_SRW_updateRequest *sr = srw->u.update_request;
2292
2293         switch(action_no)
2294         {
2295         case Z_IUOriginPartToKeep_recordInsert:
2296             sr->operation = "info:srw/action/1/create";
2297             break;
2298         case Z_IUOriginPartToKeep_recordReplace:
2299             sr->operation = "info:srw/action/1/replace";
2300             break;
2301         case Z_IUOriginPartToKeep_recordDelete:
2302             sr->operation = "info:srw/action/1/delete";
2303             break;
2304         }
2305         if (rec_buf)
2306         {
2307             sr->record = yaz_srw_get_record(out);
2308             sr->record->recordData_buf = rec_buf;
2309             sr->record->recordData_len = rec_len;
2310             sr->record->recordSchema = record_schema;
2311         }
2312         if (recid)
2313             sr->recordId = odr_strdup(out, recid);
2314         return send_srw(srw);
2315     }
2316 }
2317 #endif
2318
2319 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2320                             char *rec_buf, int rec_len)
2321 {
2322     Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
2323     Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2324     Z_External *r;
2325     Z_External *record_this = 0;
2326     if (rec_buf)
2327         record_this = z_ext_record_oid(out, yaz_oid_recsyn_xml,
2328                                        rec_buf, rec_len);
2329     else
2330     {
2331         if (!record_last)
2332         {
2333             printf("No last record (update ignored)\n");
2334             return 0;
2335         }
2336         record_this = record_last;
2337     }
2338
2339     req->packageType = odr_oiddup(out, (version == 0 ?
2340        yaz_oid_extserv_database_update_first_version :
2341        yaz_oid_extserv_database_update));
2342
2343     req->packageName = esPackageName;
2344
2345     req->referenceId = set_refid (out);
2346
2347     r = req->taskSpecificParameters = (Z_External *)
2348         odr_malloc(out, sizeof(*r));
2349     r->direct_reference = req->packageType;
2350     r->indirect_reference = 0;
2351     r->descriptor = 0;
2352     if (version == 0)
2353     {
2354         Z_IU0OriginPartToKeep *toKeep;
2355         Z_IU0SuppliedRecords *notToKeep;
2356
2357         r->which = Z_External_update0;
2358         r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2359         r->u.update0->which = Z_IUUpdate_esRequest;
2360         r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2361             odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2362         toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2363             odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2364
2365         toKeep->databaseName = databaseNames[0];
2366         toKeep->schema = 0;
2367         if (record_schema)
2368         {
2369             toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2370                                                    CLASS_SCHEMA,
2371                                                    record_schema, out);
2372         }
2373         toKeep->elementSetName = 0;
2374
2375         toKeep->action = odr_intdup(out, action_no);
2376
2377         notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2378             odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2379         notToKeep->num = 1;
2380         notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2381             odr_malloc(out, sizeof(*notToKeep->elements));
2382         notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2383             odr_malloc(out, sizeof(**notToKeep->elements));
2384         notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2385         if (recid)
2386         {
2387             notToKeep->elements[0]->u.opaque = (Odr_oct *)
2388                 odr_malloc(out, sizeof(Odr_oct));
2389             notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2390             notToKeep->elements[0]->u.opaque->size = strlen(recid);
2391             notToKeep->elements[0]->u.opaque->len = strlen(recid);
2392         }
2393         else
2394             notToKeep->elements[0]->u.opaque = 0;
2395         notToKeep->elements[0]->supplementalId = 0;
2396         notToKeep->elements[0]->correlationInfo = 0;
2397         notToKeep->elements[0]->record = record_this;
2398     }
2399     else
2400     {
2401         Z_IUOriginPartToKeep *toKeep;
2402         Z_IUSuppliedRecords *notToKeep;
2403
2404         r->which = Z_External_update;
2405         r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2406         r->u.update->which = Z_IUUpdate_esRequest;
2407         r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2408             odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2409         toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2410             odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2411
2412         toKeep->databaseName = databaseNames[0];
2413         toKeep->schema = 0;
2414         if (record_schema)
2415         {
2416             toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2417                                                    CLASS_SCHEMA,
2418                                                    record_schema, out);
2419         }
2420         toKeep->elementSetName = 0;
2421         toKeep->actionQualifier = 0;
2422         toKeep->action = odr_intdup(out, action_no);
2423
2424         notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2425             odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2426         notToKeep->num = 1;
2427         notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2428             odr_malloc(out, sizeof(*notToKeep->elements));
2429         notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2430             odr_malloc(out, sizeof(**notToKeep->elements));
2431         notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2432         if (recid)
2433         {
2434             notToKeep->elements[0]->u.opaque = (Odr_oct *)
2435                 odr_malloc(out, sizeof(Odr_oct));
2436             notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2437             notToKeep->elements[0]->u.opaque->size = strlen(recid);
2438             notToKeep->elements[0]->u.opaque->len = strlen(recid);
2439         }
2440         else
2441             notToKeep->elements[0]->u.opaque = 0;
2442         notToKeep->elements[0]->supplementalId = 0;
2443         notToKeep->elements[0]->correlationInfo = 0;
2444         notToKeep->elements[0]->record = record_this;
2445     }
2446
2447     send_apdu(apdu);
2448
2449     return 2;
2450 }
2451
2452 static int cmd_xmles(const char *arg)
2453 {
2454     if (only_z3950())
2455         return 1;
2456     else
2457     {
2458         char *asn_buf = 0;
2459         int noread = 0;
2460         Odr_oid *oid;
2461         char oid_str[51];
2462         Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2463         Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2464
2465
2466         Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
2467
2468         req->referenceId = set_refid (out);
2469         req->taskSpecificParameters = ext;
2470         ext->indirect_reference = 0;
2471         ext->descriptor = 0;
2472         ext->which = Z_External_octet;
2473         ext->u.single_ASN1_type = (Odr_oct *) odr_malloc(out, sizeof(Odr_oct));
2474         sscanf(arg, "%50s%n", oid_str, &noread);
2475         if (noread == 0)
2476         {
2477             printf("Missing OID for xmles\n");
2478             return 0;
2479         }
2480         arg += noread;
2481         if (parse_cmd_doc(&arg, out, &asn_buf,
2482                           &ext->u.single_ASN1_type->len) == 0)
2483             return 0;
2484
2485         ext->u.single_ASN1_type->buf = (unsigned char *) asn_buf;
2486
2487         oid = yaz_string_to_oid_odr(yaz_oid_std(),
2488                                     CLASS_EXTSERV, oid_str, out);
2489         if (!oid)
2490         {
2491             printf("Bad OID: %s\n", oid_str);
2492             return 0;
2493         }
2494
2495         req->packageType = oid;
2496
2497         ext->direct_reference = oid;
2498
2499         send_apdu(apdu);
2500
2501         return 2;
2502     }
2503 }
2504
2505 static int cmd_itemorder(const char *arg)
2506 {
2507     char type[12];
2508     int itemno;
2509     char *xml_buf = 0;
2510     int xml_len = 0;
2511     int no_read = 0;
2512
2513     if (only_z3950())
2514         return 1;
2515     if (sscanf(arg, "%10s %d%n", type, &itemno, &no_read) < 2)
2516         return 0;
2517     arg += no_read;
2518     parse_cmd_doc(&arg, out, &xml_buf, &xml_len);
2519
2520     fflush(stdout);
2521     send_itemorder(type, itemno, xml_buf, xml_len);
2522     return 2;
2523 }
2524
2525 static void show_opt(const char *arg, void *clientData)
2526 {
2527     printf("%s ", arg);
2528 }
2529
2530 static int cmd_zversion(const char *arg)
2531 {
2532     if (*arg && arg)
2533         z3950_version = atoi(arg);
2534     else
2535         printf("version is %d\n", z3950_version);
2536     return 0;
2537 }
2538
2539 static int cmd_options(const char *arg)
2540 {
2541     if (*arg)
2542     {
2543         int r;
2544         int pos;
2545         r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2546         if (r == -1)
2547             printf("Unknown option(s) near %s\n", arg+pos);
2548     }
2549     else
2550     {
2551         yaz_init_opt_decode(&z3950_options, show_opt, 0);
2552         printf("\n");
2553     }
2554     return 0;
2555 }
2556
2557 static int cmd_explain(const char *arg)
2558 {
2559     if (protocol != PROTO_HTTP)
2560         return 0;
2561 #if YAZ_HAVE_XML2
2562     if (!conn)
2563         session_connect(cur_host);
2564     if (conn)
2565     {
2566         Z_SRW_PDU *sr = 0;
2567
2568         setno = 1;
2569
2570         /* save this for later .. when fetching individual records */
2571         sr = yaz_srw_get(out, Z_SRW_explain_request);
2572         if (recordsyntax_size == 1
2573             && !yaz_matchstr(recordsyntax_list[0], "xml"))
2574             sr->u.explain_request->recordPacking = "xml";
2575         send_srw(sr);
2576         return 2;
2577     }
2578 #endif
2579     return 0;
2580 }
2581
2582 static int cmd_init(const char *arg)
2583 {
2584     if (*arg)
2585     {
2586         strncpy(cur_host, arg, sizeof(cur_host)-1);
2587         cur_host[sizeof(cur_host)-1] = 0;
2588     }
2589     if (only_z3950())
2590         return 1;
2591     send_initRequest(cur_host);
2592     return 2;
2593 }
2594
2595 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url)
2596 {
2597     Z_GDU *p = z_get_HTTP_Request(odr);
2598     const char *host = url;
2599     const char *cp0 = strstr(host, "://");
2600     const char *cp1 = 0;
2601     if (cp0)
2602         cp0 = cp0+3;
2603     else
2604         cp0 = host;
2605     
2606     cp1 = strchr(cp0, '/');
2607     if (!cp1)
2608         cp1 = cp0 + strlen(cp0);
2609     
2610     if (cp0 && cp1)
2611     {
2612         char *h = (char*) odr_malloc(odr, cp1 - cp0 + 1);
2613         memcpy (h, cp0, cp1 - cp0);
2614         h[cp1-cp0] = '\0';
2615         z_HTTP_header_add(odr, &p->u.HTTP_Request->headers, "Host", h);
2616     }
2617     p->u.HTTP_Request->path = odr_strdup(odr, *cp1 ? cp1 : "/");
2618     return p;
2619 }
2620
2621 static WRBUF get_url(const char *uri, WRBUF username, WRBUF password,
2622                      int *code, int show_headers)
2623 {
2624     WRBUF result = 0;
2625     ODR out = odr_createmem(ODR_ENCODE);
2626     ODR in = odr_createmem(ODR_DECODE);
2627     Z_GDU *gdu = get_HTTP_Request_url(out, uri);
2628     
2629     gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
2630     if (username && password)
2631     {
2632         z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
2633                                      wrbuf_cstr(username),
2634                                      wrbuf_cstr(password));
2635     }
2636     z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
2637                       "text/xml");
2638     if (!z_GDU(out, &gdu, 0, 0))
2639     {
2640         yaz_log(YLOG_WARN, "Can not encode HTTP request URL:%s", uri);        
2641     }
2642     else
2643     {
2644         void *add;
2645         COMSTACK conn = cs_create_host(uri, 1, &add);
2646         if (cs_connect(conn, add) < 0)
2647             yaz_log(YLOG_WARN, "Can not connect to URL:%s", uri);
2648         else
2649         {
2650             int len;
2651             char *buf = odr_getbuf(out, &len, 0);
2652             
2653             if (cs_put(conn, buf, len) < 0)
2654                 yaz_log(YLOG_WARN, "cs_put failed URL:%s", uri);
2655             else
2656             {
2657                 char *netbuffer = 0;
2658                 int netlen = 0;
2659                 int res = cs_get(conn, &netbuffer, &netlen);
2660                 if (res <= 0)
2661                 {
2662                     yaz_log(YLOG_WARN, "cs_get failed URL:%s", uri);
2663                 }
2664                 else
2665                 {
2666                     Z_GDU *gdu;
2667                     odr_setbuf(in, netbuffer, res, 0);
2668                     if (!z_GDU(in, &gdu, 0, 0)
2669                         || gdu->which != Z_GDU_HTTP_Response)
2670                     {
2671                         yaz_log(YLOG_WARN, "decode failed URL: %s", uri);
2672                     }
2673                     else
2674                     {
2675                         Z_HTTP_Response *res = gdu->u.HTTP_Response;
2676                         struct Z_HTTP_Header *h;
2677                         result = wrbuf_alloc();
2678                         if (show_headers)
2679                         {
2680                             
2681                             wrbuf_printf(result, "HTTP %d\n", res->code);
2682                             for (h = res->headers; h; h = h->next)
2683                                 wrbuf_printf(result, "%s: %s\n",
2684                                              h->name, h->value);
2685                         }
2686                         *code = res->code;
2687                         wrbuf_write(result, res->content_buf, res->content_len);
2688                     }
2689                 }
2690                 xfree(netbuffer);
2691             }
2692             cs_close(conn);
2693         }
2694     }
2695     odr_destroy(out);
2696     odr_destroy(in);
2697     return result;
2698 }
2699     
2700
2701 static int cmd_url(const char *arg)
2702 {
2703     int code = 0;
2704     WRBUF res = get_url(arg, 0, 0, &code, 1);
2705     if (res)
2706     {
2707         if (wrbuf_len(res) > 1200)
2708         {
2709             fwrite(wrbuf_buf(res), 1, 1200, stdout);
2710             printf(".. out of %lld\n", (long long) wrbuf_len(res));
2711         }
2712         else
2713             puts(wrbuf_cstr(res));
2714         wrbuf_destroy(res);
2715     }
2716     return 0;
2717 }
2718
2719 static int cmd_sru(const char *arg)
2720 {
2721     if (!*arg)
2722     {
2723         printf("SRU method is: %s\n", sru_method);
2724         printf("SRU version is: %s\n", sru_version);
2725     }
2726     else
2727     {
2728         int r;
2729         r = sscanf(arg, "%9s %9s", sru_method, sru_version);
2730         if (r >= 1)
2731         {
2732             if (!yaz_matchstr(sru_method, "post"))
2733                 ;
2734             else if (!yaz_matchstr(sru_method, "get"))
2735                 ;
2736             else if (!yaz_matchstr(sru_method, "soap"))
2737                 ;
2738             else
2739             {
2740                 strcpy(sru_method, "soap");
2741                 printf("Unknown SRU method: %s\n", arg);
2742                 printf("Specify one of POST, GET, SOAP\n");
2743             }
2744         }
2745     }
2746     return 0;
2747 }
2748
2749 static int cmd_find(const char *arg)
2750 {
2751     if (!*arg)
2752     {
2753         printf("Find what?\n");
2754         return 0;
2755     }
2756     if (protocol == PROTO_HTTP)
2757     {
2758 #if YAZ_HAVE_XML2
2759         if (!conn)
2760             session_connect(cur_host);
2761         if (!conn)
2762             return 0;
2763         if (!send_SRW_searchRequest(arg))
2764             return 0;
2765 #else
2766         return 0;
2767 #endif
2768     }
2769     else
2770     {
2771         if (*cur_host && auto_reconnect)
2772         {
2773             int i = 0;
2774             for (;;)
2775             {
2776                 if (conn)
2777                 {
2778                     if (!send_searchRequest(arg))
2779                         return 0;
2780                     wait_and_handle_response(0);
2781                     if (conn)
2782                         break;
2783                 }
2784                 if (++i == 2)
2785                 {
2786                     printf("Unable to reconnect\n");
2787                     break;
2788                 }
2789                 session_connect(cur_host);
2790                 wait_and_handle_response(0);
2791             }
2792             return 0;
2793         }
2794         else if (conn)
2795         {
2796             if (!send_searchRequest(arg))
2797                 return 0;
2798         }
2799         else
2800         {
2801             printf("Not connected yet\n");
2802             return 0;
2803         }
2804     }
2805     return 2;
2806 }
2807
2808 static int cmd_delete(const char *arg)
2809 {
2810     if (only_z3950())
2811         return 0;
2812     if (!send_deleteResultSetRequest(arg))
2813         return 0;
2814     return 2;
2815 }
2816
2817 static int cmd_ssub(const char *arg)
2818 {
2819     if (!(smallSetUpperBound = atoi(arg)))
2820         return 0;
2821     return 1;
2822 }
2823
2824 static int cmd_lslb(const char *arg)
2825 {
2826     if (!(largeSetLowerBound = atoi(arg)))
2827         return 0;
2828     return 1;
2829 }
2830
2831 static int cmd_mspn(const char *arg)
2832 {
2833     if (!(mediumSetPresentNumber = atoi(arg)))
2834         return 0;
2835     return 1;
2836 }
2837
2838 static int cmd_status(const char *arg)
2839 {
2840     printf("smallSetUpperBound: %d\n", smallSetUpperBound);
2841     printf("largeSetLowerBound: %d\n", largeSetLowerBound);
2842     printf("mediumSetPresentNumber: %d\n", mediumSetPresentNumber);
2843     return 1;
2844 }
2845
2846 static int cmd_setnames(const char *arg)
2847 {
2848     if (*arg == '1')         /* enable ? */
2849         setnumber = 0;
2850     else if (*arg == '0')    /* disable ? */
2851         setnumber = -1;
2852     else if (setnumber < 0)  /* no args, toggle .. */
2853         setnumber = 0;
2854     else
2855         setnumber = -1;
2856
2857     if (setnumber >= 0)
2858         printf("Set numbering enabled.\n");
2859     else
2860         printf("Set numbering disabled.\n");
2861     return 1;
2862 }
2863
2864 /* PRESENT SERVICE ----------------------------- */
2865
2866 static int parse_show_args(const char *arg_c, char *setstring,
2867                            Odr_int *start, Odr_int *number)
2868 {
2869     char *end_ptr;
2870     Odr_int start_position;
2871
2872     if (setnumber >= 0)
2873         sprintf(setstring, "%d", setnumber);
2874     else
2875         *setstring = '\0';
2876
2877     if (!strcmp(arg_c, "all"))
2878     {
2879         *number = last_hit_count;
2880         *start = 1;
2881     }
2882     start_position = odr_strtol(arg_c, &end_ptr, 10);
2883     if (end_ptr == arg_c)
2884         return 1;
2885     *start = start_position;
2886     if (*end_ptr == '\0')
2887         return 1;
2888     while (isspace(*(unsigned char *)end_ptr))
2889         end_ptr++;
2890     if (*end_ptr != '+')
2891     {
2892         printf("Bad show arg: expected +. Got %s\n", end_ptr);
2893         return 0;
2894     }
2895     end_ptr++;
2896     arg_c = end_ptr;
2897     *number = odr_strtol(arg_c, &end_ptr, 10);
2898     if (end_ptr == arg_c)
2899     {
2900         printf("Bad show arg: expected number after +\n");
2901         return 0;
2902     }
2903     if (*end_ptr == '\0')
2904         return 1;
2905     while (isspace(*(unsigned char *)end_ptr))
2906         end_ptr++;
2907     if (*end_ptr != '+')
2908     {
2909         printf("Bad show arg: + expected. Got %s\n", end_ptr);
2910         return 0;
2911     }
2912     strcpy(setstring, end_ptr+1);
2913     return 1;
2914 }
2915
2916 static int send_presentRequest(const char *arg)
2917 {
2918     Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
2919     Z_PresentRequest *req = apdu->u.presentRequest;
2920     Z_RecordComposition compo;
2921     Odr_int nos = 1;
2922     char setstring[100];
2923
2924     req->referenceId = set_refid(out);
2925
2926     if (!parse_show_args(arg, setstring, &setno, &nos))
2927         return 0;
2928     if (*setstring)
2929         req->resultSetId = setstring;
2930
2931     req->resultSetStartPoint = &setno;
2932     req->numberOfRecordsRequested = &nos;
2933
2934     if (recordsyntax_size)
2935         req->preferredRecordSyntax =
2936             yaz_string_to_oid_odr(yaz_oid_std(),
2937                                   CLASS_RECSYN, recordsyntax_list[0], out);
2938
2939     if (record_schema || recordsyntax_size >= 2)
2940     {
2941         req->recordComposition = &compo;
2942         compo.which = Z_RecordComp_complex;
2943         compo.u.complex = (Z_CompSpec *)
2944             odr_malloc(out, sizeof(*compo.u.complex));
2945         compo.u.complex->selectAlternativeSyntax = (bool_t *)
2946             odr_malloc(out, sizeof(bool_t));
2947         *compo.u.complex->selectAlternativeSyntax = 0;
2948
2949         compo.u.complex->generic = (Z_Specification *)
2950             odr_malloc(out, sizeof(*compo.u.complex->generic));
2951
2952         compo.u.complex->generic->which = Z_Schema_oid;
2953         if (!record_schema)
2954             compo.u.complex->generic->schema.oid = 0;
2955         else
2956         {
2957             compo.u.complex->generic->schema.oid =
2958                 yaz_string_to_oid_odr(yaz_oid_std(),
2959                                       CLASS_SCHEMA, record_schema, out);
2960
2961             if (!compo.u.complex->generic->schema.oid)
2962             {
2963                 /* OID wasn't a schema! Try record syntax instead. */
2964                 compo.u.complex->generic->schema.oid = (Odr_oid *)
2965                     yaz_string_to_oid_odr(yaz_oid_std(),
2966                                           CLASS_RECSYN, record_schema, out);
2967             }
2968         }
2969         if (!elementSetNames)
2970             compo.u.complex->generic->elementSpec = 0;
2971         else
2972         {
2973             compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
2974                 odr_malloc(out, sizeof(Z_ElementSpec));
2975             compo.u.complex->generic->elementSpec->which =
2976                 Z_ElementSpec_elementSetName;
2977             compo.u.complex->generic->elementSpec->u.elementSetName =
2978                 elementSetNames->u.generic;
2979         }
2980         compo.u.complex->num_dbSpecific = 0;
2981         compo.u.complex->dbSpecific = 0;
2982
2983         compo.u.complex->num_recordSyntax = 0;
2984         compo.u.complex->recordSyntax = 0;
2985         if (recordsyntax_size >= 2)
2986         {
2987             int i;
2988             compo.u.complex->num_recordSyntax = recordsyntax_size;
2989             compo.u.complex->recordSyntax = (Odr_oid **)
2990                 odr_malloc(out, recordsyntax_size * sizeof(Odr_oid*));
2991             for (i = 0; i < recordsyntax_size; i++)
2992             compo.u.complex->recordSyntax[i] =
2993                 yaz_string_to_oid_odr(yaz_oid_std(),
2994                                       CLASS_RECSYN, recordsyntax_list[i], out);
2995         }
2996     }
2997     else if (elementSetNames)
2998     {
2999         req->recordComposition = &compo;
3000         compo.which = Z_RecordComp_simple;
3001         compo.u.simple = elementSetNames;
3002     }
3003     send_apdu(apdu);
3004     printf("Sent presentRequest (" ODR_INT_PRINTF "+" ODR_INT_PRINTF ").\n",
3005            setno, nos);
3006     return 2;
3007 }
3008
3009 #if YAZ_HAVE_XML2
3010 static int send_SRW_presentRequest(const char *arg)
3011 {
3012     char setstring[100];
3013     Odr_int nos = 1;
3014     Z_SRW_PDU *sr = srw_sr;
3015
3016     if (!sr)
3017         return 0;
3018     if (!parse_show_args(arg, setstring, &setno, &nos))
3019         return 0;
3020     sr->u.request->startRecord = odr_intdup(out, setno);
3021     sr->u.request->maximumRecords = odr_intdup(out, nos);
3022     if (record_schema)
3023         sr->u.request->recordSchema = record_schema;
3024     if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
3025         sr->u.request->recordPacking = "xml";
3026     return send_srw(sr);
3027 }
3028 #endif
3029
3030 static void close_session(void)
3031 {
3032     if (conn)
3033         cs_close(conn);
3034     conn = 0;
3035     sent_close = 0;
3036     odr_reset(out);
3037     odr_reset(in);
3038     odr_reset(print);
3039     last_hit_count = 0;
3040 }
3041
3042 void process_close(Z_Close *req)
3043 {
3044     Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
3045     Z_Close *res = apdu->u.close;
3046
3047     static char *reasons[] =
3048     {
3049         "finished",
3050         "shutdown",
3051         "system problem",
3052         "cost limit reached",
3053         "resources",
3054         "security violation",
3055         "protocolError",
3056         "lack of activity",
3057         "peer abort",
3058         "unspecified"
3059     };
3060
3061     printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
3062         req->diagnosticInformation ? req->diagnosticInformation : "NULL");
3063     if (sent_close)
3064         close_session();
3065     else
3066     {
3067         *res->closeReason = Z_Close_finished;
3068         send_apdu(apdu);
3069         printf("Sent response.\n");
3070         sent_close = 1;
3071     }
3072 }
3073
3074 static int cmd_show(const char *arg)
3075 {
3076     if (protocol == PROTO_HTTP)
3077     {
3078 #if YAZ_HAVE_XML2
3079         if (!conn)
3080             session_connect(cur_host);
3081         if (!conn)
3082             return 0;
3083         if (!send_SRW_presentRequest(arg))
3084             return 0;
3085 #else
3086         return 0;
3087 #endif
3088     }
3089     else
3090     {
3091         if (!conn)
3092         {
3093             printf("Not connected yet\n");
3094             return 0;
3095         }
3096         if (!send_presentRequest(arg))
3097             return 0;
3098     }
3099     return 2;
3100 }
3101
3102 void exit_client(int code)
3103 {
3104     file_history_save(file_history);
3105     file_history_destroy(&file_history);
3106     nmem_destroy(nmem_auth);
3107     exit(code);
3108 }
3109
3110 int cmd_quit(const char *arg)
3111 {
3112     printf("See you later, alligator.\n");
3113     xmalloc_trav("");
3114     exit_client(0);
3115     return 0;
3116 }
3117
3118 int cmd_cancel(const char *arg)
3119 {
3120     Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
3121     Z_TriggerResourceControlRequest *req =
3122         apdu->u.triggerResourceControlRequest;
3123     bool_t rfalse = 0;
3124     char command[16];
3125
3126     *command = '\0';
3127     sscanf(arg, "%15s", command);
3128
3129     if (only_z3950())
3130         return 0;
3131     if (session_initResponse &&
3132         !ODR_MASK_GET(session_initResponse->options,
3133                       Z_Options_triggerResourceCtrl))
3134     {
3135         printf("Target doesn't support cancel (trigger resource ctrl)\n");
3136         return 0;
3137     }
3138     *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
3139     req->resultSetWanted = &rfalse;
3140     req->referenceId = set_refid(out);
3141
3142     send_apdu(apdu);
3143     printf("Sent cancel request\n");
3144     if (!strcmp(command, "wait"))
3145          return 2;
3146     return 1;
3147 }
3148
3149
3150 int cmd_cancel_find(const char *arg) {
3151     int fres;
3152     fres=cmd_find(arg);
3153     if( fres > 0 ) {
3154         return cmd_cancel("");
3155     };
3156     return fres;
3157 }
3158
3159 int send_scanrequest(const char *set,  const char *query,
3160                      Odr_int pp, Odr_int num, const char *term)
3161 {
3162     Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
3163     Z_ScanRequest *req = apdu->u.scanRequest;
3164
3165     if (only_z3950())
3166         return 0;
3167     if (queryType == QueryType_CCL2RPN)
3168     {
3169         int error, pos;
3170         struct ccl_rpn_node *rpn;
3171
3172         rpn = ccl_find_str(bibset,  query, &error, &pos);
3173         if (error)
3174         {
3175             printf("CCL ERROR: %s\n", ccl_err_msg(error));
3176             return -1;
3177         }
3178         req->attributeSet =
3179             yaz_string_to_oid_odr(yaz_oid_std(),
3180                                   CLASS_ATTSET, "Bib-1", out);
3181         if (!(req->termListAndStartPoint = ccl_scan_query(out, rpn)))
3182         {
3183             printf("Couldn't convert CCL to Scan term\n");
3184             return -1;
3185         }
3186         ccl_rpn_delete(rpn);
3187     }
3188     else
3189     {
3190         YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
3191
3192         if (!(req->termListAndStartPoint =
3193               yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
3194         {
3195             const char *pqf_msg;
3196             size_t off;
3197             int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
3198             int ioff = off;
3199             printf("%*s^\n", ioff+7, "");
3200             printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
3201             yaz_pqf_destroy(pqf_parser);
3202             return -1;
3203         }
3204         yaz_pqf_destroy(pqf_parser);
3205     }
3206     if (queryCharset && outputCharset)
3207     {
3208         yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
3209         if (!cd)
3210         {
3211             printf("Conversion from %s to %s unsupported\n",
3212                    outputCharset, queryCharset);
3213             return -1;
3214         }
3215         yaz_query_charset_convert_apt(req->termListAndStartPoint, out, cd);
3216         yaz_iconv_close(cd);
3217     }
3218     if (term && *term)
3219     {
3220         if (req->termListAndStartPoint->term &&
3221             req->termListAndStartPoint->term->which == Z_Term_general &&
3222             req->termListAndStartPoint->term->u.general)
3223         {
3224             req->termListAndStartPoint->term->u.general->buf =
3225                 (unsigned char *) odr_strdup(out, term);
3226             req->termListAndStartPoint->term->u.general->len =
3227                 req->termListAndStartPoint->term->u.general->size =
3228                 strlen(term);
3229         }
3230     }
3231     req->referenceId = set_refid(out);
3232     req->num_databaseNames = num_databaseNames;
3233     req->databaseNames = databaseNames;
3234     req->numberOfTermsRequested = &num;
3235     req->preferredPositionInResponse = &pp;
3236     req->stepSize = odr_intdup(out, scan_stepSize);
3237
3238     if (set)
3239         yaz_oi_set_string_oid(&req->otherInfo, out,
3240                               yaz_oid_userinfo_scan_set, 1, set);
3241
3242     send_apdu(apdu);
3243     return 2;
3244 }
3245
3246 int send_sortrequest(const char *arg, int newset)
3247 {
3248     Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
3249     Z_SortRequest *req = apdu->u.sortRequest;
3250     Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
3251         odr_malloc(out, sizeof(*sksl));
3252     char setstring[32];
3253
3254     if (only_z3950())
3255         return 0;
3256     if (setnumber >= 0)
3257         sprintf(setstring, "%d", setnumber);
3258     else
3259         sprintf(setstring, "default");
3260
3261     req->referenceId = set_refid(out);
3262
3263     req->num_inputResultSetNames = 1;
3264     req->inputResultSetNames = (Z_InternationalString **)
3265         odr_malloc(out, sizeof(*req->inputResultSetNames));
3266     req->inputResultSetNames[0] = odr_strdup(out, setstring);
3267
3268     if (newset && setnumber >= 0)
3269         sprintf(setstring, "%d", ++setnumber);
3270
3271     req->sortedResultSetName = odr_strdup(out, setstring);
3272
3273     req->sortSequence = yaz_sort_spec(out, arg);
3274     if (!req->sortSequence)
3275     {
3276         printf("Missing sort specifications\n");
3277         return -1;
3278     }
3279     send_apdu(apdu);
3280     return 2;
3281 }
3282
3283 void display_term(Z_TermInfo *t)
3284 {
3285     if (t->displayTerm)
3286         printf("%s", t->displayTerm);
3287     else if (t->term->which == Z_Term_general)
3288         printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
3289     else
3290         printf("Term (not general)");
3291     if (t->term->which == Z_Term_general)
3292         sprintf(last_scan_line, "%.*s", t->term->u.general->len,
3293             t->term->u.general->buf);
3294
3295     if (t->globalOccurrences)
3296         printf(" (" ODR_INT_PRINTF ")\n", *t->globalOccurrences);
3297     else
3298         printf("\n");
3299 }
3300
3301 void process_scanResponse(Z_ScanResponse *res)
3302 {
3303     int i;
3304     Z_Entry **entries = NULL;
3305     int num_entries = 0;
3306
3307     printf("Received ScanResponse\n");
3308     print_refid(res->referenceId);
3309     printf(ODR_INT_PRINTF " entries", *res->numberOfEntriesReturned);
3310     if (res->positionOfTerm)
3311         printf(", position=" ODR_INT_PRINTF, *res->positionOfTerm);
3312     printf("\n");
3313     if (*res->scanStatus != Z_Scan_success)
3314         printf("Scan returned code " ODR_INT_PRINTF "\n", *res->scanStatus);
3315     if (!res->entries)
3316         return;
3317     if ((entries = res->entries->entries))
3318         num_entries = res->entries->num_entries;
3319     for (i = 0; i < num_entries; i++)
3320     {
3321         int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
3322         if (entries[i]->which == Z_Entry_termInfo)
3323         {
3324             printf("%c ", i + 1 == pos_term ? '*' : ' ');
3325             display_term(entries[i]->u.termInfo);
3326         }
3327         else
3328             display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
3329     }
3330     if (res->entries->nonsurrogateDiagnostics)
3331         display_diagrecs(res->entries->nonsurrogateDiagnostics,
3332                           res->entries->num_nonsurrogateDiagnostics);
3333 }
3334
3335 void process_sortResponse(Z_SortResponse *res)
3336 {
3337     printf("Received SortResponse: status=");
3338     switch (*res->sortStatus)
3339     {
3340     case Z_SortResponse_success:
3341         printf("success"); break;
3342     case Z_SortResponse_partial_1:
3343         printf("partial"); break;
3344     case Z_SortResponse_failure:
3345         printf("failure"); break;
3346     default:
3347         printf("unknown (" ODR_INT_PRINTF ")", *res->sortStatus);
3348     }
3349     printf("\n");
3350     print_refid (res->referenceId);
3351     if (res->diagnostics)
3352         display_diagrecs(res->diagnostics,
3353                          res->num_diagnostics);
3354 }
3355
3356 void process_deleteResultSetResponse(Z_DeleteResultSetResponse *res)
3357 {
3358     printf("Got deleteResultSetResponse status=" ODR_INT_PRINTF "\n",
3359            *res->deleteOperationStatus);
3360     if (res->deleteListStatuses)
3361     {
3362         int i;
3363         for (i = 0; i < res->deleteListStatuses->num; i++)
3364         {
3365             printf("%s status=" ODR_INT_PRINTF "\n",
3366                    res->deleteListStatuses->elements[i]->id,
3367                    *res->deleteListStatuses->elements[i]->status);
3368         }
3369     }
3370 }
3371
3372 int cmd_sort_generic(const char *arg, int newset)
3373 {
3374     if (only_z3950())
3375         return 0;
3376     if (session_initResponse &&
3377         !ODR_MASK_GET(session_initResponse->options, Z_Options_sort))
3378     {
3379         printf("Target doesn't support sort\n");
3380         return 0;
3381     }
3382     if (*arg)
3383     {
3384         if (send_sortrequest(arg, newset) < 0)
3385             return 0;
3386         return 2;
3387     }
3388     return 0;
3389 }
3390
3391 int cmd_sort(const char *arg)
3392 {
3393     return cmd_sort_generic(arg, 0);
3394 }
3395
3396 int cmd_sort_newset(const char *arg)
3397 {
3398     return cmd_sort_generic(arg, 1);
3399 }
3400
3401 int cmd_scanstep(const char *arg)
3402 {
3403     scan_stepSize = atoi(arg);
3404     return 0;
3405 }
3406
3407 int cmd_scanpos(const char *arg)
3408 {
3409     int r = sscanf(arg, "%d", &scan_position);
3410     if (r == 0)
3411         scan_position = 1;
3412     return 0;
3413 }
3414
3415 int cmd_scansize(const char *arg)
3416 {
3417     int r = sscanf(arg, "%d", &scan_size);
3418     if (r == 0)
3419         scan_size = 20;
3420     return 0;
3421 }
3422
3423 static int cmd_scan_common(const char *set, const char *arg)
3424 {
3425     if (protocol == PROTO_HTTP)
3426     {
3427 #if YAZ_HAVE_XML2
3428         if (!conn)
3429             session_connect(cur_host);
3430         if (!conn)
3431             return 0;
3432         if (*arg)
3433         {
3434             if (send_SRW_scanRequest(arg, scan_position, scan_size) < 0)
3435                 return 0;
3436         }
3437         else
3438         {
3439             if (send_SRW_scanRequest(last_scan_line, 1, scan_size) < 0)
3440                 return 0;
3441         }
3442         return 2;
3443 #else
3444         return 0;
3445 #endif
3446     }
3447     else
3448     {
3449         if (*cur_host && !conn && auto_reconnect)
3450         {
3451             session_connect(cur_host);
3452             wait_and_handle_response(0);
3453         }
3454         if (!conn)
3455             return 0;
3456         if (session_initResponse &&
3457             !ODR_MASK_GET(session_initResponse->options, Z_Options_scan))
3458         {
3459             printf("Target doesn't support scan\n");
3460             return 0;
3461         }
3462         if (*arg)
3463         {
3464             strcpy(last_scan_query, arg);
3465             if (send_scanrequest(set, arg,
3466                                  scan_position, scan_size, 0) < 0)
3467                 return 0;
3468         }
3469         else
3470         {
3471             if (send_scanrequest(set, last_scan_query,
3472                                  1, scan_size, last_scan_line) < 0)
3473                 return 0;
3474         }
3475         return 2;
3476     }
3477 }
3478
3479 int cmd_scan(const char *arg)
3480 {
3481     return cmd_scan_common(0, arg);
3482 }
3483
3484 int cmd_setscan(const char *arg)
3485 {
3486     char setstring[100];
3487     int nor;
3488     if (sscanf(arg, "%99s%n", setstring, &nor) < 1)
3489     {
3490         printf("missing set for setscan\n");
3491         return 0;
3492     }
3493     return cmd_scan_common(setstring, arg + nor);
3494 }
3495
3496 int cmd_schema(const char *arg)
3497 {
3498     xfree(record_schema);
3499     record_schema = 0;
3500     if (arg && *arg)
3501         record_schema = xstrdup(arg);
3502     return 1;
3503 }
3504
3505 int cmd_format(const char *arg)
3506 {
3507     const char *cp = arg;
3508     int nor;
3509     int idx = 0;
3510     int i;
3511     char form_str[41];
3512     if (!arg || !*arg)
3513     {
3514         printf("Usage: format <recordsyntax>\n");
3515         return 0;
3516     }
3517     while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3518            && idx < RECORDSYNTAX_MAX)
3519     {
3520         if (strcmp(form_str, "none") && 
3521             !yaz_string_to_oid_odr(yaz_oid_std(), CLASS_RECSYN, form_str, out))
3522         {
3523             printf("Bad format: %s\n", form_str);
3524             return 0;
3525         }
3526         cp += nor;
3527     }
3528     for (i = 0; i < recordsyntax_size; i++)
3529     {
3530         xfree(recordsyntax_list[i]);
3531         recordsyntax_list[i] = 0;
3532     }
3533     
3534     cp = arg;
3535     while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3536            && idx < RECORDSYNTAX_MAX)
3537     {
3538         if (!strcmp(form_str, "none"))
3539             break;
3540         recordsyntax_list[idx] = xstrdup(form_str);
3541         cp += nor;
3542         idx++;
3543     }
3544     recordsyntax_size = idx;
3545     return 1;
3546 }
3547
3548 int cmd_elements(const char *arg)
3549 {
3550     static Z_ElementSetNames esn;
3551     static char what[100];
3552
3553     if (!arg || !*arg)
3554     {
3555         elementSetNames = 0;
3556         return 1;
3557     }
3558     strcpy(what, arg);
3559     esn.which = Z_ElementSetNames_generic;
3560     esn.u.generic = what;
3561     elementSetNames = &esn;
3562     return 1;
3563 }
3564
3565 int cmd_querytype(const char *arg)
3566 {
3567     if (!strcmp(arg, "ccl"))
3568         queryType = QueryType_CCL;
3569     else if (!strcmp(arg, "prefix") || !strcmp(arg, "rpn"))
3570         queryType = QueryType_Prefix;
3571     else if (!strcmp(arg, "ccl2rpn") || !strcmp(arg, "cclrpn"))
3572         queryType = QueryType_CCL2RPN;
3573     else if (!strcmp(arg, "cql"))
3574         queryType = QueryType_CQL;
3575     else if (!strcmp(arg, "cql2rpn") || !strcmp(arg, "cqlrpn"))
3576         queryType = QueryType_CQL2RPN;
3577     else
3578     {
3579         printf("Querytype must be one of:\n");
3580         printf(" prefix         - Prefix query\n");
3581         printf(" ccl            - CCL query\n");
3582         printf(" ccl2rpn        - CCL query converted to RPN\n");
3583         printf(" cql            - CQL\n");
3584         printf(" cql2rpn        - CQL query converted to RPN\n");
3585         return 0;
3586     }
3587     return 1;
3588 }
3589
3590 int cmd_refid(const char *arg)
3591 {
3592     xfree(refid);
3593     refid = NULL;
3594     if (*arg)
3595         refid = xstrdup(arg);
3596     return 1;
3597 }
3598
3599 int cmd_close(const char *arg)
3600 {
3601     Z_APDU *apdu;
3602     Z_Close *req;
3603     if (only_z3950())
3604         return 0;
3605     apdu = zget_APDU(out, Z_APDU_close);
3606     req = apdu->u.close;
3607     *req->closeReason = Z_Close_finished;
3608     send_apdu(apdu);
3609     printf("Sent close request.\n");
3610     sent_close = 1;
3611     return 2;
3612 }
3613
3614 int cmd_packagename(const char* arg)
3615 {
3616     xfree(esPackageName);
3617     esPackageName = NULL;
3618     if (*arg)
3619         esPackageName = xstrdup(arg);
3620     return 1;
3621 }
3622
3623 int cmd_proxy(const char* arg)
3624 {
3625     xfree(yazProxy);
3626     yazProxy = 0;
3627     if (*arg)
3628         yazProxy = xstrdup(arg);
3629     return 1;
3630 }
3631
3632 int cmd_marccharset(const char *arg)
3633 {
3634     char l1[30];
3635
3636     *l1 = 0;