1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2010 Index Data
3 * See the file LICENSE for details.
6 * \brief yaz-client program
18 #include <sys/types.h>
40 #define S_ISREG(x) (x & _S_IFREG)
41 #define S_ISDIR(x) (x & _S_IFDIR)
44 #include <yaz/yaz-util.h>
46 #include <yaz/comstack.h>
48 #include <yaz/oid_db.h>
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>
57 #include <yaz/pquery.h>
58 #include <yaz/sortspec.h>
62 #include <yaz/yaz-ccl.h>
66 #if HAVE_READLINE_READLINE_H
67 #include <readline/readline.h>
69 #if HAVE_READLINE_HISTORY_H
70 #include <readline/history.h>
75 #include "tabcomplete.h"
78 #define C_PROMPT "Z> "
80 static file_history_t file_history = 0;
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 */
89 static ODR srw_sr_odr_out = 0;
90 static Z_SRW_PDU *srw_sr = 0;
92 static FILE *apdu_file = 0;
93 static FILE *ber_file = 0;
94 static COMSTACK conn = 0; /* our z-association */
96 static Z_IdAuthentication *auth = 0; /* our current auth definition */
97 static NMEM nmem_auth = NULL;
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;
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;
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;
154 static QueryType queryType = QueryType_Prefix;
156 static CCL_bibset bibset; /* CCL bibset handle */
157 static cql_transform_t cqltrans = 0; /* CQL context-set handle */
159 #if HAVE_READLINE_COMPLETION_OVER
162 /* readline doesn't have this var. Define it ourselves. */
163 int rl_attempted_completion_over = 0;
166 #define maxOtherInfosSupported 10
168 Odr_oid oid[OID_SIZE];
170 } extraOtherInfos[maxOtherInfosSupported];
172 void process_cmd_line(char* line);
173 #if HAVE_READLINE_READLINE_H
174 char **readline_completer(char *text, int start, int end);
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);
180 static void close_session(void);
182 static void marc_file_write(const char *buf, size_t sz);
184 static void wait_and_handle_response(int one_response_only);
185 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url);
187 ODR getODROutputStream(void)
192 const char* query_type_as_string(QueryType 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)";
201 return "unknown Query type internal yaz-client error";
205 static void do_hex_dump(const char* buf, size_t len)
211 for (i = 0; i < len ; i = i+16 )
213 printf(" %4.4ld ", (long) i);
214 for(x=0 ; i+x<len && x<16; ++x)
216 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
221 if (dump_file_prefix)
224 if (++no < 1000 && strlen(dump_file_prefix) < 500)
228 sprintf(fname, "%s.%03d.raw", dump_file_prefix, no);
229 of = fopen(fname, "wb");
231 if (fwrite(buf, 1, len, of) != len)
233 printf("write failed for %s", fname);
237 printf("close failed for %s", fname);
243 void add_otherInfos(Z_APDU *a)
245 Z_OtherInformation **oi;
249 for(i=0; i<maxOtherInfosSupported; ++i)
251 if (oid_oidlen(extraOtherInfos[i].oid) > 0)
252 yaz_oi_set_string_oid(oi, out, extraOtherInfos[i].oid,
253 1, extraOtherInfos[i].value);
257 int send_apdu(Z_APDU *a)
266 z_APDU(print, &a, 0, 0);
269 if (!z_APDU(out, &a, 0, 0))
271 odr_perror(out, "Encoding APDU");
275 buf = odr_getbuf(out, &len, 0);
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)
282 fprintf(stderr, "cs_put: %s", cs_errmsg(cs_errno(conn)));
286 odr_reset(out); /* release the APDU structure */
290 static void print_stringn(const char *buf, size_t len)
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]);
297 printf("\\X%02X", ((const unsigned char *)buf)[i]);
300 static void print_refid(Z_ReferenceId *id)
304 printf("Reference Id: ");
305 print_stringn((const char *) id->buf, id->len);
310 static Z_ReferenceId *set_refid(ODR out)
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);
322 /* INIT SERVICE ------------------------------- */
324 static void send_initRequest(const char* type_and_host)
326 Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
327 Z_InitRequest *req = apdu->u.initRequest;
330 req->options = &z3950_options;
332 ODR_MASK_ZERO(req->protocolVersion);
333 for (i = 0; i<z3950_version; i++)
334 ODR_MASK_SET(req->protocolVersion, i);
336 *req->maximumRecordSize = 1024*kilobytes;
337 *req->preferredMessageSize = 1024*kilobytes;
339 req->idAuthentication = auth;
341 req->referenceId = set_refid(out);
343 if (yazProxy && type_and_host)
345 yaz_oi_set_string_oid(&req->otherInfo, out, yaz_oid_userinfo_proxy,
349 if (negotiationCharset || yazLang) {
350 Z_OtherInformation **p;
351 Z_OtherInformationUnit *p0;
353 yaz_oi_APDU(apdu, &p);
355 if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
357 ODR_MASK_SET(req->options, Z_Options_negotiationModel);
359 p0->which = Z_OtherInfo_externallyDefinedInfo;
360 p0->information.externallyDefinedInfo =
361 yaz_set_proposal_charneg_list(out, ",",
364 negotiationCharsetRecords);
368 printf("Sent initrequest.\n");
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);
376 static void pr_opt(const char *opt, void *clientData)
381 static int process_initResponse(Z_InitResponse *res)
384 /* save session parameters for later use */
385 session_mem = odr_extract_mem(in);
386 session_initResponse = res;
388 for (ver = 0; ver < 8; ver++)
389 if (!ODR_MASK_GET(res->protocolVersion, ver))
393 printf("Connection rejected by v%d target.\n", ver);
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)
404 Z_External *uif = res->userInformationField;
405 if (uif->which == Z_External_userInfo1) {
406 render_initUserInfo(uif->u.userInfo1);
408 printf("UserInformationfield:\n");
409 if (!z_External(print, (Z_External**)&uif, 0, 0))
411 odr_perror(print, "Printing userinfo\n");
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);
419 else if (uif->which == Z_External_single)
421 Odr_any *sat = uif->u.single_ASN1_type;
422 if (!oid_oidcmp(uif->direct_reference,
423 yaz_oid_userinfo_oclc_userinfo))
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");
431 printf("OCLC UserInformation:\n");
432 if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
433 printf("Bad OCLC UserInformation spec\n");
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);
447 yaz_init_opt_decode(res->options, pr_opt, 0);
450 if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
453 if (ODR_MASK_GET(res->options, Z_Options_negotiationModel)) {
455 Z_CharSetandLanguageNegotiation *p =
456 yaz_get_charneg_record(res->otherInfo);
460 char *charset=NULL, *lang=NULL;
463 yaz_get_response_charneg(session_mem, p, &charset, &lang,
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 );
470 if (outputCharset && charset)
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);
480 odr_set_charset(out, 0, 0);
481 odr_set_charset(in, 0, 0);
490 static void render_initUserInfo(Z_OtherInformation *ui1) {
492 printf("Init response contains %d otherInfo unit%s:\n",
493 ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
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 ==
502 render_diag(unit->information.externallyDefinedInfo->u.diag1);
504 else if (unit->which != Z_OtherInfo_externallyDefinedInfo)
506 printf("unsupported otherInfo unit->which = %d\n", unit->which);
510 printf("unsupported otherInfo unit external %d\n",
511 unit->information.externallyDefinedInfo ?
512 unit->information.externallyDefinedInfo->which : -2);
518 /* ### should this share code with display_diagrecs()? */
519 static void render_diag(Z_DiagnosticFormat *diag) {
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);
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);
537 case Z_DiagnosticFormat_s_explicitDiagnostic:
538 printf("Explicit diagnostic (not supported)");
541 printf("Unrecognised diagnostic type %d", ds->which);
545 if (ds->message != 0)
546 printf(", message='%s'", ds->message);
552 static int set_base(const char *arg)
557 for (i = 0; i<num_databaseNames; i++)
558 xfree(databaseNames[i]);
559 num_databaseNames = 0;
563 if (!(cp = strchr(arg, ' ')))
564 cp = arg + strlen(arg);
567 databaseNames[num_databaseNames] = (char *)xmalloc(1 + cp - arg);
568 memcpy(databaseNames[num_databaseNames], arg, cp - arg);
569 databaseNames[num_databaseNames][cp - arg] = '\0';
571 for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
580 if (num_databaseNames == 0)
582 num_databaseNames = 1;
583 databaseNames[0] = xstrdup("");
588 static int parse_cmd_doc(const char **arg, ODR out, char **buf, int *len)
591 while (**arg && strchr(" \t\n\r\f", **arg))
597 else if ((*arg)[0] == '<')
602 const char *arg_start = ++(*arg);
604 while (**arg != '\0' && **arg != ' ')
607 fname = odr_strdupn(out, arg_start, *arg - arg_start);
609 inf = fopen(fname, "rb");
612 printf("Couldn't open %s\n", fname);
615 if (fseek(inf, 0L, SEEK_END) == -1)
617 printf("Couldn't seek in %s\n", fname);
622 if (fseek(inf, 0L, SEEK_SET) == -1)
624 printf("Couldn't seek in %s\n", fname);
629 *buf = (char *) odr_malloc(out, fsize+1);
630 (*buf)[fsize] = '\0';
631 if (fread(*buf, 1, fsize, inf) != fsize)
633 printf("Unable to read %s\n", fname);
639 else if ((*arg)[0] == '\"' && (sep=strchr(*arg+1, '"')))
643 *buf = odr_strdupn(out, *arg, *len);
648 const char *arg_start = *arg;
650 while (**arg != '\0' && **arg != ' ')
653 *len = *arg - arg_start;
654 *buf = odr_strdupn(out, arg_start, *len);
659 static int cmd_base(const char *arg)
663 printf("Usage: base <database> <database> ...\n");
666 return set_base(arg);
669 static int session_connect_base(const char *arg, const char **basep)
672 char type_and_host[101];
680 nmem_destroy(session_mem);
682 session_initResponse = 0;
684 cs_get_host_args(arg, basep);
686 strncpy(type_and_host, arg, sizeof(type_and_host)-1);
687 type_and_host[sizeof(type_and_host)-1] = '\0';
690 conn = cs_create_host(yazProxy, 1, &add);
692 conn = cs_create_host(arg, 1, &add);
695 printf("Could not resolve address %s\n", arg);
700 if (conn->protocol == PROTO_HTTP)
702 printf("SRW/HTTP not enabled in this YAZ\n");
708 protocol = conn->protocol;
709 printf("Connecting...");
711 if (cs_connect(conn, add) < 0)
713 printf("error = %s\n", cs_strerror(conn));
719 cs_print_session_info(conn);
720 if (protocol == PROTO_Z3950)
722 send_initRequest(type_and_host);
728 static int session_connect(const char *arg)
731 const char *basep = 0;
733 r = session_connect_base(arg, &basep);
736 else if (protocol == PROTO_Z3950)
741 int cmd_open(const char *arg)
746 strncpy(cur_host, arg, sizeof(cur_host)-1);
747 cur_host[sizeof(cur_host)-1] = 0;
751 r = session_connect(cur_host);
752 if (conn && conn->protocol == PROTO_HTTP)
753 queryType = QueryType_CQL;
759 int cmd_authentication(const char *arg)
764 nmem_reset(nmem_auth);
765 nmem_strsplit_blank(nmem_auth, arg, &args, &r);
769 printf("Authentication set to null\n");
774 auth = (Z_IdAuthentication *) nmem_malloc(nmem_auth, sizeof(*auth));
775 if (!strcmp(args[0], "-"))
777 auth->which = Z_IdAuthentication_anonymous;
778 auth->u.anonymous = odr_nullval();
779 printf("Authentication set to Anonymous\n");
783 auth->which = Z_IdAuthentication_open;
784 auth->u.open = args[0];
785 printf("Authentication set to Open (%s)\n", args[0]);
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",
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]);
814 printf("Bad number of args to auth\n");
821 /* SEARCH SERVICE ------------------------------ */
822 static void display_record(Z_External *r);
824 static void print_record(const char *buf, size_t len)
827 print_stringn(buf, len);
828 /* add newline if not already added ... */
829 if (i <= 0 || buf[i-1] != '\n')
833 static void display_record(Z_External *r)
835 const Odr_oid *oid = r->direct_reference;
839 * Tell the user what we got.
844 char oid_name_buf[OID_STR_MAX];
846 = yaz_oid_to_string_buf(oid, &oclass, oid_name_buf);
847 printf("Record type: ");
849 printf("%s\n", oid_name);
851 /* Check if this is a known, ASN.1 type tucked away in an octet string */
852 if (r->which == Z_External_octet)
854 Z_ext_typeent *type = z_ext_getentbyref(r->direct_reference);
860 * Call the given decoder to process the record.
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))
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");
873 /* note just ignores the error ant print the bytes form the octet_aligned later */
876 * Note: we throw away the original, BER-encoded record here.
877 * Do something else with it if you want to keep it.
879 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
880 r->which = type->what;
884 if (oid && r->which == Z_External_octet)
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))
892 fwrite(octet_buf, 1, octet_len, stdout);
894 else if (yaz_oid_is_iso2709(oid))
899 yaz_marc_t mt = yaz_marc_create();
900 const char *from = 0;
902 if (marcCharset && !strcmp(marcCharset, "auto"))
904 if (!oid_oidcmp(oid, yaz_oid_recsyn_usmarc))
906 if (octet_buf[9] == 'a')
914 else if (marcCharset)
916 if (outputCharset && from)
918 cd = yaz_iconv_open(outputCharset, from);
919 printf("convert from %s to %s", from,
922 printf(" unsupported\n");
925 yaz_marc_iconv(mt, cd);
930 if (yaz_marc_decode_buf(mt, octet_buf, octet_len,
933 if (fwrite(result, rlen, 1, stdout) != 1)
935 printf("write to stdout failed\n");
940 printf("bad MARC. Dumping as it is:\n");
941 print_record(octet_buf, octet_len);
943 yaz_marc_destroy(mt);
949 print_record(octet_buf, octet_len);
951 marc_file_write(octet_buf, r->u.octet_aligned->len);
953 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_sutrs))
955 if (r->which != Z_External_sutrs)
957 printf("Expecting single SUTRS type for SUTRS.\n");
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);
963 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_grs_1))
966 if (r->which != Z_External_grs1)
968 printf("Expecting single GRS type for GRS.\n");
972 yaz_display_grs1(w, r->u.grs1, 0);
976 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_opac))
979 if (r->u.opac->bibliographicRecord)
980 display_record(r->u.opac->bibliographicRecord);
981 for (i = 0; i<r->u.opac->num_holdingsData; i++)
983 Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
984 if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
986 printf("MARC holdings %d\n", i);
987 display_record(h->u.marcHoldingsRecord);
989 else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
993 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
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);
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++)
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);
1041 for (j = 0; j<data->num_circulationData; j++)
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);
1080 printf("Unknown record representation.\n");
1081 if (!z_External(print, &r, 0, 0))
1083 odr_perror(print, "Printing external");
1089 static void display_diagrecs(Z_DiagRec **pp, int num)
1092 Z_DefaultDiagFormat *r;
1094 printf("Diagnostic message(s) from database:\n");
1095 for (i = 0; i<num; i++)
1097 Z_DiagRec *p = pp[i];
1098 if (p->which != Z_DiagRec_defaultFormat)
1100 printf("Diagnostic record not in default format.\n");
1104 r = p->u.defaultFormat;
1106 if (!r->diagnosticSetId)
1107 printf("Missing diagset\n");
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);
1118 printf(" [" ODR_INT_PRINTF "] %s",
1119 *r->condition, diagbib1_str(*r->condition));
1122 case Z_DefaultDiagFormat_v2Addinfo:
1123 printf(" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1125 case Z_DefaultDiagFormat_v3Addinfo:
1126 printf(" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1133 static void display_nameplusrecord(Z_NamePlusRecord *p)
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);
1143 static void display_records(Z_Records *p)
1147 if (p->which == Z_Records_NSD)
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);
1154 else if (p->which == Z_Records_multipleNSD)
1155 display_diagrecs(p->u.multipleNonSurDiagnostics->diagRecs,
1156 p->u.multipleNonSurDiagnostics->num_diagRecs);
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]);
1165 static int send_deleteResultSetRequest(const char *arg)
1170 Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1171 Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1173 req->referenceId = set_refid(out);
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]);
1180 req->deleteFunction = odr_intdup(out, 0);
1181 if (req->num_resultSetList > 0)
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];
1192 *req->deleteFunction = Z_DeleteResultSetRequest_all;
1193 req->resultSetList = 0;
1197 printf("Sent deleteResultSetRequest.\n");
1202 static int send_gdu(Z_GDU *gdu)
1204 if (z_GDU(out, &gdu, 0, 0))
1212 if (!z_GDU(print, &gdu, 0, 0))
1213 printf("Failed to print outgoing SRU package\n");
1216 buf_out = odr_getbuf(out, &len_out, 0);
1218 /* we don't odr_reset(out), since we may need the buffer again */
1220 do_hex_dump(buf_out, len_out);
1222 r = cs_put(conn, buf_out, len_out);
1230 static int send_srw_host_path(Z_SRW_PDU *sr, const char *host_port,
1233 const char *charset = negotiationCharset;
1236 gdu = z_get_HTTP_Request_host_path(out, host_port, path);
1240 if (auth->which == Z_IdAuthentication_open)
1244 nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1246 sr->username = darray[0];
1248 sr->password = darray[1];
1250 else if (auth->which == Z_IdAuthentication_idPass)
1252 sr->username = auth->u.idPass->userId;
1253 sr->password = auth->u.idPass->password;
1257 if (!yaz_matchstr(sru_method, "get"))
1259 yaz_sru_get_encode(gdu->u.HTTP_Request, sr, out, charset);
1261 else if (!yaz_matchstr(sru_method, "post"))
1263 yaz_sru_post_encode(gdu->u.HTTP_Request, sr, out, charset);
1265 else if (!yaz_matchstr(sru_method, "soap"))
1267 yaz_sru_soap_encode(gdu->u.HTTP_Request, sr, out, charset);
1269 return send_gdu(gdu);
1272 static int send_srw(Z_SRW_PDU *sr)
1274 char *path = yaz_encode_sru_dbpath_odr(out, databaseNames[0]);
1275 return send_srw_host_path(sr, cur_host, path);
1278 static int send_SRW_redirect(const char *uri, Z_HTTP_Response *cookie_hres)
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);
1287 gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
1288 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
1291 for (h = cookie_hres->headers; h; h = h->next)
1293 if (!strcmp(h->name, "Set-Cookie")) {
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);
1307 if (combined_cookies_len)
1309 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Cookie", combined_cookies);
1310 xfree(combined_cookies);
1315 if (auth->which == Z_IdAuthentication_open)
1319 nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1321 username = darray[0];
1323 password = darray[1];
1325 else if (auth->which == Z_IdAuthentication_idPass)
1327 username = auth->u.idPass->userId;
1328 password = auth->u.idPass->password;
1332 if (username && password)
1334 z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
1335 username, password);
1338 return send_gdu(gdu);
1343 static char *encode_SRW_term(ODR o, const char *q)
1345 const char *in_charset = "ISO-8859-1";
1346 WRBUF w = wrbuf_alloc();
1350 in_charset = outputCharset;
1351 cd = yaz_iconv_open("UTF-8", in_charset);
1355 return odr_strdup(o, q);
1357 wrbuf_iconv_write(w, cd, q, strlen(q));
1359 res = odr_strdup(o, wrbuf_cstr(w));
1361 res = odr_strdup(o, q);
1362 yaz_iconv_close(cd);
1368 static int send_SRW_scanRequest(const char *arg, int pos, int num)
1372 /* regular requestse .. */
1373 sr = yaz_srw_get_pdu(out, Z_SRW_scan_request, sru_version);
1378 sr->u.scan_request->query_type = Z_SRW_query_type_cql;
1379 sr->u.scan_request->scanClause.cql = encode_SRW_term(out, arg);
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);
1386 printf("Only CQL and PQF supported in SRW\n");
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);
1394 static int send_SRW_searchRequest(const char *arg)
1400 assert(srw_sr_odr_out == 0);
1401 srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1403 odr_reset(srw_sr_odr_out);
1407 /* save this for later .. when fetching individual records */
1408 srw_sr = yaz_srw_get_pdu(srw_sr_odr_out, Z_SRW_searchRetrieve_request,
1411 /* regular request .. */
1412 sr = yaz_srw_get_pdu(out, Z_SRW_searchRetrieve_request, sru_version);
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);
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);
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);
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);
1431 printf("Only CQL and PQF supported in SRW\n");
1434 sr->u.request->maximumRecords = odr_intdup(out, 0);
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);
1444 static void query_charset_convert(Z_RPNQuery *q)
1446 if (queryCharset && outputCharset)
1448 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
1451 printf("Conversion from %s to %s unsupported\n",
1452 outputCharset, queryCharset);
1455 yaz_query_charset_convert_rpnquery(q, out, cd);
1456 yaz_iconv_close(cd);
1460 static int send_searchRequest(const char *arg)
1462 Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1463 Z_SearchRequest *req = apdu->u.searchRequest;
1465 struct ccl_rpn_node *rpn = NULL;
1467 char setstring[100];
1468 Z_RPNQuery *RPNquery;
1470 YAZ_PQF_Parser pqf_parser;
1472 QueryType myQueryType = queryType;
1475 if (myQueryType == QueryType_CCL2RPN)
1477 rpn = ccl_find_str(bibset, arg, &error, &pos);
1480 printf("CCL ERROR: %s\n", ccl_err_msg(error));
1483 } else if (myQueryType == QueryType_CQL2RPN) {
1484 /* ### All this code should be wrapped in a utility function */
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");
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");
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);
1506 myQueryType = QueryType_Prefix;
1509 req->referenceId = set_refid(out);
1510 if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1512 static unsigned char big[2100];
1513 static Odr_oct bigo;
1515 /* send a very big referenceid to test transport stack etc. */
1516 memset(big, 'A', 2100);
1517 bigo.len = bigo.size = 2100;
1519 req->referenceId = &bigo;
1524 sprintf(setstring, "%d", ++setnumber);
1525 req->resultSetName = setstring;
1527 *req->smallSetUpperBound = smallSetUpperBound;
1528 *req->largeSetLowerBound = largeSetLowerBound;
1529 *req->mediumSetPresentNumber = mediumSetPresentNumber;
1530 if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1531 mediumSetPresentNumber > 0))
1533 if (recordsyntax_size)
1534 req->preferredRecordSyntax =
1535 yaz_string_to_oid_odr(yaz_oid_std(),
1536 CLASS_RECSYN, recordsyntax_list[0], out);
1538 req->smallSetElementSetNames =
1539 req->mediumSetElementSetNames = elementSetNames;
1541 req->num_databaseNames = num_databaseNames;
1542 req->databaseNames = databaseNames;
1544 req->query = &query;
1546 switch (myQueryType)
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);
1554 const char *pqf_msg;
1556 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
1558 printf("%*s^\n", ioff+4, "");
1559 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1561 yaz_pqf_destroy(pqf_parser);
1564 yaz_pqf_destroy(pqf_parser);
1565 query_charset_convert(RPNquery);
1566 query.u.type_1 = RPNquery;
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);
1574 case QueryType_CCL2RPN:
1575 query.which = Z_Query_type_1;
1576 RPNquery = ccl_rpn_query(out, rpn);
1579 printf("Couldn't convert from CCL to RPN\n");
1582 query_charset_convert(RPNquery);
1583 query.u.type_1 = RPNquery;
1584 ccl_rpn_delete(rpn);
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;
1597 printf("Unsupported query type\n");
1600 if (send_apdu(apdu))
1601 printf("Sent searchRequest.\n");
1606 /* display Query Expression as part of searchResult-1 */
1607 static void display_queryExpression(const char *lead, Z_QueryExpression *qe)
1611 printf(" %s=", lead);
1612 if (qe->which == Z_QueryExpression_term)
1614 if (qe->u.term->queryTerm)
1616 Z_Term *term = qe->u.term->queryTerm;
1617 switch (term->which)
1619 case Z_Term_general:
1620 printf("%.*s", term->u.general->len, term->u.general->buf);
1622 case Z_Term_characterString:
1623 printf("%s", term->u.characterString);
1625 case Z_Term_numeric:
1626 printf(ODR_INT_PRINTF, *term->u.numeric);
1636 /* see if we can find USR:SearchResult-1 */
1637 static void display_searchResult(Z_OtherInformation *o)
1642 for (i = 0; i < o->num_elements; i++)
1644 if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1646 Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1648 if (ext->which == Z_External_searchResult1)
1651 Z_SearchInfoReport *sr = ext->u.searchResult1;
1652 printf("SearchResult-1:");
1653 for (j = 0; j < sr->num; j++)
1657 if (!sr->elements[j]->subqueryExpression)
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);
1677 static int process_searchResponse(Z_SearchResponse *res)
1679 printf("Received SearchResponse.\n");
1680 print_refid(res->referenceId);
1681 if (*res->searchStatus)
1682 printf("Search was a success.\n");
1684 printf("Search was a bloomin' failure.\n");
1685 printf("Number of hits: " ODR_INT_PRINTF, *res->resultCount);
1686 last_hit_count = *res->resultCount;
1688 printf(", setno %d", setnumber);
1690 if (res->resultSetStatus)
1692 printf("Result Set Status: ");
1693 switch(*res->resultSetStatus)
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;
1704 printf(ODR_INT_PRINTF, *res->resultSetStatus);
1708 display_searchResult(res->additionalSearchInfo);
1709 printf("records returned: " ODR_INT_PRINTF "\n",
1710 *res->numberOfRecordsReturned);
1711 setno += *res->numberOfRecordsReturned;
1713 display_records(res->records);
1717 static void print_level(int iLevel)
1720 for (i = 0; i < iLevel * 4; i++)
1724 static void print_int(int iLevel, const char *pTag, Odr_int *pInt)
1728 print_level(iLevel);
1729 printf("%s: " ODR_INT_PRINTF "\n", pTag, *pInt);
1733 static void print_bool(int iLevel, const char *pTag, Odr_bool *pInt)
1737 print_level(iLevel);
1738 printf("%s: %d\n", pTag, *pInt);
1742 static void print_string(int iLevel, const char *pTag, const char *pString)
1744 if (pString != NULL)
1746 print_level(iLevel);
1747 printf("%s: %s\n", pTag, pString);
1751 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1755 Odr_oid *pInt = pOid;
1757 print_level(iLevel);
1758 printf("%s:", pTag);
1759 for (; *pInt != -1; pInt++)
1760 printf(" %d", *pInt);
1765 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1767 if (referenceId != NULL)
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]);
1779 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1781 if (pStringNumeric != NULL)
1783 switch (pStringNumeric->which)
1785 case Z_StringOrNumeric_string:
1786 print_string(iLevel, pTag, pStringNumeric->u.string);
1789 case Z_StringOrNumeric_numeric:
1790 print_int(iLevel, pTag, pStringNumeric->u.numeric);
1794 print_level(iLevel);
1795 printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1801 static void print_universe_report_duplicate(
1803 Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1805 if (pUniverseReportDuplicate != NULL)
1807 print_level(iLevel);
1808 printf("Universe Report Duplicate: \n");
1810 print_string_or_numeric(iLevel, "Hit No",
1811 pUniverseReportDuplicate->hitno);
1815 static void print_universe_report_hits(
1817 Z_UniverseReportHits *pUniverseReportHits)
1819 if (pUniverseReportHits != NULL)
1821 print_level(iLevel);
1822 printf("Universe Report Hits: \n");
1824 print_string_or_numeric(iLevel, "Database",
1825 pUniverseReportHits->database);
1826 print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1830 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1832 if (pUniverseReport != NULL)
1834 print_level(iLevel);
1835 printf("Universe Report: \n");
1837 print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1838 switch (pUniverseReport->which)
1840 case Z_UniverseReport_databaseHits:
1841 print_universe_report_hits(iLevel,
1842 pUniverseReport->u.databaseHits);
1845 case Z_UniverseReport_duplicate:
1846 print_universe_report_duplicate(iLevel,
1847 pUniverseReport->u.duplicate);
1851 print_level(iLevel);
1852 printf("Type: %d\n", pUniverseReport->which);
1858 static void print_external(int iLevel, Z_External *pExternal)
1860 if (pExternal != NULL)
1862 print_level(iLevel);
1863 printf("External: \n");
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)
1870 case Z_External_universeReport:
1871 print_universe_report(iLevel, pExternal->u.universeReport);
1875 print_level(iLevel);
1876 printf("Type: %d\n", pExternal->which);
1882 static int process_resourceControlRequest(Z_ResourceControlRequest *req)
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);
1894 void process_ESResponse(Z_ExtendedServicesResponse *res)
1897 switch (*res->operationStatus)
1899 case Z_ExtendedServicesResponse_done:
1902 case Z_ExtendedServicesResponse_accepted:
1903 printf("accepted\n");
1905 case Z_ExtendedServicesResponse_failure:
1906 printf("failure\n");
1907 display_diagrecs(res->diagnostics, res->num_diagnostics);
1910 printf("unknown\n");
1912 if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
1913 (res->num_diagnostics != 0) ) {
1914 display_diagrecs(res->diagnostics, res->num_diagnostics);
1916 print_refid (res->referenceId);
1917 if (res->taskPackage &&
1918 res->taskPackage->which == Z_External_extendedService)
1920 Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
1921 Odr_oct *id = taskPackage->targetReference;
1922 Z_External *ext = taskPackage->taskSpecificParameters;
1926 printf("Target Reference: ");
1927 print_stringn((const char *) id->buf, id->len);
1930 if (ext->which == Z_External_update)
1932 Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
1933 if (utp && utp->targetPart)
1935 Z_IUTargetPart *targetPart = utp->targetPart;
1938 for (i = 0; i<targetPart->num_taskPackageRecords; i++)
1941 Z_IUTaskPackageRecordStructure *tpr =
1942 targetPart->taskPackageRecords[i];
1943 printf("task package record %d\n", i+1);
1944 if (tpr->which == Z_IUTaskPackageRecordStructure_record)
1946 display_record (tpr->u.record);
1950 printf("other type\n");
1955 if (ext->which == Z_External_itemOrder)
1957 Z_IOTaskPackage *otp = ext->u.itemOrder->u.taskPackage;
1959 if (otp && otp->targetPart)
1961 if (otp->targetPart->itemRequest)
1963 Z_External *ext = otp->targetPart->itemRequest;
1964 if (ext->which == Z_External_octet)
1966 Odr_oct *doc = ext->u.octet_aligned;
1967 printf("Got itemRequest doc %.*s\n",
1968 doc->len, doc->buf);
1971 else if (otp->targetPart->statusOrErrorReport)
1973 Z_External *ext = otp->targetPart->statusOrErrorReport;
1974 if (ext->which == Z_External_octet)
1976 Odr_oct *doc = ext->u.octet_aligned;
1977 printf("Got Status or Error Report doc %.*s\n",
1978 doc->len, doc->buf);
1984 if (res->taskPackage && res->taskPackage->which == Z_External_octet)
1986 Odr_oct *doc = res->taskPackage->u.octet_aligned;
1987 printf("%.*s\n", doc->len, doc->buf);
1991 const char *get_ill_element(void *clientData, const char *element)
1996 static Z_External *create_external_itemRequest(void)
1998 struct ill_get_ctl ctl;
1999 ILL_ItemRequest *req;
2001 int item_request_size = 0;
2002 char *item_request_buf = 0;
2006 ctl.f = get_ill_element;
2008 req = ill_get_ItemRequest(&ctl, "ill", 0);
2010 printf("ill_get_ItemRequest failed\n");
2012 if (!ill_ItemRequest(out, &req, 0, 0))
2016 ill_ItemRequest(print, &req, 0, 0);
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);
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;
2031 r->which = Z_External_single;
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,
2042 do_hex_dump(item_request_buf,item_request_size);
2047 static Z_External *create_external_ILL_APDU(void)
2049 struct ill_get_ctl ctl;
2052 int ill_request_size = 0;
2053 char *ill_request_buf = 0;
2057 ctl.f = get_ill_element;
2059 ill_apdu = ill_get_APDU(&ctl, "ill", 0);
2061 if (!ill_APDU (out, &ill_apdu, 0, 0))
2065 printf("-------------------\n");
2066 ill_APDU(print, &ill_apdu, 0, 0);
2068 printf("-------------------\n");
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);
2078 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
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;
2084 r->which = Z_External_single;
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"); */
2102 static Z_External *create_ItemOrderExternal(const char *type, int itemno,
2103 const char *xml_buf,
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;
2111 r->which = Z_External_itemOrder;
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;
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));
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));
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;
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";
2137 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
2138 odr_intdup(out, itemno);
2139 if (!strcmp (type, "item") || !strcmp(type, "2"))
2141 printf("using item-request\n");
2142 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2143 create_external_itemRequest();
2145 else if (!strcmp(type, "ill") || !strcmp(type, "1"))
2147 printf("using ILL-request\n");
2148 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2149 create_external_ILL_APDU();
2151 else if (!strcmp(type, "xml") || !strcmp(type, "3"))
2153 printf("using XML ILL-request\n");
2157 printf("no docoument added\n");
2158 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2162 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2163 z_ext_record_oid(out, yaz_oid_recsyn_xml, xml_buf, xml_len);
2167 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2172 static int send_itemorder(const char *type, int itemno,
2173 const char *xml_buf, int xml_len)
2175 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2176 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2178 req->referenceId = set_refid (out);
2180 req->packageType = odr_oiddup(out, yaz_oid_extserv_item_order);
2181 req->packageName = esPackageName;
2183 req->taskSpecificParameters = create_ItemOrderExternal(type, itemno,
2189 static int only_z3950(void)
2193 printf("Not connected yet\n");
2196 if (protocol == PROTO_HTTP)
2198 printf("Not supported by SRW\n");
2204 static int cmd_update_common(const char *arg, int version);
2206 static int cmd_update(const char *arg)
2208 return cmd_update_common(arg, 1);
2211 static int cmd_update0(const char *arg)
2213 return cmd_update_common(arg, 0);
2216 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2217 char *rec_buf, int rec_len);
2220 static int cmd_update_SRW(int action_no, const char *recid,
2221 char *rec_buf, int rec_len);
2224 static int cmd_update_common(const char *arg, int version)
2230 const char *recid = 0;
2236 if (parse_cmd_doc(&arg, out, &action_buf, &action_len) == 0)
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");
2245 if (parse_cmd_doc(&arg, out, &recid_buf, &recid_len) == 0)
2247 printf("Missing recid\n");
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;
2261 printf("Bad action: %s\n", action_buf);
2262 printf("Possible values: insert, replace, delete, update\n");
2266 if (strcmp(recid_buf, "none")) /* none means no record ID */
2270 if (parse_cmd_doc(&arg, out, &rec_buf, &rec_len) == 0)
2274 if (protocol == PROTO_HTTP)
2275 return cmd_update_SRW(action_no, recid_buf, rec_buf, rec_len);
2277 return cmd_update_Z3950(version, action_no, recid_buf, rec_buf, rec_len);
2281 static int cmd_update_SRW(int action_no, const char *recid,
2282 char *rec_buf, int rec_len)
2285 session_connect(cur_host);
2290 Z_SRW_PDU *srw = yaz_srw_get(out, Z_SRW_update_request);
2291 Z_SRW_updateRequest *sr = srw->u.update_request;
2295 case Z_IUOriginPartToKeep_recordInsert:
2296 sr->operation = "info:srw/action/1/create";
2298 case Z_IUOriginPartToKeep_recordReplace:
2299 sr->operation = "info:srw/action/1/replace";
2301 case Z_IUOriginPartToKeep_recordDelete:
2302 sr->operation = "info:srw/action/1/delete";
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;
2313 sr->recordId = odr_strdup(out, recid);
2314 return send_srw(srw);
2319 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2320 char *rec_buf, int rec_len)
2322 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
2323 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2325 Z_External *record_this = 0;
2327 record_this = z_ext_record_oid(out, yaz_oid_recsyn_xml,
2333 printf("No last record (update ignored)\n");
2336 record_this = record_last;
2339 req->packageType = odr_oiddup(out, (version == 0 ?
2340 yaz_oid_extserv_database_update_first_version :
2341 yaz_oid_extserv_database_update));
2343 req->packageName = esPackageName;
2345 req->referenceId = set_refid (out);
2347 r = req->taskSpecificParameters = (Z_External *)
2348 odr_malloc(out, sizeof(*r));
2349 r->direct_reference = req->packageType;
2350 r->indirect_reference = 0;
2354 Z_IU0OriginPartToKeep *toKeep;
2355 Z_IU0SuppliedRecords *notToKeep;
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));
2365 toKeep->databaseName = databaseNames[0];
2369 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2371 record_schema, out);
2373 toKeep->elementSetName = 0;
2375 toKeep->action = odr_intdup(out, action_no);
2377 notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2378 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
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;
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);
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;
2401 Z_IUOriginPartToKeep *toKeep;
2402 Z_IUSuppliedRecords *notToKeep;
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));
2412 toKeep->databaseName = databaseNames[0];
2416 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2418 record_schema, out);
2420 toKeep->elementSetName = 0;
2421 toKeep->actionQualifier = 0;
2422 toKeep->action = odr_intdup(out, action_no);
2424 notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2425 odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
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;
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);
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;
2452 static int cmd_xmles(const char *arg)
2462 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2463 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2466 Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
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);
2477 printf("Missing OID for xmles\n");
2481 if (parse_cmd_doc(&arg, out, &asn_buf,
2482 &ext->u.single_ASN1_type->len) == 0)
2485 ext->u.single_ASN1_type->buf = (unsigned char *) asn_buf;
2487 oid = yaz_string_to_oid_odr(yaz_oid_std(),
2488 CLASS_EXTSERV, oid_str, out);
2491 printf("Bad OID: %s\n", oid_str);
2495 req->packageType = oid;
2497 ext->direct_reference = oid;
2505 static int cmd_itemorder(const char *arg)
2515 if (sscanf(arg, "%10s %d%n", type, &itemno, &no_read) < 2)
2518 parse_cmd_doc(&arg, out, &xml_buf, &xml_len);
2521 send_itemorder(type, itemno, xml_buf, xml_len);
2525 static void show_opt(const char *arg, void *clientData)
2530 static int cmd_zversion(const char *arg)
2533 z3950_version = atoi(arg);
2535 printf("version is %d\n", z3950_version);
2539 static int cmd_options(const char *arg)
2545 r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2547 printf("Unknown option(s) near %s\n", arg+pos);
2551 yaz_init_opt_decode(&z3950_options, show_opt, 0);
2557 static int cmd_explain(const char *arg)
2559 if (protocol != PROTO_HTTP)
2563 session_connect(cur_host);
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";
2582 static int cmd_init(const char *arg)
2586 strncpy(cur_host, arg, sizeof(cur_host)-1);
2587 cur_host[sizeof(cur_host)-1] = 0;
2591 send_initRequest(cur_host);
2595 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url)
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;
2606 cp1 = strchr(cp0, '/');
2608 cp1 = cp0 + strlen(cp0);
2612 char *h = (char*) odr_malloc(odr, cp1 - cp0 + 1);
2613 memcpy (h, cp0, cp1 - cp0);
2615 z_HTTP_header_add(odr, &p->u.HTTP_Request->headers, "Host", h);
2617 p->u.HTTP_Request->path = odr_strdup(odr, *cp1 ? cp1 : "/");
2621 static WRBUF get_url(const char *uri, WRBUF username, WRBUF password,
2622 int *code, int show_headers)
2625 ODR out = odr_createmem(ODR_ENCODE);
2626 ODR in = odr_createmem(ODR_DECODE);
2627 Z_GDU *gdu = get_HTTP_Request_url(out, uri);
2629 gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
2630 if (username && password)
2632 z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
2633 wrbuf_cstr(username),
2634 wrbuf_cstr(password));
2636 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
2638 if (!z_GDU(out, &gdu, 0, 0))
2640 yaz_log(YLOG_WARN, "Can not encode HTTP request URL:%s", uri);
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);
2651 char *buf = odr_getbuf(out, &len, 0);
2653 if (cs_put(conn, buf, len) < 0)
2654 yaz_log(YLOG_WARN, "cs_put failed URL:%s", uri);
2657 char *netbuffer = 0;
2659 int res = cs_get(conn, &netbuffer, &netlen);
2662 yaz_log(YLOG_WARN, "cs_get failed URL:%s", uri);
2667 odr_setbuf(in, netbuffer, res, 0);
2668 if (!z_GDU(in, &gdu, 0, 0)
2669 || gdu->which != Z_GDU_HTTP_Response)
2671 yaz_log(YLOG_WARN, "decode failed URL: %s", uri);
2675 Z_HTTP_Response *res = gdu->u.HTTP_Response;
2676 struct Z_HTTP_Header *h;
2677 result = wrbuf_alloc();
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",
2687 wrbuf_write(result, res->content_buf, res->content_len);
2701 static int cmd_url(const char *arg)
2704 WRBUF res = get_url(arg, 0, 0, &code, 1);
2707 if (wrbuf_len(res) > 1200)
2709 fwrite(wrbuf_buf(res), 1, 1200, stdout);
2710 printf(".. out of %lld\n", (long long) wrbuf_len(res));
2713 puts(wrbuf_cstr(res));
2719 static int cmd_sru(const char *arg)
2723 printf("SRU method is: %s\n", sru_method);
2724 printf("SRU version is: %s\n", sru_version);
2729 r = sscanf(arg, "%9s %9s", sru_method, sru_version);
2732 if (!yaz_matchstr(sru_method, "post"))
2734 else if (!yaz_matchstr(sru_method, "get"))
2736 else if (!yaz_matchstr(sru_method, "soap"))
2740 strcpy(sru_method, "soap");
2741 printf("Unknown SRU method: %s\n", arg);
2742 printf("Specify one of POST, GET, SOAP\n");
2749 static int cmd_find(const char *arg)
2753 printf("Find what?\n");
2756 if (protocol == PROTO_HTTP)
2760 session_connect(cur_host);
2763 if (!send_SRW_searchRequest(arg))
2771 if (*cur_host && auto_reconnect)
2778 if (!send_searchRequest(arg))
2780 wait_and_handle_response(0);
2786 printf("Unable to reconnect\n");
2789 session_connect(cur_host);
2790 wait_and_handle_response(0);
2796 if (!send_searchRequest(arg))
2801 printf("Not connected yet\n");
2808 static int cmd_delete(const char *arg)
2812 if (!send_deleteResultSetRequest(arg))
2817 static int cmd_ssub(const char *arg)
2819 if (!(smallSetUpperBound = atoi(arg)))
2824 static int cmd_lslb(const char *arg)
2826 if (!(largeSetLowerBound = atoi(arg)))
2831 static int cmd_mspn(const char *arg)
2833 if (!(mediumSetPresentNumber = atoi(arg)))
2838 static int cmd_status(const char *arg)
2840 printf("smallSetUpperBound: %d\n", smallSetUpperBound);
2841 printf("largeSetLowerBound: %d\n", largeSetLowerBound);
2842 printf("mediumSetPresentNumber: %d\n", mediumSetPresentNumber);
2846 static int cmd_setnames(const char *arg)
2848 if (*arg == '1') /* enable ? */
2850 else if (*arg == '0') /* disable ? */
2852 else if (setnumber < 0) /* no args, toggle .. */
2858 printf("Set numbering enabled.\n");
2860 printf("Set numbering disabled.\n");
2864 /* PRESENT SERVICE ----------------------------- */
2866 static int parse_show_args(const char *arg_c, char *setstring,
2867 Odr_int *start, Odr_int *number)
2870 Odr_int start_position;
2873 sprintf(setstring, "%d", setnumber);
2877 if (!strcmp(arg_c, "all"))
2879 *number = last_hit_count;
2882 start_position = odr_strtol(arg_c, &end_ptr, 10);
2883 if (end_ptr == arg_c)
2885 *start = start_position;
2886 if (*end_ptr == '\0')
2888 while (isspace(*(unsigned char *)end_ptr))
2890 if (*end_ptr != '+')
2892 printf("Bad show arg: expected +. Got %s\n", end_ptr);
2897 *number = odr_strtol(arg_c, &end_ptr, 10);
2898 if (end_ptr == arg_c)
2900 printf("Bad show arg: expected number after +\n");
2903 if (*end_ptr == '\0')
2905 while (isspace(*(unsigned char *)end_ptr))
2907 if (*end_ptr != '+')
2909 printf("Bad show arg: + expected. Got %s\n", end_ptr);
2912 strcpy(setstring, end_ptr+1);
2916 static int send_presentRequest(const char *arg)
2918 Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
2919 Z_PresentRequest *req = apdu->u.presentRequest;
2920 Z_RecordComposition compo;
2922 char setstring[100];
2924 req->referenceId = set_refid(out);
2926 if (!parse_show_args(arg, setstring, &setno, &nos))
2929 req->resultSetId = setstring;
2931 req->resultSetStartPoint = &setno;
2932 req->numberOfRecordsRequested = &nos;
2934 if (recordsyntax_size)
2935 req->preferredRecordSyntax =
2936 yaz_string_to_oid_odr(yaz_oid_std(),
2937 CLASS_RECSYN, recordsyntax_list[0], out);
2939 if (record_schema || recordsyntax_size >= 2)
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;
2949 compo.u.complex->generic = (Z_Specification *)
2950 odr_malloc(out, sizeof(*compo.u.complex->generic));
2952 compo.u.complex->generic->which = Z_Schema_oid;
2954 compo.u.complex->generic->schema.oid = 0;
2957 compo.u.complex->generic->schema.oid =
2958 yaz_string_to_oid_odr(yaz_oid_std(),
2959 CLASS_SCHEMA, record_schema, out);
2961 if (!compo.u.complex->generic->schema.oid)
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);
2969 if (!elementSetNames)
2970 compo.u.complex->generic->elementSpec = 0;
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;
2980 compo.u.complex->num_dbSpecific = 0;
2981 compo.u.complex->dbSpecific = 0;
2983 compo.u.complex->num_recordSyntax = 0;
2984 compo.u.complex->recordSyntax = 0;
2985 if (recordsyntax_size >= 2)
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);
2997 else if (elementSetNames)
2999 req->recordComposition = &compo;
3000 compo.which = Z_RecordComp_simple;
3001 compo.u.simple = elementSetNames;
3004 printf("Sent presentRequest (" ODR_INT_PRINTF "+" ODR_INT_PRINTF ").\n",
3010 static int send_SRW_presentRequest(const char *arg)
3012 char setstring[100];
3014 Z_SRW_PDU *sr = srw_sr;
3018 if (!parse_show_args(arg, setstring, &setno, &nos))
3020 sr->u.request->startRecord = odr_intdup(out, setno);
3021 sr->u.request->maximumRecords = odr_intdup(out, nos);
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);
3030 static void close_session(void)
3042 void process_close(Z_Close *req)
3044 Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
3045 Z_Close *res = apdu->u.close;
3047 static char *reasons[] =
3052 "cost limit reached",
3054 "security violation",
3061 printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
3062 req->diagnosticInformation ? req->diagnosticInformation : "NULL");
3067 *res->closeReason = Z_Close_finished;
3069 printf("Sent response.\n");
3074 static int cmd_show(const char *arg)
3076 if (protocol == PROTO_HTTP)
3080 session_connect(cur_host);
3083 if (!send_SRW_presentRequest(arg))
3093 printf("Not connected yet\n");
3096 if (!send_presentRequest(arg))
3102 void exit_client(int code)
3104 file_history_save(file_history);
3105 file_history_destroy(&file_history);
3106 nmem_destroy(nmem_auth);
3110 int cmd_quit(const char *arg)
3112 printf("See you later, alligator.\n");
3118 int cmd_cancel(const char *arg)
3120 Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
3121 Z_TriggerResourceControlRequest *req =
3122 apdu->u.triggerResourceControlRequest;
3127 sscanf(arg, "%15s", command);
3131 if (session_initResponse &&
3132 !ODR_MASK_GET(session_initResponse->options,
3133 Z_Options_triggerResourceCtrl))
3135 printf("Target doesn't support cancel (trigger resource ctrl)\n");
3138 *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
3139 req->resultSetWanted = &rfalse;
3140 req->referenceId = set_refid(out);
3143 printf("Sent cancel request\n");
3144 if (!strcmp(command, "wait"))
3150 int cmd_cancel_find(const char *arg) {
3154 return cmd_cancel("");
3159 int send_scanrequest(const char *set, const char *query,
3160 Odr_int pp, Odr_int num, const char *term)
3162 Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
3163 Z_ScanRequest *req = apdu->u.scanRequest;
3167 if (queryType == QueryType_CCL2RPN)
3170 struct ccl_rpn_node *rpn;
3172 rpn = ccl_find_str(bibset, query, &error, &pos);
3175 printf("CCL ERROR: %s\n", ccl_err_msg(error));
3179 yaz_string_to_oid_odr(yaz_oid_std(),
3180 CLASS_ATTSET, "Bib-1", out);
3181 if (!(req->termListAndStartPoint = ccl_scan_query(out, rpn)))
3183 printf("Couldn't convert CCL to Scan term\n");
3186 ccl_rpn_delete(rpn);
3190 YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
3192 if (!(req->termListAndStartPoint =
3193 yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
3195 const char *pqf_msg;
3197 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &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);
3204 yaz_pqf_destroy(pqf_parser);
3206 if (queryCharset && outputCharset)
3208 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
3211 printf("Conversion from %s to %s unsupported\n",
3212 outputCharset, queryCharset);
3215 yaz_query_charset_convert_apt(req->termListAndStartPoint, out, cd);
3216 yaz_iconv_close(cd);
3220 if (req->termListAndStartPoint->term &&
3221 req->termListAndStartPoint->term->which == Z_Term_general &&
3222 req->termListAndStartPoint->term->u.general)
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 =
3231 req->referenceId = set_refid(out);
3232 req->num_databaseNames = num_databaseNames;
3233 req->databaseNames = databaseNames;
3234 req->numberOfTermsRequested = #
3235 req->preferredPositionInResponse = &pp;
3236 req->stepSize = odr_intdup(out, scan_stepSize);
3239 yaz_oi_set_string_oid(&req->otherInfo, out,
3240 yaz_oid_userinfo_scan_set, 1, set);
3246 int send_sortrequest(const char *arg, int newset)
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));
3257 sprintf(setstring, "%d", setnumber);
3259 sprintf(setstring, "default");
3261 req->referenceId = set_refid(out);
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);
3268 if (newset && setnumber >= 0)
3269 sprintf(setstring, "%d", ++setnumber);
3271 req->sortedResultSetName = odr_strdup(out, setstring);
3273 req->sortSequence = yaz_sort_spec(out, arg);
3274 if (!req->sortSequence)
3276 printf("Missing sort specifications\n");
3283 void display_term(Z_TermInfo *t)
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);
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);
3295 if (t->globalOccurrences)
3296 printf(" (" ODR_INT_PRINTF ")\n", *t->globalOccurrences);
3301 void process_scanResponse(Z_ScanResponse *res)
3304 Z_Entry **entries = NULL;
3305 int num_entries = 0;
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);
3313 if (*res->scanStatus != Z_Scan_success)
3314 printf("Scan returned code " ODR_INT_PRINTF "\n", *res->scanStatus);
3317 if ((entries = res->entries->entries))
3318 num_entries = res->entries->num_entries;
3319 for (i = 0; i < num_entries; i++)
3321 int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
3322 if (entries[i]->which == Z_Entry_termInfo)
3324 printf("%c ", i + 1 == pos_term ? '*' : ' ');
3325 display_term(entries[i]->u.termInfo);
3328 display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
3330 if (res->entries->nonsurrogateDiagnostics)
3331 display_diagrecs(res->entries->nonsurrogateDiagnostics,
3332 res->entries->num_nonsurrogateDiagnostics);
3335 void process_sortResponse(Z_SortResponse *res)
3337 printf("Received SortResponse: status=");
3338 switch (*res->sortStatus)
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;
3347 printf("unknown (" ODR_INT_PRINTF ")", *res->sortStatus);
3350 print_refid (res->referenceId);
3351 if (res->diagnostics)
3352 display_diagrecs(res->diagnostics,
3353 res->num_diagnostics);
3356 void process_deleteResultSetResponse(Z_DeleteResultSetResponse *res)
3358 printf("Got deleteResultSetResponse status=" ODR_INT_PRINTF "\n",
3359 *res->deleteOperationStatus);
3360 if (res->deleteListStatuses)
3363 for (i = 0; i < res->deleteListStatuses->num; i++)
3365 printf("%s status=" ODR_INT_PRINTF "\n",
3366 res->deleteListStatuses->elements[i]->id,
3367 *res->deleteListStatuses->elements[i]->status);
3372 int cmd_sort_generic(const char *arg, int newset)
3376 if (session_initResponse &&
3377 !ODR_MASK_GET(session_initResponse->options, Z_Options_sort))
3379 printf("Target doesn't support sort\n");
3384 if (send_sortrequest(arg, newset) < 0)
3391 int cmd_sort(const char *arg)
3393 return cmd_sort_generic(arg, 0);
3396 int cmd_sort_newset(const char *arg)
3398 return cmd_sort_generic(arg, 1);
3401 int cmd_scanstep(const char *arg)
3403 scan_stepSize = atoi(arg);
3407 int cmd_scanpos(const char *arg)
3409 int r = sscanf(arg, "%d", &scan_position);
3415 int cmd_scansize(const char *arg)
3417 int r = sscanf(arg, "%d", &scan_size);
3423 static int cmd_scan_common(const char *set, const char *arg)
3425 if (protocol == PROTO_HTTP)
3429 session_connect(cur_host);
3434 if (send_SRW_scanRequest(arg, scan_position, scan_size) < 0)
3439 if (send_SRW_scanRequest(last_scan_line, 1, scan_size) < 0)
3449 if (*cur_host && !conn && auto_reconnect)
3451 session_connect(cur_host);
3452 wait_and_handle_response(0);
3456 if (session_initResponse &&
3457 !ODR_MASK_GET(session_initResponse->options, Z_Options_scan))
3459 printf("Target doesn't support scan\n");
3464 strcpy(last_scan_query, arg);
3465 if (send_scanrequest(set, arg,
3466 scan_position, scan_size, 0) < 0)
3471 if (send_scanrequest(set, last_scan_query,
3472 1, scan_size, last_scan_line) < 0)
3479 int cmd_scan(const char *arg)
3481 return cmd_scan_common(0, arg);
3484 int cmd_setscan(const char *arg)
3486 char setstring[100];
3488 if (sscanf(arg, "%99s%n", setstring, &nor) < 1)
3490 printf("missing set for setscan\n");
3493 return cmd_scan_common(setstring, arg + nor);
3496 int cmd_schema(const char *arg)
3498 xfree(record_schema);
3501 record_schema = xstrdup(arg);
3505 int cmd_format(const char *arg)
3507 const char *cp = arg;
3514 printf("Usage: format <recordsyntax>\n");
3517 while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3518 && idx < RECORDSYNTAX_MAX)
3520 if (strcmp(form_str, "none") &&
3521 !yaz_string_to_oid_odr(yaz_oid_std(), CLASS_RECSYN, form_str, out))
3523 printf("Bad format: %s\n", form_str);
3528 for (i = 0; i < recordsyntax_size; i++)
3530 xfree(recordsyntax_list[i]);
3531 recordsyntax_list[i] = 0;
3535 while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3536 && idx < RECORDSYNTAX_MAX)
3538 if (!strcmp(form_str, "none"))
3540 recordsyntax_list[idx] = xstrdup(form_str);
3544 recordsyntax_size = idx;
3548 int cmd_elements(const char *arg)
3550 static Z_ElementSetNames esn;
3551 static char what[100];
3555 elementSetNames = 0;
3559 esn.which = Z_ElementSetNames_generic;
3560 esn.u.generic = what;
3561 elementSetNames = &esn;
3565 int cmd_querytype(const char *arg)
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;
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");
3590 int cmd_refid(const char *arg)
3595 refid = xstrdup(arg);
3599 int cmd_close(const char *arg)
3605 apdu = zget_APDU(out, Z_APDU_close);
3606 req = apdu->u.close;
3607 *req->closeReason = Z_Close_finished;
3609 printf("Sent close request.\n");
3614 int cmd_packagename(const char* arg)
3616 xfree(esPackageName);
3617 esPackageName = NULL;
3619 esPackageName = xstrdup(arg);
3623 int cmd_proxy(const char* arg)
3628 yazProxy = xstrdup(arg);
3632 int cmd_marccharset(const char *arg)