1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2013 Index Data
3 * See the file LICENSE for details.
6 * \brief yaz-client program
20 #include <sys/types.h>
42 #define S_ISREG(x) (x & _S_IFREG)
43 #define S_ISDIR(x) (x & _S_IFDIR)
46 #include <yaz/yaz-util.h>
48 #include <yaz/comstack.h>
50 #include <yaz/oid_db.h>
51 #include <yaz/proto.h>
52 #include <yaz/marcdisp.h>
53 #include <yaz/diagbib1.h>
54 #include <yaz/otherinfo.h>
55 #include <yaz/charneg.h>
56 #include <yaz/query-charset.h>
58 #include <yaz/pquery.h>
59 #include <yaz/sortspec.h>
63 #include <yaz/yaz-ccl.h>
66 #include <yaz/facet.h>
68 #if HAVE_READLINE_READLINE_H
69 #include <readline/readline.h>
71 #if HAVE_READLINE_HISTORY_H
72 #include <readline/history.h>
77 #include "tabcomplete.h"
80 #define C_PROMPT "Z> "
82 static file_history_t file_history = 0;
84 static char sru_method[10] = "soap";
85 static char sru_version[10] = "1.2";
86 static char sru_recordPacking[10] = "";
87 static char *codeset = 0; /* character set for output */
88 static int hex_dump = 0;
89 static char *dump_file_prefix = 0;
90 static ODR out, in, print; /* encoding and decoding streams */
92 static ODR srw_sr_odr_out = 0;
93 static Z_SRW_PDU *srw_sr = 0;
95 static FILE *apdu_file = 0;
96 static FILE *ber_file = 0;
97 static COMSTACK conn = 0; /* our z-association */
99 static Z_IdAuthentication *auth = 0; /* our current auth definition */
100 static NMEM nmem_auth = NULL;
102 char *databaseNames[128];
103 int num_databaseNames = 0;
104 static Z_External *record_last = 0;
105 static int setnumber = -1; /* current result set number */
106 static int smallSetUpperBound = 0;
107 static int largeSetLowerBound = 1;
108 static int mediumSetPresentNumber = 0;
109 static Z_ElementSetNames *elementSetNames = 0;
110 static Z_FacetList *facet_list = 0;
111 static ODR facet_odr = 0;
112 static Odr_int setno = 1; /* current set offset */
113 static enum oid_proto protocol = PROTO_Z3950; /* current app protocol */
114 #define RECORDSYNTAX_MAX 20
115 static char *recordsyntax_list[RECORDSYNTAX_MAX];
116 static int recordsyntax_size = 0;
118 static char *record_schema = 0;
119 static int sent_close = 0;
120 static NMEM session_mem = NULL; /* memory handle for init-response */
121 static Z_InitResponse *session_initResponse = 0; /* session parameters */
122 static char last_scan_line[512] = "0";
123 static char last_scan_query[512] = "0";
124 static char ccl_fields[512] = "default.bib";
125 /* ### How can I set this path to use wherever YAZ is installed? */
126 static char cql_fields[512] = "/usr/local/share/yaz/etc/pqf.properties";
127 static char *esPackageName = 0;
128 static char *yazProxy = 0;
129 static int kilobytes = 64 * 1024;
130 static char *negotiationCharset = 0;
131 static int negotiationCharsetRecords = 1;
132 static int negotiationCharsetVersion = 3;
133 static char *outputCharset = 0;
134 static char *marcCharset = 0;
135 static char *queryCharset = 0;
136 static char* yazLang = 0;
138 static char last_cmd[32] = "?";
139 static FILE *marc_file = 0;
140 static char *refid = NULL;
141 static int auto_reconnect = 0;
142 static int auto_wait = 1;
143 static Odr_bitmask z3950_options;
144 static int z3950_version = 3;
145 static int scan_stepSize = 0;
146 static char scan_position[64];
147 static int scan_size = 20;
148 static char cur_host[200];
149 static Odr_int last_hit_count = 0;
150 static int pretty_xml = 0;
151 static Odr_int sru_maximumRecords = 0;
161 static QueryType queryType = QueryType_Prefix;
163 static CCL_bibset bibset; /* CCL bibset handle */
164 static cql_transform_t cqltrans = 0; /* CQL context-set handle */
166 #if HAVE_READLINE_COMPLETION_OVER
169 /* readline doesn't have this var. Define it ourselves. */
170 int rl_attempted_completion_over = 0;
173 #define maxOtherInfosSupported 10
175 Odr_oid oid[OID_SIZE];
177 } extraOtherInfos[maxOtherInfosSupported];
179 static void process_cmd_line(char* line);
180 #if HAVE_READLINE_READLINE_H
181 static char **readline_completer(char *text, int start, int end);
183 static char *command_generator(const char *text, int state);
184 static int cmd_register_tab(const char* arg);
185 static int cmd_querycharset(const char *arg);
187 static void close_session(void);
189 static void marc_file_write(const char *buf, size_t sz);
191 static void wait_and_handle_response(int one_response_only);
192 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url);
194 ODR getODROutputStream(void)
199 static const char* query_type_as_string(QueryType q)
203 case QueryType_Prefix: return "prefix (RPN sent to server)";
204 case QueryType_CCL: return "CCL (CCL sent to server) ";
205 case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
206 case QueryType_CQL: return "CQL (CQL sent to server)";
207 case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
209 return "unknown Query type internal yaz-client error";
213 static void do_hex_dump(const char* buf, size_t len)
219 for (i = 0; i < len ; i = i+16 )
221 printf(" %4.4ld ", (long) i);
222 for (x = 0 ; i+x < len && x < 16; ++x)
224 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
229 if (dump_file_prefix)
232 if (++no < 1000 && strlen(dump_file_prefix) < 500)
236 sprintf(fname, "%s.%03d.raw", dump_file_prefix, no);
237 of = fopen(fname, "wb");
239 if (fwrite(buf, 1, len, of) != len)
241 printf("write failed for %s", fname);
245 printf("close failed for %s", fname);
251 static void add_otherInfos(Z_APDU *a)
253 Z_OtherInformation **oi;
256 if (facet_list && a->which == Z_APDU_searchRequest)
258 oi = &a->u.searchRequest->additionalSearchInfo;
259 yaz_oi_set_facetlist(oi, out, facet_list);
262 for (i = 0; i < maxOtherInfosSupported; ++i)
264 if (oid_oidlen(extraOtherInfos[i].oid) > 0)
265 yaz_oi_set_string_oid(oi, out, extraOtherInfos[i].oid,
266 1, extraOtherInfos[i].value);
270 int send_apdu(Z_APDU *a)
279 z_APDU(print, &a, 0, 0);
282 if (!z_APDU(out, &a, 0, 0))
284 odr_perror(out, "Encoding APDU");
288 buf = odr_getbuf(out, &len, 0);
290 odr_dumpBER(ber_file, buf, len);
291 do_hex_dump(buf, len);
292 if (cs_put(conn, buf, len) < 0)
294 fprintf(stderr, "cs_put: %s\n", cs_errmsg(cs_errno(conn)));
298 odr_reset(out); /* release the APDU structure */
302 static void print_stringn(const char *buf, size_t len)
305 for (i = 0; i < len; i++)
306 if ((buf[i] <= 126 && buf[i] >= 32) || strchr("\n\r\t\f", buf[i]))
307 printf("%c", buf[i]);
309 printf("\\X%02X", ((const unsigned char *)buf)[i]);
312 static void print_refid(Z_ReferenceId *id)
316 printf("Reference Id: ");
317 print_stringn((const char *) id->buf, id->len);
322 static Z_ReferenceId *set_refid(ODR out)
326 return odr_create_Odr_oct(out, refid, strlen(refid));
329 /* INIT SERVICE ------------------------------- */
331 static void send_Z3950_initRequest(const char* type_and_host)
333 Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
334 Z_InitRequest *req = apdu->u.initRequest;
337 req->options = &z3950_options;
339 ODR_MASK_ZERO(req->protocolVersion);
340 for (i = 0; i<z3950_version; i++)
341 ODR_MASK_SET(req->protocolVersion, i);
343 *req->maximumRecordSize = 1024*kilobytes;
344 *req->preferredMessageSize = 1024*kilobytes;
346 req->idAuthentication = auth;
348 req->referenceId = set_refid(out);
350 if (yazProxy && type_and_host)
352 yaz_oi_set_string_oid(&req->otherInfo, out, yaz_oid_userinfo_proxy,
356 if (negotiationCharset || yazLang)
358 Z_OtherInformation **p;
359 Z_OtherInformationUnit *p0;
361 yaz_oi_APDU(apdu, &p);
363 if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
365 ODR_MASK_SET(req->options, Z_Options_negotiationModel);
367 p0->which = Z_OtherInfo_externallyDefinedInfo;
368 p0->information.externallyDefinedInfo =
369 yaz_set_proposal_charneg_list(out, ",",
372 negotiationCharsetRecords);
376 printf("Sent initrequest.\n");
380 static void render_initUserInfo(Z_OtherInformation *ui1);
381 static void render_diag(Z_DiagnosticFormat *diag);
383 static void pr_opt(const char *opt, void *clientData)
388 static int process_Z3950_initResponse(Z_InitResponse *res)
391 /* save session parameters for later use */
392 session_mem = odr_extract_mem(in);
393 session_initResponse = res;
395 for (ver = 0; ver < 8; ver++)
396 if (!ODR_MASK_GET(res->protocolVersion, ver))
400 printf("Connection rejected by v%d target.\n", ver);
402 printf("Connection accepted by v%d target.\n", ver);
403 if (res->implementationId)
404 printf("ID : %s\n", res->implementationId);
405 if (res->implementationName)
406 printf("Name : %s\n", res->implementationName);
407 if (res->implementationVersion)
408 printf("Version: %s\n", res->implementationVersion);
409 if (res->userInformationField)
411 Z_External *uif = res->userInformationField;
412 if (uif->which == Z_External_userInfo1)
413 render_initUserInfo(uif->u.userInfo1);
416 printf("UserInformationfield:\n");
417 if (!z_External(print, (Z_External**)&uif, 0, 0))
419 odr_perror(print, "Printing userinfo\n");
422 if (uif->which == Z_External_octet)
424 printf("Guessing visiblestring:\n");
425 printf("'%.*s'\n", uif->u.octet_aligned->len,
426 uif->u.octet_aligned->buf);
428 else if (uif->which == Z_External_single)
430 Odr_any *sat = uif->u.single_ASN1_type;
431 if (!oid_oidcmp(uif->direct_reference,
432 yaz_oid_userinfo_oclc_userinfo))
434 Z_OCLC_UserInformation *oclc_ui;
435 ODR decode = odr_createmem(ODR_DECODE);
436 odr_setbuf(decode, (char *) sat->buf, sat->len, 0);
437 if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
438 printf("Bad OCLC UserInformation:\n");
440 printf("OCLC UserInformation:\n");
441 if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
442 printf("Bad OCLC UserInformation spec\n");
447 /* Peek at any private Init-diagnostic APDUs */
448 printf("yaz-client ignoring unrecognised userInformationField: %d-octet External '%.*s'\n",
449 (int) sat->len, sat->len, sat->buf);
456 yaz_init_opt_decode(res->options, pr_opt, 0);
459 if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
462 if (ODR_MASK_GET(res->options, Z_Options_negotiationModel))
464 Z_CharSetandLanguageNegotiation *p =
465 yaz_get_charneg_record(res->otherInfo);
469 char *charset=NULL, *lang=NULL;
472 yaz_get_response_charneg(session_mem, p, &charset, &lang,
475 printf("Accepted character set : %s\n", charset ? charset:"none");
476 printf("Accepted code language : %s\n", lang ? lang:"none");
477 printf("Accepted records in ...: %d\n", selected );
479 if (outputCharset && charset)
481 printf("Converting between %s and %s\n",
482 outputCharset, charset);
483 odr_set_charset(out, charset, outputCharset);
484 odr_set_charset(in, outputCharset, charset);
485 cmd_querycharset(charset);
489 odr_set_charset(out, 0, 0);
490 odr_set_charset(in, 0, 0);
499 static void render_initUserInfo(Z_OtherInformation *ui1)
502 printf("Init response contains %d otherInfo unit%s:\n",
503 ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
505 for (i = 0; i < ui1->num_elements; i++)
507 Z_OtherInformationUnit *unit = ui1->list[i];
508 printf(" %d: otherInfo unit contains ", i+1);
509 if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
510 unit->information.externallyDefinedInfo &&
511 unit->information.externallyDefinedInfo->which ==
514 render_diag(unit->information.externallyDefinedInfo->u.diag1);
516 else if (unit->which != Z_OtherInfo_externallyDefinedInfo)
518 printf("unsupported otherInfo unit->which = %d\n", unit->which);
522 printf("unsupported otherInfo unit external %d\n",
523 unit->information.externallyDefinedInfo ?
524 unit->information.externallyDefinedInfo->which : -2);
530 /* ### should this share code with display_diagrecs()? */
531 static void render_diag(Z_DiagnosticFormat *diag)
535 printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
536 for (i = 0; i < diag->num; i++)
538 Z_DiagnosticFormat_s *ds = diag->elements[i];
539 printf(" %d: ", i+1);
542 case Z_DiagnosticFormat_s_defaultDiagRec: {
543 Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
544 /* ### should check `dd->diagnosticSetId' */
545 printf("code=" ODR_INT_PRINTF " (%s)", *dd->condition,
546 diagbib1_str(*dd->condition));
547 /* Both types of addinfo are the same, so use type-pun */
548 if (dd->u.v2Addinfo != 0)
549 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
552 case Z_DiagnosticFormat_s_explicitDiagnostic:
553 printf("Explicit diagnostic (not supported)");
556 printf("Unrecognised diagnostic type %d", ds->which);
560 if (ds->message != 0)
561 printf(", message='%s'", ds->message);
567 static int set_base(const char *arg)
572 for (i = 0; i<num_databaseNames; i++)
573 xfree(databaseNames[i]);
574 num_databaseNames = 0;
578 if (!(cp = strchr(arg, ' ')))
579 cp = arg + strlen(arg);
582 databaseNames[num_databaseNames] = (char *)xmalloc(1 + cp - arg);
583 memcpy(databaseNames[num_databaseNames], arg, cp - arg);
584 databaseNames[num_databaseNames][cp - arg] = '\0';
586 for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
595 if (num_databaseNames == 0)
597 num_databaseNames = 1;
598 databaseNames[0] = xstrdup("");
603 static int parse_cmd_doc(const char **arg, ODR out, char **buf, int *len)
606 while (**arg && strchr(" \t\n\r\f", **arg))
612 else if ((*arg)[0] == '<')
617 const char *arg_start = ++(*arg);
619 while (**arg != '\0' && **arg != ' ')
622 fname = odr_strdupn(out, arg_start, *arg - arg_start);
624 inf = fopen(fname, "rb");
627 printf("Couldn't open %s\n", fname);
630 if (fseek(inf, 0L, SEEK_END) == -1)
632 printf("Couldn't seek in %s\n", fname);
637 if (fseek(inf, 0L, SEEK_SET) == -1)
639 printf("Couldn't seek in %s\n", fname);
644 *buf = (char *) odr_malloc(out, fsize+1);
645 (*buf)[fsize] = '\0';
646 if (fread(*buf, 1, fsize, inf) != fsize)
648 printf("Unable to read %s\n", fname);
654 else if ((*arg)[0] == '\"' && (sep=strchr(*arg+1, '"')))
658 *buf = odr_strdupn(out, *arg, *len);
663 const char *arg_start = *arg;
665 while (**arg != '\0' && **arg != ' ')
668 *len = *arg - arg_start;
669 *buf = odr_strdupn(out, arg_start, *len);
674 static int cmd_base(const char *arg)
678 printf("Usage: base <database> <database> ...\n");
681 return set_base(arg);
684 static int session_connect_base(const char *arg, const char **basep)
687 char type_and_host[101];
695 nmem_destroy(session_mem);
697 session_initResponse = 0;
699 cs_get_host_args(arg, basep);
701 strncpy(type_and_host, arg, sizeof(type_and_host)-1);
702 type_and_host[sizeof(type_and_host)-1] = '\0';
704 conn = cs_create_host_proxy(arg, 1, &add, yazProxy);
707 printf("Could not resolve address %s\n", arg);
712 if (conn->protocol == PROTO_HTTP)
714 printf("SRW/HTTP not enabled in this YAZ\n");
720 protocol = conn->protocol;
721 printf("Connecting...");
723 if (cs_connect(conn, add) < 0)
725 printf("error = %s\n", cs_strerror(conn));
731 cs_print_session_info(conn);
732 if (protocol == PROTO_Z3950)
734 send_Z3950_initRequest(type_and_host);
740 static int session_connect(const char *arg)
743 const char *basep = 0;
745 r = session_connect_base(arg, &basep);
748 else if (protocol == PROTO_Z3950)
753 static int cmd_open(const char *arg)
758 strncpy(cur_host, arg, sizeof(cur_host)-1);
759 cur_host[sizeof(cur_host)-1] = 0;
762 r = session_connect(cur_host);
763 if (conn && conn->protocol == PROTO_HTTP)
764 queryType = QueryType_CQL;
770 static int cmd_authentication(const char *arg)
775 nmem_reset(nmem_auth);
776 nmem_strsplit_blank(nmem_auth, arg, &args, &r);
780 printf("Authentication set to null\n");
785 auth = (Z_IdAuthentication *) nmem_malloc(nmem_auth, sizeof(*auth));
786 if (!strcmp(args[0], "-"))
788 auth->which = Z_IdAuthentication_anonymous;
789 auth->u.anonymous = odr_nullval();
790 printf("Authentication set to Anonymous\n");
794 auth->which = Z_IdAuthentication_open;
795 auth->u.open = args[0];
796 printf("Authentication set to Open (%s)\n", args[0]);
801 auth = (Z_IdAuthentication *) nmem_malloc(nmem_auth, sizeof(*auth));
802 auth->which = Z_IdAuthentication_idPass;
803 auth->u.idPass = (Z_IdPass *)
804 nmem_malloc(nmem_auth, sizeof(*auth->u.idPass));
805 auth->u.idPass->groupId = NULL;
806 auth->u.idPass->userId = !strcmp(args[0], "-") ? 0 : args[0];
807 auth->u.idPass->password = !strcmp(args[1], "-") ? 0 : args[1];
808 printf("Authentication set to User (%s), Pass (%s)\n",
813 auth = (Z_IdAuthentication*) nmem_malloc(nmem_auth, sizeof(*auth));
814 auth->which = Z_IdAuthentication_idPass;
815 auth->u.idPass = (Z_IdPass *)
816 nmem_malloc(nmem_auth, sizeof(*auth->u.idPass));
817 auth->u.idPass->groupId = args[1];
818 auth->u.idPass->userId = args[0];
819 auth->u.idPass->password = args[2];
820 printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
821 args[0], args[1], args[2]);
825 printf("Bad number of args to auth\n");
832 /* SEARCH SERVICE ------------------------------ */
833 static void display_record(Z_External *r);
835 static void print_record(const char *buf, size_t len)
838 print_stringn(buf, len);
839 /* add newline if not already added ... */
840 if (i <= 0 || buf[i-1] != '\n')
844 static void print_mab_record(const char *buf, size_t len)
847 size_t last_linebreak = 0;
848 size_t last_subfield = 0;
849 for (i = 0; i < len; i++)
851 // line break after header
855 last_linebreak = i - 1;
858 // space between field and content
859 if ( i > 24 && i - last_linebreak == 5 )
862 // space after subfield
863 if ( last_subfield != 0 && i - last_subfield == 2 )
866 if ((buf[i] <= 126 && buf[i] >= 32) || strchr("\n\r\t\f", buf[i]))
867 printf("%c", buf[i]);
868 else if ( buf[i] == 29 ) // record separator
870 else if ( buf[i] == 30 ) // field separator
875 else if ( buf[i] == 31 ) // subfield
877 // space before subfields; except first one
878 if ( i > 24 && i - last_linebreak > 5 )
884 printf("\\X%02X", ((const unsigned char *)buf)[i]);
888 static void print_xml_record(const char *buf, size_t len)
895 xmlKeepBlanksDefault(0); /* get get xmlDocFormatMemory to work! */
896 doc = xmlParseMemory(buf, len);
901 xmlDocDumpFormatMemory(doc, &xml_mem, &xml_size, 1);
902 fwrite(xml_mem, 1, xml_size, stdout);
910 fwrite(buf, 1, len, stdout);
913 static void display_record(Z_External *r)
915 const Odr_oid *oid = r->direct_reference;
919 * Tell the user what we got.
924 char oid_name_buf[OID_STR_MAX];
926 = yaz_oid_to_string_buf(oid, &oclass, oid_name_buf);
927 printf("Record type: ");
929 printf("%s\n", oid_name);
931 /* Check if this is a known, ASN.1 type tucked away in an octet string */
932 if (r->which == Z_External_octet)
934 Z_ext_typeent *type = z_ext_getentbyref(r->direct_reference);
940 * Call the given decoder to process the record.
942 odr_setbuf(in, (char*)r->u.octet_aligned->buf,
943 r->u.octet_aligned->len, 0);
944 if (!(*type->fun)(in, &rr, 0, 0))
946 odr_perror(in, "Decoding constructed record.");
947 fprintf(stdout, "[Near %ld]\n", (long) odr_offset(in));
948 fprintf(stdout, "Packet dump:\n---------\n");
949 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
950 r->u.octet_aligned->len);
951 fprintf(stdout, "---------\n");
953 /* note just ignores the error ant print the bytes form the octet_aligned later */
956 * Note: we throw away the original, BER-encoded record here.
957 * Do something else with it if you want to keep it.
959 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
960 r->which = type->what;
964 if (oid && r->which == Z_External_octet)
966 const char *octet_buf = (const char*)r->u.octet_aligned->buf;
967 size_t octet_len = r->u.octet_aligned->len;
968 if (!oid_oidcmp(oid, yaz_oid_recsyn_xml)
969 || !oid_oidcmp(oid, yaz_oid_recsyn_application_xml)
970 || !oid_oidcmp(oid, yaz_oid_recsyn_html))
972 print_xml_record(octet_buf, octet_len);
974 else if (!oid_oidcmp(oid, yaz_oid_recsyn_mab))
976 print_mab_record(octet_buf, octet_len);
983 yaz_marc_t mt = yaz_marc_create();
984 const char *from = 0;
986 if (marcCharset && !strcmp(marcCharset, "auto"))
988 if (!oid_oidcmp(oid, yaz_oid_recsyn_usmarc))
990 if (octet_buf[9] == 'a')
998 else if (marcCharset)
1000 if (outputCharset && from)
1002 cd = yaz_iconv_open(outputCharset, from);
1003 printf("convert from %s to %s", from,
1006 printf(" unsupported\n");
1009 yaz_marc_iconv(mt, cd);
1014 if (yaz_marc_decode_buf(mt, octet_buf, octet_len,
1017 if (fwrite(result, rlen, 1, stdout) != 1)
1019 printf("write to stdout failed\n");
1024 if (yaz_oid_is_iso2709(oid))
1025 printf("bad MARC. Dumping as it is:\n");
1026 print_record(octet_buf, octet_len);
1028 yaz_marc_destroy(mt);
1030 yaz_iconv_close(cd);
1032 marc_file_write(octet_buf, r->u.octet_aligned->len);
1034 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_sutrs))
1036 if (r->which != Z_External_sutrs)
1038 printf("Expecting single SUTRS type for SUTRS.\n");
1041 print_record((const char *) r->u.sutrs->buf, r->u.sutrs->len);
1042 marc_file_write((const char *) r->u.sutrs->buf, r->u.sutrs->len);
1044 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_grs_1))
1047 if (r->which != Z_External_grs1)
1049 printf("Expecting single GRS type for GRS.\n");
1053 yaz_display_grs1(w, r->u.grs1, 0);
1054 puts(wrbuf_cstr(w));
1057 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_opac))
1060 if (r->u.opac->bibliographicRecord)
1061 display_record(r->u.opac->bibliographicRecord);
1062 for (i = 0; i<r->u.opac->num_holdingsData; i++)
1064 Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
1065 if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
1067 printf("MARC holdings %d\n", i);
1068 display_record(h->u.marcHoldingsRecord);
1070 else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
1074 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
1076 printf("Data holdings %d\n", i);
1077 if (data->typeOfRecord)
1078 printf("typeOfRecord: %s\n", data->typeOfRecord);
1079 if (data->encodingLevel)
1080 printf("encodingLevel: %s\n", data->encodingLevel);
1081 if (data->receiptAcqStatus)
1082 printf("receiptAcqStatus: %s\n", data->receiptAcqStatus);
1083 if (data->generalRetention)
1084 printf("generalRetention: %s\n", data->generalRetention);
1085 if (data->completeness)
1086 printf("completeness: %s\n", data->completeness);
1087 if (data->dateOfReport)
1088 printf("dateOfReport: %s\n", data->dateOfReport);
1090 printf("nucCode: %s\n", data->nucCode);
1091 if (data->localLocation)
1092 printf("localLocation: %s\n", data->localLocation);
1093 if (data->shelvingLocation)
1094 printf("shelvingLocation: %s\n", data->shelvingLocation);
1095 if (data->callNumber)
1096 printf("callNumber: %s\n", data->callNumber);
1097 if (data->shelvingData)
1098 printf("shelvingData: %s\n", data->shelvingData);
1099 if (data->copyNumber)
1100 printf("copyNumber: %s\n", data->copyNumber);
1101 if (data->publicNote)
1102 printf("publicNote: %s\n", data->publicNote);
1103 if (data->reproductionNote)
1104 printf("reproductionNote: %s\n", data->reproductionNote);
1105 if (data->termsUseRepro)
1106 printf("termsUseRepro: %s\n", data->termsUseRepro);
1107 if (data->enumAndChron)
1108 printf("enumAndChron: %s\n", data->enumAndChron);
1109 for (j = 0; j<data->num_volumes; j++)
1111 printf("volume %d\n", j);
1112 if (data->volumes[j]->enumeration)
1113 printf(" enumeration: %s\n",
1114 data->volumes[j]->enumeration);
1115 if (data->volumes[j]->chronology)
1116 printf(" chronology: %s\n",
1117 data->volumes[j]->chronology);
1118 if (data->volumes[j]->enumAndChron)
1119 printf(" enumAndChron: %s\n",
1120 data->volumes[j]->enumAndChron);
1122 for (j = 0; j<data->num_circulationData; j++)
1124 printf("circulation %d\n", j);
1125 if (data->circulationData[j]->availableNow)
1126 printf(" availableNow: %d\n",
1127 *data->circulationData[j]->availableNow);
1128 if (data->circulationData[j]->availablityDate)
1129 printf(" availabiltyDate: %s\n",
1130 data->circulationData[j]->availablityDate);
1131 if (data->circulationData[j]->availableThru)
1132 printf(" availableThru: %s\n",
1133 data->circulationData[j]->availableThru);
1134 if (data->circulationData[j]->restrictions)
1135 printf(" restrictions: %s\n",
1136 data->circulationData[j]->restrictions);
1137 if (data->circulationData[j]->itemId)
1138 printf(" itemId: %s\n",
1139 data->circulationData[j]->itemId);
1140 if (data->circulationData[j]->renewable)
1141 printf(" renewable: %d\n",
1142 *data->circulationData[j]->renewable);
1143 if (data->circulationData[j]->onHold)
1144 printf(" onHold: %d\n",
1145 *data->circulationData[j]->onHold);
1146 if (data->circulationData[j]->enumAndChron)
1147 printf(" enumAndChron: %s\n",
1148 data->circulationData[j]->enumAndChron);
1149 if (data->circulationData[j]->midspine)
1150 printf(" midspine: %s\n",
1151 data->circulationData[j]->midspine);
1152 if (data->circulationData[j]->temporaryLocation)
1153 printf(" temporaryLocation: %s\n",
1154 data->circulationData[j]->temporaryLocation);
1161 printf("Unknown record representation.\n");
1162 if (!z_External(print, &r, 0, 0))
1164 odr_perror(print, "Printing external");
1170 static void display_diagrecs(Z_DiagRec **pp, int num)
1173 Z_DefaultDiagFormat *r;
1175 printf("Diagnostic message(s) from database:\n");
1176 for (i = 0; i<num; i++)
1178 Z_DiagRec *p = pp[i];
1179 if (p->which != Z_DiagRec_defaultFormat)
1181 printf("Diagnostic record not in default format.\n");
1185 r = p->u.defaultFormat;
1187 if (!r->diagnosticSetId)
1188 printf("Missing diagset\n");
1192 char diag_name_buf[OID_STR_MAX];
1193 const char *diag_name = 0;
1194 diag_name = yaz_oid_to_string_buf
1195 (r->diagnosticSetId, &oclass, diag_name_buf);
1196 if (oid_oidcmp(r->diagnosticSetId, yaz_oid_diagset_bib_1))
1197 printf("Unknown diagset: %s\n", diag_name);
1199 printf(" [" ODR_INT_PRINTF "] %s",
1200 *r->condition, diagbib1_str(*r->condition));
1203 case Z_DefaultDiagFormat_v2Addinfo:
1204 printf(" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1206 case Z_DefaultDiagFormat_v3Addinfo:
1207 printf(" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1214 static void display_nameplusrecord(Z_NamePlusRecord *p)
1216 if (p->databaseName)
1217 printf("[%s]", p->databaseName);
1218 if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1219 display_diagrecs(&p->u.surrogateDiagnostic, 1);
1220 else if (p->which == Z_NamePlusRecord_databaseRecord)
1221 display_record(p->u.databaseRecord);
1224 static void display_records(Z_Records *p)
1228 if (p->which == Z_Records_NSD)
1230 Z_DiagRec dr, *dr_p = &dr;
1231 dr.which = Z_DiagRec_defaultFormat;
1232 dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1233 display_diagrecs(&dr_p, 1);
1235 else if (p->which == Z_Records_multipleNSD)
1236 display_diagrecs(p->u.multipleNonSurDiagnostics->diagRecs,
1237 p->u.multipleNonSurDiagnostics->num_diagRecs);
1240 printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1241 for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1242 display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1246 static int send_Z3950_deleteResultSetRequest(const char *arg)
1251 Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1252 Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1254 req->referenceId = set_refid(out);
1256 req->num_resultSetList =
1257 sscanf(arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1258 names[0], names[1], names[2], names[3],
1259 names[4], names[5], names[6], names[7]);
1261 req->deleteFunction = odr_intdup(out, 0);
1262 if (req->num_resultSetList > 0)
1264 *req->deleteFunction = Z_DeleteResultSetRequest_list;
1265 req->resultSetList = (char **)
1266 odr_malloc(out, sizeof(*req->resultSetList)*
1267 req->num_resultSetList);
1268 for (i = 0; i<req->num_resultSetList; i++)
1269 req->resultSetList[i] = names[i];
1273 *req->deleteFunction = Z_DeleteResultSetRequest_all;
1274 req->resultSetList = 0;
1278 printf("Sent deleteResultSetRequest.\n");
1283 static int send_gdu(Z_GDU *gdu)
1285 if (z_GDU(out, &gdu, 0, 0))
1293 if (!z_GDU(print, &gdu, 0, 0))
1294 printf("Failed to print outgoing SRU package\n");
1297 buf_out = odr_getbuf(out, &len_out, 0);
1299 /* we don't odr_reset(out), since we may need the buffer again */
1301 do_hex_dump(buf_out, len_out);
1303 r = cs_put(conn, buf_out, len_out);
1311 static int send_srw_host_path(Z_SRW_PDU *sr, const char *host_port,
1314 const char *charset = negotiationCharset;
1317 gdu = z_get_HTTP_Request_host_path(out, host_port, path);
1321 if (auth->which == Z_IdAuthentication_open)
1325 nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1327 sr->username = darray[0];
1329 sr->password = darray[1];
1331 else if (auth->which == Z_IdAuthentication_idPass)
1333 sr->username = auth->u.idPass->userId;
1334 sr->password = auth->u.idPass->password;
1338 if (!yaz_matchstr(sru_method, "get"))
1340 yaz_sru_get_encode(gdu->u.HTTP_Request, sr, out, charset);
1342 else if (!yaz_matchstr(sru_method, "post"))
1344 yaz_sru_post_encode(gdu->u.HTTP_Request, sr, out, charset);
1346 else if (!yaz_matchstr(sru_method, "soap"))
1348 yaz_sru_soap_encode(gdu->u.HTTP_Request, sr, out, charset);
1350 else if (!yaz_matchstr(sru_method, "solr"))
1352 yaz_solr_encode_request(gdu->u.HTTP_Request, sr, out, charset);
1355 return send_gdu(gdu);
1358 static int send_srw(Z_SRW_PDU *sr)
1360 char *path = yaz_encode_sru_dbpath_odr(out, databaseNames[0]);
1361 return send_srw_host_path(sr, cur_host, path);
1364 static int send_SRW_redirect(const char *uri, Z_HTTP_Response *cookie_hres)
1366 const char *username = 0;
1367 const char *password = 0;
1368 struct Z_HTTP_Header *h;
1369 char *combined_cookies = 0;
1370 int combined_cookies_len = 0;
1371 Z_GDU *gdu = get_HTTP_Request_url(out, uri);
1373 gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
1374 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
1377 for (h = cookie_hres->headers; h; h = h->next)
1379 if (!strcmp(h->name, "Set-Cookie"))
1383 if (!(cp = strchr(h->value, ';')))
1384 cp = h->value + strlen(h->value);
1385 if (cp - h->value >= 1)
1387 combined_cookies = xrealloc(combined_cookies, combined_cookies_len + cp - h->value + 3);
1388 memcpy(combined_cookies+combined_cookies_len, h->value, cp - h->value);
1389 combined_cookies[combined_cookies_len + cp - h->value] = '\0';
1390 strcat(combined_cookies,"; ");
1391 combined_cookies_len = strlen(combined_cookies);
1395 if (combined_cookies_len)
1397 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Cookie", combined_cookies);
1398 xfree(combined_cookies);
1403 if (auth->which == Z_IdAuthentication_open)
1407 nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1409 username = darray[0];
1411 password = darray[1];
1413 else if (auth->which == Z_IdAuthentication_idPass)
1415 username = auth->u.idPass->userId;
1416 password = auth->u.idPass->password;
1420 if (username && password)
1422 z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
1423 username, password);
1426 return send_gdu(gdu);
1431 static char *encode_SRW_term(ODR o, const char *q)
1433 const char *in_charset = "ISO-8859-1";
1434 WRBUF w = wrbuf_alloc();
1438 in_charset = outputCharset;
1439 cd = yaz_iconv_open("UTF-8", in_charset);
1443 return odr_strdup(o, q);
1445 wrbuf_iconv_write(w, cd, q, strlen(q));
1447 res = odr_strdup(o, wrbuf_cstr(w));
1449 res = odr_strdup(o, q);
1450 yaz_iconv_close(cd);
1456 static int send_SRW_scanRequest(const char *arg, Odr_int *pos, int num)
1460 /* regular requestse .. */
1461 sr = yaz_srw_get_pdu(out, Z_SRW_scan_request, sru_version);
1466 sr->u.scan_request->queryType = "cql";
1467 sr->u.scan_request->scanClause = encode_SRW_term(out, arg);
1469 case QueryType_Prefix:
1470 sr->u.scan_request->queryType = "pqf";
1471 sr->u.scan_request->scanClause = encode_SRW_term(out, arg);
1474 printf("Only CQL and PQF supported in SRW\n");
1477 sr->u.scan_request->responsePosition = pos;
1478 sr->u.scan_request->maximumTerms = odr_intdup(out, num);
1479 return send_srw(sr);
1482 static int send_SRW_searchRequest(const char *arg)
1488 assert(srw_sr_odr_out == 0);
1489 srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1491 odr_reset(srw_sr_odr_out);
1495 /* save this for later .. when fetching individual records */
1496 srw_sr = yaz_srw_get_pdu(srw_sr_odr_out, Z_SRW_searchRetrieve_request,
1499 /* regular request .. */
1500 sr = yaz_srw_get_pdu(out, Z_SRW_searchRetrieve_request, sru_version);
1505 srw_sr->u.request->queryType = "cql";
1506 srw_sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1508 sr->u.request->queryType = "cql";
1509 sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1511 case QueryType_Prefix:
1512 srw_sr->u.request->queryType = "pqf";
1513 srw_sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1515 sr->u.request->queryType = "pqf";
1516 sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1519 printf("Only CQL and PQF supported in SRW\n");
1522 if (*sru_recordPacking)
1523 sr->u.request->recordPacking = sru_recordPacking;
1524 sru_maximumRecords = 0;
1525 sr->u.request->maximumRecords = odr_intdup(out, 0);
1526 sr->u.request->facetList = facet_list;
1527 sr->u.request->recordSchema = record_schema;
1528 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
1529 sr->u.request->recordPacking = "xml";
1530 return send_srw(sr);
1534 static void query_charset_convert(Z_RPNQuery *q)
1536 if (queryCharset && outputCharset)
1538 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
1541 printf("Conversion from %s to %s unsupported\n",
1542 outputCharset, queryCharset);
1545 yaz_query_charset_convert_rpnquery(q, out, cd);
1546 yaz_iconv_close(cd);
1550 static int send_Z3950_searchRequest(const char *arg)
1552 Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1553 Z_SearchRequest *req = apdu->u.searchRequest;
1555 struct ccl_rpn_node *rpn = NULL;
1557 char setstring[100];
1558 Z_RPNQuery *RPNquery;
1560 YAZ_PQF_Parser pqf_parser;
1562 QueryType myQueryType = queryType;
1565 if (myQueryType == QueryType_CCL2RPN)
1567 rpn = ccl_find_str(bibset, arg, &error, &pos);
1570 printf("CCL ERROR: %s\n", ccl_err_msg(error));
1574 else if (myQueryType == QueryType_CQL2RPN)
1576 /* ### All this code should be wrapped in a utility function */
1578 struct cql_node *node;
1579 const char *addinfo;
1582 printf("Can't use CQL: no translation file. Try set_cqlfile\n");
1585 parser = cql_parser_create();
1586 if ((error = cql_parser_string(parser, arg)) != 0)
1588 printf("Can't parse CQL: must be a syntax error\n");
1591 node = cql_parser_result(parser);
1592 if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1593 sizeof pqfbuf)) != 0)
1595 error = cql_transform_error(cqltrans, &addinfo);
1596 printf("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1597 cql_strerror(error), addinfo);
1601 myQueryType = QueryType_Prefix;
1604 req->referenceId = set_refid(out);
1605 if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1607 static char big[2100];
1608 static Odr_oct bigo;
1610 /* send a very big referenceid to test transport stack etc. */
1611 memset(big, 'A', 2100);
1614 req->referenceId = &bigo;
1619 sprintf(setstring, "%d", ++setnumber);
1620 req->resultSetName = setstring;
1622 *req->smallSetUpperBound = smallSetUpperBound;
1623 *req->largeSetLowerBound = largeSetLowerBound;
1624 *req->mediumSetPresentNumber = mediumSetPresentNumber;
1625 if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1626 mediumSetPresentNumber > 0))
1628 if (recordsyntax_size)
1629 req->preferredRecordSyntax =
1630 yaz_string_to_oid_odr(yaz_oid_std(),
1631 CLASS_RECSYN, recordsyntax_list[0], out);
1633 req->smallSetElementSetNames =
1634 req->mediumSetElementSetNames = elementSetNames;
1636 req->num_databaseNames = num_databaseNames;
1637 req->databaseNames = databaseNames;
1639 req->query = &query;
1641 switch (myQueryType)
1643 case QueryType_Prefix:
1644 query.which = Z_Query_type_1;
1645 pqf_parser = yaz_pqf_create();
1646 RPNquery = yaz_pqf_parse(pqf_parser, out, arg);
1649 const char *pqf_msg;
1651 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
1653 printf("%*s^\n", ioff+4, "");
1654 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1656 yaz_pqf_destroy(pqf_parser);
1659 yaz_pqf_destroy(pqf_parser);
1660 query_charset_convert(RPNquery);
1661 query.u.type_1 = RPNquery;
1664 query.which = Z_Query_type_2;
1665 query.u.type_2 = &ccl_query;
1666 ccl_query.buf = (char *) arg;
1667 ccl_query.len = strlen(arg);
1669 case QueryType_CCL2RPN:
1670 query.which = Z_Query_type_1;
1671 RPNquery = ccl_rpn_query(out, rpn);
1674 printf("Couldn't convert from CCL to RPN\n");
1677 query_charset_convert(RPNquery);
1678 query.u.type_1 = RPNquery;
1679 ccl_rpn_delete(rpn);
1682 query.which = Z_Query_type_104;
1683 ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1684 ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1685 ext->indirect_reference = 0;
1686 ext->descriptor = 0;
1687 ext->which = Z_External_CQL;
1688 ext->u.cql = odr_strdup(out, arg);
1689 query.u.type_104 = ext;
1692 printf("Unsupported query type\n");
1695 if (send_apdu(apdu))
1696 printf("Sent searchRequest.\n");
1701 static void display_term(Z_Term *term)
1703 switch (term->which)
1705 case Z_Term_general:
1706 printf("%.*s", term->u.general->len, term->u.general->buf);
1708 case Z_Term_characterString:
1709 printf("%s", term->u.characterString);
1711 case Z_Term_numeric:
1712 printf(ODR_INT_PRINTF, *term->u.numeric);
1720 /* display Query Expression as part of searchResult-1 */
1721 static void display_queryExpression(const char *lead, Z_QueryExpression *qe)
1725 printf(" %s=", lead);
1726 if (qe->which == Z_QueryExpression_term)
1728 if (qe->u.term->queryTerm)
1730 Z_Term *term = qe->u.term->queryTerm;
1736 static void display_facet(Z_FacetField *facet)
1738 if (facet->attributes)
1740 Z_AttributeList *al = facet->attributes;
1741 struct yaz_facet_attr attr_values;
1742 yaz_facet_attr_init(&attr_values);
1743 yaz_facet_attr_get_z_attributes(al, &attr_values);
1744 if (!attr_values.errcode)
1747 printf(" %s (%d): \n", attr_values.useattr, facet->num_terms);
1748 for (term_index = 0 ; term_index < facet->num_terms; term_index++)
1750 Z_FacetTerm *facetTerm = facet->terms[term_index];
1752 display_term(facetTerm->term);
1753 printf(" (" NMEM_INT_PRINTF ")\n", *facetTerm->count);
1760 static void* display_facets(Z_FacetList *fl)
1763 printf("Facets(%d): \n", fl->num);
1765 for (index = 0; index < fl->num ; index++)
1767 display_facet(fl->elements[index]);
1772 void display_searchResult1(Z_SearchInfoReport *sr)
1775 printf("SearchResult-1:");
1776 for (j = 0; j < sr->num; j++)
1780 if (!sr->elements[j]->subqueryExpression)
1782 display_queryExpression("term",
1783 sr->elements[j]->subqueryExpression);
1784 display_queryExpression("interpretation",
1785 sr->elements[j]->subqueryInterpretation);
1786 display_queryExpression("recommendation",
1787 sr->elements[j]->subqueryRecommendation);
1788 if (sr->elements[j]->subqueryCount)
1789 printf(" cnt=" ODR_INT_PRINTF,
1790 *sr->elements[j]->subqueryCount);
1791 if (sr->elements[j]->subqueryId)
1792 printf(" id=%s ", sr->elements[j]->subqueryId);
1799 /* see if we can find USR:SearchResult-1 */
1800 static void display_searchResult(Z_OtherInformation *o)
1805 for (i = 0; i < o->num_elements; i++)
1807 if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1809 Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1811 if (ext->which == Z_External_searchResult1)
1812 display_searchResult1(ext->u.searchResult1);
1813 else if (ext->which == Z_External_userFacets)
1814 display_facets(ext->u.facetList);
1819 static int process_Z3950_searchResponse(Z_SearchResponse *res)
1821 printf("Received SearchResponse.\n");
1822 print_refid(res->referenceId);
1823 if (*res->searchStatus)
1824 printf("Search was a success.\n");
1826 printf("Search was a bloomin' failure.\n");
1827 printf("Number of hits: " ODR_INT_PRINTF, *res->resultCount);
1828 last_hit_count = *res->resultCount;
1830 printf(", setno %d", setnumber);
1832 if (res->resultSetStatus)
1834 printf("Result Set Status: ");
1835 switch (*res->resultSetStatus)
1837 case Z_SearchResponse_subset:
1838 printf("subset"); break;
1839 case Z_SearchResponse_interim:
1840 printf("interim"); break;
1841 case Z_SearchResponse_none:
1842 printf("none"); break;
1843 case Z_SearchResponse_estimate:
1844 printf("estimate"); break;
1846 printf(ODR_INT_PRINTF, *res->resultSetStatus);
1850 display_searchResult(res->additionalSearchInfo);
1851 printf("records returned: " ODR_INT_PRINTF "\n",
1852 *res->numberOfRecordsReturned);
1853 setno += *res->numberOfRecordsReturned;
1855 display_records(res->records);
1859 static void print_level(int iLevel)
1862 for (i = 0; i < iLevel * 4; i++)
1866 static void print_int(int iLevel, const char *pTag, Odr_int *pInt)
1870 print_level(iLevel);
1871 printf("%s: " ODR_INT_PRINTF "\n", pTag, *pInt);
1875 static void print_bool(int iLevel, const char *pTag, Odr_bool *pInt)
1879 print_level(iLevel);
1880 printf("%s: %d\n", pTag, *pInt);
1884 static void print_string(int iLevel, const char *pTag, const char *pString)
1886 if (pString != NULL)
1888 print_level(iLevel);
1889 printf("%s: %s\n", pTag, pString);
1893 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1897 Odr_oid *pInt = pOid;
1899 print_level(iLevel);
1900 printf("%s:", pTag);
1901 for (; *pInt != -1; pInt++)
1902 printf(" %d", *pInt);
1907 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1909 if (referenceId != NULL)
1913 print_level(iLevel);
1914 printf("Ref Id (%d): ", referenceId->len);
1915 for (i = 0; i < referenceId->len; i++)
1916 printf("%c", referenceId->buf[i]);
1921 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1923 if (pStringNumeric != NULL)
1925 switch (pStringNumeric->which)
1927 case Z_StringOrNumeric_string:
1928 print_string(iLevel, pTag, pStringNumeric->u.string);
1931 case Z_StringOrNumeric_numeric:
1932 print_int(iLevel, pTag, pStringNumeric->u.numeric);
1936 print_level(iLevel);
1937 printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1943 static void print_universe_report_duplicate(
1945 Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1947 if (pUniverseReportDuplicate != NULL)
1949 print_level(iLevel);
1950 printf("Universe Report Duplicate: \n");
1952 print_string_or_numeric(iLevel, "Hit No",
1953 pUniverseReportDuplicate->hitno);
1957 static void print_universe_report_hits(
1959 Z_UniverseReportHits *pUniverseReportHits)
1961 if (pUniverseReportHits != NULL)
1963 print_level(iLevel);
1964 printf("Universe Report Hits: \n");
1966 print_string_or_numeric(iLevel, "Database",
1967 pUniverseReportHits->database);
1968 print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1972 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1974 if (pUniverseReport != NULL)
1976 print_level(iLevel);
1977 printf("Universe Report: \n");
1979 print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1980 switch (pUniverseReport->which)
1982 case Z_UniverseReport_databaseHits:
1983 print_universe_report_hits(iLevel,
1984 pUniverseReport->u.databaseHits);
1987 case Z_UniverseReport_duplicate:
1988 print_universe_report_duplicate(iLevel,
1989 pUniverseReport->u.duplicate);
1993 print_level(iLevel);
1994 printf("Type: %d\n", pUniverseReport->which);
2000 static void print_external(int iLevel, Z_External *pExternal)
2002 if (pExternal != NULL)
2004 print_level(iLevel);
2005 printf("External: \n");
2007 print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
2008 print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
2009 print_string(iLevel, "Descriptor", pExternal->descriptor);
2010 switch (pExternal->which)
2012 case Z_External_universeReport:
2013 print_universe_report(iLevel, pExternal->u.universeReport);
2017 print_level(iLevel);
2018 printf("Type: %d\n", pExternal->which);
2024 static int process_Z3950_resourceControlRequest(Z_ResourceControlRequest *req)
2026 printf("Received ResourceControlRequest.\n");
2027 print_referenceId(1, req->referenceId);
2028 print_bool(1, "Suspended Flag", req->suspendedFlag);
2029 print_int(1, "Partial Results Available", req->partialResultsAvailable);
2030 print_bool(1, "Response Required", req->responseRequired);
2031 print_bool(1, "Triggered Request Flag", req->triggeredRequestFlag);
2032 print_external(1, req->resourceReport);
2036 static void process_Z3950_ESResponse(Z_ExtendedServicesResponse *res)
2039 switch (*res->operationStatus)
2041 case Z_ExtendedServicesResponse_done:
2044 case Z_ExtendedServicesResponse_accepted:
2045 printf("accepted\n");
2047 case Z_ExtendedServicesResponse_failure:
2048 printf("failure\n");
2049 display_diagrecs(res->diagnostics, res->num_diagnostics);
2052 printf("unknown\n");
2054 if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
2055 (res->num_diagnostics != 0) )
2057 display_diagrecs(res->diagnostics, res->num_diagnostics);
2059 print_refid (res->referenceId);
2060 if (res->taskPackage &&
2061 res->taskPackage->which == Z_External_extendedService)
2063 Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
2064 Odr_oct *id = taskPackage->targetReference;
2065 Z_External *ext = taskPackage->taskSpecificParameters;
2069 printf("Target Reference: ");
2070 print_stringn((const char *) id->buf, id->len);
2073 if (ext->which == Z_External_update)
2075 Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
2076 if (utp && utp->targetPart)
2078 Z_IUTargetPart *targetPart = utp->targetPart;
2081 for (i = 0; i<targetPart->num_taskPackageRecords; i++)
2084 Z_IUTaskPackageRecordStructure *tpr =
2085 targetPart->taskPackageRecords[i];
2086 printf("task package record %d\n", i+1);
2087 if (tpr->which == Z_IUTaskPackageRecordStructure_record)
2089 display_record (tpr->u.record);
2093 printf("other type\n");
2098 if (ext->which == Z_External_itemOrder)
2100 Z_IOTaskPackage *otp = ext->u.itemOrder->u.taskPackage;
2102 if (otp && otp->targetPart)
2104 if (otp->targetPart->itemRequest)
2106 Z_External *ext = otp->targetPart->itemRequest;
2107 if (ext->which == Z_External_octet)
2109 Odr_oct *doc = ext->u.octet_aligned;
2110 printf("Got itemRequest doc %.*s\n",
2111 doc->len, doc->buf);
2114 else if (otp->targetPart->statusOrErrorReport)
2116 Z_External *ext = otp->targetPart->statusOrErrorReport;
2117 if (ext->which == Z_External_octet)
2119 Odr_oct *doc = ext->u.octet_aligned;
2120 printf("Got Status or Error Report doc %.*s\n",
2121 doc->len, doc->buf);
2127 if (res->taskPackage && res->taskPackage->which == Z_External_octet)
2129 Odr_oct *doc = res->taskPackage->u.octet_aligned;
2130 printf("%.*s\n", doc->len, doc->buf);
2134 static const char *get_ill_element(void *clientData, const char *element)
2139 static Z_External *create_external_itemRequest(void)
2141 struct ill_get_ctl ctl;
2142 ILL_ItemRequest *req;
2144 int item_request_size = 0;
2145 char *item_request_buf = 0;
2149 ctl.f = get_ill_element;
2151 req = ill_get_ItemRequest(&ctl, "ill", 0);
2153 printf("ill_get_ItemRequest failed\n");
2155 if (!ill_ItemRequest(out, &req, 0, 0))
2159 ill_ItemRequest(print, &req, 0, 0);
2162 item_request_buf = odr_getbuf (out, &item_request_size, 0);
2163 if (item_request_buf)
2164 odr_setbuf (out, item_request_buf, item_request_size, 1);
2165 printf("Couldn't encode ItemRequest, size %d\n", item_request_size);
2170 item_request_buf = odr_getbuf (out, &item_request_size, 0);
2171 r = (Z_External *) odr_malloc(out, sizeof(*r));
2172 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2173 r->indirect_reference = 0;
2175 r->which = Z_External_single;
2176 r->u.single_ASN1_type =
2177 odr_create_Odr_oct(out, item_request_buf, item_request_size);
2178 do_hex_dump(item_request_buf,item_request_size);
2183 static Z_External *create_external_ILL_APDU(void)
2185 struct ill_get_ctl ctl;
2188 int ill_request_size = 0;
2189 char *ill_request_buf = 0;
2193 ctl.f = get_ill_element;
2195 ill_apdu = ill_get_APDU(&ctl, "ill", 0);
2197 if (!ill_APDU (out, &ill_apdu, 0, 0))
2201 printf("-------------------\n");
2202 ill_APDU(print, &ill_apdu, 0, 0);
2204 printf("-------------------\n");
2206 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2207 if (ill_request_buf)
2208 odr_setbuf (out, ill_request_buf, ill_request_size, 1);
2209 printf("Couldn't encode ILL-Request, size %d\n", ill_request_size);
2214 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2216 r = (Z_External *) odr_malloc(out, sizeof(*r));
2217 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2218 r->indirect_reference = 0;
2220 r->which = Z_External_single;
2221 r->u.single_ASN1_type = odr_create_Odr_oct(out, ill_request_buf,
2228 static Z_External *create_ItemOrderExternal(const char *type, int itemno,
2229 const char *xml_buf,
2232 Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
2233 r->direct_reference = odr_oiddup(out, yaz_oid_extserv_item_order);
2234 r->indirect_reference = 0;
2237 r->which = Z_External_itemOrder;
2239 r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
2240 memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
2241 r->u.itemOrder->which=Z_IOItemOrder_esRequest;
2243 r->u.itemOrder->u.esRequest = (Z_IORequest *)
2244 odr_malloc(out,sizeof(Z_IORequest));
2245 memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
2247 r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
2248 odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
2249 memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
2250 r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
2251 odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
2252 memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
2254 r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
2255 r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
2256 r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
2258 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
2259 (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
2260 memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
2261 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
2263 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
2264 odr_intdup(out, itemno);
2265 if (!strcmp (type, "item") || !strcmp(type, "2"))
2267 printf("using item-request\n");
2268 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2269 create_external_itemRequest();
2271 else if (!strcmp(type, "ill") || !strcmp(type, "1"))
2273 printf("using ILL-request\n");
2274 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2275 create_external_ILL_APDU();
2277 else if (!strcmp(type, "xml") || !strcmp(type, "3"))
2279 printf("using XML ILL-request\n");
2283 printf("no docoument added\n");
2284 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2288 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2289 z_ext_record_oid(out, yaz_oid_recsyn_xml, xml_buf, xml_len);
2293 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2298 static int send_Z3950_itemorder(const char *type, int itemno,
2299 const char *xml_buf, int xml_len)
2301 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2302 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2304 req->referenceId = set_refid (out);
2306 req->packageType = odr_oiddup(out, yaz_oid_extserv_item_order);
2307 req->packageName = esPackageName;
2309 req->taskSpecificParameters = create_ItemOrderExternal(type, itemno,
2315 static int only_z3950(void)
2319 printf("Not connected yet\n");
2322 if (protocol == PROTO_HTTP)
2324 printf("Not supported by SRW\n");
2330 static int cmd_update_common(const char *arg, int version);
2332 static int cmd_update(const char *arg)
2334 return cmd_update_common(arg, 1);
2337 static int cmd_update0(const char *arg)
2339 return cmd_update_common(arg, 0);
2342 static int send_Z3950_update(int version, int action_no, const char *recid,
2343 char *rec_buf, int rec_len);
2346 static int send_SRW_update(int action_no, const char *recid,
2347 char *rec_buf, int rec_len);
2350 static int cmd_update_common(const char *arg, int version)
2356 const char *recid = 0;
2362 if (parse_cmd_doc(&arg, out, &action_buf, &action_len) == 0)
2364 printf("Use: update action recid [fname]\n");
2365 printf(" where action is one of insert,replace,delete.update\n");
2366 printf(" recid is some record ID. Use none for no ID\n");
2367 printf(" fname is file of record to be updated\n");
2371 if (parse_cmd_doc(&arg, out, &recid_buf, &recid_len) == 0)
2373 printf("Missing recid\n");
2377 if (!strcmp(action_buf, "insert"))
2378 action_no = Z_IUOriginPartToKeep_recordInsert;
2379 else if (!strcmp(action_buf, "replace"))
2380 action_no = Z_IUOriginPartToKeep_recordReplace;
2381 else if (!strcmp(action_buf, "delete"))
2382 action_no = Z_IUOriginPartToKeep_recordDelete;
2383 else if (!strcmp(action_buf, "update"))
2384 action_no = Z_IUOriginPartToKeep_specialUpdate;
2387 printf("Bad action: %s\n", action_buf);
2388 printf("Possible values: insert, replace, delete, update\n");
2392 if (strcmp(recid_buf, "none")) /* none means no record ID */
2396 if (parse_cmd_doc(&arg, out, &rec_buf, &rec_len) == 0)
2400 if (protocol == PROTO_HTTP)
2401 return send_SRW_update(action_no, recid, rec_buf, rec_len);
2403 return send_Z3950_update(version, action_no, recid, rec_buf, rec_len);
2407 static int send_SRW_update(int action_no, const char *recid,
2408 char *rec_buf, int rec_len)
2411 session_connect(cur_host);
2416 Z_SRW_PDU *srw = yaz_srw_get(out, Z_SRW_update_request);
2417 Z_SRW_updateRequest *sr = srw->u.update_request;
2421 case Z_IUOriginPartToKeep_recordInsert:
2422 sr->operation = "info:srw/action/1/create";
2424 case Z_IUOriginPartToKeep_recordReplace:
2425 sr->operation = "info:srw/action/1/replace";
2427 case Z_IUOriginPartToKeep_recordDelete:
2428 sr->operation = "info:srw/action/1/delete";
2433 sr->record = yaz_srw_get_record(out);
2434 sr->record->recordData_buf = rec_buf;
2435 sr->record->recordData_len = rec_len;
2436 sr->record->recordSchema = record_schema;
2439 sr->recordId = odr_strdup(out, recid);
2440 return send_srw(srw);
2445 static int send_Z3950_update(int version, int action_no, const char *recid,
2446 char *rec_buf, int rec_len)
2448 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
2449 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2451 Z_External *record_this = 0;
2453 record_this = z_ext_record_oid(out, yaz_oid_recsyn_xml,
2459 printf("No last record (update ignored)\n");
2462 record_this = record_last;
2465 req->packageType = odr_oiddup(out, (version == 0 ?
2466 yaz_oid_extserv_database_update_first_version :
2467 yaz_oid_extserv_database_update));
2469 req->packageName = esPackageName;
2471 req->referenceId = set_refid (out);
2473 r = req->taskSpecificParameters = (Z_External *)
2474 odr_malloc(out, sizeof(*r));
2475 r->direct_reference = req->packageType;
2476 r->indirect_reference = 0;
2480 Z_IU0OriginPartToKeep *toKeep;
2481 Z_IU0SuppliedRecords *notToKeep;
2483 r->which = Z_External_update0;
2484 r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2485 r->u.update0->which = Z_IUUpdate_esRequest;
2486 r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2487 odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2488 toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2489 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2491 toKeep->databaseName = databaseNames[0];
2495 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2497 record_schema, out);
2499 toKeep->elementSetName = 0;
2501 toKeep->action = odr_intdup(out, action_no);
2503 notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2504 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2506 notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2507 odr_malloc(out, sizeof(*notToKeep->elements));
2508 notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2509 odr_malloc(out, sizeof(**notToKeep->elements));
2510 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2511 notToKeep->elements[0]->u.opaque = recid ?
2512 odr_create_Odr_oct(out, recid, strlen(recid)) : 0;
2513 notToKeep->elements[0]->supplementalId = 0;
2514 notToKeep->elements[0]->correlationInfo = 0;
2515 notToKeep->elements[0]->record = record_this;
2519 Z_IUOriginPartToKeep *toKeep;
2520 Z_IUSuppliedRecords *notToKeep;
2522 r->which = Z_External_update;
2523 r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2524 r->u.update->which = Z_IUUpdate_esRequest;
2525 r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2526 odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2527 toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2528 odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2530 toKeep->databaseName = databaseNames[0];
2534 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2536 record_schema, out);
2538 toKeep->elementSetName = 0;
2539 toKeep->actionQualifier = 0;
2540 toKeep->action = odr_intdup(out, action_no);
2542 notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2543 odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2545 notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2546 odr_malloc(out, sizeof(*notToKeep->elements));
2547 notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2548 odr_malloc(out, sizeof(**notToKeep->elements));
2549 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2550 notToKeep->elements[0]->u.opaque = recid ?
2551 odr_create_Odr_oct(out, recid, strlen(recid)) : 0;
2552 notToKeep->elements[0]->supplementalId = 0;
2553 notToKeep->elements[0]->correlationInfo = 0;
2554 notToKeep->elements[0]->record = record_this;
2562 static int cmd_xmles(const char *arg)
2572 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2573 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2576 Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
2578 req->referenceId = set_refid (out);
2579 req->taskSpecificParameters = ext;
2580 ext->indirect_reference = 0;
2581 ext->descriptor = 0;
2582 ext->which = Z_External_octet;
2583 ext->u.single_ASN1_type = (Odr_oct *) odr_malloc(out, sizeof(Odr_oct));
2584 sscanf(arg, "%50s%n", oid_str, &noread);
2587 printf("Missing OID for xmles\n");
2591 if (parse_cmd_doc(&arg, out, &asn_buf,
2592 &ext->u.single_ASN1_type->len) == 0)
2595 ext->u.single_ASN1_type->buf = asn_buf;
2597 oid = yaz_string_to_oid_odr(yaz_oid_std(),
2598 CLASS_EXTSERV, oid_str, out);
2601 printf("Bad OID: %s\n", oid_str);
2605 req->packageType = oid;
2607 ext->direct_reference = oid;
2615 static int cmd_itemorder(const char *arg)
2625 if (sscanf(arg, "%10s %d%n", type, &itemno, &no_read) < 2)
2628 parse_cmd_doc(&arg, out, &xml_buf, &xml_len);
2631 send_Z3950_itemorder(type, itemno, xml_buf, xml_len);
2635 static void show_opt(const char *arg, void *clientData)
2640 static int cmd_zversion(const char *arg)
2643 z3950_version = atoi(arg);
2645 printf("version is %d\n", z3950_version);
2649 static int cmd_options(const char *arg)
2655 r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2657 printf("Unknown option(s) near %s\n", arg+pos);
2661 yaz_init_opt_decode(&z3950_options, show_opt, 0);
2667 static int cmd_explain(const char *arg)
2669 if (protocol != PROTO_HTTP)
2673 session_connect(cur_host);
2680 /* save this for later .. when fetching individual records */
2681 sr = yaz_srw_get_pdu(out, Z_SRW_explain_request, sru_version);
2682 if (recordsyntax_size == 1
2683 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2684 sr->u.explain_request->recordPacking = "xml";
2692 static int cmd_init(const char *arg)
2696 strncpy(cur_host, arg, sizeof(cur_host)-1);
2697 cur_host[sizeof(cur_host)-1] = 0;
2701 send_Z3950_initRequest(cur_host);
2705 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url)
2707 Z_GDU *p = z_get_HTTP_Request(odr);
2708 const char *host = url;
2709 const char *cp0 = strstr(host, "://");
2710 const char *cp1 = 0;
2716 cp1 = strchr(cp0, '/');
2718 cp1 = cp0 + strlen(cp0);
2722 char *h = (char*) odr_malloc(odr, cp1 - cp0 + 1);
2723 memcpy (h, cp0, cp1 - cp0);
2725 z_HTTP_header_add(odr, &p->u.HTTP_Request->headers, "Host", h);
2727 p->u.HTTP_Request->path = odr_strdup(odr, *cp1 ? cp1 : "/");
2731 static WRBUF get_url(const char *uri, WRBUF username, WRBUF password,
2732 int *code, int show_headers)
2735 ODR out = odr_createmem(ODR_ENCODE);
2736 ODR in = odr_createmem(ODR_DECODE);
2737 Z_GDU *gdu = get_HTTP_Request_url(out, uri);
2739 gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
2740 if (username && password)
2742 z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
2743 wrbuf_cstr(username),
2744 wrbuf_cstr(password));
2746 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
2748 if (!z_GDU(out, &gdu, 0, 0))
2750 yaz_log(YLOG_WARN, "Can not encode HTTP request URL:%s", uri);
2755 COMSTACK conn = cs_create_host(uri, 1, &add);
2756 if (cs_connect(conn, add) < 0)
2757 yaz_log(YLOG_WARN, "Can not connect to URL:%s", uri);
2761 char *buf = odr_getbuf(out, &len, 0);
2763 if (cs_put(conn, buf, len) < 0)
2764 yaz_log(YLOG_WARN, "cs_put failed URL:%s", uri);
2767 char *netbuffer = 0;
2769 int res = cs_get(conn, &netbuffer, &netlen);
2772 yaz_log(YLOG_WARN, "cs_get failed URL:%s", uri);
2777 odr_setbuf(in, netbuffer, res, 0);
2778 if (!z_GDU(in, &gdu, 0, 0)
2779 || gdu->which != Z_GDU_HTTP_Response)
2781 yaz_log(YLOG_WARN, "decode failed URL: %s", uri);
2785 Z_HTTP_Response *res = gdu->u.HTTP_Response;
2786 struct Z_HTTP_Header *h;
2787 result = wrbuf_alloc();
2791 wrbuf_printf(result, "HTTP %d\n", res->code);
2792 for (h = res->headers; h; h = h->next)
2793 wrbuf_printf(result, "%s: %s\n",
2797 wrbuf_write(result, res->content_buf, res->content_len);
2811 static int cmd_url(const char *arg)
2814 WRBUF res = get_url(arg, 0, 0, &code, 1);
2817 if (wrbuf_len(res) > 1200)
2819 fwrite(wrbuf_buf(res), 1, 1200, stdout);
2820 printf(".. out of %lld\n", (long long) wrbuf_len(res));
2823 puts(wrbuf_cstr(res));
2829 static int cmd_sru(const char *arg)
2833 printf("SRU method is: %s\n", sru_method);
2834 printf("SRU version is: %s\n", sru_version);
2838 int r = sscanf(arg, "%9s %9s %9s", sru_method, sru_version,
2842 if (!yaz_matchstr(sru_method, "post"))
2844 else if (!yaz_matchstr(sru_method, "get"))
2846 else if (!yaz_matchstr(sru_method, "soap"))
2848 else if (!yaz_matchstr(sru_method, "solr"))
2852 strcpy(sru_method, "soap");
2853 printf("Unknown SRU method: %s\n", arg);
2854 printf("Specify one of POST, GET, SOAP, SOLR\n");
2861 static int cmd_find(const char *arg)
2865 printf("Find what?\n");
2868 if (protocol == PROTO_HTTP)
2872 session_connect(cur_host);
2875 if (!send_SRW_searchRequest(arg))
2883 if (*cur_host && auto_reconnect)
2890 if (!send_Z3950_searchRequest(arg))
2892 wait_and_handle_response(0);
2898 printf("Unable to reconnect\n");
2901 session_connect(cur_host);
2902 wait_and_handle_response(0);
2908 if (!send_Z3950_searchRequest(arg))
2913 printf("Not connected yet\n");
2920 static int cmd_facets(const char *arg)
2923 facet_odr = odr_createmem(ODR_ENCODE);
2924 odr_reset(facet_odr);
2929 printf("Facets cleared.\n");
2932 facet_list = yaz_pqf_parse_facet_list(facet_odr, arg);
2935 printf("Invalid facet list: %s", arg);
2941 static int cmd_delete(const char *arg)
2945 if (!send_Z3950_deleteResultSetRequest(arg))
2950 static int cmd_ssub(const char *arg)
2952 if (!(smallSetUpperBound = atoi(arg)))
2957 static int cmd_lslb(const char *arg)
2959 if (!(largeSetLowerBound = atoi(arg)))
2964 static int cmd_mspn(const char *arg)
2966 if (!(mediumSetPresentNumber = atoi(arg)))
2971 static int cmd_status(const char *arg)
2973 printf("smallSetUpperBound: %d\n", smallSetUpperBound);
2974 printf("largeSetLowerBound: %d\n", largeSetLowerBound);
2975 printf("mediumSetPresentNumber: %d\n", mediumSetPresentNumber);
2979 static int cmd_setnames(const char *arg)
2981 if (*arg == '1') /* enable ? */
2983 else if (*arg == '0') /* disable ? */
2985 else if (setnumber < 0) /* no args, toggle .. */
2991 printf("Set numbering enabled.\n");
2993 printf("Set numbering disabled.\n");
2997 /* PRESENT SERVICE ----------------------------- */
2999 size_t check_token(const char *haystack, const char *token)
3001 size_t len = strlen(token);
3003 if (strncmp(haystack, token, len))
3005 for (extra = 0; haystack[extra + len] != '\0'; extra++)
3006 if (!strchr(" \r\n\t", haystack[extra + len]))
3011 return 0; /* no whitespace after token */
3016 static int parse_show_args(const char *arg_c, char *setstring,
3017 Odr_int *start, Odr_int *number)
3020 Odr_int start_position;
3024 sprintf(setstring, "%d", setnumber);
3028 token_len = check_token(arg_c, "format");
3037 token_len = check_token(arg_c, "all");
3040 *number = last_hit_count;
3044 start_position = odr_strtol(arg_c, &end_ptr, 10);
3045 if (end_ptr == arg_c)
3047 *start = start_position;
3048 if (*end_ptr == '\0')
3050 while (yaz_isspace(*end_ptr))
3052 if (*end_ptr != '+')
3054 printf("Bad show arg: expected +. Got %s\n", end_ptr);
3059 *number = odr_strtol(arg_c, &end_ptr, 10);
3060 if (end_ptr == arg_c)
3062 printf("Bad show arg: expected number after +\n");
3065 if (*end_ptr == '\0')
3067 while (yaz_isspace(*end_ptr))
3069 if (*end_ptr != '+')
3071 printf("Bad show arg: + expected. Got %s\n", end_ptr);
3074 strcpy(setstring, end_ptr+1);
3078 static int send_Z3950_presentRequest(const char *arg)
3080 Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
3081 Z_PresentRequest *req = apdu->u.presentRequest;
3082 Z_RecordComposition compo;
3084 char setstring[100];
3086 req->referenceId = set_refid(out);
3088 if (!parse_show_args(arg, setstring, &setno, &nos))
3091 req->resultSetId = setstring;
3093 req->resultSetStartPoint = &setno;
3094 req->numberOfRecordsRequested = &nos;
3096 if (recordsyntax_size)
3097 req->preferredRecordSyntax =
3098 yaz_string_to_oid_odr(yaz_oid_std(),
3099 CLASS_RECSYN, recordsyntax_list[0], out);
3101 if (record_schema || recordsyntax_size >= 2)
3103 req->recordComposition = &compo;
3104 compo.which = Z_RecordComp_complex;
3105 compo.u.complex = (Z_CompSpec *)
3106 odr_malloc(out, sizeof(*compo.u.complex));
3107 compo.u.complex->selectAlternativeSyntax = (bool_t *)
3108 odr_malloc(out, sizeof(bool_t));
3109 *compo.u.complex->selectAlternativeSyntax = 0;
3111 compo.u.complex->generic = (Z_Specification *)
3112 odr_malloc(out, sizeof(*compo.u.complex->generic));
3114 compo.u.complex->generic->which = Z_Schema_oid;
3116 compo.u.complex->generic->schema.oid = 0;
3119 compo.u.complex->generic->schema.oid =
3120 yaz_string_to_oid_odr(yaz_oid_std(),
3121 CLASS_SCHEMA, record_schema, out);
3123 if (!compo.u.complex->generic->schema.oid)
3125 /* OID wasn't a schema! Try record syntax instead. */
3126 compo.u.complex->generic->schema.oid = (Odr_oid *)
3127 yaz_string_to_oid_odr(yaz_oid_std(),
3128 CLASS_RECSYN, record_schema, out);
3131 if (!elementSetNames)
3132 compo.u.complex->generic->elementSpec = 0;
3135 compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
3136 odr_malloc(out, sizeof(Z_ElementSpec));
3137 compo.u.complex->generic->elementSpec->which =
3138 Z_ElementSpec_elementSetName;
3139 compo.u.complex->generic->elementSpec->u.elementSetName =
3140 elementSetNames->u.generic;
3142 compo.u.complex->num_dbSpecific = 0;
3143 compo.u.complex->dbSpecific = 0;
3145 compo.u.complex->num_recordSyntax = 0;
3146 compo.u.complex->recordSyntax = 0;
3147 if (recordsyntax_size >= 2)
3150 compo.u.complex->num_recordSyntax = recordsyntax_size;
3151 compo.u.complex->recordSyntax = (Odr_oid **)
3152 odr_malloc(out, recordsyntax_size * sizeof(Odr_oid*));
3153 for (i = 0; i < recordsyntax_size; i++)
3154 compo.u.complex->recordSyntax[i] =
3155 yaz_string_to_oid_odr(yaz_oid_std(),
3156 CLASS_RECSYN, recordsyntax_list[i], out);
3159 else if (elementSetNames)
3161 req->recordComposition = &compo;
3162 compo.which = Z_RecordComp_simple;
3163 compo.u.simple = elementSetNames;
3166 printf("Sent presentRequest (" ODR_INT_PRINTF "+" ODR_INT_PRINTF ").\n",
3172 static int send_SRW_presentRequest(const char *arg)
3174 char setstring[100];
3176 Z_SRW_PDU *sr = srw_sr;
3180 if (!parse_show_args(arg, setstring, &setno, &nos))
3182 if (*sru_recordPacking)
3183 sr->u.request->recordPacking = sru_recordPacking;
3184 sr->u.request->startRecord = odr_intdup(out, setno);
3185 sru_maximumRecords = nos;
3186 sr->u.request->maximumRecords = odr_intdup(out, nos);
3187 sr->u.request->recordSchema = record_schema;
3188 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
3189 sr->u.request->recordPacking = "xml";
3190 return send_srw(sr);
3194 static void close_session(void)
3206 static void process_Z3950_close(Z_Close *req)
3208 Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
3209 Z_Close *res = apdu->u.close;
3211 static char *reasons[] =
3216 "cost limit reached",
3218 "security violation",
3225 printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
3226 req->diagnosticInformation ? req->diagnosticInformation : "NULL");
3231 *res->closeReason = Z_Close_finished;
3233 printf("Sent response.\n");
3238 static int cmd_show(const char *arg)
3240 if (protocol == PROTO_HTTP)
3244 session_connect(cur_host);
3247 if (!send_SRW_presentRequest(arg))
3257 printf("Not connected yet\n");
3260 if (!send_Z3950_presentRequest(arg))
3266 static void exit_client(int code)
3268 file_history_save(file_history);
3269 file_history_destroy(&file_history);
3270 nmem_destroy(nmem_auth);
3274 static int cmd_quit(const char *arg)
3276 printf("See you later, alligator.\n");
3282 static int cmd_cancel(const char *arg)
3288 Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
3289 Z_TriggerResourceControlRequest *req =
3290 apdu->u.triggerResourceControlRequest;
3295 sscanf(arg, "%15s", command);
3299 if (session_initResponse &&
3300 !ODR_MASK_GET(session_initResponse->options,
3301 Z_Options_triggerResourceCtrl))
3303 printf("Target doesn't support cancel (trigger resource ctrl)\n");
3306 *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
3307 req->resultSetWanted = &rfalse;
3308 req->referenceId = set_refid(out);
3311 printf("Sent cancel request\n");
3312 if (!strcmp(command, "wait"))
3318 static int cmd_cancel_find(const char *arg)
3323 fres = cmd_find(arg);
3326 return cmd_cancel("");
3331 static int send_Z3950_scanrequest(const char *set, const char *query,
3332 Odr_int *pos, Odr_int num, const char *term)
3334 Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
3335 Z_ScanRequest *req = apdu->u.scanRequest;
3339 printf("query: %s\n", query);
3340 if (queryType == QueryType_CCL2RPN)
3343 struct ccl_rpn_node *rpn;
3345 rpn = ccl_find_str(bibset, query, &error, &pos);
3348 printf("CCL ERROR: %s\n", ccl_err_msg(error));
3352 yaz_string_to_oid_odr(yaz_oid_std(),
3353 CLASS_ATTSET, "Bib-1", out);
3354 if (!(req->termListAndStartPoint = ccl_scan_query(out, rpn)))
3356 printf("Couldn't convert CCL to Scan term\n");
3359 ccl_rpn_delete(rpn);
3363 YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
3366 if (!(req->termListAndStartPoint =
3367 yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
3369 const char *pqf_msg;
3371 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
3373 printf("%*s^\n", ioff+7, "");
3374 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
3375 yaz_pqf_destroy(pqf_parser);
3378 yaz_pqf_destroy(pqf_parser);
3380 if (queryCharset && outputCharset)
3382 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
3385 printf("Conversion from %s to %s unsupported\n",
3386 outputCharset, queryCharset);
3389 yaz_query_charset_convert_apt(req->termListAndStartPoint, out, cd);
3390 yaz_iconv_close(cd);
3394 if (req->termListAndStartPoint->term &&
3395 req->termListAndStartPoint->term->which == Z_Term_general &&
3396 req->termListAndStartPoint->term->u.general)
3398 req->termListAndStartPoint->term->u.general->buf =
3399 odr_strdup(out, term);
3400 req->termListAndStartPoint->term->u.general->len = strlen(term);
3403 req->referenceId = set_refid(out);
3404 req->num_databaseNames = num_databaseNames;
3405 req->databaseNames = databaseNames;
3406 req->numberOfTermsRequested = #
3407 req->preferredPositionInResponse = pos;
3408 req->stepSize = odr_intdup(out, scan_stepSize);
3411 yaz_oi_set_string_oid(&req->otherInfo, out,
3412 yaz_oid_userinfo_scan_set, 1, set);
3418 static int send_sortrequest(const char *arg, int newset)
3420 Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
3421 Z_SortRequest *req = apdu->u.sortRequest;
3422 Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
3423 odr_malloc(out, sizeof(*sksl));
3429 sprintf(setstring, "%d", setnumber);
3431 sprintf(setstring, "default");
3433 req->referenceId = set_refid(out);
3435 req->num_inputResultSetNames = 1;
3436 req->inputResultSetNames = (Z_InternationalString **)
3437 odr_malloc(out, sizeof(*req->inputResultSetNames));
3438 req->inputResultSetNames[0] = odr_strdup(out, setstring);
3440 if (newset && setnumber >= 0)
3441 sprintf(setstring, "%d", ++setnumber);
3443 req->sortedResultSetName = odr_strdup(out, setstring);
3445 req->sortSequence = yaz_sort_spec(out, arg);
3446 if (!req->sortSequence)
3448 printf("Missing sort specifications\n");
3455 static void display_term_info(Z_TermInfo *t)
3458 printf("%s", t->displayTerm);
3459 else if (t->term->which == Z_Term_general)
3460 printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
3462 printf("Term (not general)");
3463 if (t->term->which == Z_Term_general)
3464 sprintf(last_scan_line, "%.*s", t->term->u.general->len,
3465 t->term->u.general->buf);
3467 if (t->globalOccurrences)
3468 printf(" (" ODR_INT_PRINTF ")\n", *t->globalOccurrences);
3473 static void process_Z3950_scanResponse(Z_ScanResponse *res)
3476 Z_Entry **entries = NULL;
3477 int num_entries = 0;
3479 printf("Received ScanResponse\n");
3480 print_refid(res->referenceId);
3481 printf(ODR_INT_PRINTF " entries", *res->numberOfEntriesReturned);
3482 if (res->positionOfTerm)
3483 printf(", position=" ODR_INT_PRINTF, *res->positionOfTerm);
3485 if (*res->scanStatus != Z_Scan_success)
3486 printf("Scan returned code " ODR_INT_PRINTF "\n", *res->scanStatus);
3489 if ((entries = res->entries->entries))
3490 num_entries = res->entries->num_entries;
3491 for (i = 0; i < num_entries; i++)
3493 int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
3494 if (entries[i]->which == Z_Entry_termInfo)
3496 printf("%c ", i + 1 == pos_term ? '*' : ' ');
3497 display_term_info(entries[i]->u.termInfo);
3500 display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
3502 if (res->entries->nonsurrogateDiagnostics)
3503 display_diagrecs(res->entries->nonsurrogateDiagnostics,
3504 res->entries->num_nonsurrogateDiagnostics);
3507 static void process_Z3950_sortResponse(Z_SortResponse *res)
3509 printf("Received SortResponse: status=");
3510 switch (*res->sortStatus)
3512 case Z_SortResponse_success:
3513 printf("success"); break;
3514 case Z_SortResponse_partial_1:
3515 printf("partial"); break;
3516 case Z_SortResponse_failure:
3517 printf("failure"); break;
3519 printf("unknown (" ODR_INT_PRINTF ")", *res->sortStatus);
3522 print_refid (res->referenceId);
3523 if (res->diagnostics)
3524 display_diagrecs(res->diagnostics,
3525 res->num_diagnostics);
3528 static void process_Z3950_deleteResultSetResponse(
3529 Z_DeleteResultSetResponse *res)
3531 printf("Got deleteResultSetResponse status=" ODR_INT_PRINTF "\n",
3532 *res->deleteOperationStatus);
3533 if (res->deleteListStatuses)
3536 for (i = 0; i < res->deleteListStatuses->num; i++)
3538 printf("%s status=" ODR_INT_PRINTF "\n",
3539 res->deleteListStatuses->elements[i]->id,
3540 *res->deleteListStatuses->elements[i]->status);
3545 static int cmd_sort_generic(const char *arg, int newset)
3549 if (session_initResponse &&
3550 !ODR_MASK_GET(session_initResponse->options, Z_Options_sort))
3552 printf("Target doesn't support sort\n");
3557 if (send_sortrequest(arg, newset) < 0)
3564 static int cmd_sort(const char *arg)
3566 return cmd_sort_generic(arg, 0);
3569 static int cmd_sort_newset(const char *arg)
3571 return cmd_sort_generic(arg, 1);
3574 static int cmd_scanstep(const char *arg)
3576 scan_stepSize = atoi(arg);
3580 static int cmd_scanpos(const char *arg)
3582 if (!strcmp(arg, "none"))
3583 strcpy(scan_position, "none");
3587 int r = sscanf(arg, "%d", &dummy);
3588 if (r == 1 && strlen(arg) < sizeof(scan_position)-1)
3589 strcpy(scan_position, arg);
3591 printf("specify number of none for scanpos\n");
3596 static int cmd_scansize(const char *arg)
3598 int r = sscanf(arg, "%d", &scan_size);
3604 static int cmd_scan_common(const char *set, const char *arg)
3606 Odr_int pos, *pos_p = 0;
3607 const char *scan_term = 0;
3608 const char *scan_query = 0;
3614 scan_query = last_scan_query;
3615 scan_term = last_scan_line;
3619 strcpy(last_scan_query, arg);
3621 if (strcmp(scan_position, "none"))
3623 pos = odr_atoi(scan_position);
3628 if (protocol == PROTO_HTTP)
3632 session_connect(cur_host);
3635 if (send_SRW_scanRequest(scan_query, pos_p, scan_size) < 0)
3644 if (*cur_host && !conn && auto_reconnect)