1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 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>
67 #include <yaz/cookie.h>
69 #if HAVE_READLINE_READLINE_H
70 #include <readline/readline.h>
72 #if HAVE_READLINE_HISTORY_H
73 #include <readline/history.h>
78 #include "tabcomplete.h"
81 #define C_PROMPT "Z> "
83 static file_history_t file_history = 0;
85 static char sru_method[10] = "soap";
86 static char sru_version[10] = "1.2";
87 static char sru_recordPacking[10] = "";
88 static char *codeset = 0; /* character set for output */
89 static int hex_dump = 0;
90 static char *dump_file_prefix = 0;
91 static ODR out, in, print; /* encoding and decoding streams */
93 static ODR srw_sr_odr_out = 0;
94 static Z_SRW_PDU *srw_sr = 0;
96 static FILE *apdu_file = 0;
97 static FILE *ber_file = 0;
98 static COMSTACK conn = 0; /* our z-association */
100 static Z_IdAuthentication *auth = 0; /* our current auth definition */
101 static NMEM nmem_auth = NULL;
103 char *databaseNames[128];
104 int num_databaseNames = 0;
105 static Z_External *record_last = 0;
106 static int setnumber = -1; /* current result set number */
107 static Odr_int smallSetUpperBound = 0;
108 static Odr_int largeSetLowerBound = 1;
109 static Odr_int mediumSetPresentNumber = 0;
110 static Z_ElementSetNames *elementSetNames = 0;
111 static Z_FacetList *facet_list = 0;
112 static ODR facet_odr = 0;
113 static Odr_int setno = 1; /* current set offset */
114 static enum oid_proto protocol = PROTO_Z3950; /* current app protocol */
115 #define RECORDSYNTAX_MAX 20
116 static char *recordsyntax_list[RECORDSYNTAX_MAX];
117 static int recordsyntax_size = 0;
119 static char *record_schema = 0;
120 static int sent_close = 0;
121 static NMEM session_mem = NULL; /* memory handle for init-response */
122 static Z_InitResponse *session_initResponse = 0; /* session parameters */
123 static char last_scan_line[512] = "0";
124 static char last_scan_query[512] = "0";
125 static char ccl_fields[512] = "default.bib";
126 /* ### How can I set this path to use wherever YAZ is installed? */
127 static char cql_fields[512] = "/usr/local/share/yaz/etc/pqf.properties";
128 static char *esPackageName = 0;
129 static char *yazProxy = 0;
130 static int kilobytes = 64 * 1024;
131 static char *negotiationCharset = 0;
132 static int negotiationCharsetRecords = 1;
133 static int negotiationCharsetVersion = 3;
134 static char *outputCharset = 0;
135 static char *marcCharset = 0;
136 static char *queryCharset = 0;
137 static char* yazLang = 0;
139 static char last_cmd[32] = "?";
140 static FILE *marc_file = 0;
141 static char *refid = NULL;
142 static int auto_reconnect = 0;
143 static int auto_wait = 1;
144 static Odr_bitmask z3950_options;
145 static int z3950_version = 3;
146 static int scan_stepSize = 0;
147 static char scan_position[64];
148 static int scan_size = 20;
149 static WRBUF cur_host = 0;
150 static Odr_int last_hit_count = 0;
151 static int pretty_xml = 0;
152 static Odr_int sru_maximumRecords = 0;
153 static yaz_cookies_t yaz_cookies = 0;
163 static QueryType queryType = QueryType_Prefix;
165 static CCL_bibset bibset; /* CCL bibset handle */
166 static cql_transform_t cqltrans = 0; /* CQL context-set handle */
168 #if HAVE_READLINE_COMPLETION_OVER
171 /* readline doesn't have this var. Define it ourselves. */
172 int rl_attempted_completion_over = 0;
175 #define maxOtherInfosSupported 10
177 Odr_oid oid[OID_SIZE];
179 } extraOtherInfos[maxOtherInfosSupported];
181 static void process_cmd_line(char* line);
182 #if HAVE_READLINE_READLINE_H
183 static char **readline_completer(char *text, int start, int end);
185 static char *command_generator(const char *text, int state);
186 static int cmd_register_tab(const char* arg);
187 static int cmd_querycharset(const char *arg);
189 static void close_session(void);
191 static void marc_file_write(const char *buf, size_t sz);
193 static void wait_and_handle_response(int one_response_only);
194 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url);
196 ODR getODROutputStream(void)
201 static const char* query_type_as_string(QueryType q)
205 case QueryType_Prefix: return "prefix (RPN sent to server)";
206 case QueryType_CCL: return "CCL (CCL sent to server) ";
207 case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
208 case QueryType_CQL: return "CQL (CQL sent to server)";
209 case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
211 return "unknown Query type internal yaz-client error";
215 static void do_hex_dump(const char* buf, size_t len)
221 for (i = 0; i < len ; i = i+16 )
223 printf(" %4.4ld ", (long) i);
224 for (x = 0 ; i+x < len && x < 16; ++x)
226 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
231 if (dump_file_prefix)
234 if (++no < 1000 && strlen(dump_file_prefix) < 500)
238 sprintf(fname, "%s.%03d.raw", dump_file_prefix, no);
239 of = fopen(fname, "wb");
241 if (fwrite(buf, 1, len, of) != len)
243 printf("write failed for %s", fname);
247 printf("close failed for %s", fname);
253 static void add_otherInfos(Z_APDU *a)
255 Z_OtherInformation **oi;
258 if (facet_list && a->which == Z_APDU_searchRequest)
260 oi = &a->u.searchRequest->additionalSearchInfo;
261 yaz_oi_set_facetlist(oi, out, facet_list);
264 for (i = 0; i < maxOtherInfosSupported; ++i)
266 if (oid_oidlen(extraOtherInfos[i].oid) > 0)
267 yaz_oi_set_string_oid(oi, out, extraOtherInfos[i].oid,
268 1, extraOtherInfos[i].value);
272 int send_apdu(Z_APDU *a)
281 z_APDU(print, &a, 0, 0);
284 if (!z_APDU(out, &a, 0, 0))
286 odr_perror(out, "Encoding APDU");
290 buf = odr_getbuf(out, &len, 0);
292 odr_dumpBER(ber_file, buf, len);
293 do_hex_dump(buf, len);
294 if (cs_put(conn, buf, len) < 0)
296 fprintf(stderr, "cs_put: %s\n", cs_errmsg(cs_errno(conn)));
300 odr_reset(out); /* release the APDU structure */
304 static void print_stringn(const char *buf, size_t len)
307 for (i = 0; i < len; i++)
308 if ((buf[i] <= 126 && buf[i] >= 32) || strchr("\n\r\t\f", buf[i]))
309 printf("%c", buf[i]);
311 printf("\\X%02X", ((const unsigned char *)buf)[i]);
314 static void print_refid(Z_ReferenceId *id)
318 printf("Reference Id: ");
319 print_stringn((const char *) id->buf, id->len);
324 static Z_ReferenceId *set_refid(ODR out)
328 return odr_create_Odr_oct(out, refid, strlen(refid));
331 /* INIT SERVICE ------------------------------- */
333 static void send_Z3950_initRequest(const char* type_and_host)
335 Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
336 Z_InitRequest *req = apdu->u.initRequest;
339 req->options = &z3950_options;
341 ODR_MASK_ZERO(req->protocolVersion);
342 for (i = 0; i<z3950_version; i++)
343 ODR_MASK_SET(req->protocolVersion, i);
345 *req->maximumRecordSize = 1024*kilobytes;
346 *req->preferredMessageSize = 1024*kilobytes;
348 req->idAuthentication = auth;
350 req->referenceId = set_refid(out);
352 if (yazProxy && type_and_host)
354 yaz_oi_set_string_oid(&req->otherInfo, out, yaz_oid_userinfo_proxy,
358 if (negotiationCharset || yazLang)
360 Z_OtherInformation **p;
361 Z_OtherInformationUnit *p0;
363 yaz_oi_APDU(apdu, &p);
365 if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
367 ODR_MASK_SET(req->options, Z_Options_negotiationModel);
369 p0->which = Z_OtherInfo_externallyDefinedInfo;
370 p0->information.externallyDefinedInfo =
371 yaz_set_proposal_charneg_list(out, ",",
374 negotiationCharsetRecords);
378 printf("Sent initrequest.\n");
382 static void render_initUserInfo(Z_OtherInformation *ui1);
383 static void render_diag(Z_DiagnosticFormat *diag);
385 static void pr_opt(const char *opt, void *clientData)
390 static int process_Z3950_initResponse(Z_InitResponse *res)
393 /* save session parameters for later use */
394 session_mem = odr_extract_mem(in);
395 session_initResponse = res;
397 for (ver = 0; ver < 8; ver++)
398 if (!ODR_MASK_GET(res->protocolVersion, ver))
402 printf("Connection rejected by v%d target.\n", ver);
404 printf("Connection accepted by v%d target.\n", ver);
405 if (res->implementationId)
406 printf("ID : %s\n", res->implementationId);
407 if (res->implementationName)
408 printf("Name : %s\n", res->implementationName);
409 if (res->implementationVersion)
410 printf("Version: %s\n", res->implementationVersion);
411 if (res->userInformationField)
413 Z_External *uif = res->userInformationField;
414 if (uif->which == Z_External_userInfo1)
415 render_initUserInfo(uif->u.userInfo1);
418 printf("UserInformationfield:\n");
419 if (!z_External(print, (Z_External**)&uif, 0, 0))
421 odr_perror(print, "Printing userinfo\n");
424 if (uif->which == Z_External_octet)
426 printf("Guessing visiblestring:\n");
427 printf("'%.*s'\n", uif->u.octet_aligned->len,
428 uif->u.octet_aligned->buf);
430 else if (uif->which == Z_External_single)
432 Odr_any *sat = uif->u.single_ASN1_type;
433 if (!oid_oidcmp(uif->direct_reference,
434 yaz_oid_userinfo_oclc_userinfo))
436 Z_OCLC_UserInformation *oclc_ui;
437 ODR decode = odr_createmem(ODR_DECODE);
438 odr_setbuf(decode, (char *) sat->buf, sat->len, 0);
439 if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
440 printf("Bad OCLC UserInformation:\n");
442 printf("OCLC UserInformation:\n");
443 if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
444 printf("Bad OCLC UserInformation spec\n");
449 /* Peek at any private Init-diagnostic APDUs */
450 printf("yaz-client ignoring unrecognised userInformationField: %d-octet External '%.*s'\n",
451 (int) sat->len, sat->len, sat->buf);
458 yaz_init_opt_decode(res->options, pr_opt, 0);
461 if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
464 if (ODR_MASK_GET(res->options, Z_Options_negotiationModel))
466 Z_CharSetandLanguageNegotiation *p =
467 yaz_get_charneg_record(res->otherInfo);
471 char *charset=NULL, *lang=NULL;
474 yaz_get_response_charneg(session_mem, p, &charset, &lang,
477 printf("Accepted character set : %s\n", charset ? charset:"none");
478 printf("Accepted code language : %s\n", lang ? lang:"none");
479 printf("Accepted records in ...: %d\n", selected );
481 if (outputCharset && charset)
483 printf("Converting between %s and %s\n",
484 outputCharset, charset);
485 odr_set_charset(out, charset, outputCharset);
486 odr_set_charset(in, outputCharset, charset);
487 cmd_querycharset(charset);
491 odr_set_charset(out, 0, 0);
492 odr_set_charset(in, 0, 0);
501 static void render_initUserInfo(Z_OtherInformation *ui1)
504 printf("Init response contains %d otherInfo unit%s:\n",
505 ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
507 for (i = 0; i < ui1->num_elements; i++)
509 Z_OtherInformationUnit *unit = ui1->list[i];
510 printf(" %d: otherInfo unit contains ", i+1);
511 if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
512 unit->information.externallyDefinedInfo &&
513 unit->information.externallyDefinedInfo->which ==
516 render_diag(unit->information.externallyDefinedInfo->u.diag1);
518 else if (unit->which != Z_OtherInfo_externallyDefinedInfo)
520 printf("unsupported otherInfo unit->which = %d\n", unit->which);
524 printf("unsupported otherInfo unit external %d\n",
525 unit->information.externallyDefinedInfo ?
526 unit->information.externallyDefinedInfo->which : -2);
532 /* ### should this share code with display_diagrecs()? */
533 static void render_diag(Z_DiagnosticFormat *diag)
537 printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
538 for (i = 0; i < diag->num; i++)
540 Z_DiagnosticFormat_s *ds = diag->elements[i];
541 printf(" %d: ", i+1);
544 case Z_DiagnosticFormat_s_defaultDiagRec: {
545 Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
546 /* ### should check `dd->diagnosticSetId' */
547 printf("code=" ODR_INT_PRINTF " (%s)", *dd->condition,
548 diagbib1_str(*dd->condition));
549 /* Both types of addinfo are the same, so use type-pun */
550 if (dd->u.v2Addinfo != 0)
551 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
554 case Z_DiagnosticFormat_s_explicitDiagnostic:
555 printf("Explicit diagnostic (not supported)");
558 printf("Unrecognised diagnostic type %d", ds->which);
562 if (ds->message != 0)
563 printf(", message='%s'", ds->message);
569 static int set_base(const char *arg)
574 for (i = 0; i<num_databaseNames; i++)
575 xfree(databaseNames[i]);
576 num_databaseNames = 0;
580 if (!(cp = strchr(arg, ' ')))
581 cp = arg + strlen(arg);
584 databaseNames[num_databaseNames] = (char *)xmalloc(1 + cp - arg);
585 memcpy(databaseNames[num_databaseNames], arg, cp - arg);
586 databaseNames[num_databaseNames][cp - arg] = '\0';
588 for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
597 if (num_databaseNames == 0)
599 num_databaseNames = 1;
600 databaseNames[0] = xstrdup("");
605 static int parse_cmd_doc(const char **arg, ODR out, char **buf, int *len)
608 while (**arg && strchr(" \t\n\r\f", **arg))
614 else if ((*arg)[0] == '<')
619 const char *arg_start = ++(*arg);
621 while (**arg != '\0' && **arg != ' ')
624 fname = odr_strdupn(out, arg_start, *arg - arg_start);
626 inf = fopen(fname, "rb");
629 printf("Couldn't open %s\n", fname);
632 if (fseek(inf, 0L, SEEK_END) == -1)
634 printf("Couldn't seek in %s\n", fname);
639 if (fseek(inf, 0L, SEEK_SET) == -1)
641 printf("Couldn't seek in %s\n", fname);
646 *buf = (char *) odr_malloc(out, fsize+1);
647 (*buf)[fsize] = '\0';
648 if (fread(*buf, 1, fsize, inf) != fsize)
650 printf("Unable to read %s\n", fname);
656 else if ((*arg)[0] == '\"' && (sep=strchr(*arg+1, '"')))
660 *buf = odr_strdupn(out, *arg, *len);
665 const char *arg_start = *arg;
667 while (**arg != '\0' && **arg != ' ')
670 *len = *arg - arg_start;
671 *buf = odr_strdupn(out, arg_start, *len);
676 static int cmd_base(const char *arg)
680 printf("Usage: base <database> <database> ...\n");
683 return set_base(arg);
686 static int session_connect_base(const char *arg, const char **basep)
689 char type_and_host[101];
697 nmem_destroy(session_mem);
699 session_initResponse = 0;
701 cs_get_host_args(arg, basep);
703 strncpy(type_and_host, arg, sizeof(type_and_host)-1);
704 type_and_host[sizeof(type_and_host)-1] = '\0';
706 conn = cs_create_host_proxy(arg, 1, &add, yazProxy);
709 printf("Could not resolve address %s\n", arg);
714 if (conn->protocol == PROTO_HTTP)
716 printf("SRW/HTTP not enabled in this YAZ\n");
722 protocol = conn->protocol;
723 printf("Connecting...");
725 if (cs_connect(conn, add) < 0)
727 printf("error = %s\n", cs_strerror(conn));
733 cs_print_session_info(conn);
734 if (protocol == PROTO_Z3950)
736 send_Z3950_initRequest(type_and_host);
742 static int session_connect(void)
745 const char *basep = 0;
747 yaz_cookies_destroy(yaz_cookies);
748 yaz_cookies = yaz_cookies_create();
750 r = session_connect_base(wrbuf_cstr(cur_host), &basep);
753 else if (protocol == PROTO_Z3950)
758 static int cmd_open(const char *arg)
763 wrbuf_rewind(cur_host);
764 if (!strstr(arg, "://") && strcmp(sru_method, "soap"))
765 wrbuf_puts(cur_host, "http://");
766 wrbuf_puts(cur_host, arg);
769 r = session_connect();
770 if (conn && conn->protocol == PROTO_HTTP)
771 queryType = QueryType_CQL;
776 static int cmd_authentication(const char *arg)
781 nmem_reset(nmem_auth);
782 nmem_strsplit_blank(nmem_auth, arg, &args, &r);
786 printf("Authentication set to null\n");
791 auth = (Z_IdAuthentication *) nmem_malloc(nmem_auth, sizeof(*auth));
792 if (!strcmp(args[0], "-"))
794 auth->which = Z_IdAuthentication_anonymous;
795 auth->u.anonymous = odr_nullval();
796 printf("Authentication set to Anonymous\n");
800 auth->which = Z_IdAuthentication_open;
801 auth->u.open = args[0];
802 printf("Authentication set to Open (%s)\n", args[0]);
807 auth = (Z_IdAuthentication *) nmem_malloc(nmem_auth, sizeof(*auth));
808 auth->which = Z_IdAuthentication_idPass;
809 auth->u.idPass = (Z_IdPass *)
810 nmem_malloc(nmem_auth, sizeof(*auth->u.idPass));
811 auth->u.idPass->groupId = NULL;
812 auth->u.idPass->userId = !strcmp(args[0], "-") ? 0 : args[0];
813 auth->u.idPass->password = !strcmp(args[1], "-") ? 0 : args[1];
814 printf("Authentication set to User (%s), Pass (%s)\n",
819 auth = (Z_IdAuthentication*) nmem_malloc(nmem_auth, sizeof(*auth));
820 auth->which = Z_IdAuthentication_idPass;
821 auth->u.idPass = (Z_IdPass *)
822 nmem_malloc(nmem_auth, sizeof(*auth->u.idPass));
823 auth->u.idPass->groupId = args[1];
824 auth->u.idPass->userId = args[0];
825 auth->u.idPass->password = args[2];
826 printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
827 args[0], args[1], args[2]);
831 printf("Bad number of args to auth\n");
838 /* SEARCH SERVICE ------------------------------ */
839 static void display_record(Z_External *r);
841 static void print_record(const char *buf, size_t len)
844 print_stringn(buf, len);
845 /* add newline if not already added ... */
846 if (i <= 0 || buf[i-1] != '\n')
850 static void print_mab_record(const char *buf, size_t len)
853 size_t last_linebreak = 0;
854 size_t last_subfield = 0;
855 for (i = 0; i < len; i++)
857 // line break after header
861 last_linebreak = i - 1;
864 // space between field and content
865 if ( i > 24 && i - last_linebreak == 5 )
868 // space after subfield
869 if ( last_subfield != 0 && i - last_subfield == 2 )
872 if ((buf[i] <= 126 && buf[i] >= 32) || strchr("\n\r\t\f", buf[i]))
873 printf("%c", buf[i]);
874 else if ( buf[i] == 29 ) // record separator
876 else if ( buf[i] == 30 ) // field separator
881 else if ( buf[i] == 31 ) // subfield
883 // space before subfields; except first one
884 if ( i > 24 && i - last_linebreak > 5 )
890 printf("\\X%02X", ((const unsigned char *)buf)[i]);
894 static void print_xml_record(const char *buf, size_t len)
901 xmlKeepBlanksDefault(0); /* get get xmlDocFormatMemory to work! */
902 doc = xmlParseMemory(buf, len);
907 xmlDocDumpFormatMemory(doc, &xml_mem, &xml_size, 1);
908 fwrite(xml_mem, 1, xml_size, stdout);
916 fwrite(buf, 1, len, stdout);
919 static void display_record(Z_External *r)
921 const Odr_oid *oid = r->direct_reference;
925 * Tell the user what we got.
930 char oid_name_buf[OID_STR_MAX];
932 = yaz_oid_to_string_buf(oid, &oclass, oid_name_buf);
933 printf("Record type: ");
935 printf("%s\n", oid_name);
937 /* Check if this is a known, ASN.1 type tucked away in an octet string */
938 if (r->which == Z_External_octet)
940 Z_ext_typeent *type = z_ext_getentbyref(r->direct_reference);
946 * Call the given decoder to process the record.
948 odr_setbuf(in, (char*)r->u.octet_aligned->buf,
949 r->u.octet_aligned->len, 0);
950 if (!(*type->fun)(in, &rr, 0, 0))
952 odr_perror(in, "Decoding constructed record.");
953 fprintf(stdout, "[Near %ld]\n", (long) odr_offset(in));
954 fprintf(stdout, "Packet dump:\n---------\n");
955 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
956 r->u.octet_aligned->len);
957 fprintf(stdout, "---------\n");
959 /* note just ignores the error ant print the bytes form the octet_aligned later */
962 * Note: we throw away the original, BER-encoded record here.
963 * Do something else with it if you want to keep it.
965 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
966 r->which = type->what;
970 if (oid && r->which == Z_External_octet)
972 const char *octet_buf = (const char*)r->u.octet_aligned->buf;
973 size_t octet_len = r->u.octet_aligned->len;
974 if (!oid_oidcmp(oid, yaz_oid_recsyn_xml)
975 || !oid_oidcmp(oid, yaz_oid_recsyn_application_xml)
976 || !oid_oidcmp(oid, yaz_oid_recsyn_html))
978 print_xml_record(octet_buf, octet_len);
980 else if (!oid_oidcmp(oid, yaz_oid_recsyn_mab))
982 print_mab_record(octet_buf, octet_len);
989 yaz_marc_t mt = yaz_marc_create();
990 const char *from = 0;
992 if (marcCharset && !strcmp(marcCharset, "auto"))
994 if (!oid_oidcmp(oid, yaz_oid_recsyn_usmarc))
996 if (octet_buf[9] == 'a')
1002 from = "ISO-8859-1";
1004 else if (marcCharset)
1006 if (outputCharset && from)
1008 cd = yaz_iconv_open(outputCharset, from);
1009 printf("convert from %s to %s", from,
1012 printf(" unsupported\n");
1015 yaz_marc_iconv(mt, cd);
1020 if (yaz_marc_decode_buf(mt, octet_buf, octet_len,
1023 if (fwrite(result, rlen, 1, stdout) != 1)
1025 printf("write to stdout failed\n");
1030 if (yaz_oid_is_iso2709(oid))
1031 printf("bad MARC. Dumping as it is:\n");
1032 print_record(octet_buf, octet_len);
1034 yaz_marc_destroy(mt);
1036 yaz_iconv_close(cd);
1038 marc_file_write(octet_buf, r->u.octet_aligned->len);
1040 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_sutrs))
1042 if (r->which != Z_External_sutrs)
1044 printf("Expecting single SUTRS type for SUTRS.\n");
1047 print_record((const char *) r->u.sutrs->buf, r->u.sutrs->len);
1048 marc_file_write((const char *) r->u.sutrs->buf, r->u.sutrs->len);
1050 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_grs_1))
1053 if (r->which != Z_External_grs1)
1055 printf("Expecting single GRS type for GRS.\n");
1059 yaz_display_grs1(w, r->u.grs1, 0);
1060 puts(wrbuf_cstr(w));
1063 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_opac))
1066 if (r->u.opac->bibliographicRecord)
1067 display_record(r->u.opac->bibliographicRecord);
1068 for (i = 0; i<r->u.opac->num_holdingsData; i++)
1070 Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
1071 if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
1073 printf("MARC holdings %d\n", i);
1074 display_record(h->u.marcHoldingsRecord);
1076 else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
1080 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
1082 printf("Data holdings %d\n", i);
1083 if (data->typeOfRecord)
1084 printf("typeOfRecord: %s\n", data->typeOfRecord);
1085 if (data->encodingLevel)
1086 printf("encodingLevel: %s\n", data->encodingLevel);
1087 if (data->receiptAcqStatus)
1088 printf("receiptAcqStatus: %s\n", data->receiptAcqStatus);
1089 if (data->generalRetention)
1090 printf("generalRetention: %s\n", data->generalRetention);
1091 if (data->completeness)
1092 printf("completeness: %s\n", data->completeness);
1093 if (data->dateOfReport)
1094 printf("dateOfReport: %s\n", data->dateOfReport);
1096 printf("nucCode: %s\n", data->nucCode);
1097 if (data->localLocation)
1098 printf("localLocation: %s\n", data->localLocation);
1099 if (data->shelvingLocation)
1100 printf("shelvingLocation: %s\n", data->shelvingLocation);
1101 if (data->callNumber)
1102 printf("callNumber: %s\n", data->callNumber);
1103 if (data->shelvingData)
1104 printf("shelvingData: %s\n", data->shelvingData);
1105 if (data->copyNumber)
1106 printf("copyNumber: %s\n", data->copyNumber);
1107 if (data->publicNote)
1108 printf("publicNote: %s\n", data->publicNote);
1109 if (data->reproductionNote)
1110 printf("reproductionNote: %s\n", data->reproductionNote);
1111 if (data->termsUseRepro)
1112 printf("termsUseRepro: %s\n", data->termsUseRepro);
1113 if (data->enumAndChron)
1114 printf("enumAndChron: %s\n", data->enumAndChron);
1115 for (j = 0; j<data->num_volumes; j++)
1117 printf("volume %d\n", j);
1118 if (data->volumes[j]->enumeration)
1119 printf(" enumeration: %s\n",
1120 data->volumes[j]->enumeration);
1121 if (data->volumes[j]->chronology)
1122 printf(" chronology: %s\n",
1123 data->volumes[j]->chronology);
1124 if (data->volumes[j]->enumAndChron)
1125 printf(" enumAndChron: %s\n",
1126 data->volumes[j]->enumAndChron);
1128 for (j = 0; j<data->num_circulationData; j++)
1130 printf("circulation %d\n", j);
1131 if (data->circulationData[j]->availableNow)
1132 printf(" availableNow: %d\n",
1133 *data->circulationData[j]->availableNow);
1134 if (data->circulationData[j]->availablityDate)
1135 printf(" availabiltyDate: %s\n",
1136 data->circulationData[j]->availablityDate);
1137 if (data->circulationData[j]->availableThru)
1138 printf(" availableThru: %s\n",
1139 data->circulationData[j]->availableThru);
1140 if (data->circulationData[j]->restrictions)
1141 printf(" restrictions: %s\n",
1142 data->circulationData[j]->restrictions);
1143 if (data->circulationData[j]->itemId)
1144 printf(" itemId: %s\n",
1145 data->circulationData[j]->itemId);
1146 if (data->circulationData[j]->renewable)
1147 printf(" renewable: %d\n",
1148 *data->circulationData[j]->renewable);
1149 if (data->circulationData[j]->onHold)
1150 printf(" onHold: %d\n",
1151 *data->circulationData[j]->onHold);
1152 if (data->circulationData[j]->enumAndChron)
1153 printf(" enumAndChron: %s\n",
1154 data->circulationData[j]->enumAndChron);
1155 if (data->circulationData[j]->midspine)
1156 printf(" midspine: %s\n",
1157 data->circulationData[j]->midspine);
1158 if (data->circulationData[j]->temporaryLocation)
1159 printf(" temporaryLocation: %s\n",
1160 data->circulationData[j]->temporaryLocation);
1167 printf("Unknown record representation.\n");
1168 if (!z_External(print, &r, 0, 0))
1170 odr_perror(print, "Printing external");
1176 static void display_diagrecs(Z_DiagRec **pp, int num)
1179 Z_DefaultDiagFormat *r;
1181 printf("Diagnostic message(s) from database:\n");
1182 for (i = 0; i<num; i++)
1184 Z_DiagRec *p = pp[i];
1185 if (p->which != Z_DiagRec_defaultFormat)
1187 printf("Diagnostic record not in default format.\n");
1191 r = p->u.defaultFormat;
1193 if (!r->diagnosticSetId)
1194 printf("Missing diagset\n");
1198 char diag_name_buf[OID_STR_MAX];
1199 const char *diag_name = 0;
1200 diag_name = yaz_oid_to_string_buf
1201 (r->diagnosticSetId, &oclass, diag_name_buf);
1202 if (oid_oidcmp(r->diagnosticSetId, yaz_oid_diagset_bib_1))
1203 printf("Unknown diagset: %s\n", diag_name);
1205 printf(" [" ODR_INT_PRINTF "] %s",
1206 *r->condition, diagbib1_str(*r->condition));
1209 case Z_DefaultDiagFormat_v2Addinfo:
1210 printf(" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1212 case Z_DefaultDiagFormat_v3Addinfo:
1213 printf(" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1220 static void display_nameplusrecord(Z_NamePlusRecord *p)
1222 if (p->databaseName)
1223 printf("[%s]", p->databaseName);
1224 if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1225 display_diagrecs(&p->u.surrogateDiagnostic, 1);
1226 else if (p->which == Z_NamePlusRecord_databaseRecord)
1227 display_record(p->u.databaseRecord);
1230 static void display_records(Z_Records *p)
1234 if (p->which == Z_Records_NSD)
1236 Z_DiagRec dr, *dr_p = &dr;
1237 dr.which = Z_DiagRec_defaultFormat;
1238 dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1239 display_diagrecs(&dr_p, 1);
1241 else if (p->which == Z_Records_multipleNSD)
1242 display_diagrecs(p->u.multipleNonSurDiagnostics->diagRecs,
1243 p->u.multipleNonSurDiagnostics->num_diagRecs);
1246 printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1247 for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1248 display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1252 static int send_Z3950_deleteResultSetRequest(const char *arg)
1257 Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1258 Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1260 req->referenceId = set_refid(out);
1262 req->num_resultSetList =
1263 sscanf(arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1264 names[0], names[1], names[2], names[3],
1265 names[4], names[5], names[6], names[7]);
1267 req->deleteFunction = odr_intdup(out, 0);
1268 if (req->num_resultSetList > 0)
1270 *req->deleteFunction = Z_DeleteResultSetRequest_list;
1271 req->resultSetList = (char **)
1272 odr_malloc(out, sizeof(*req->resultSetList)*
1273 req->num_resultSetList);
1274 for (i = 0; i<req->num_resultSetList; i++)
1275 req->resultSetList[i] = names[i];
1279 *req->deleteFunction = Z_DeleteResultSetRequest_all;
1280 req->resultSetList = 0;
1284 printf("Sent deleteResultSetRequest.\n");
1289 static int send_gdu(Z_GDU *gdu)
1291 if (z_GDU(out, &gdu, 0, 0))
1299 if (!z_GDU(print, &gdu, 0, 0))
1300 printf("Failed to print outgoing SRU package\n");
1303 buf_out = odr_getbuf(out, &len_out, 0);
1305 /* we don't odr_reset(out), since we may need the buffer again */
1307 do_hex_dump(buf_out, len_out);
1309 r = cs_put(conn, buf_out, len_out);
1317 static int send_srw_host_path(Z_SRW_PDU *sr, const char *host_port,
1320 const char *charset = negotiationCharset;
1323 gdu = z_get_HTTP_Request_host_path(out, host_port, path);
1327 if (auth->which == Z_IdAuthentication_open)
1331 nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1333 sr->username = darray[0];
1335 sr->password = darray[1];
1337 else if (auth->which == Z_IdAuthentication_idPass)
1339 sr->username = auth->u.idPass->userId;
1340 sr->password = auth->u.idPass->password;
1344 if (!yaz_matchstr(sru_method, "get"))
1346 yaz_sru_get_encode(gdu->u.HTTP_Request, sr, out, charset);
1348 else if (!yaz_matchstr(sru_method, "post"))
1350 yaz_sru_post_encode(gdu->u.HTTP_Request, sr, out, charset);
1352 else if (!yaz_matchstr(sru_method, "soap"))
1354 yaz_sru_soap_encode(gdu->u.HTTP_Request, sr, out, charset);
1356 else if (!yaz_matchstr(sru_method, "solr"))
1358 yaz_solr_encode_request(gdu->u.HTTP_Request, sr, out, charset);
1361 return send_gdu(gdu);
1364 static int send_srw(Z_SRW_PDU *sr)
1366 char *path = yaz_encode_sru_dbpath_odr(out, databaseNames[0]);
1367 return send_srw_host_path(sr, wrbuf_cstr(cur_host), path);
1370 static int send_SRW_redirect(const char *uri)
1372 const char *username = 0;
1373 const char *password = 0;
1374 Z_GDU *gdu = get_HTTP_Request_url(out, uri);
1376 gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
1377 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
1380 yaz_cookies_request(yaz_cookies, out, gdu->u.HTTP_Request);
1383 if (auth->which == Z_IdAuthentication_open)
1387 nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1389 username = darray[0];
1391 password = darray[1];
1393 else if (auth->which == Z_IdAuthentication_idPass)
1395 username = auth->u.idPass->userId;
1396 password = auth->u.idPass->password;
1400 if (username && password)
1402 z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
1403 username, password);
1406 return send_gdu(gdu);
1411 static char *encode_SRW_term(ODR o, const char *q)
1413 const char *in_charset = "ISO-8859-1";
1414 WRBUF w = wrbuf_alloc();
1418 in_charset = outputCharset;
1419 cd = yaz_iconv_open("UTF-8", in_charset);
1423 return odr_strdup(o, q);
1425 wrbuf_iconv_write(w, cd, q, strlen(q));
1427 res = odr_strdup(o, wrbuf_cstr(w));
1429 res = odr_strdup(o, q);
1430 yaz_iconv_close(cd);
1436 static int send_SRW_scanRequest(const char *arg, Odr_int *pos, int num)
1440 /* regular requestse .. */
1441 sr = yaz_srw_get_pdu(out, Z_SRW_scan_request, sru_version);
1446 sr->u.scan_request->queryType = "cql";
1447 sr->u.scan_request->scanClause = encode_SRW_term(out, arg);
1449 case QueryType_Prefix:
1450 sr->u.scan_request->queryType = "pqf";
1451 sr->u.scan_request->scanClause = encode_SRW_term(out, arg);
1454 printf("Only CQL and PQF supported in SRW\n");
1457 sr->u.scan_request->responsePosition = pos;
1458 sr->u.scan_request->maximumTerms = odr_intdup(out, num);
1459 return send_srw(sr);
1462 static int send_SRW_searchRequest(const char *arg)
1468 assert(srw_sr_odr_out == 0);
1469 srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1471 odr_reset(srw_sr_odr_out);
1475 /* save this for later .. when fetching individual records */
1476 srw_sr = yaz_srw_get_pdu(srw_sr_odr_out, Z_SRW_searchRetrieve_request,
1479 /* regular request .. */
1480 sr = yaz_srw_get_pdu(out, Z_SRW_searchRetrieve_request, sru_version);
1485 srw_sr->u.request->queryType = "cql";
1486 srw_sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1488 sr->u.request->queryType = "cql";
1489 sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1491 case QueryType_Prefix:
1492 srw_sr->u.request->queryType = "pqf";
1493 srw_sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1495 sr->u.request->queryType = "pqf";
1496 sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1499 printf("Only CQL and PQF supported in SRW\n");
1502 if (*sru_recordPacking)
1503 sr->u.request->recordPacking = sru_recordPacking;
1504 sru_maximumRecords = 0;
1505 sr->u.request->maximumRecords = odr_intdup(out, 0);
1506 sr->u.request->facetList = facet_list;
1507 sr->u.request->recordSchema = record_schema;
1508 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
1509 sr->u.request->recordPacking = "xml";
1510 return send_srw(sr);
1514 static void query_charset_convert(Z_RPNQuery *q)
1516 if (queryCharset && outputCharset)
1518 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
1521 printf("Conversion from %s to %s unsupported\n",
1522 outputCharset, queryCharset);
1525 yaz_query_charset_convert_rpnquery(q, out, cd);
1526 yaz_iconv_close(cd);
1530 static int send_Z3950_searchRequest(const char *arg)
1532 Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1533 Z_SearchRequest *req = apdu->u.searchRequest;
1535 struct ccl_rpn_node *rpn = NULL;
1537 char setstring[100];
1538 Z_RPNQuery *RPNquery;
1540 YAZ_PQF_Parser pqf_parser;
1542 QueryType myQueryType = queryType;
1545 if (myQueryType == QueryType_CCL2RPN)
1547 rpn = ccl_find_str(bibset, arg, &error, &pos);
1550 printf("CCL ERROR: %s\n", ccl_err_msg(error));
1554 else if (myQueryType == QueryType_CQL2RPN)
1556 /* ### All this code should be wrapped in a utility function */
1558 struct cql_node *node;
1559 const char *addinfo;
1562 printf("Can't use CQL: no translation file. Try set_cqlfile\n");
1565 parser = cql_parser_create();
1566 if ((error = cql_parser_string(parser, arg)) != 0)
1568 printf("Can't parse CQL: must be a syntax error\n");
1571 node = cql_parser_result(parser);
1572 if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1573 sizeof pqfbuf)) != 0)
1575 error = cql_transform_error(cqltrans, &addinfo);
1576 printf("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1577 cql_strerror(error), addinfo);
1581 myQueryType = QueryType_Prefix;
1584 req->referenceId = set_refid(out);
1585 if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1587 static char big[2100];
1588 static Odr_oct bigo;
1590 /* send a very big referenceid to test transport stack etc. */
1591 memset(big, 'A', 2100);
1594 req->referenceId = &bigo;
1599 sprintf(setstring, "%d", ++setnumber);
1600 req->resultSetName = setstring;
1602 *req->smallSetUpperBound = smallSetUpperBound;
1603 *req->largeSetLowerBound = largeSetLowerBound;
1604 *req->mediumSetPresentNumber = mediumSetPresentNumber;
1605 if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1606 mediumSetPresentNumber > 0))
1608 if (recordsyntax_size)
1609 req->preferredRecordSyntax =
1610 yaz_string_to_oid_odr(yaz_oid_std(),
1611 CLASS_RECSYN, recordsyntax_list[0], out);
1613 req->smallSetElementSetNames =
1614 req->mediumSetElementSetNames = elementSetNames;
1616 req->num_databaseNames = num_databaseNames;
1617 req->databaseNames = databaseNames;
1619 req->query = &query;
1621 switch (myQueryType)
1623 case QueryType_Prefix:
1624 query.which = Z_Query_type_1;
1625 pqf_parser = yaz_pqf_create();
1626 RPNquery = yaz_pqf_parse(pqf_parser, out, arg);
1629 const char *pqf_msg;
1631 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
1633 printf("%*s^\n", ioff+4, "");
1634 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1636 yaz_pqf_destroy(pqf_parser);
1639 yaz_pqf_destroy(pqf_parser);
1640 query_charset_convert(RPNquery);
1641 query.u.type_1 = RPNquery;
1644 query.which = Z_Query_type_2;
1645 query.u.type_2 = &ccl_query;
1646 ccl_query.buf = (char *) arg;
1647 ccl_query.len = strlen(arg);
1649 case QueryType_CCL2RPN:
1650 query.which = Z_Query_type_1;
1651 RPNquery = ccl_rpn_query(out, rpn);
1654 printf("Couldn't convert from CCL to RPN\n");
1657 query_charset_convert(RPNquery);
1658 query.u.type_1 = RPNquery;
1659 ccl_rpn_delete(rpn);
1662 query.which = Z_Query_type_104;
1663 ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1664 ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1665 ext->indirect_reference = 0;
1666 ext->descriptor = 0;
1667 ext->which = Z_External_CQL;
1668 ext->u.cql = odr_strdup(out, arg);
1669 query.u.type_104 = ext;
1672 printf("Unsupported query type\n");
1675 if (send_apdu(apdu))
1676 printf("Sent searchRequest.\n");
1681 static void display_term(Z_Term *term)
1683 switch (term->which)
1685 case Z_Term_general:
1686 printf("%.*s", term->u.general->len, term->u.general->buf);
1688 case Z_Term_characterString:
1689 printf("%s", term->u.characterString);
1691 case Z_Term_numeric:
1692 printf(ODR_INT_PRINTF, *term->u.numeric);
1700 /* display Query Expression as part of searchResult-1 */
1701 static void display_queryExpression(const char *lead, Z_QueryExpression *qe)
1705 printf(" %s=", lead);
1706 if (qe->which == Z_QueryExpression_term)
1708 if (qe->u.term->queryTerm)
1710 Z_Term *term = qe->u.term->queryTerm;
1716 static void display_facet(Z_FacetField *facet)
1718 if (facet->attributes)
1720 Z_AttributeList *al = facet->attributes;
1721 struct yaz_facet_attr attr_values;
1722 yaz_facet_attr_init(&attr_values);
1723 yaz_facet_attr_get_z_attributes(al, &attr_values);
1724 if (!attr_values.errcode)
1727 printf(" %s (%d): \n", attr_values.useattr, facet->num_terms);
1728 for (term_index = 0 ; term_index < facet->num_terms; term_index++)
1730 Z_FacetTerm *facetTerm = facet->terms[term_index];
1732 display_term(facetTerm->term);
1733 printf(" (" NMEM_INT_PRINTF ")\n", *facetTerm->count);
1740 static void* display_facets(Z_FacetList *fl)
1743 printf("Facets(%d): \n", fl->num);
1745 for (index = 0; index < fl->num ; index++)
1747 display_facet(fl->elements[index]);
1752 void display_searchResult1(Z_SearchInfoReport *sr)
1755 printf("SearchResult-1:");
1756 for (j = 0; j < sr->num; j++)
1760 if (!sr->elements[j]->subqueryExpression)
1762 display_queryExpression("term",
1763 sr->elements[j]->subqueryExpression);
1764 display_queryExpression("interpretation",
1765 sr->elements[j]->subqueryInterpretation);
1766 display_queryExpression("recommendation",
1767 sr->elements[j]->subqueryRecommendation);
1768 if (sr->elements[j]->subqueryCount)
1769 printf(" cnt=" ODR_INT_PRINTF,
1770 *sr->elements[j]->subqueryCount);
1771 if (sr->elements[j]->subqueryId)
1772 printf(" id=%s ", sr->elements[j]->subqueryId);
1779 /* see if we can find USR:SearchResult-1 */
1780 static void display_searchResult(Z_OtherInformation *o)
1785 for (i = 0; i < o->num_elements; i++)
1787 if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1789 Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1791 if (ext->which == Z_External_searchResult1)
1792 display_searchResult1(ext->u.searchResult1);
1793 else if (ext->which == Z_External_userFacets)
1794 display_facets(ext->u.facetList);
1799 static int process_Z3950_searchResponse(Z_SearchResponse *res)
1801 printf("Received SearchResponse.\n");
1802 print_refid(res->referenceId);
1803 if (*res->searchStatus)
1804 printf("Search was a success.\n");
1806 printf("Search was a bloomin' failure.\n");
1807 printf("Number of hits: " ODR_INT_PRINTF, *res->resultCount);
1808 last_hit_count = *res->resultCount;
1810 printf(", setno %d", setnumber);
1812 if (res->resultSetStatus)
1814 printf("Result Set Status: ");
1815 switch (*res->resultSetStatus)
1817 case Z_SearchResponse_subset:
1818 printf("subset"); break;
1819 case Z_SearchResponse_interim:
1820 printf("interim"); break;
1821 case Z_SearchResponse_none:
1822 printf("none"); break;
1823 case Z_SearchResponse_estimate:
1824 printf("estimate"); break;
1826 printf(ODR_INT_PRINTF, *res->resultSetStatus);
1830 display_searchResult(res->additionalSearchInfo);
1831 printf("records returned: " ODR_INT_PRINTF "\n",
1832 *res->numberOfRecordsReturned);
1833 setno += *res->numberOfRecordsReturned;
1835 display_records(res->records);
1839 static void print_level(int iLevel)
1842 for (i = 0; i < iLevel * 4; i++)
1846 static void print_int(int iLevel, const char *pTag, Odr_int *pInt)
1850 print_level(iLevel);
1851 printf("%s: " ODR_INT_PRINTF "\n", pTag, *pInt);
1855 static void print_bool(int iLevel, const char *pTag, Odr_bool *pInt)
1859 print_level(iLevel);
1860 printf("%s: %d\n", pTag, *pInt);
1864 static void print_string(int iLevel, const char *pTag, const char *pString)
1866 if (pString != NULL)
1868 print_level(iLevel);
1869 printf("%s: %s\n", pTag, pString);
1873 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1877 Odr_oid *pInt = pOid;
1879 print_level(iLevel);
1880 printf("%s:", pTag);
1881 for (; *pInt != -1; pInt++)
1882 printf(" %d", *pInt);
1887 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1889 if (referenceId != NULL)
1893 print_level(iLevel);
1894 printf("Ref Id (%d): ", referenceId->len);
1895 for (i = 0; i < referenceId->len; i++)
1896 printf("%c", referenceId->buf[i]);
1901 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1903 if (pStringNumeric != NULL)
1905 switch (pStringNumeric->which)
1907 case Z_StringOrNumeric_string:
1908 print_string(iLevel, pTag, pStringNumeric->u.string);
1911 case Z_StringOrNumeric_numeric:
1912 print_int(iLevel, pTag, pStringNumeric->u.numeric);
1916 print_level(iLevel);
1917 printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1923 static void print_universe_report_duplicate(
1925 Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1927 if (pUniverseReportDuplicate != NULL)
1929 print_level(iLevel);
1930 printf("Universe Report Duplicate: \n");
1932 print_string_or_numeric(iLevel, "Hit No",
1933 pUniverseReportDuplicate->hitno);
1937 static void print_universe_report_hits(
1939 Z_UniverseReportHits *pUniverseReportHits)
1941 if (pUniverseReportHits != NULL)
1943 print_level(iLevel);
1944 printf("Universe Report Hits: \n");
1946 print_string_or_numeric(iLevel, "Database",
1947 pUniverseReportHits->database);
1948 print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1952 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1954 if (pUniverseReport != NULL)
1956 print_level(iLevel);
1957 printf("Universe Report: \n");
1959 print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1960 switch (pUniverseReport->which)
1962 case Z_UniverseReport_databaseHits:
1963 print_universe_report_hits(iLevel,
1964 pUniverseReport->u.databaseHits);
1967 case Z_UniverseReport_duplicate:
1968 print_universe_report_duplicate(iLevel,
1969 pUniverseReport->u.duplicate);
1973 print_level(iLevel);
1974 printf("Type: %d\n", pUniverseReport->which);
1980 static void print_external(int iLevel, Z_External *pExternal)
1982 if (pExternal != NULL)
1984 print_level(iLevel);
1985 printf("External: \n");
1987 print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
1988 print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
1989 print_string(iLevel, "Descriptor", pExternal->descriptor);
1990 switch (pExternal->which)
1992 case Z_External_universeReport:
1993 print_universe_report(iLevel, pExternal->u.universeReport);
1997 print_level(iLevel);
1998 printf("Type: %d\n", pExternal->which);
2004 static int process_Z3950_resourceControlRequest(Z_ResourceControlRequest *req)
2006 printf("Received ResourceControlRequest.\n");
2007 print_referenceId(1, req->referenceId);
2008 print_bool(1, "Suspended Flag", req->suspendedFlag);
2009 print_int(1, "Partial Results Available", req->partialResultsAvailable);
2010 print_bool(1, "Response Required", req->responseRequired);
2011 print_bool(1, "Triggered Request Flag", req->triggeredRequestFlag);
2012 print_external(1, req->resourceReport);
2016 static void process_Z3950_ESResponse(Z_ExtendedServicesResponse *res)
2019 switch (*res->operationStatus)
2021 case Z_ExtendedServicesResponse_done:
2024 case Z_ExtendedServicesResponse_accepted:
2025 printf("accepted\n");
2027 case Z_ExtendedServicesResponse_failure:
2028 printf("failure\n");
2029 display_diagrecs(res->diagnostics, res->num_diagnostics);
2032 printf("unknown\n");
2034 if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
2035 (res->num_diagnostics != 0) )
2037 display_diagrecs(res->diagnostics, res->num_diagnostics);
2039 print_refid (res->referenceId);
2040 if (res->taskPackage &&
2041 res->taskPackage->which == Z_External_extendedService)
2043 Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
2044 Odr_oct *id = taskPackage->targetReference;
2045 Z_External *ext = taskPackage->taskSpecificParameters;
2049 printf("Target Reference: ");
2050 print_stringn((const char *) id->buf, id->len);
2053 if (ext->which == Z_External_update)
2055 Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
2056 if (utp && utp->targetPart)
2058 Z_IUTargetPart *targetPart = utp->targetPart;
2061 for (i = 0; i<targetPart->num_taskPackageRecords; i++)
2064 Z_IUTaskPackageRecordStructure *tpr =
2065 targetPart->taskPackageRecords[i];
2066 printf("task package record %d\n", i+1);
2067 if (tpr->which == Z_IUTaskPackageRecordStructure_record)
2069 display_record (tpr->u.record);
2073 printf("other type\n");
2078 if (ext->which == Z_External_itemOrder)
2080 Z_IOTaskPackage *otp = ext->u.itemOrder->u.taskPackage;
2082 if (otp && otp->targetPart)
2084 if (otp->targetPart->itemRequest)
2086 Z_External *ext = otp->targetPart->itemRequest;
2087 if (ext->which == Z_External_octet)
2089 Odr_oct *doc = ext->u.octet_aligned;
2090 printf("Got itemRequest doc %.*s\n",
2091 doc->len, doc->buf);
2094 else if (otp->targetPart->statusOrErrorReport)
2096 Z_External *ext = otp->targetPart->statusOrErrorReport;
2097 if (ext->which == Z_External_octet)
2099 Odr_oct *doc = ext->u.octet_aligned;
2100 printf("Got Status or Error Report doc %.*s\n",
2101 doc->len, doc->buf);
2107 if (res->taskPackage && res->taskPackage->which == Z_External_octet)
2109 Odr_oct *doc = res->taskPackage->u.octet_aligned;
2110 printf("%.*s\n", doc->len, doc->buf);
2114 static const char *get_ill_element(void *clientData, const char *element)
2119 static Z_External *create_external_itemRequest(void)
2121 struct ill_get_ctl ctl;
2122 ILL_ItemRequest *req;
2124 int item_request_size = 0;
2125 char *item_request_buf = 0;
2129 ctl.f = get_ill_element;
2131 req = ill_get_ItemRequest(&ctl, "ill", 0);
2133 printf("ill_get_ItemRequest failed\n");
2135 if (!ill_ItemRequest(out, &req, 0, 0))
2139 ill_ItemRequest(print, &req, 0, 0);
2142 item_request_buf = odr_getbuf (out, &item_request_size, 0);
2143 if (item_request_buf)
2144 odr_setbuf (out, item_request_buf, item_request_size, 1);
2145 printf("Couldn't encode ItemRequest, size %d\n", item_request_size);
2150 item_request_buf = odr_getbuf (out, &item_request_size, 0);
2151 r = (Z_External *) odr_malloc(out, sizeof(*r));
2152 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2153 r->indirect_reference = 0;
2155 r->which = Z_External_single;
2156 r->u.single_ASN1_type =
2157 odr_create_Odr_oct(out, item_request_buf, item_request_size);
2158 do_hex_dump(item_request_buf,item_request_size);
2163 static Z_External *create_external_ILL_APDU(void)
2165 struct ill_get_ctl ctl;
2168 int ill_request_size = 0;
2169 char *ill_request_buf = 0;
2173 ctl.f = get_ill_element;
2175 ill_apdu = ill_get_APDU(&ctl, "ill", 0);
2177 if (!ill_APDU (out, &ill_apdu, 0, 0))
2181 printf("-------------------\n");
2182 ill_APDU(print, &ill_apdu, 0, 0);
2184 printf("-------------------\n");
2186 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2187 if (ill_request_buf)
2188 odr_setbuf (out, ill_request_buf, ill_request_size, 1);
2189 printf("Couldn't encode ILL-Request, size %d\n", ill_request_size);
2194 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2196 r = (Z_External *) odr_malloc(out, sizeof(*r));
2197 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2198 r->indirect_reference = 0;
2200 r->which = Z_External_single;
2201 r->u.single_ASN1_type = odr_create_Odr_oct(out, ill_request_buf,
2208 static Z_External *create_ItemOrderExternal(const char *type, int itemno,
2209 const char *xml_buf,
2212 Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
2213 r->direct_reference = odr_oiddup(out, yaz_oid_extserv_item_order);
2214 r->indirect_reference = 0;
2217 r->which = Z_External_itemOrder;
2219 r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
2220 memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
2221 r->u.itemOrder->which=Z_IOItemOrder_esRequest;
2223 r->u.itemOrder->u.esRequest = (Z_IORequest *)
2224 odr_malloc(out,sizeof(Z_IORequest));
2225 memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
2227 r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
2228 odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
2229 memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
2230 r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
2231 odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
2232 memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
2234 r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
2235 r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
2236 r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
2238 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
2239 (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
2240 memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
2241 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
2243 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
2244 odr_intdup(out, itemno);
2245 if (!strcmp (type, "item") || !strcmp(type, "2"))
2247 printf("using item-request\n");
2248 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2249 create_external_itemRequest();
2251 else if (!strcmp(type, "ill") || !strcmp(type, "1"))
2253 printf("using ILL-request\n");
2254 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2255 create_external_ILL_APDU();
2257 else if (!strcmp(type, "xml") || !strcmp(type, "3"))
2259 printf("using XML ILL-request\n");
2263 printf("no docoument added\n");
2264 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2268 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2269 z_ext_record_oid(out, yaz_oid_recsyn_xml, xml_buf, xml_len);
2273 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2278 static int send_Z3950_itemorder(const char *type, int itemno,
2279 const char *xml_buf, int xml_len)
2281 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2282 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2284 req->referenceId = set_refid (out);
2286 req->packageType = odr_oiddup(out, yaz_oid_extserv_item_order);
2287 req->packageName = esPackageName;
2289 req->taskSpecificParameters = create_ItemOrderExternal(type, itemno,
2295 static int only_z3950(void)
2299 printf("Not connected yet\n");
2302 if (protocol == PROTO_HTTP)
2304 printf("Not supported by SRW\n");
2310 static int cmd_update_common(const char *arg, int version);
2312 static int cmd_update(const char *arg)
2314 return cmd_update_common(arg, 1);
2317 static int cmd_update0(const char *arg)
2319 return cmd_update_common(arg, 0);
2322 static int send_Z3950_update(int version, int action_no, const char *recid,
2323 char *rec_buf, int rec_len);
2326 static int send_SRW_update(int action_no, const char *recid,
2327 char *rec_buf, int rec_len);
2330 static int cmd_update_common(const char *arg, int version)
2336 const char *recid = 0;
2342 if (parse_cmd_doc(&arg, out, &action_buf, &action_len) == 0)
2344 printf("Use: update action recid [fname]\n");
2345 printf(" where action is one of insert,replace,delete.update\n");
2346 printf(" recid is some record ID. Use none for no ID\n");
2347 printf(" fname is file of record to be updated\n");
2351 if (parse_cmd_doc(&arg, out, &recid_buf, &recid_len) == 0)
2353 printf("Missing recid\n");
2357 if (!strcmp(action_buf, "insert"))
2358 action_no = Z_IUOriginPartToKeep_recordInsert;
2359 else if (!strcmp(action_buf, "replace"))
2360 action_no = Z_IUOriginPartToKeep_recordReplace;
2361 else if (!strcmp(action_buf, "delete"))
2362 action_no = Z_IUOriginPartToKeep_recordDelete;
2363 else if (!strcmp(action_buf, "update"))
2364 action_no = Z_IUOriginPartToKeep_specialUpdate;
2367 printf("Bad action: %s\n", action_buf);
2368 printf("Possible values: insert, replace, delete, update\n");
2372 if (strcmp(recid_buf, "none")) /* none means no record ID */
2376 if (parse_cmd_doc(&arg, out, &rec_buf, &rec_len) == 0)
2380 if (protocol == PROTO_HTTP)
2381 return send_SRW_update(action_no, recid, rec_buf, rec_len);
2383 return send_Z3950_update(version, action_no, recid, rec_buf, rec_len);
2387 static int send_SRW_update(int action_no, const char *recid,
2388 char *rec_buf, int rec_len)
2396 Z_SRW_PDU *srw = yaz_srw_get(out, Z_SRW_update_request);
2397 Z_SRW_updateRequest *sr = srw->u.update_request;
2401 case Z_IUOriginPartToKeep_recordInsert:
2402 sr->operation = "info:srw/action/1/create";
2404 case Z_IUOriginPartToKeep_recordReplace:
2405 sr->operation = "info:srw/action/1/replace";
2407 case Z_IUOriginPartToKeep_recordDelete:
2408 sr->operation = "info:srw/action/1/delete";
2413 sr->record = yaz_srw_get_record(out);
2414 sr->record->recordData_buf = rec_buf;
2415 sr->record->recordData_len = rec_len;
2416 sr->record->recordSchema = record_schema;
2419 sr->recordId = odr_strdup(out, recid);
2420 return send_srw(srw);
2425 static int send_Z3950_update(int version, int action_no, const char *recid,
2426 char *rec_buf, int rec_len)
2428 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
2429 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2431 Z_External *record_this = 0;
2433 record_this = z_ext_record_oid(out, yaz_oid_recsyn_xml,
2439 printf("No last record (update ignored)\n");
2442 record_this = record_last;
2445 req->packageType = odr_oiddup(out, (version == 0 ?
2446 yaz_oid_extserv_database_update_first_version :
2447 yaz_oid_extserv_database_update));
2449 req->packageName = esPackageName;
2451 req->referenceId = set_refid (out);
2453 r = req->taskSpecificParameters = (Z_External *)
2454 odr_malloc(out, sizeof(*r));
2455 r->direct_reference = req->packageType;
2456 r->indirect_reference = 0;
2460 Z_IU0OriginPartToKeep *toKeep;
2461 Z_IU0SuppliedRecords *notToKeep;
2463 r->which = Z_External_update0;
2464 r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2465 r->u.update0->which = Z_IUUpdate_esRequest;
2466 r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2467 odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2468 toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2469 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2471 toKeep->databaseName = databaseNames[0];
2475 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2477 record_schema, out);
2479 toKeep->elementSetName = 0;
2481 toKeep->action = odr_intdup(out, action_no);
2483 notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2484 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2486 notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2487 odr_malloc(out, sizeof(*notToKeep->elements));
2488 notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2489 odr_malloc(out, sizeof(**notToKeep->elements));
2490 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2491 notToKeep->elements[0]->u.opaque = recid ?
2492 odr_create_Odr_oct(out, recid, strlen(recid)) : 0;
2493 notToKeep->elements[0]->supplementalId = 0;
2494 notToKeep->elements[0]->correlationInfo = 0;
2495 notToKeep->elements[0]->record = record_this;
2499 Z_IUOriginPartToKeep *toKeep;
2500 Z_IUSuppliedRecords *notToKeep;
2502 r->which = Z_External_update;
2503 r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2504 r->u.update->which = Z_IUUpdate_esRequest;
2505 r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2506 odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2507 toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2508 odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2510 toKeep->databaseName = databaseNames[0];
2514 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2516 record_schema, out);
2518 toKeep->elementSetName = 0;
2519 toKeep->actionQualifier = 0;
2520 toKeep->action = odr_intdup(out, action_no);
2522 notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2523 odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2525 notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2526 odr_malloc(out, sizeof(*notToKeep->elements));
2527 notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2528 odr_malloc(out, sizeof(**notToKeep->elements));
2529 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2530 notToKeep->elements[0]->u.opaque = recid ?
2531 odr_create_Odr_oct(out, recid, strlen(recid)) : 0;
2532 notToKeep->elements[0]->supplementalId = 0;
2533 notToKeep->elements[0]->correlationInfo = 0;
2534 notToKeep->elements[0]->record = record_this;
2542 static int cmd_xmles(const char *arg)
2552 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2553 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2556 Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
2558 req->referenceId = set_refid (out);
2559 req->taskSpecificParameters = ext;
2560 ext->indirect_reference = 0;
2561 ext->descriptor = 0;
2562 ext->which = Z_External_octet;
2563 ext->u.single_ASN1_type = (Odr_oct *) odr_malloc(out, sizeof(Odr_oct));
2564 sscanf(arg, "%50s%n", oid_str, &noread);
2567 printf("Missing OID for xmles\n");
2571 if (parse_cmd_doc(&arg, out, &asn_buf,
2572 &ext->u.single_ASN1_type->len) == 0)
2575 ext->u.single_ASN1_type->buf = asn_buf;
2577 oid = yaz_string_to_oid_odr(yaz_oid_std(),
2578 CLASS_EXTSERV, oid_str, out);
2581 printf("Bad OID: %s\n", oid_str);
2585 req->packageType = oid;
2587 ext->direct_reference = oid;
2595 static int cmd_itemorder(const char *arg)
2605 if (sscanf(arg, "%10s %d%n", type, &itemno, &no_read) < 2)
2608 parse_cmd_doc(&arg, out, &xml_buf, &xml_len);
2611 send_Z3950_itemorder(type, itemno, xml_buf, xml_len);
2615 static void show_opt(const char *arg, void *clientData)
2620 static int cmd_zversion(const char *arg)
2623 z3950_version = atoi(arg);
2625 printf("version is %d\n", z3950_version);
2629 static int cmd_options(const char *arg)
2635 r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2637 printf("Unknown option(s) near %s\n", arg+pos);
2641 yaz_init_opt_decode(&z3950_options, show_opt, 0);
2647 static int cmd_explain(const char *arg)
2649 if (protocol != PROTO_HTTP)
2660 /* save this for later .. when fetching individual records */
2661 sr = yaz_srw_get_pdu(out, Z_SRW_explain_request, sru_version);
2662 if (recordsyntax_size == 1
2663 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2664 sr->u.explain_request->recordPacking = "xml";
2672 static int cmd_init(const char *arg)
2676 wrbuf_rewind(cur_host);
2677 if (!strstr(arg, "://") && strcmp(sru_method, "soap"))
2678 wrbuf_puts(cur_host, "http://");
2679 wrbuf_puts(cur_host, arg);
2683 send_Z3950_initRequest(wrbuf_cstr(cur_host));
2687 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url)
2689 Z_GDU *p = z_get_HTTP_Request(odr);
2690 const char *host = url;
2691 const char *cp0 = strstr(host, "://");
2692 const char *cp1 = 0;
2698 cp1 = strchr(cp0, '/');
2700 cp1 = cp0 + strlen(cp0);
2704 char *h = (char*) odr_malloc(odr, cp1 - cp0 + 1);
2705 memcpy (h, cp0, cp1 - cp0);
2707 z_HTTP_header_add(odr, &p->u.HTTP_Request->headers, "Host", h);
2709 p->u.HTTP_Request->path = odr_strdup(odr, *cp1 ? cp1 : "/");
2713 static WRBUF get_url(const char *uri, WRBUF username, WRBUF password,
2714 int *code, int show_headers)
2717 ODR out = odr_createmem(ODR_ENCODE);
2718 ODR in = odr_createmem(ODR_DECODE);
2719 Z_GDU *gdu = get_HTTP_Request_url(out, uri);
2721 gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
2722 if (username && password)
2724 z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
2725 wrbuf_cstr(username),
2726 wrbuf_cstr(password));
2728 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
2730 if (!z_GDU(out, &gdu, 0, 0))
2732 yaz_log(YLOG_WARN, "Can not encode HTTP request URL:%s", uri);
2737 COMSTACK conn = cs_create_host(uri, 1, &add);
2738 if (cs_connect(conn, add) < 0)
2739 yaz_log(YLOG_WARN, "Can not connect to URL:%s", uri);
2743 char *buf = odr_getbuf(out, &len, 0);
2745 if (cs_put(conn, buf, len) < 0)
2746 yaz_log(YLOG_WARN, "cs_put failed URL:%s", uri);
2749 char *netbuffer = 0;
2751 int res = cs_get(conn, &netbuffer, &netlen);
2754 yaz_log(YLOG_WARN, "cs_get failed URL:%s", uri);
2759 odr_setbuf(in, netbuffer, res, 0);
2760 if (!z_GDU(in, &gdu, 0, 0)
2761 || gdu->which != Z_GDU_HTTP_Response)
2763 yaz_log(YLOG_WARN, "decode failed URL: %s", uri);
2767 Z_HTTP_Response *res = gdu->u.HTTP_Response;
2768 struct Z_HTTP_Header *h;
2769 result = wrbuf_alloc();
2773 wrbuf_printf(result, "HTTP %d\n", res->code);
2774 for (h = res->headers; h; h = h->next)
2775 wrbuf_printf(result, "%s: %s\n",
2779 wrbuf_write(result, res->content_buf, res->content_len);
2793 static int cmd_url(const char *arg)
2796 WRBUF res = get_url(arg, 0, 0, &code, 1);
2799 if (wrbuf_len(res) > 1200)
2801 fwrite(wrbuf_buf(res), 1, 1200, stdout);
2802 printf(".. out of %lld\n", (long long) wrbuf_len(res));
2805 puts(wrbuf_cstr(res));
2811 static int cmd_sru(const char *arg)
2815 printf("SRU method is: %s\n", sru_method);
2816 printf("SRU version is: %s\n", sru_version);
2820 int r = sscanf(arg, "%9s %9s %9s", sru_method, sru_version,
2824 if (!yaz_matchstr(sru_method, "post"))
2826 else if (!yaz_matchstr(sru_method, "get"))
2828 else if (!yaz_matchstr(sru_method, "soap"))
2830 else if (!yaz_matchstr(sru_method, "solr"))
2834 strcpy(sru_method, "soap");
2835 printf("Unknown SRU method: %s\n", arg);
2836 printf("Specify one of POST, GET, SOAP, SOLR\n");
2843 static int cmd_find(const char *arg)
2847 printf("Find what?\n");
2850 if (protocol == PROTO_HTTP)
2857 if (!send_SRW_searchRequest(arg))
2865 if (wrbuf_len(cur_host) && auto_reconnect)
2872 if (!send_Z3950_searchRequest(arg))
2874 wait_and_handle_response(0);
2880 printf("Unable to reconnect\n");
2884 wait_and_handle_response(0);
2890 if (!send_Z3950_searchRequest(arg))
2895 printf("Not connected yet\n");
2902 static int cmd_facets(const char *arg)
2905 facet_odr = odr_createmem(ODR_ENCODE);
2906 odr_reset(facet_odr);
2911 printf("Facets cleared.\n");
2914 facet_list = yaz_pqf_parse_facet_list(facet_odr, arg);
2917 printf("Invalid facet list: %s", arg);
2923 static int cmd_delete(const char *arg)
2927 if (!send_Z3950_deleteResultSetRequest(arg))
2932 static int cmd_ssub(const char *arg)
2934 smallSetUpperBound = odr_strtol(arg, 0, 10);
2938 static int cmd_lslb(const char *arg)
2940 largeSetLowerBound = odr_strtol(arg, 0, 10);
2944 static int cmd_mspn(const char *arg)
2946 mediumSetPresentNumber = odr_strtol(arg, 0, 10);
2950 static int cmd_status(const char *arg)
2952 printf("smallSetUpperBound: " ODR_INT_PRINTF "\n",
2953 smallSetUpperBound);
2954 printf("largeSetLowerBound: " ODR_INT_PRINTF "\n",
2955 largeSetLowerBound);
2956 printf("mediumSetPresentNumber: " ODR_INT_PRINTF "\n",
2957 mediumSetPresentNumber);
2961 static int cmd_setnames(const char *arg)
2963 if (*arg == '1') /* enable ? */
2965 else if (*arg == '0') /* disable ? */
2967 else if (setnumber < 0) /* no args, toggle .. */
2973 printf("Set numbering enabled.\n");
2975 printf("Set numbering disabled.\n");
2979 /* PRESENT SERVICE ----------------------------- */
2981 size_t check_token(const char *haystack, const char *token)
2983 size_t len = strlen(token);
2985 if (strncmp(haystack, token, len))
2987 for (extra = 0; haystack[extra + len] != '\0'; extra++)
2988 if (!strchr(" \r\n\t", haystack[extra + len]))
2993 return 0; /* no whitespace after token */
2998 static int parse_show_args(const char *arg_c, char *setstring,
2999 Odr_int *start, Odr_int *number)
3002 Odr_int start_position;
3006 sprintf(setstring, "%d", setnumber);
3010 token_len = check_token(arg_c, "format");
3019 token_len = check_token(arg_c, "all");
3022 *number = last_hit_count;
3026 start_position = odr_strtol(arg_c, &end_ptr, 10);
3027 if (end_ptr == arg_c)
3029 *start = start_position;
3030 if (*end_ptr == '\0')
3032 while (yaz_isspace(*end_ptr))
3034 if (*end_ptr != '+')
3036 printf("Bad show arg: expected +. Got %s\n", end_ptr);
3041 *number = odr_strtol(arg_c, &end_ptr, 10);
3042 if (end_ptr == arg_c)
3044 printf("Bad show arg: expected number after +\n");
3047 if (*end_ptr == '\0')
3049 while (yaz_isspace(*end_ptr))
3051 if (*end_ptr != '+')
3053 printf("Bad show arg: + expected. Got %s\n", end_ptr);
3056 strcpy(setstring, end_ptr+1);
3060 static int send_Z3950_presentRequest(const char *arg)
3062 Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
3063 Z_PresentRequest *req = apdu->u.presentRequest;
3064 Z_RecordComposition compo;
3066 char setstring[100];
3068 req->referenceId = set_refid(out);
3070 if (!parse_show_args(arg, setstring, &setno, &nos))
3073 req->resultSetId = setstring;
3075 req->resultSetStartPoint = &setno;
3076 req->numberOfRecordsRequested = &nos;
3078 if (recordsyntax_size)
3079 req->preferredRecordSyntax =
3080 yaz_string_to_oid_odr(yaz_oid_std(),
3081 CLASS_RECSYN, recordsyntax_list[0], out);
3083 if (record_schema || recordsyntax_size >= 2)
3085 req->recordComposition = &compo;
3086 compo.which = Z_RecordComp_complex;
3087 compo.u.complex = (Z_CompSpec *)
3088 odr_malloc(out, sizeof(*compo.u.complex));
3089 compo.u.complex->selectAlternativeSyntax = (bool_t *)
3090 odr_malloc(out, sizeof(bool_t));
3091 *compo.u.complex->selectAlternativeSyntax = 0;
3093 compo.u.complex->generic = (Z_Specification *)
3094 odr_malloc(out, sizeof(*compo.u.complex->generic));
3096 compo.u.complex->generic->which = Z_Schema_oid;
3098 compo.u.complex->generic->schema.oid = 0;
3101 compo.u.complex->generic->schema.oid =
3102 yaz_string_to_oid_odr(yaz_oid_std(),
3103 CLASS_SCHEMA, record_schema, out);
3105 if (!compo.u.complex->generic->schema.oid)
3107 /* OID wasn't a schema! Try record syntax instead. */
3108 compo.u.complex->generic->schema.oid = (Odr_oid *)
3109 yaz_string_to_oid_odr(yaz_oid_std(),
3110 CLASS_RECSYN, record_schema, out);
3113 if (!elementSetNames)
3114 compo.u.complex->generic->elementSpec = 0;
3117 compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
3118 odr_malloc(out, sizeof(Z_ElementSpec));
3119 compo.u.complex->generic->elementSpec->which =
3120 Z_ElementSpec_elementSetName;
3121 compo.u.complex->generic->elementSpec->u.elementSetName =
3122 elementSetNames->u.generic;
3124 compo.u.complex->num_dbSpecific = 0;
3125 compo.u.complex->dbSpecific = 0;
3127 compo.u.complex->num_recordSyntax = 0;
3128 compo.u.complex->recordSyntax = 0;
3129 if (recordsyntax_size >= 2)
3132 compo.u.complex->num_recordSyntax = recordsyntax_size;
3133 compo.u.complex->recordSyntax = (Odr_oid **)
3134 odr_malloc(out, recordsyntax_size * sizeof(Odr_oid*));
3135 for (i = 0; i < recordsyntax_size; i++)
3136 compo.u.complex->recordSyntax[i] =
3137 yaz_string_to_oid_odr(yaz_oid_std(),
3138 CLASS_RECSYN, recordsyntax_list[i], out);
3141 else if (elementSetNames)
3143 req->recordComposition = &compo;
3144 compo.which = Z_RecordComp_simple;
3145 compo.u.simple = elementSetNames;
3148 printf("Sent presentRequest (" ODR_INT_PRINTF "+" ODR_INT_PRINTF ").\n",
3154 static int send_SRW_presentRequest(const char *arg)
3156 char setstring[100];
3158 Z_SRW_PDU *sr = srw_sr;
3162 if (!parse_show_args(arg, setstring, &setno, &nos))
3164 if (*sru_recordPacking)
3165 sr->u.request->recordPacking = sru_recordPacking;
3166 sr->u.request->startRecord = odr_intdup(out, setno);
3167 sru_maximumRecords = nos;
3168 sr->u.request->maximumRecords = odr_intdup(out, nos);
3169 sr->u.request->recordSchema = record_schema;
3170 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
3171 sr->u.request->recordPacking = "xml";
3172 return send_srw(sr);
3176 static void close_session(void)
3188 static void process_Z3950_close(Z_Close *req)
3190 Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
3191 Z_Close *res = apdu->u.close;
3193 static char *reasons[] =
3198 "cost limit reached",
3200 "security violation",
3207 printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
3208 req->diagnosticInformation ? req->diagnosticInformation : "NULL");
3213 *res->closeReason = Z_Close_finished;
3215 printf("Sent response.\n");
3220 static int cmd_show(const char *arg)
3222 if (protocol == PROTO_HTTP)
3229 if (!send_SRW_presentRequest(arg))
3239 printf("Not connected yet\n");
3242 if (!send_Z3950_presentRequest(arg))
3248 static void exit_client(int code)
3253 ccl_qual_rm(&bibset);
3254 yaz_cookies_destroy(yaz_cookies);
3255 file_history_save(file_history);
3256 file_history_destroy(&file_history);
3257 nmem_destroy(nmem_auth);
3258 wrbuf_destroy(cur_host);
3262 static int cmd_quit(const char *arg)
3264 printf("See you later, alligator.\n");
3270 static int cmd_cancel(const char *arg)
3276 Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
3277 Z_TriggerResourceControlRequest *req =
3278 apdu->u.triggerResourceControlRequest;
3283 sscanf(arg, "%15s", command);
3287 if (session_initResponse &&
3288 !ODR_MASK_GET(session_initResponse->options,
3289 Z_Options_triggerResourceCtrl))
3291 printf("Target doesn't support cancel (trigger resource ctrl)\n");
3294 *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
3295 req->resultSetWanted = &rfalse;
3296 req->referenceId = set_refid(out);
3299 printf("Sent cancel request\n");
3300 if (!strcmp(command, "wait"))
3306 static int cmd_cancel_find(const char *arg)
3311 fres = cmd_find(arg);
3314 return cmd_cancel("");
3319 static int send_Z3950_scanrequest(const char *set, const char *query,
3320 Odr_int *pos, Odr_int num, const char *term)
3322 Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
3323 Z_ScanRequest *req = apdu->u.scanRequest;
3327 printf("query: %s\n", query);
3328 if (queryType == QueryType_CCL2RPN)
3331 struct ccl_rpn_node *rpn;
3333 rpn = ccl_find_str(bibset, query, &error, &pos);
3336 printf("CCL ERROR: %s\n", ccl_err_msg(error));
3340 yaz_string_to_oid_odr(yaz_oid_std(),
3341 CLASS_ATTSET, "Bib-1", out);
3342 if (!(req->termListAndStartPoint = ccl_scan_query(out, rpn)))
3344 printf("Couldn't convert CCL to Scan term\n");
3347 ccl_rpn_delete(rpn);
3351 YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
3354 if (!(req->termListAndStartPoint =
3355 yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
3357 const char *pqf_msg;
3359 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
3361 printf("%*s^\n", ioff+7, "");
3362 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
3363 yaz_pqf_destroy(pqf_parser);
3366 yaz_pqf_destroy(pqf_parser);
3368 if (queryCharset && outputCharset)
3370 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
3373 printf("Conversion from %s to %s unsupported\n",
3374 outputCharset, queryCharset);
3377 yaz_query_charset_convert_apt(req->termListAndStartPoint, out, cd);
3378 yaz_iconv_close(cd);
3382 if (req->termListAndStartPoint->term &&
3383 req->termListAndStartPoint->term->which == Z_Term_general &&
3384 req->termListAndStartPoint->term->u.general)
3386 req->termListAndStartPoint->term->u.general->buf =
3387 odr_strdup(out, term);
3388 req->termListAndStartPoint->term->u.general->len = strlen(term);
3391 req->referenceId = set_refid(out);
3392 req->num_databaseNames = num_databaseNames;
3393 req->databaseNames = databaseNames;
3394 req->numberOfTermsRequested = #
3395 req->preferredPositionInResponse = pos;
3396 req->stepSize = odr_intdup(out, scan_stepSize);
3399 yaz_oi_set_string_oid(&req->otherInfo, out,
3400 yaz_oid_userinfo_scan_set, 1, set);
3406 static int send_sortrequest(const char *arg, int newset)
3408 Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
3409 Z_SortRequest *req = apdu->u.sortRequest;
3410 Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
3411 odr_malloc(out, sizeof(*sksl));
3417 sprintf(setstring, "%d", setnumber);
3419 sprintf(setstring, "default");
3421 req->referenceId = set_refid(out);
3423 req->num_inputResultSetNames = 1;
3424 req->inputResultSetNames = (Z_InternationalString **)
3425 odr_malloc(out, sizeof(*req->inputResultSetNames));
3426 req->inputResultSetNames[0] = odr_strdup(out, setstring);
3428 if (newset && setnumber >= 0)
3429 sprintf(setstring, "%d", ++setnumber);
3431 req->sortedResultSetName = odr_strdup(out, setstring);
3433 req->sortSequence = yaz_sort_spec(out, arg);
3434 if (!req->sortSequence)
3436 printf("Missing sort specifications\n");
3443 static void display_term_info(Z_TermInfo *t)
3446 printf("%s", t->displayTerm);
3447 else if (t->term->which == Z_Term_general)
3448 printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
3450 printf("Term (not general)");
3451 if (t->term->which == Z_Term_general)
3452 sprintf(last_scan_line, "%.*s", t->term->u.general->len,
3453 t->term->u.general->buf);
3455 if (t->globalOccurrences)
3456 printf(" (" ODR_INT_PRINTF ")\n", *t->globalOccurrences);
3461 static void process_Z3950_scanResponse(Z_ScanResponse *res)
3464 Z_Entry **entries = NULL;
3465 int num_entries = 0;
3467 printf("Received ScanResponse\n");
3468 print_refid(res->referenceId);
3469 printf(ODR_INT_PRINTF " entries", *res->numberOfEntriesReturned);
3470 if (res->positionOfTerm)
3471 printf(", position=" ODR_INT_PRINTF, *res->positionOfTerm);
3473 if (*res->scanStatus != Z_Scan_success)
3474 printf("Scan returned code " ODR_INT_PRINTF "\n", *res->scanStatus);
3477 if ((entries = res->entries->entries))
3478 num_entries = res->entries->num_entries;
3479 for (i = 0; i < num_entries; i++)
3481 int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
3482 if (entries[i]->which == Z_Entry_termInfo)
3484 printf("%c ", i + 1 == pos_term ? '*' : ' ');
3485 display_term_info(entries[i]->u.termInfo);
3488 display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
3490 if (res->entries->nonsurrogateDiagnostics)
3491 display_diagrecs(res->entries->nonsurrogateDiagnostics,
3492 res->entries->num_nonsurrogateDiagnostics);
3495 static void process_Z3950_sortResponse(Z_SortResponse *res)
3497 printf("Received SortResponse: status=");
3498 switch (*res->sortStatus)
3500 case Z_SortResponse_success:
3501 printf("success"); break;
3502 case Z_SortResponse_partial_1:
3503 printf("partial"); break;
3504 case Z_SortResponse_failure:
3505 printf("failure"); break;
3507 printf("unknown (" ODR_INT_PRINTF ")", *res->sortStatus);
3510 print_refid (res->referenceId);
3511 if (res->diagnostics)
3512 display_diagrecs(res->diagnostics,
3513 res->num_diagnostics);
3516 static void process_Z3950_deleteResultSetResponse(
3517 Z_DeleteResultSetResponse *res)
3519 printf("Got deleteResultSetResponse status=" ODR_INT_PRINTF "\n",
3520 *res->deleteOperationStatus);
3521 if (res->deleteListStatuses)
3524 for (i = 0; i < res->deleteListStatuses->num; i++)
3526 printf("%s status=" ODR_INT_PRINTF "\n",
3527 res->deleteListStatuses->elements[i]->id,
3528 *res->deleteListStatuses->elements[i]->status);
3533 static int cmd_sort_generic(const char *arg, int newset)
3537 if (session_initResponse &&
3538 !ODR_MASK_GET(session_initResponse->options, Z_Options_sort))
3540 printf("Target doesn't support sort\n");
3545 if (send_sortrequest(arg, newset) < 0)
3552 static int cmd_sort(const char *arg)
3554 return cmd_sort_generic(arg, 0);
3557 static int cmd_sort_newset(const char *arg)
3559 return cmd_sort_generic(arg, 1);
3562 static int cmd_scanstep(const char *arg)
3564 scan_stepSize = atoi(arg);
3568 static int cmd_scanpos(const char *arg)
3570 if (!strcmp(arg, "none"))
3571 strcpy(scan_position, "none");
3575 int r = sscanf(arg, "%d", &dummy);
3576 if (r == 1 && strlen(arg) < sizeof(scan_position)-1)
3577 strcpy(scan_position, arg);
3579 printf("specify number of none for scanpos\n");
3584 static int cmd_scansize(const char *arg)
3586 int r = sscanf(arg, "%d", &scan_size);
3592 static int cmd_scan_common(const char *set, const char *arg)
3594 Odr_int pos, *pos_p = 0;
3595 const char *scan_term = 0;
3596 const char *scan_query = 0;
3602 scan_query = last_scan_query;
3603 scan_term = last_scan_line;
3607 strcpy(last_scan_query, arg);
3609 if (strcmp(scan_position, "none"))
3611 pos = odr_atoi(scan_position);
3616 if (protocol == PROTO_HTTP)
3623 if (send_SRW_scanRequest(scan_query, pos_p, scan_size) < 0)
3632 if (wrbuf_len(cur_host) && !conn && auto_reconnect)
3635 wait_and_handle_response(0);
3639 if (session_initResponse &&
3640 !ODR_MASK_GET(session_initResponse->options, Z_Options_scan))
3642 printf("Target doesn't support scan\n");
3645 if (send_Z3950_scanrequest(set, scan_query, pos_p,