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>
65 #include <yaz/facet.h>
67 #if HAVE_READLINE_READLINE_H
68 #include <readline/readline.h>
70 #if HAVE_READLINE_HISTORY_H
71 #include <readline/history.h>
76 #include "tabcomplete.h"
79 #define C_PROMPT "Z> "
81 static file_history_t file_history = 0;
83 static char sru_method[10] = "soap";
84 static char sru_version[10] = "1.2";
85 static char *codeset = 0; /* character set for output */
86 static int hex_dump = 0;
87 static char *dump_file_prefix = 0;
88 static ODR out, in, print; /* encoding and decoding streams */
90 static ODR srw_sr_odr_out = 0;
91 static Z_SRW_PDU *srw_sr = 0;
93 static FILE *apdu_file = 0;
94 static FILE *ber_file = 0;
95 static COMSTACK conn = 0; /* our z-association */
97 static Z_IdAuthentication *auth = 0; /* our current auth definition */
98 static NMEM nmem_auth = NULL;
100 char *databaseNames[128];
101 int num_databaseNames = 0;
102 static Z_External *record_last = 0;
103 static int setnumber = -1; /* current result set number */
104 static int smallSetUpperBound = 0;
105 static int largeSetLowerBound = 1;
106 static int mediumSetPresentNumber = 0;
107 static Z_ElementSetNames *elementSetNames = 0;
108 static Z_FacetList *facet_list = 0;
109 static Odr_int setno = 1; /* current set offset */
110 static enum oid_proto protocol = PROTO_Z3950; /* current app protocol */
111 #define RECORDSYNTAX_MAX 20
112 static char *recordsyntax_list[RECORDSYNTAX_MAX];
113 static int recordsyntax_size = 0;
115 static char *record_schema = 0;
116 static int sent_close = 0;
117 static NMEM session_mem = NULL; /* memory handle for init-response */
118 static Z_InitResponse *session_initResponse = 0; /* session parameters */
119 static char last_scan_line[512] = "0";
120 static char last_scan_query[512] = "0";
121 static char ccl_fields[512] = "default.bib";
122 /* ### How can I set this path to use wherever YAZ is installed? */
123 static char cql_fields[512] = "/usr/local/share/yaz/etc/pqf.properties";
124 static char *esPackageName = 0;
125 static char *yazProxy = 0;
126 static int kilobytes = 1024;
127 static char *negotiationCharset = 0;
128 static int negotiationCharsetRecords = 1;
129 static int negotiationCharsetVersion = 3;
130 static char *outputCharset = 0;
131 static char *marcCharset = 0;
132 static char *queryCharset = 0;
133 static char* yazLang = 0;
135 static char last_cmd[32] = "?";
136 static FILE *marc_file = 0;
137 static char *refid = NULL;
138 static int auto_reconnect = 0;
139 static int auto_wait = 1;
140 static Odr_bitmask z3950_options;
141 static int z3950_version = 3;
142 static int scan_stepSize = 0;
143 static int scan_position = 1;
144 static int scan_size = 20;
145 static char cur_host[200];
146 static Odr_int last_hit_count = 0;
156 static QueryType queryType = QueryType_Prefix;
158 static CCL_bibset bibset; /* CCL bibset handle */
159 static cql_transform_t cqltrans = 0; /* CQL context-set handle */
161 #if HAVE_READLINE_COMPLETION_OVER
164 /* readline doesn't have this var. Define it ourselves. */
165 int rl_attempted_completion_over = 0;
168 #define maxOtherInfosSupported 10
170 Odr_oid oid[OID_SIZE];
172 } extraOtherInfos[maxOtherInfosSupported];
174 static void process_cmd_line(char* line);
175 #if HAVE_READLINE_READLINE_H
176 static char **readline_completer(char *text, int start, int end);
178 static char *command_generator(const char *text, int state);
179 static int cmd_register_tab(const char* arg);
180 static int cmd_querycharset(const char *arg);
182 static void close_session(void);
184 static void marc_file_write(const char *buf, size_t sz);
186 static void wait_and_handle_response(int one_response_only);
187 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url);
189 ODR getODROutputStream(void)
194 static const char* query_type_as_string(QueryType q)
198 case QueryType_Prefix: return "prefix (RPN sent to server)";
199 case QueryType_CCL: return "CCL (CCL sent to server) ";
200 case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
201 case QueryType_CQL: return "CQL (CQL sent to server)";
202 case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
204 return "unknown Query type internal yaz-client error";
208 static void do_hex_dump(const char* buf, size_t len)
214 for (i = 0; i < len ; i = i+16 )
216 printf(" %4.4ld ", (long) i);
217 for (x = 0 ; i+x < len && x < 16; ++x)
219 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
224 if (dump_file_prefix)
227 if (++no < 1000 && strlen(dump_file_prefix) < 500)
231 sprintf(fname, "%s.%03d.raw", dump_file_prefix, no);
232 of = fopen(fname, "wb");
234 if (fwrite(buf, 1, len, of) != len)
236 printf("write failed for %s", fname);
240 printf("close failed for %s", fname);
246 static void add_otherInfos(Z_APDU *a)
248 Z_OtherInformation **oi;
253 yaz_oi_set_facetlist(oi, out, facet_list);
254 for (i = 0; i < maxOtherInfosSupported; ++i)
256 if (oid_oidlen(extraOtherInfos[i].oid) > 0)
257 yaz_oi_set_string_oid(oi, out, extraOtherInfos[i].oid,
258 1, extraOtherInfos[i].value);
262 int send_apdu(Z_APDU *a)
271 z_APDU(print, &a, 0, 0);
274 if (!z_APDU(out, &a, 0, 0))
276 odr_perror(out, "Encoding APDU");
280 buf = odr_getbuf(out, &len, 0);
282 odr_dumpBER(ber_file, buf, len);
283 /* printf ("sending APDU of size %d\n", len); */
284 do_hex_dump(buf, len);
285 if (cs_put(conn, buf, len) < 0)
287 fprintf(stderr, "cs_put: %s\n", cs_errmsg(cs_errno(conn)));
291 odr_reset(out); /* release the APDU structure */
295 static void print_stringn(const char *buf, size_t len)
298 for (i = 0; i < len; i++)
299 if ((buf[i] <= 126 && buf[i] >= 32) || strchr("\n\r\t\f", buf[i]))
300 printf("%c", buf[i]);
302 printf("\\X%02X", ((const unsigned char *)buf)[i]);
305 static void print_refid(Z_ReferenceId *id)
309 printf("Reference Id: ");
310 print_stringn((const char *) id->buf, id->len);
315 static Z_ReferenceId *set_refid(ODR out)
320 id = (Z_ReferenceId *) odr_malloc(out, sizeof(*id));
321 id->size = id->len = strlen(refid);
322 id->buf = (unsigned char *) odr_malloc(out, id->len);
323 memcpy(id->buf, refid, id->len);
327 /* INIT SERVICE ------------------------------- */
329 static void send_Z3950_initRequest(const char* type_and_host)
331 Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
332 Z_InitRequest *req = apdu->u.initRequest;
335 req->options = &z3950_options;
337 ODR_MASK_ZERO(req->protocolVersion);
338 for (i = 0; i<z3950_version; i++)
339 ODR_MASK_SET(req->protocolVersion, i);
341 *req->maximumRecordSize = 1024*kilobytes;
342 *req->preferredMessageSize = 1024*kilobytes;
344 req->idAuthentication = auth;
346 req->referenceId = set_refid(out);
348 if (yazProxy && type_and_host)
350 yaz_oi_set_string_oid(&req->otherInfo, out, yaz_oid_userinfo_proxy,
354 if (negotiationCharset || yazLang)
356 Z_OtherInformation **p;
357 Z_OtherInformationUnit *p0;
359 yaz_oi_APDU(apdu, &p);
361 if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
363 ODR_MASK_SET(req->options, Z_Options_negotiationModel);
365 p0->which = Z_OtherInfo_externallyDefinedInfo;
366 p0->information.externallyDefinedInfo =
367 yaz_set_proposal_charneg_list(out, ",",
370 negotiationCharsetRecords);
374 printf("Sent initrequest.\n");
378 static void render_initUserInfo(Z_OtherInformation *ui1);
379 static void render_diag(Z_DiagnosticFormat *diag);
381 static void pr_opt(const char *opt, void *clientData)
386 static int process_Z3950_initResponse(Z_InitResponse *res)
389 /* save session parameters for later use */
390 session_mem = odr_extract_mem(in);
391 session_initResponse = res;
393 for (ver = 0; ver < 8; ver++)
394 if (!ODR_MASK_GET(res->protocolVersion, ver))
398 printf("Connection rejected by v%d target.\n", ver);
400 printf("Connection accepted by v%d target.\n", ver);
401 if (res->implementationId)
402 printf("ID : %s\n", res->implementationId);
403 if (res->implementationName)
404 printf("Name : %s\n", res->implementationName);
405 if (res->implementationVersion)
406 printf("Version: %s\n", res->implementationVersion);
407 if (res->userInformationField)
409 Z_External *uif = res->userInformationField;
410 if (uif->which == Z_External_userInfo1)
411 render_initUserInfo(uif->u.userInfo1);
414 printf("UserInformationfield:\n");
415 if (!z_External(print, (Z_External**)&uif, 0, 0))
417 odr_perror(print, "Printing userinfo\n");
420 if (uif->which == Z_External_octet)
422 printf("Guessing visiblestring:\n");
423 printf("'%.*s'\n", uif->u.octet_aligned->len,
424 uif->u.octet_aligned->buf);
426 else if (uif->which == Z_External_single)
428 Odr_any *sat = uif->u.single_ASN1_type;
429 if (!oid_oidcmp(uif->direct_reference,
430 yaz_oid_userinfo_oclc_userinfo))
432 Z_OCLC_UserInformation *oclc_ui;
433 ODR decode = odr_createmem(ODR_DECODE);
434 odr_setbuf(decode, (char *) sat->buf, sat->len, 0);
435 if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
436 printf("Bad OCLC UserInformation:\n");
438 printf("OCLC UserInformation:\n");
439 if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
440 printf("Bad OCLC UserInformation spec\n");
445 /* Peek at any private Init-diagnostic APDUs */
446 printf("yaz-client ignoring unrecognised userInformationField: %d-octet External '%.*s'\n",
447 (int) sat->len, sat->len, sat->buf);
454 yaz_init_opt_decode(res->options, pr_opt, 0);
457 if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
460 if (ODR_MASK_GET(res->options, Z_Options_negotiationModel))
462 Z_CharSetandLanguageNegotiation *p =
463 yaz_get_charneg_record(res->otherInfo);
467 char *charset=NULL, *lang=NULL;
470 yaz_get_response_charneg(session_mem, p, &charset, &lang,
473 printf("Accepted character set : %s\n", charset ? charset:"none");
474 printf("Accepted code language : %s\n", lang ? lang:"none");
475 printf("Accepted records in ...: %d\n", selected );
477 if (outputCharset && charset)
479 printf("Converting between %s and %s\n",
480 outputCharset, charset);
481 odr_set_charset(out, charset, outputCharset);
482 odr_set_charset(in, outputCharset, charset);
483 cmd_querycharset(charset);
487 odr_set_charset(out, 0, 0);
488 odr_set_charset(in, 0, 0);
497 static void render_initUserInfo(Z_OtherInformation *ui1)
500 printf("Init response contains %d otherInfo unit%s:\n",
501 ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
503 for (i = 0; i < ui1->num_elements; i++)
505 Z_OtherInformationUnit *unit = ui1->list[i];
506 printf(" %d: otherInfo unit contains ", i+1);
507 if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
508 unit->information.externallyDefinedInfo &&
509 unit->information.externallyDefinedInfo->which ==
512 render_diag(unit->information.externallyDefinedInfo->u.diag1);
514 else if (unit->which != Z_OtherInfo_externallyDefinedInfo)
516 printf("unsupported otherInfo unit->which = %d\n", unit->which);
520 printf("unsupported otherInfo unit external %d\n",
521 unit->information.externallyDefinedInfo ?
522 unit->information.externallyDefinedInfo->which : -2);
528 /* ### should this share code with display_diagrecs()? */
529 static void render_diag(Z_DiagnosticFormat *diag)
533 printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
534 for (i = 0; i < diag->num; i++)
536 Z_DiagnosticFormat_s *ds = diag->elements[i];
537 printf(" %d: ", i+1);
540 case Z_DiagnosticFormat_s_defaultDiagRec: {
541 Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
542 /* ### should check `dd->diagnosticSetId' */
543 printf("code=" ODR_INT_PRINTF " (%s)", *dd->condition,
544 diagbib1_str(*dd->condition));
545 /* Both types of addinfo are the same, so use type-pun */
546 if (dd->u.v2Addinfo != 0)
547 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
550 case Z_DiagnosticFormat_s_explicitDiagnostic:
551 printf("Explicit diagnostic (not supported)");
554 printf("Unrecognised diagnostic type %d", ds->which);
558 if (ds->message != 0)
559 printf(", message='%s'", ds->message);
565 static int set_base(const char *arg)
570 for (i = 0; i<num_databaseNames; i++)
571 xfree(databaseNames[i]);
572 num_databaseNames = 0;
576 if (!(cp = strchr(arg, ' ')))
577 cp = arg + strlen(arg);
580 databaseNames[num_databaseNames] = (char *)xmalloc(1 + cp - arg);
581 memcpy(databaseNames[num_databaseNames], arg, cp - arg);
582 databaseNames[num_databaseNames][cp - arg] = '\0';
584 for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
593 if (num_databaseNames == 0)
595 num_databaseNames = 1;
596 databaseNames[0] = xstrdup("");
601 static int parse_cmd_doc(const char **arg, ODR out, char **buf, int *len)
604 while (**arg && strchr(" \t\n\r\f", **arg))
610 else if ((*arg)[0] == '<')
615 const char *arg_start = ++(*arg);
617 while (**arg != '\0' && **arg != ' ')
620 fname = odr_strdupn(out, arg_start, *arg - arg_start);
622 inf = fopen(fname, "rb");
625 printf("Couldn't open %s\n", fname);
628 if (fseek(inf, 0L, SEEK_END) == -1)
630 printf("Couldn't seek in %s\n", fname);
635 if (fseek(inf, 0L, SEEK_SET) == -1)
637 printf("Couldn't seek in %s\n", fname);
642 *buf = (char *) odr_malloc(out, fsize+1);
643 (*buf)[fsize] = '\0';
644 if (fread(*buf, 1, fsize, inf) != fsize)
646 printf("Unable to read %s\n", fname);
652 else if ((*arg)[0] == '\"' && (sep=strchr(*arg+1, '"')))
656 *buf = odr_strdupn(out, *arg, *len);
661 const char *arg_start = *arg;
663 while (**arg != '\0' && **arg != ' ')
666 *len = *arg - arg_start;
667 *buf = odr_strdupn(out, arg_start, *len);
672 static int cmd_base(const char *arg)
676 printf("Usage: base <database> <database> ...\n");
679 return set_base(arg);
682 static int session_connect_base(const char *arg, const char **basep)
685 char type_and_host[101];
693 nmem_destroy(session_mem);
695 session_initResponse = 0;
697 cs_get_host_args(arg, basep);
699 strncpy(type_and_host, arg, sizeof(type_and_host)-1);
700 type_and_host[sizeof(type_and_host)-1] = '\0';
703 conn = cs_create_host(yazProxy, 1, &add);
705 conn = cs_create_host(arg, 1, &add);
708 printf("Could not resolve address %s\n", arg);
713 if (conn->protocol == PROTO_HTTP)
715 printf("SRW/HTTP not enabled in this YAZ\n");
721 protocol = conn->protocol;
722 printf("Connecting...");
724 if (cs_connect(conn, add) < 0)
726 printf("error = %s\n", cs_strerror(conn));
732 cs_print_session_info(conn);
733 if (protocol == PROTO_Z3950)
735 send_Z3950_initRequest(type_and_host);
741 static int session_connect(const char *arg)
744 const char *basep = 0;
746 r = session_connect_base(arg, &basep);
749 else if (protocol == PROTO_Z3950)
754 static int cmd_open(const char *arg)
759 strncpy(cur_host, arg, sizeof(cur_host)-1);
760 cur_host[sizeof(cur_host)-1] = 0;
762 /* TODO Make facet definition survive the open command without crashing */
763 /* TODO Fix deallocation */
767 r = session_connect(cur_host);
768 if (conn && conn->protocol == PROTO_HTTP)
769 queryType = QueryType_CQL;
775 static int cmd_authentication(const char *arg)
780 nmem_reset(nmem_auth);
781 nmem_strsplit_blank(nmem_auth, arg, &args, &r);
785 printf("Authentication set to null\n");
790 auth = (Z_IdAuthentication *) nmem_malloc(nmem_auth, sizeof(*auth));
791 if (!strcmp(args[0], "-"))
793 auth->which = Z_IdAuthentication_anonymous;
794 auth->u.anonymous = odr_nullval();
795 printf("Authentication set to Anonymous\n");
799 auth->which = Z_IdAuthentication_open;
800 auth->u.open = args[0];
801 printf("Authentication set to Open (%s)\n", args[0]);
806 auth = (Z_IdAuthentication *) nmem_malloc(nmem_auth, sizeof(*auth));
807 auth->which = Z_IdAuthentication_idPass;
808 auth->u.idPass = (Z_IdPass *)
809 nmem_malloc(nmem_auth, sizeof(*auth->u.idPass));
810 auth->u.idPass->groupId = NULL;
811 auth->u.idPass->userId = !strcmp(args[0], "-") ? 0 : args[0];
812 auth->u.idPass->password = !strcmp(args[1], "-") ? 0 : args[1];
813 printf("Authentication set to User (%s), Pass (%s)\n",
818 auth = (Z_IdAuthentication*) nmem_malloc(nmem_auth, sizeof(*auth));
819 auth->which = Z_IdAuthentication_idPass;
820 auth->u.idPass = (Z_IdPass *)
821 nmem_malloc(nmem_auth, sizeof(*auth->u.idPass));
822 auth->u.idPass->groupId = args[1];
823 auth->u.idPass->userId = args[0];
824 auth->u.idPass->password = args[2];
825 printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
826 args[0], args[1], args[2]);
830 printf("Bad number of args to auth\n");
837 /* SEARCH SERVICE ------------------------------ */
838 static void display_record(Z_External *r);
840 static void print_record(const char *buf, size_t len)
843 print_stringn(buf, len);
844 /* add newline if not already added ... */
845 if (i <= 0 || buf[i-1] != '\n')
849 static void display_record(Z_External *r)
851 const Odr_oid *oid = r->direct_reference;
855 * Tell the user what we got.
860 char oid_name_buf[OID_STR_MAX];
862 = yaz_oid_to_string_buf(oid, &oclass, oid_name_buf);
863 printf("Record type: ");
865 printf("%s\n", oid_name);
867 /* Check if this is a known, ASN.1 type tucked away in an octet string */
868 if (r->which == Z_External_octet)
870 Z_ext_typeent *type = z_ext_getentbyref(r->direct_reference);
876 * Call the given decoder to process the record.
878 odr_setbuf(in, (char*)r->u.octet_aligned->buf,
879 r->u.octet_aligned->len, 0);
880 if (!(*type->fun)(in, &rr, 0, 0))
882 odr_perror(in, "Decoding constructed record.");
883 fprintf(stdout, "[Near %ld]\n", (long) odr_offset(in));
884 fprintf(stdout, "Packet dump:\n---------\n");
885 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
886 r->u.octet_aligned->len);
887 fprintf(stdout, "---------\n");
889 /* note just ignores the error ant print the bytes form the octet_aligned later */
892 * Note: we throw away the original, BER-encoded record here.
893 * Do something else with it if you want to keep it.
895 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
896 r->which = type->what;
900 if (oid && r->which == Z_External_octet)
902 const char *octet_buf = (const char*)r->u.octet_aligned->buf;
903 size_t octet_len = r->u.octet_aligned->len;
904 if (!oid_oidcmp(oid, yaz_oid_recsyn_xml)
905 || !oid_oidcmp(oid, yaz_oid_recsyn_xml)
906 || !oid_oidcmp(oid, yaz_oid_recsyn_html))
908 fwrite(octet_buf, 1, octet_len, stdout);
910 else if (yaz_oid_is_iso2709(oid))
915 yaz_marc_t mt = yaz_marc_create();
916 const char *from = 0;
918 if (marcCharset && !strcmp(marcCharset, "auto"))
920 if (!oid_oidcmp(oid, yaz_oid_recsyn_usmarc))
922 if (octet_buf[9] == 'a')
930 else if (marcCharset)
932 if (outputCharset && from)
934 cd = yaz_iconv_open(outputCharset, from);
935 printf("convert from %s to %s", from,
938 printf(" unsupported\n");
941 yaz_marc_iconv(mt, cd);
946 if (yaz_marc_decode_buf(mt, octet_buf, octet_len,
949 if (fwrite(result, rlen, 1, stdout) != 1)
951 printf("write to stdout failed\n");
956 printf("bad MARC. Dumping as it is:\n");
957 print_record(octet_buf, octet_len);
959 yaz_marc_destroy(mt);
965 print_record(octet_buf, octet_len);
967 marc_file_write(octet_buf, r->u.octet_aligned->len);
969 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_sutrs))
971 if (r->which != Z_External_sutrs)
973 printf("Expecting single SUTRS type for SUTRS.\n");
976 print_record((const char *) r->u.sutrs->buf, r->u.sutrs->len);
977 marc_file_write((const char *) r->u.sutrs->buf, r->u.sutrs->len);
979 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_grs_1))
982 if (r->which != Z_External_grs1)
984 printf("Expecting single GRS type for GRS.\n");
988 yaz_display_grs1(w, r->u.grs1, 0);
992 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_opac))
995 if (r->u.opac->bibliographicRecord)
996 display_record(r->u.opac->bibliographicRecord);
997 for (i = 0; i<r->u.opac->num_holdingsData; i++)
999 Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
1000 if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
1002 printf("MARC holdings %d\n", i);
1003 display_record(h->u.marcHoldingsRecord);
1005 else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
1009 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
1011 printf("Data holdings %d\n", i);
1012 if (data->typeOfRecord)
1013 printf("typeOfRecord: %s\n", data->typeOfRecord);
1014 if (data->encodingLevel)
1015 printf("encodingLevel: %s\n", data->encodingLevel);
1016 if (data->receiptAcqStatus)
1017 printf("receiptAcqStatus: %s\n", data->receiptAcqStatus);
1018 if (data->generalRetention)
1019 printf("generalRetention: %s\n", data->generalRetention);
1020 if (data->completeness)
1021 printf("completeness: %s\n", data->completeness);
1022 if (data->dateOfReport)
1023 printf("dateOfReport: %s\n", data->dateOfReport);
1025 printf("nucCode: %s\n", data->nucCode);
1026 if (data->localLocation)
1027 printf("localLocation: %s\n", data->localLocation);
1028 if (data->shelvingLocation)
1029 printf("shelvingLocation: %s\n", data->shelvingLocation);
1030 if (data->callNumber)
1031 printf("callNumber: %s\n", data->callNumber);
1032 if (data->shelvingData)
1033 printf("shelvingData: %s\n", data->shelvingData);
1034 if (data->copyNumber)
1035 printf("copyNumber: %s\n", data->copyNumber);
1036 if (data->publicNote)
1037 printf("publicNote: %s\n", data->publicNote);
1038 if (data->reproductionNote)
1039 printf("reproductionNote: %s\n", data->reproductionNote);
1040 if (data->termsUseRepro)
1041 printf("termsUseRepro: %s\n", data->termsUseRepro);
1042 if (data->enumAndChron)
1043 printf("enumAndChron: %s\n", data->enumAndChron);
1044 for (j = 0; j<data->num_volumes; j++)
1046 printf("volume %d\n", j);
1047 if (data->volumes[j]->enumeration)
1048 printf(" enumeration: %s\n",
1049 data->volumes[j]->enumeration);
1050 if (data->volumes[j]->chronology)
1051 printf(" chronology: %s\n",
1052 data->volumes[j]->chronology);
1053 if (data->volumes[j]->enumAndChron)
1054 printf(" enumAndChron: %s\n",
1055 data->volumes[j]->enumAndChron);
1057 for (j = 0; j<data->num_circulationData; j++)
1059 printf("circulation %d\n", j);
1060 if (data->circulationData[j]->availableNow)
1061 printf(" availableNow: %d\n",
1062 *data->circulationData[j]->availableNow);
1063 if (data->circulationData[j]->availablityDate)
1064 printf(" availabiltyDate: %s\n",
1065 data->circulationData[j]->availablityDate);
1066 if (data->circulationData[j]->availableThru)
1067 printf(" availableThru: %s\n",
1068 data->circulationData[j]->availableThru);
1069 if (data->circulationData[j]->restrictions)
1070 printf(" restrictions: %s\n",
1071 data->circulationData[j]->restrictions);
1072 if (data->circulationData[j]->itemId)
1073 printf(" itemId: %s\n",
1074 data->circulationData[j]->itemId);
1075 if (data->circulationData[j]->renewable)
1076 printf(" renewable: %d\n",
1077 *data->circulationData[j]->renewable);
1078 if (data->circulationData[j]->onHold)
1079 printf(" onHold: %d\n",
1080 *data->circulationData[j]->onHold);
1081 if (data->circulationData[j]->enumAndChron)
1082 printf(" enumAndChron: %s\n",
1083 data->circulationData[j]->enumAndChron);
1084 if (data->circulationData[j]->midspine)
1085 printf(" midspine: %s\n",
1086 data->circulationData[j]->midspine);
1087 if (data->circulationData[j]->temporaryLocation)
1088 printf(" temporaryLocation: %s\n",
1089 data->circulationData[j]->temporaryLocation);
1096 printf("Unknown record representation.\n");
1097 if (!z_External(print, &r, 0, 0))
1099 odr_perror(print, "Printing external");
1105 static void display_diagrecs(Z_DiagRec **pp, int num)
1108 Z_DefaultDiagFormat *r;
1110 printf("Diagnostic message(s) from database:\n");
1111 for (i = 0; i<num; i++)
1113 Z_DiagRec *p = pp[i];
1114 if (p->which != Z_DiagRec_defaultFormat)
1116 printf("Diagnostic record not in default format.\n");
1120 r = p->u.defaultFormat;
1122 if (!r->diagnosticSetId)
1123 printf("Missing diagset\n");
1127 char diag_name_buf[OID_STR_MAX];
1128 const char *diag_name = 0;
1129 diag_name = yaz_oid_to_string_buf
1130 (r->diagnosticSetId, &oclass, diag_name_buf);
1131 if (oid_oidcmp(r->diagnosticSetId, yaz_oid_diagset_bib_1))
1132 printf("Unknown diagset: %s\n", diag_name);
1134 printf(" [" ODR_INT_PRINTF "] %s",
1135 *r->condition, diagbib1_str(*r->condition));
1138 case Z_DefaultDiagFormat_v2Addinfo:
1139 printf(" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1141 case Z_DefaultDiagFormat_v3Addinfo:
1142 printf(" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1149 static void display_nameplusrecord(Z_NamePlusRecord *p)
1151 if (p->databaseName)
1152 printf("[%s]", p->databaseName);
1153 if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1154 display_diagrecs(&p->u.surrogateDiagnostic, 1);
1155 else if (p->which == Z_NamePlusRecord_databaseRecord)
1156 display_record(p->u.databaseRecord);
1159 static void display_records(Z_Records *p)
1163 if (p->which == Z_Records_NSD)
1165 Z_DiagRec dr, *dr_p = &dr;
1166 dr.which = Z_DiagRec_defaultFormat;
1167 dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1168 display_diagrecs(&dr_p, 1);
1170 else if (p->which == Z_Records_multipleNSD)
1171 display_diagrecs(p->u.multipleNonSurDiagnostics->diagRecs,
1172 p->u.multipleNonSurDiagnostics->num_diagRecs);
1175 printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1176 for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1177 display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1181 static int send_Z3950_deleteResultSetRequest(const char *arg)
1186 Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1187 Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1189 req->referenceId = set_refid(out);
1191 req->num_resultSetList =
1192 sscanf(arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1193 names[0], names[1], names[2], names[3],
1194 names[4], names[5], names[6], names[7]);
1196 req->deleteFunction = odr_intdup(out, 0);
1197 if (req->num_resultSetList > 0)
1199 *req->deleteFunction = Z_DeleteResultSetRequest_list;
1200 req->resultSetList = (char **)
1201 odr_malloc(out, sizeof(*req->resultSetList)*
1202 req->num_resultSetList);
1203 for (i = 0; i<req->num_resultSetList; i++)
1204 req->resultSetList[i] = names[i];
1208 *req->deleteFunction = Z_DeleteResultSetRequest_all;
1209 req->resultSetList = 0;
1213 printf("Sent deleteResultSetRequest.\n");
1218 static int send_gdu(Z_GDU *gdu)
1220 if (z_GDU(out, &gdu, 0, 0))
1228 if (!z_GDU(print, &gdu, 0, 0))
1229 printf("Failed to print outgoing SRU package\n");
1232 buf_out = odr_getbuf(out, &len_out, 0);
1234 /* we don't odr_reset(out), since we may need the buffer again */
1236 do_hex_dump(buf_out, len_out);
1238 r = cs_put(conn, buf_out, len_out);
1246 static int send_srw_host_path(Z_SRW_PDU *sr, const char *host_port,
1249 const char *charset = negotiationCharset;
1252 gdu = z_get_HTTP_Request_host_path(out, host_port, path);
1256 if (auth->which == Z_IdAuthentication_open)
1260 nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1262 sr->username = darray[0];
1264 sr->password = darray[1];
1266 else if (auth->which == Z_IdAuthentication_idPass)
1268 sr->username = auth->u.idPass->userId;
1269 sr->password = auth->u.idPass->password;
1273 if (!yaz_matchstr(sru_method, "get"))
1275 yaz_sru_get_encode(gdu->u.HTTP_Request, sr, out, charset);
1277 else if (!yaz_matchstr(sru_method, "post"))
1279 yaz_sru_post_encode(gdu->u.HTTP_Request, sr, out, charset);
1281 else if (!yaz_matchstr(sru_method, "soap"))
1283 yaz_sru_soap_encode(gdu->u.HTTP_Request, sr, out, charset);
1285 else if (!yaz_matchstr(sru_method, "solr"))
1287 yaz_solr_encode_request(gdu->u.HTTP_Request, sr, out, charset);
1290 return send_gdu(gdu);
1293 static int send_srw(Z_SRW_PDU *sr)
1295 char *path = yaz_encode_sru_dbpath_odr(out, databaseNames[0]);
1296 return send_srw_host_path(sr, cur_host, path);
1299 static int send_SRW_redirect(const char *uri, Z_HTTP_Response *cookie_hres)
1301 const char *username = 0;
1302 const char *password = 0;
1303 struct Z_HTTP_Header *h;
1304 char *combined_cookies = 0;
1305 int combined_cookies_len = 0;
1306 Z_GDU *gdu = get_HTTP_Request_url(out, uri);
1308 gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
1309 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
1312 for (h = cookie_hres->headers; h; h = h->next)
1314 if (!strcmp(h->name, "Set-Cookie"))
1318 if (!(cp = strchr(h->value, ';')))
1319 cp = h->value + strlen(h->value);
1320 if (cp - h->value >= 1)
1322 combined_cookies = xrealloc(combined_cookies, combined_cookies_len + cp - h->value + 3);
1323 memcpy(combined_cookies+combined_cookies_len, h->value, cp - h->value);
1324 combined_cookies[combined_cookies_len + cp - h->value] = '\0';
1325 strcat(combined_cookies,"; ");
1326 combined_cookies_len = strlen(combined_cookies);
1330 if (combined_cookies_len)
1332 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Cookie", combined_cookies);
1333 xfree(combined_cookies);
1338 if (auth->which == Z_IdAuthentication_open)
1342 nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1344 username = darray[0];
1346 password = darray[1];
1348 else if (auth->which == Z_IdAuthentication_idPass)
1350 username = auth->u.idPass->userId;
1351 password = auth->u.idPass->password;
1355 if (username && password)
1357 z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
1358 username, password);
1361 return send_gdu(gdu);
1366 static char *encode_SRW_term(ODR o, const char *q)
1368 const char *in_charset = "ISO-8859-1";
1369 WRBUF w = wrbuf_alloc();
1373 in_charset = outputCharset;
1374 cd = yaz_iconv_open("UTF-8", in_charset);
1378 return odr_strdup(o, q);
1380 wrbuf_iconv_write(w, cd, q, strlen(q));
1382 res = odr_strdup(o, wrbuf_cstr(w));
1384 res = odr_strdup(o, q);
1385 yaz_iconv_close(cd);
1391 static int send_SRW_scanRequest(const char *arg, int pos, int num)
1395 /* regular requestse .. */
1396 sr = yaz_srw_get_pdu(out, Z_SRW_scan_request, sru_version);
1401 sr->u.scan_request->query_type = Z_SRW_query_type_cql;
1402 sr->u.scan_request->scanClause.cql = encode_SRW_term(out, arg);
1404 case QueryType_Prefix:
1405 sr->u.scan_request->query_type = Z_SRW_query_type_pqf;
1406 sr->u.scan_request->scanClause.pqf = encode_SRW_term(out, arg);
1409 printf("Only CQL and PQF supported in SRW\n");
1412 sr->u.scan_request->responsePosition = odr_intdup(out, pos);
1413 sr->u.scan_request->maximumTerms = odr_intdup(out, num);
1414 return send_srw(sr);
1417 static int send_SRW_searchRequest(const char *arg)
1423 assert(srw_sr_odr_out == 0);
1424 srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1426 odr_reset(srw_sr_odr_out);
1430 /* save this for later .. when fetching individual records */
1431 srw_sr = yaz_srw_get_pdu(srw_sr_odr_out, Z_SRW_searchRetrieve_request,
1434 /* regular request .. */
1435 sr = yaz_srw_get_pdu(out, Z_SRW_searchRetrieve_request, sru_version);
1440 srw_sr->u.request->query_type = Z_SRW_query_type_cql;
1441 srw_sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1443 sr->u.request->query_type = Z_SRW_query_type_cql;
1444 sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1446 case QueryType_Prefix:
1447 srw_sr->u.request->query_type = Z_SRW_query_type_pqf;
1448 srw_sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1450 sr->u.request->query_type = Z_SRW_query_type_pqf;
1451 sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1454 printf("Only CQL and PQF supported in SRW\n");
1457 sr->u.request->maximumRecords = odr_intdup(out, 0);
1458 sr->u.request->facetList = facet_list;
1460 sr->u.request->recordSchema = record_schema;
1461 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
1462 sr->u.request->recordPacking = "xml";
1463 return send_srw(sr);
1467 static void query_charset_convert(Z_RPNQuery *q)
1469 if (queryCharset && outputCharset)
1471 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
1474 printf("Conversion from %s to %s unsupported\n",
1475 outputCharset, queryCharset);
1478 yaz_query_charset_convert_rpnquery(q, out, cd);
1479 yaz_iconv_close(cd);
1483 static int send_Z3950_searchRequest(const char *arg)
1485 Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1486 Z_SearchRequest *req = apdu->u.searchRequest;
1488 struct ccl_rpn_node *rpn = NULL;
1490 char setstring[100];
1491 Z_RPNQuery *RPNquery;
1493 YAZ_PQF_Parser pqf_parser;
1495 QueryType myQueryType = queryType;
1498 if (myQueryType == QueryType_CCL2RPN)
1500 rpn = ccl_find_str(bibset, arg, &error, &pos);
1503 printf("CCL ERROR: %s\n", ccl_err_msg(error));
1507 else if (myQueryType == QueryType_CQL2RPN)
1509 /* ### All this code should be wrapped in a utility function */
1511 struct cql_node *node;
1512 const char *addinfo;
1515 printf("Can't use CQL: no translation file. Try set_cqlfile\n");
1518 parser = cql_parser_create();
1519 if ((error = cql_parser_string(parser, arg)) != 0)
1521 printf("Can't parse CQL: must be a syntax error\n");
1524 node = cql_parser_result(parser);
1525 if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1526 sizeof pqfbuf)) != 0)
1528 error = cql_transform_error(cqltrans, &addinfo);
1529 printf("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1530 cql_strerror(error), addinfo);
1534 myQueryType = QueryType_Prefix;
1537 req->referenceId = set_refid(out);
1538 if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1540 static unsigned char big[2100];
1541 static Odr_oct bigo;
1543 /* send a very big referenceid to test transport stack etc. */
1544 memset(big, 'A', 2100);
1545 bigo.len = bigo.size = 2100;
1547 req->referenceId = &bigo;
1552 sprintf(setstring, "%d", ++setnumber);
1553 req->resultSetName = setstring;
1555 *req->smallSetUpperBound = smallSetUpperBound;
1556 *req->largeSetLowerBound = largeSetLowerBound;
1557 *req->mediumSetPresentNumber = mediumSetPresentNumber;
1558 if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1559 mediumSetPresentNumber > 0))
1561 if (recordsyntax_size)
1562 req->preferredRecordSyntax =
1563 yaz_string_to_oid_odr(yaz_oid_std(),
1564 CLASS_RECSYN, recordsyntax_list[0], out);
1566 req->smallSetElementSetNames =
1567 req->mediumSetElementSetNames = elementSetNames;
1569 req->num_databaseNames = num_databaseNames;
1570 req->databaseNames = databaseNames;
1572 req->query = &query;
1574 switch (myQueryType)
1576 case QueryType_Prefix:
1577 query.which = Z_Query_type_1;
1578 pqf_parser = yaz_pqf_create();
1579 RPNquery = yaz_pqf_parse(pqf_parser, out, arg);
1582 const char *pqf_msg;
1584 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
1586 printf("%*s^\n", ioff+4, "");
1587 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1589 yaz_pqf_destroy(pqf_parser);
1592 yaz_pqf_destroy(pqf_parser);
1593 query_charset_convert(RPNquery);
1594 query.u.type_1 = RPNquery;
1597 query.which = Z_Query_type_2;
1598 query.u.type_2 = &ccl_query;
1599 ccl_query.buf = (unsigned char*) arg;
1600 ccl_query.len = strlen(arg);
1602 case QueryType_CCL2RPN:
1603 query.which = Z_Query_type_1;
1604 RPNquery = ccl_rpn_query(out, rpn);
1607 printf("Couldn't convert from CCL to RPN\n");
1610 query_charset_convert(RPNquery);
1611 query.u.type_1 = RPNquery;
1612 ccl_rpn_delete(rpn);
1615 query.which = Z_Query_type_104;
1616 ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1617 ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1618 ext->indirect_reference = 0;
1619 ext->descriptor = 0;
1620 ext->which = Z_External_CQL;
1621 ext->u.cql = odr_strdup(out, arg);
1622 query.u.type_104 = ext;
1625 printf("Unsupported query type\n");
1628 if (send_apdu(apdu))
1629 printf("Sent searchRequest.\n");
1634 static void display_term(Z_Term *term)
1636 switch (term->which)
1638 case Z_Term_general:
1639 printf(" %.*s", term->u.general->len, term->u.general->buf);
1641 case Z_Term_characterString:
1642 printf(" %s", term->u.characterString);
1644 case Z_Term_numeric:
1645 printf(" " ODR_INT_PRINTF, *term->u.numeric);
1653 /* display Query Expression as part of searchResult-1 */
1654 static void display_queryExpression(const char *lead, Z_QueryExpression *qe)
1658 printf(" %s=", lead);
1659 if (qe->which == Z_QueryExpression_term)
1661 if (qe->u.term->queryTerm)
1663 Z_Term *term = qe->u.term->queryTerm;
1669 static void display_facet(Z_FacetField *facet)
1671 if (facet->attributes)
1673 Z_AttributeList *al = facet->attributes;
1674 struct yaz_facet_attr attr_values;
1675 attr_values.errcode = 0;
1676 attr_values.limit = -1;
1677 attr_values.useattr = 0;
1678 attr_values.relation = "default";
1680 yaz_facet_attr_get_z_attributes(al, &attr_values);
1681 if (!attr_values.errcode)
1684 printf(" %s (%d): \n", attr_values.useattr, /* attr_values.relation, attr_values.limit, */ facet->num_terms);
1685 for (term_index = 0 ; term_index < facet->num_terms; term_index++)
1687 Z_FacetTerm *facetTerm = facet->terms[term_index];
1688 display_term(facetTerm->term);
1689 printf(" (" NMEM_INT_PRINTF ")\n", *facetTerm->count);
1696 static void* display_facets(Z_FacetList *fl)
1699 printf("Facets(%d): \n", fl->num);
1701 for (index = 0; index < fl->num ; index++)
1703 display_facet(fl->elements[index]);
1708 void display_searchResult1(Z_SearchInfoReport *sr)
1711 printf("SearchResult-1:");
1712 for (j = 0; j < sr->num; j++)
1716 if (!sr->elements[j]->subqueryExpression)
1718 display_queryExpression("term",
1719 sr->elements[j]->subqueryExpression);
1720 display_queryExpression("interpretation",
1721 sr->elements[j]->subqueryInterpretation);
1722 display_queryExpression("recommendation",
1723 sr->elements[j]->subqueryRecommendation);
1724 if (sr->elements[j]->subqueryCount)
1725 printf(" cnt=" ODR_INT_PRINTF,
1726 *sr->elements[j]->subqueryCount);
1727 if (sr->elements[j]->subqueryId)
1728 printf(" id=%s ", sr->elements[j]->subqueryId);
1735 /* see if we can find USR:SearchResult-1 */
1736 static void display_searchResult(Z_OtherInformation *o)
1741 for (i = 0; i < o->num_elements; i++)
1743 if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1745 Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1747 if (ext->which == Z_External_searchResult1)
1748 display_searchResult1(ext->u.searchResult1);
1749 else if (ext->which == Z_External_userFacets)
1750 display_facets(ext->u.facetList);
1755 static int process_Z3950_searchResponse(Z_SearchResponse *res)
1757 printf("Received SearchResponse.\n");
1758 print_refid(res->referenceId);
1759 if (*res->searchStatus)
1760 printf("Search was a success.\n");
1762 printf("Search was a bloomin' failure.\n");
1763 printf("Number of hits: " ODR_INT_PRINTF, *res->resultCount);
1764 last_hit_count = *res->resultCount;
1766 printf(", setno %d", setnumber);
1768 if (res->resultSetStatus)
1770 printf("Result Set Status: ");
1771 switch (*res->resultSetStatus)
1773 case Z_SearchResponse_subset:
1774 printf("subset"); break;
1775 case Z_SearchResponse_interim:
1776 printf("interim"); break;
1777 case Z_SearchResponse_none:
1778 printf("none"); break;
1779 case Z_SearchResponse_estimate:
1780 printf("estimate"); break;
1782 printf(ODR_INT_PRINTF, *res->resultSetStatus);
1786 display_searchResult(res->additionalSearchInfo);
1787 printf("records returned: " ODR_INT_PRINTF "\n",
1788 *res->numberOfRecordsReturned);
1789 setno += *res->numberOfRecordsReturned;
1791 display_records(res->records);
1795 static void print_level(int iLevel)
1798 for (i = 0; i < iLevel * 4; i++)
1802 static void print_int(int iLevel, const char *pTag, Odr_int *pInt)
1806 print_level(iLevel);
1807 printf("%s: " ODR_INT_PRINTF "\n", pTag, *pInt);
1811 static void print_bool(int iLevel, const char *pTag, Odr_bool *pInt)
1815 print_level(iLevel);
1816 printf("%s: %d\n", pTag, *pInt);
1820 static void print_string(int iLevel, const char *pTag, const char *pString)
1822 if (pString != NULL)
1824 print_level(iLevel);
1825 printf("%s: %s\n", pTag, pString);
1829 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1833 Odr_oid *pInt = pOid;
1835 print_level(iLevel);
1836 printf("%s:", pTag);
1837 for (; *pInt != -1; pInt++)
1838 printf(" %d", *pInt);
1843 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1845 if (referenceId != NULL)
1849 print_level(iLevel);
1850 printf("Ref Id (%d, %d): ", referenceId->len, referenceId->size);
1851 for (i = 0; i < referenceId->len; i++)
1852 printf("%c", referenceId->buf[i]);
1857 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1859 if (pStringNumeric != NULL)
1861 switch (pStringNumeric->which)
1863 case Z_StringOrNumeric_string:
1864 print_string(iLevel, pTag, pStringNumeric->u.string);
1867 case Z_StringOrNumeric_numeric:
1868 print_int(iLevel, pTag, pStringNumeric->u.numeric);
1872 print_level(iLevel);
1873 printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1879 static void print_universe_report_duplicate(
1881 Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1883 if (pUniverseReportDuplicate != NULL)
1885 print_level(iLevel);
1886 printf("Universe Report Duplicate: \n");
1888 print_string_or_numeric(iLevel, "Hit No",
1889 pUniverseReportDuplicate->hitno);
1893 static void print_universe_report_hits(
1895 Z_UniverseReportHits *pUniverseReportHits)
1897 if (pUniverseReportHits != NULL)
1899 print_level(iLevel);
1900 printf("Universe Report Hits: \n");
1902 print_string_or_numeric(iLevel, "Database",
1903 pUniverseReportHits->database);
1904 print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1908 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1910 if (pUniverseReport != NULL)
1912 print_level(iLevel);
1913 printf("Universe Report: \n");
1915 print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1916 switch (pUniverseReport->which)
1918 case Z_UniverseReport_databaseHits:
1919 print_universe_report_hits(iLevel,
1920 pUniverseReport->u.databaseHits);
1923 case Z_UniverseReport_duplicate:
1924 print_universe_report_duplicate(iLevel,
1925 pUniverseReport->u.duplicate);
1929 print_level(iLevel);
1930 printf("Type: %d\n", pUniverseReport->which);
1936 static void print_external(int iLevel, Z_External *pExternal)
1938 if (pExternal != NULL)
1940 print_level(iLevel);
1941 printf("External: \n");
1943 print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
1944 print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
1945 print_string(iLevel, "Descriptor", pExternal->descriptor);
1946 switch (pExternal->which)
1948 case Z_External_universeReport:
1949 print_universe_report(iLevel, pExternal->u.universeReport);
1953 print_level(iLevel);
1954 printf("Type: %d\n", pExternal->which);
1960 static int process_Z3950_resourceControlRequest(Z_ResourceControlRequest *req)
1962 printf("Received ResourceControlRequest.\n");
1963 print_referenceId(1, req->referenceId);
1964 print_bool(1, "Suspended Flag", req->suspendedFlag);
1965 print_int(1, "Partial Results Available", req->partialResultsAvailable);
1966 print_bool(1, "Response Required", req->responseRequired);
1967 print_bool(1, "Triggered Request Flag", req->triggeredRequestFlag);
1968 print_external(1, req->resourceReport);
1972 static void process_Z3950_ESResponse(Z_ExtendedServicesResponse *res)
1975 switch (*res->operationStatus)
1977 case Z_ExtendedServicesResponse_done:
1980 case Z_ExtendedServicesResponse_accepted:
1981 printf("accepted\n");
1983 case Z_ExtendedServicesResponse_failure:
1984 printf("failure\n");
1985 display_diagrecs(res->diagnostics, res->num_diagnostics);
1988 printf("unknown\n");
1990 if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
1991 (res->num_diagnostics != 0) )
1993 display_diagrecs(res->diagnostics, res->num_diagnostics);
1995 print_refid (res->referenceId);
1996 if (res->taskPackage &&
1997 res->taskPackage->which == Z_External_extendedService)
1999 Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
2000 Odr_oct *id = taskPackage->targetReference;
2001 Z_External *ext = taskPackage->taskSpecificParameters;
2005 printf("Target Reference: ");
2006 print_stringn((const char *) id->buf, id->len);
2009 if (ext->which == Z_External_update)
2011 Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
2012 if (utp && utp->targetPart)
2014 Z_IUTargetPart *targetPart = utp->targetPart;
2017 for (i = 0; i<targetPart->num_taskPackageRecords; i++)
2020 Z_IUTaskPackageRecordStructure *tpr =
2021 targetPart->taskPackageRecords[i];
2022 printf("task package record %d\n", i+1);
2023 if (tpr->which == Z_IUTaskPackageRecordStructure_record)
2025 display_record (tpr->u.record);
2029 printf("other type\n");
2034 if (ext->which == Z_External_itemOrder)
2036 Z_IOTaskPackage *otp = ext->u.itemOrder->u.taskPackage;
2038 if (otp && otp->targetPart)
2040 if (otp->targetPart->itemRequest)
2042 Z_External *ext = otp->targetPart->itemRequest;
2043 if (ext->which == Z_External_octet)
2045 Odr_oct *doc = ext->u.octet_aligned;
2046 printf("Got itemRequest doc %.*s\n",
2047 doc->len, doc->buf);
2050 else if (otp->targetPart->statusOrErrorReport)
2052 Z_External *ext = otp->targetPart->statusOrErrorReport;
2053 if (ext->which == Z_External_octet)
2055 Odr_oct *doc = ext->u.octet_aligned;
2056 printf("Got Status or Error Report doc %.*s\n",
2057 doc->len, doc->buf);
2063 if (res->taskPackage && res->taskPackage->which == Z_External_octet)
2065 Odr_oct *doc = res->taskPackage->u.octet_aligned;
2066 printf("%.*s\n", doc->len, doc->buf);
2070 static const char *get_ill_element(void *clientData, const char *element)
2075 static Z_External *create_external_itemRequest(void)
2077 struct ill_get_ctl ctl;
2078 ILL_ItemRequest *req;
2080 int item_request_size = 0;
2081 char *item_request_buf = 0;
2085 ctl.f = get_ill_element;
2087 req = ill_get_ItemRequest(&ctl, "ill", 0);
2089 printf("ill_get_ItemRequest failed\n");
2091 if (!ill_ItemRequest(out, &req, 0, 0))
2095 ill_ItemRequest(print, &req, 0, 0);
2098 item_request_buf = odr_getbuf (out, &item_request_size, 0);
2099 if (item_request_buf)
2100 odr_setbuf (out, item_request_buf, item_request_size, 1);
2101 printf("Couldn't encode ItemRequest, size %d\n", item_request_size);
2106 r = (Z_External *) odr_malloc(out, sizeof(*r));
2107 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2108 r->indirect_reference = 0;
2110 r->which = Z_External_single;
2112 r->u.single_ASN1_type = (Odr_oct *)
2113 odr_malloc(out, sizeof(*r->u.single_ASN1_type));
2114 r->u.single_ASN1_type->buf = (unsigned char *)
2115 odr_malloc(out, item_request_size);
2116 r->u.single_ASN1_type->len = item_request_size;
2117 r->u.single_ASN1_type->size = item_request_size;
2118 memcpy(r->u.single_ASN1_type->buf, item_request_buf,
2121 do_hex_dump(item_request_buf,item_request_size);
2126 static Z_External *create_external_ILL_APDU(void)
2128 struct ill_get_ctl ctl;
2131 int ill_request_size = 0;
2132 char *ill_request_buf = 0;
2136 ctl.f = get_ill_element;
2138 ill_apdu = ill_get_APDU(&ctl, "ill", 0);
2140 if (!ill_APDU (out, &ill_apdu, 0, 0))
2144 printf("-------------------\n");
2145 ill_APDU(print, &ill_apdu, 0, 0);
2147 printf("-------------------\n");
2149 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2150 if (ill_request_buf)
2151 odr_setbuf (out, ill_request_buf, ill_request_size, 1);
2152 printf("Couldn't encode ILL-Request, size %d\n", ill_request_size);
2157 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2159 r = (Z_External *) odr_malloc(out, sizeof(*r));
2160 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2161 r->indirect_reference = 0;
2163 r->which = Z_External_single;
2165 r->u.single_ASN1_type = (Odr_oct *)
2166 odr_malloc(out, sizeof(*r->u.single_ASN1_type));
2167 r->u.single_ASN1_type->buf = (unsigned char *)
2168 odr_malloc(out, ill_request_size);
2169 r->u.single_ASN1_type->len = ill_request_size;
2170 r->u.single_ASN1_type->size = ill_request_size;
2171 memcpy(r->u.single_ASN1_type->buf, ill_request_buf, ill_request_size);
2172 /* printf("len = %d\n", ill_request_size); */
2173 /* do_hex_dump(ill_request_buf,ill_request_size); */
2174 /* printf("--- end of extenal\n"); */
2181 static Z_External *create_ItemOrderExternal(const char *type, int itemno,
2182 const char *xml_buf,
2185 Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
2186 r->direct_reference = odr_oiddup(out, yaz_oid_extserv_item_order);
2187 r->indirect_reference = 0;
2190 r->which = Z_External_itemOrder;
2192 r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
2193 memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
2194 r->u.itemOrder->which=Z_IOItemOrder_esRequest;
2196 r->u.itemOrder->u.esRequest = (Z_IORequest *)
2197 odr_malloc(out,sizeof(Z_IORequest));
2198 memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
2200 r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
2201 odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
2202 memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
2203 r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
2204 odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
2205 memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
2207 r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
2208 r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
2209 r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
2211 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
2212 (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
2213 memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
2214 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
2216 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
2217 odr_intdup(out, itemno);
2218 if (!strcmp (type, "item") || !strcmp(type, "2"))
2220 printf("using item-request\n");
2221 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2222 create_external_itemRequest();
2224 else if (!strcmp(type, "ill") || !strcmp(type, "1"))
2226 printf("using ILL-request\n");
2227 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2228 create_external_ILL_APDU();
2230 else if (!strcmp(type, "xml") || !strcmp(type, "3"))
2232 printf("using XML ILL-request\n");
2236 printf("no docoument added\n");
2237 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2241 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2242 z_ext_record_oid(out, yaz_oid_recsyn_xml, xml_buf, xml_len);
2246 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2251 static int send_Z3950_itemorder(const char *type, int itemno,
2252 const char *xml_buf, int xml_len)
2254 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2255 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2257 req->referenceId = set_refid (out);
2259 req->packageType = odr_oiddup(out, yaz_oid_extserv_item_order);
2260 req->packageName = esPackageName;
2262 req->taskSpecificParameters = create_ItemOrderExternal(type, itemno,
2268 static int only_z3950(void)
2272 printf("Not connected yet\n");
2275 if (protocol == PROTO_HTTP)
2277 printf("Not supported by SRW\n");
2283 static int is_SRW(void)
2287 printf("Not connected yet\n");
2290 if (protocol == PROTO_HTTP && yaz_matchstr(sru_method, "solr"))
2292 printf("Not supported by SRW\n");
2299 static int cmd_update_common(const char *arg, int version);
2301 static int cmd_update(const char *arg)
2303 return cmd_update_common(arg, 1);
2306 static int cmd_update0(const char *arg)
2308 return cmd_update_common(arg, 0);
2311 static int send_Z3950_update(int version, int action_no, const char *recid,
2312 char *rec_buf, int rec_len);
2315 static int send_SRW_update(int action_no, const char *recid,
2316 char *rec_buf, int rec_len);
2319 static int cmd_update_common(const char *arg, int version)
2325 const char *recid = 0;
2331 if (parse_cmd_doc(&arg, out, &action_buf, &action_len) == 0)
2333 printf("Use: update action recid [fname]\n");
2334 printf(" where action is one of insert,replace,delete.update\n");
2335 printf(" recid is some record ID. Use none for no ID\n");
2336 printf(" fname is file of record to be updated\n");
2340 if (parse_cmd_doc(&arg, out, &recid_buf, &recid_len) == 0)
2342 printf("Missing recid\n");
2346 if (!strcmp(action_buf, "insert"))
2347 action_no = Z_IUOriginPartToKeep_recordInsert;
2348 else if (!strcmp(action_buf, "replace"))
2349 action_no = Z_IUOriginPartToKeep_recordReplace;
2350 else if (!strcmp(action_buf, "delete"))
2351 action_no = Z_IUOriginPartToKeep_recordDelete;
2352 else if (!strcmp(action_buf, "update"))
2353 action_no = Z_IUOriginPartToKeep_specialUpdate;
2356 printf("Bad action: %s\n", action_buf);
2357 printf("Possible values: insert, replace, delete, update\n");
2361 if (strcmp(recid_buf, "none")) /* none means no record ID */
2365 if (parse_cmd_doc(&arg, out, &rec_buf, &rec_len) == 0)
2369 if (protocol == PROTO_HTTP)
2370 return send_SRW_update(action_no, recid_buf, rec_buf, rec_len);
2372 return send_Z3950_update(version, action_no, recid_buf, rec_buf, rec_len);
2376 static int send_SRW_update(int action_no, const char *recid,
2377 char *rec_buf, int rec_len)
2380 session_connect(cur_host);
2385 Z_SRW_PDU *srw = yaz_srw_get(out, Z_SRW_update_request);
2386 Z_SRW_updateRequest *sr = srw->u.update_request;
2390 case Z_IUOriginPartToKeep_recordInsert:
2391 sr->operation = "info:srw/action/1/create";
2393 case Z_IUOriginPartToKeep_recordReplace:
2394 sr->operation = "info:srw/action/1/replace";
2396 case Z_IUOriginPartToKeep_recordDelete:
2397 sr->operation = "info:srw/action/1/delete";
2402 sr->record = yaz_srw_get_record(out);
2403 sr->record->recordData_buf = rec_buf;
2404 sr->record->recordData_len = rec_len;
2405 sr->record->recordSchema = record_schema;
2408 sr->recordId = odr_strdup(out, recid);
2409 return send_srw(srw);
2414 static int send_Z3950_update(int version, int action_no, const char *recid,
2415 char *rec_buf, int rec_len)
2417 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
2418 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2420 Z_External *record_this = 0;
2422 record_this = z_ext_record_oid(out, yaz_oid_recsyn_xml,
2428 printf("No last record (update ignored)\n");
2431 record_this = record_last;
2434 req->packageType = odr_oiddup(out, (version == 0 ?
2435 yaz_oid_extserv_database_update_first_version :
2436 yaz_oid_extserv_database_update));
2438 req->packageName = esPackageName;
2440 req->referenceId = set_refid (out);
2442 r = req->taskSpecificParameters = (Z_External *)
2443 odr_malloc(out, sizeof(*r));
2444 r->direct_reference = req->packageType;
2445 r->indirect_reference = 0;
2449 Z_IU0OriginPartToKeep *toKeep;
2450 Z_IU0SuppliedRecords *notToKeep;
2452 r->which = Z_External_update0;
2453 r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2454 r->u.update0->which = Z_IUUpdate_esRequest;
2455 r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2456 odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2457 toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2458 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2460 toKeep->databaseName = databaseNames[0];
2464 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2466 record_schema, out);
2468 toKeep->elementSetName = 0;
2470 toKeep->action = odr_intdup(out, action_no);
2472 notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2473 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2475 notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2476 odr_malloc(out, sizeof(*notToKeep->elements));
2477 notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2478 odr_malloc(out, sizeof(**notToKeep->elements));
2479 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2482 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2483 odr_malloc(out, sizeof(Odr_oct));
2484 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2485 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2486 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2489 notToKeep->elements[0]->u.opaque = 0;
2490 notToKeep->elements[0]->supplementalId = 0;
2491 notToKeep->elements[0]->correlationInfo = 0;
2492 notToKeep->elements[0]->record = record_this;
2496 Z_IUOriginPartToKeep *toKeep;
2497 Z_IUSuppliedRecords *notToKeep;
2499 r->which = Z_External_update;
2500 r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2501 r->u.update->which = Z_IUUpdate_esRequest;
2502 r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2503 odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2504 toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2505 odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2507 toKeep->databaseName = databaseNames[0];
2511 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2513 record_schema, out);
2515 toKeep->elementSetName = 0;
2516 toKeep->actionQualifier = 0;
2517 toKeep->action = odr_intdup(out, action_no);
2519 notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2520 odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2522 notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2523 odr_malloc(out, sizeof(*notToKeep->elements));
2524 notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2525 odr_malloc(out, sizeof(**notToKeep->elements));
2526 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2529 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2530 odr_malloc(out, sizeof(Odr_oct));
2531 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2532 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2533 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2536 notToKeep->elements[0]->u.opaque = 0;
2537 notToKeep->elements[0]->supplementalId = 0;
2538 notToKeep->elements[0]->correlationInfo = 0;
2539 notToKeep->elements[0]->record = record_this;
2547 static int cmd_xmles(const char *arg)
2557 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2558 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2561 Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
2563 req->referenceId = set_refid (out);
2564 req->taskSpecificParameters = ext;
2565 ext->indirect_reference = 0;
2566 ext->descriptor = 0;
2567 ext->which = Z_External_octet;
2568 ext->u.single_ASN1_type = (Odr_oct *) odr_malloc(out, sizeof(Odr_oct));
2569 sscanf(arg, "%50s%n", oid_str, &noread);
2572 printf("Missing OID for xmles\n");
2576 if (parse_cmd_doc(&arg, out, &asn_buf,
2577 &ext->u.single_ASN1_type->len) == 0)
2580 ext->u.single_ASN1_type->buf = (unsigned char *) asn_buf;
2582 oid = yaz_string_to_oid_odr(yaz_oid_std(),
2583 CLASS_EXTSERV, oid_str, out);
2586 printf("Bad OID: %s\n", oid_str);
2590 req->packageType = oid;
2592 ext->direct_reference = oid;
2600 static int cmd_itemorder(const char *arg)
2610 if (sscanf(arg, "%10s %d%n", type, &itemno, &no_read) < 2)
2613 parse_cmd_doc(&arg, out, &xml_buf, &xml_len);
2616 send_Z3950_itemorder(type, itemno, xml_buf, xml_len);
2620 static void show_opt(const char *arg, void *clientData)
2625 static int cmd_zversion(const char *arg)
2628 z3950_version = atoi(arg);
2630 printf("version is %d\n", z3950_version);
2634 static int cmd_options(const char *arg)
2640 r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2642 printf("Unknown option(s) near %s\n", arg+pos);
2646 yaz_init_opt_decode(&z3950_options, show_opt, 0);
2652 static int cmd_explain(const char *arg)
2654 if (protocol != PROTO_HTTP)
2658 session_connect(cur_host);
2665 /* save this for later .. when fetching individual records */
2666 sr = yaz_srw_get(out, Z_SRW_explain_request);
2667 if (recordsyntax_size == 1
2668 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2669 sr->u.explain_request->recordPacking = "xml";
2677 static int cmd_init(const char *arg)
2681 strncpy(cur_host, arg, sizeof(cur_host)-1);
2682 cur_host[sizeof(cur_host)-1] = 0;
2686 send_Z3950_initRequest(cur_host);
2690 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url)
2692 Z_GDU *p = z_get_HTTP_Request(odr);
2693 const char *host = url;
2694 const char *cp0 = strstr(host, "://");
2695 const char *cp1 = 0;
2701 cp1 = strchr(cp0, '/');
2703 cp1 = cp0 + strlen(cp0);
2707 char *h = (char*) odr_malloc(odr, cp1 - cp0 + 1);
2708 memcpy (h, cp0, cp1 - cp0);
2710 z_HTTP_header_add(odr, &p->u.HTTP_Request->headers, "Host", h);
2712 p->u.HTTP_Request->path = odr_strdup(odr, *cp1 ? cp1 : "/");
2716 static WRBUF get_url(const char *uri, WRBUF username, WRBUF password,
2717 int *code, int show_headers)
2720 ODR out = odr_createmem(ODR_ENCODE);
2721 ODR in = odr_createmem(ODR_DECODE);
2722 Z_GDU *gdu = get_HTTP_Request_url(out, uri);
2724 gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
2725 if (username && password)
2727 z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
2728 wrbuf_cstr(username),
2729 wrbuf_cstr(password));
2731 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
2733 if (!z_GDU(out, &gdu, 0, 0))
2735 yaz_log(YLOG_WARN, "Can not encode HTTP request URL:%s", uri);
2740 COMSTACK conn = cs_create_host(uri, 1, &add);
2741 if (cs_connect(conn, add) < 0)
2742 yaz_log(YLOG_WARN, "Can not connect to URL:%s", uri);
2746 char *buf = odr_getbuf(out, &len, 0);
2748 if (cs_put(conn, buf, len) < 0)
2749 yaz_log(YLOG_WARN, "cs_put failed URL:%s", uri);
2752 char *netbuffer = 0;
2754 int res = cs_get(conn, &netbuffer, &netlen);
2757 yaz_log(YLOG_WARN, "cs_get failed URL:%s", uri);
2762 odr_setbuf(in, netbuffer, res, 0);
2763 if (!z_GDU(in, &gdu, 0, 0)
2764 || gdu->which != Z_GDU_HTTP_Response)
2766 yaz_log(YLOG_WARN, "decode failed URL: %s", uri);
2770 Z_HTTP_Response *res = gdu->u.HTTP_Response;
2771 struct Z_HTTP_Header *h;
2772 result = wrbuf_alloc();
2776 wrbuf_printf(result, "HTTP %d\n", res->code);
2777 for (h = res->headers; h; h = h->next)
2778 wrbuf_printf(result, "%s: %s\n",
2782 wrbuf_write(result, res->content_buf, res->content_len);
2796 static int cmd_url(const char *arg)
2799 WRBUF res = get_url(arg, 0, 0, &code, 1);
2802 if (wrbuf_len(res) > 1200)
2804 fwrite(wrbuf_buf(res), 1, 1200, stdout);
2805 printf(".. out of %lld\n", (long long) wrbuf_len(res));
2808 puts(wrbuf_cstr(res));
2814 static int cmd_sru(const char *arg)
2818 printf("SRU method is: %s\n", sru_method);
2819 printf("SRU version is: %s\n", sru_version);
2823 int r = sscanf(arg, "%9s %9s", sru_method, sru_version);
2826 if (!yaz_matchstr(sru_method, "post"))
2828 else if (!yaz_matchstr(sru_method, "get"))
2830 else if (!yaz_matchstr(sru_method, "soap"))
2832 else if (!yaz_matchstr(sru_method, "solr"))
2836 strcpy(sru_method, "soap");
2837 printf("Unknown SRU method: %s\n", arg);
2838 printf("Specify one of POST, GET, SOAP, SOLR\n");
2845 static int cmd_find(const char *arg)
2849 printf("Find what?\n");
2852 if (protocol == PROTO_HTTP)
2856 session_connect(cur_host);
2859 if (!send_SRW_searchRequest(arg))
2867 if (*cur_host && auto_reconnect)
2874 if (!send_Z3950_searchRequest(arg))
2876 wait_and_handle_response(0);
2882 printf("Unable to reconnect\n");
2885 session_connect(cur_host);
2886 wait_and_handle_response(0);
2892 if (!send_Z3950_searchRequest(arg))
2897 printf("Not connected yet\n");
2904 static int cmd_facets(const char *arg)
2906 /* TODO Wrong odr. Loosing memory */
2907 ODR odr = odr_createmem(ODR_ENCODE);
2912 printf("Facets cleared.\n");
2917 printf("WARN: No supported for SRW/SRU.\n");
2919 facet_list = yaz_pqf_parse_facet_list(odr, arg);
2923 printf("Invalid facet list: %s", arg);
2930 static int cmd_delete(const char *arg)
2934 if (!send_Z3950_deleteResultSetRequest(arg))
2939 static int cmd_ssub(const char *arg)
2941 if (!(smallSetUpperBound = atoi(arg)))
2946 static int cmd_lslb(const char *arg)
2948 if (!(largeSetLowerBound = atoi(arg)))
2953 static int cmd_mspn(const char *arg)
2955 if (!(mediumSetPresentNumber = atoi(arg)))
2960 static int cmd_status(const char *arg)
2962 printf("smallSetUpperBound: %d\n", smallSetUpperBound);
2963 printf("largeSetLowerBound: %d\n", largeSetLowerBound);
2964 printf("mediumSetPresentNumber: %d\n", mediumSetPresentNumber);
2968 static int cmd_setnames(const char *arg)
2970 if (*arg == '1') /* enable ? */
2972 else if (*arg == '0') /* disable ? */
2974 else if (setnumber < 0) /* no args, toggle .. */
2980 printf("Set numbering enabled.\n");
2982 printf("Set numbering disabled.\n");
2986 /* PRESENT SERVICE ----------------------------- */
2988 static int parse_show_args(const char *arg_c, char *setstring,
2989 Odr_int *start, Odr_int *number)
2992 Odr_int start_position;
2995 sprintf(setstring, "%d", setnumber);
2999 if (!strcmp(arg_c, "all"))
3001 *number = last_hit_count;
3004 start_position = odr_strtol(arg_c, &end_ptr, 10);
3005 if (end_ptr == arg_c)
3007 *start = start_position;
3008 if (*end_ptr == '\0')
3010 while (isspace(*(unsigned char *)end_ptr))
3012 if (*end_ptr != '+')
3014 printf("Bad show arg: expected +. Got %s\n", end_ptr);
3019 *number = odr_strtol(arg_c, &end_ptr, 10);
3020 if (end_ptr == arg_c)
3022 printf("Bad show arg: expected number after +\n");
3025 if (*end_ptr == '\0')
3027 while (isspace(*(unsigned char *)end_ptr))
3029 if (*end_ptr != '+')
3031 printf("Bad show arg: + expected. Got %s\n", end_ptr);
3034 strcpy(setstring, end_ptr+1);
3038 static int send_Z3950_presentRequest(const char *arg)
3040 Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
3041 Z_PresentRequest *req = apdu->u.presentRequest;
3042 Z_RecordComposition compo;
3044 char setstring[100];
3046 req->referenceId = set_refid(out);
3048 if (!parse_show_args(arg, setstring, &setno, &nos))
3051 req->resultSetId = setstring;
3053 req->resultSetStartPoint = &setno;
3054 req->numberOfRecordsRequested = &nos;
3056 if (recordsyntax_size)
3057 req->preferredRecordSyntax =
3058 yaz_string_to_oid_odr(yaz_oid_std(),
3059 CLASS_RECSYN, recordsyntax_list[0], out);
3061 if (record_schema || recordsyntax_size >= 2)
3063 req->recordComposition = &compo;
3064 compo.which = Z_RecordComp_complex;
3065 compo.u.complex = (Z_CompSpec *)
3066 odr_malloc(out, sizeof(*compo.u.complex));
3067 compo.u.complex->selectAlternativeSyntax = (bool_t *)
3068 odr_malloc(out, sizeof(bool_t));
3069 *compo.u.complex->selectAlternativeSyntax = 0;
3071 compo.u.complex->generic = (Z_Specification *)
3072 odr_malloc(out, sizeof(*compo.u.complex->generic));
3074 compo.u.complex->generic->which = Z_Schema_oid;
3076 compo.u.complex->generic->schema.oid = 0;
3079 compo.u.complex->generic->schema.oid =
3080 yaz_string_to_oid_odr(yaz_oid_std(),
3081 CLASS_SCHEMA, record_schema, out);
3083 if (!compo.u.complex->generic->schema.oid)
3085 /* OID wasn't a schema! Try record syntax instead. */
3086 compo.u.complex->generic->schema.oid = (Odr_oid *)
3087 yaz_string_to_oid_odr(yaz_oid_std(),
3088 CLASS_RECSYN, record_schema, out);
3091 if (!elementSetNames)
3092 compo.u.complex->generic->elementSpec = 0;
3095 compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
3096 odr_malloc(out, sizeof(Z_ElementSpec));
3097 compo.u.complex->generic->elementSpec->which =
3098 Z_ElementSpec_elementSetName;
3099 compo.u.complex->generic->elementSpec->u.elementSetName =
3100 elementSetNames->u.generic;
3102 compo.u.complex->num_dbSpecific = 0;
3103 compo.u.complex->dbSpecific = 0;
3105 compo.u.complex->num_recordSyntax = 0;
3106 compo.u.complex->recordSyntax = 0;
3107 if (recordsyntax_size >= 2)
3110 compo.u.complex->num_recordSyntax = recordsyntax_size;
3111 compo.u.complex->recordSyntax = (Odr_oid **)
3112 odr_malloc(out, recordsyntax_size * sizeof(Odr_oid*));
3113 for (i = 0; i < recordsyntax_size; i++)
3114 compo.u.complex->recordSyntax[i] =
3115 yaz_string_to_oid_odr(yaz_oid_std(),
3116 CLASS_RECSYN, recordsyntax_list[i], out);
3119 else if (elementSetNames)
3121 req->recordComposition = &compo;
3122 compo.which = Z_RecordComp_simple;
3123 compo.u.simple = elementSetNames;
3126 printf("Sent presentRequest (" ODR_INT_PRINTF "+" ODR_INT_PRINTF ").\n",
3132 static int send_SRW_presentRequest(const char *arg)
3134 char setstring[100];
3136 Z_SRW_PDU *sr = srw_sr;
3140 if (!parse_show_args(arg, setstring, &setno, &nos))
3142 sr->u.request->startRecord = odr_intdup(out, setno);
3143 sr->u.request->maximumRecords = odr_intdup(out, nos);
3145 sr->u.request->recordSchema = record_schema;
3146 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
3147 sr->u.request->recordPacking = "xml";
3148 return send_srw(sr);
3152 static void close_session(void)
3164 static void process_Z3950_close(Z_Close *req)
3166 Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
3167 Z_Close *res = apdu->u.close;
3169 static char *reasons[] =
3174 "cost limit reached",
3176 "security violation",
3183 printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
3184 req->diagnosticInformation ? req->diagnosticInformation : "NULL");
3189 *res->closeReason = Z_Close_finished;
3191 printf("Sent response.\n");
3196 static int cmd_show(const char *arg)
3198 if (protocol == PROTO_HTTP)
3202 session_connect(cur_host);
3205 if (!send_SRW_presentRequest(arg))
3215 printf("Not connected yet\n");
3218 if (!send_Z3950_presentRequest(arg))
3224 static void exit_client(int code)
3226 file_history_save(file_history);
3227 file_history_destroy(&file_history);
3228 nmem_destroy(nmem_auth);
3232 static int cmd_quit(const char *arg)
3234 printf("See you later, alligator.\n");
3240 static int cmd_cancel(const char *arg)
3246 Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
3247 Z_TriggerResourceControlRequest *req =
3248 apdu->u.triggerResourceControlRequest;
3253 sscanf(arg, "%15s", command);
3257 if (session_initResponse &&
3258 !ODR_MASK_GET(session_initResponse->options,
3259 Z_Options_triggerResourceCtrl))
3261 printf("Target doesn't support cancel (trigger resource ctrl)\n");
3264 *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
3265 req->resultSetWanted = &rfalse;
3266 req->referenceId = set_refid(out);
3269 printf("Sent cancel request\n");
3270 if (!strcmp(command, "wait"))
3276 static int cmd_cancel_find(const char *arg)
3281 fres = cmd_find(arg);
3284 return cmd_cancel("");
3289 static int send_Z3950_scanrequest(const char *set, const char *query,
3290 Odr_int pp, Odr_int num, const char *term)
3292 Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
3293 Z_ScanRequest *req = apdu->u.scanRequest;
3297 if (queryType == QueryType_CCL2RPN)
3300 struct ccl_rpn_node *rpn;
3302 rpn = ccl_find_str(bibset, query, &error, &pos);
3305 printf("CCL ERROR: %s\n", ccl_err_msg(error));
3309 yaz_string_to_oid_odr(yaz_oid_std(),
3310 CLASS_ATTSET, "Bib-1", out);
3311 if (!(req->termListAndStartPoint = ccl_scan_query(out, rpn)))
3313 printf("Couldn't convert CCL to Scan term\n");
3316 ccl_rpn_delete(rpn);
3320 YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
3323 if (!(req->termListAndStartPoint =
3324 yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
3326 const char *pqf_msg;
3328 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
3330 printf("%*s^\n", ioff+7, "");
3331 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
3332 yaz_pqf_destroy(pqf_parser);
3335 yaz_pqf_destroy(pqf_parser);
3337 if (queryCharset && outputCharset)
3339 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
3342 printf("Conversion from %s to %s unsupported\n",
3343 outputCharset, queryCharset);
3346 yaz_query_charset_convert_apt(req->termListAndStartPoint, out, cd);
3347 yaz_iconv_close(cd);
3351 if (req->termListAndStartPoint->term &&
3352 req->termListAndStartPoint->term->which == Z_Term_general &&
3353 req->termListAndStartPoint->term->u.general)
3355 req->termListAndStartPoint->term->u.general->buf =
3356 (unsigned char *) odr_strdup(out, term);
3357 req->termListAndStartPoint->term->u.general->len =
3358 req->termListAndStartPoint->term->u.general->size =
3362 req->referenceId = set_refid(out);
3363 req->num_databaseNames = num_databaseNames;
3364 req->databaseNames = databaseNames;
3365 req->numberOfTermsRequested = #
3366 req->preferredPositionInResponse = &pp;
3367 req->stepSize = odr_intdup(out, scan_stepSize);
3370 yaz_oi_set_string_oid(&req->otherInfo, out,
3371 yaz_oid_userinfo_scan_set, 1, set);
3377 static int send_sortrequest(const char *arg, int newset)
3379 Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
3380 Z_SortRequest *req = apdu->u.sortRequest;
3381 Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
3382 odr_malloc(out, sizeof(*sksl));
3388 sprintf(setstring, "%d", setnumber);
3390 sprintf(setstring, "default");
3392 req->referenceId = set_refid(out);
3394 req->num_inputResultSetNames = 1;
3395 req->inputResultSetNames = (Z_InternationalString **)
3396 odr_malloc(out, sizeof(*req->inputResultSetNames));
3397 req->inputResultSetNames[0] = odr_strdup(out, setstring);
3399 if (newset && setnumber >= 0)
3400 sprintf(setstring, "%d", ++setnumber);
3402 req->sortedResultSetName = odr_strdup(out, setstring);
3404 req->sortSequence = yaz_sort_spec(out, arg);
3405 if (!req->sortSequence)
3407 printf("Missing sort specifications\n");
3414 static void display_term_info(Z_TermInfo *t)
3417 printf("%s", t->displayTerm);
3418 else if (t->term->which == Z_Term_general)
3419 printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
3421 printf("Term (not general)");
3422 if (t->term->which == Z_Term_general)
3423 sprintf(last_scan_line, "%.*s", t->term->u.general->len,
3424 t->term->u.general->buf);
3426 if (t->globalOccurrences)
3427 printf(" (" ODR_INT_PRINTF ")\n", *t->globalOccurrences);
3432 static void process_Z3950_scanResponse(Z_ScanResponse *res)
3435 Z_Entry **entries = NULL;
3436 int num_entries = 0;
3438 printf("Received ScanResponse\n");
3439 print_refid(res->referenceId);
3440 printf(ODR_INT_PRINTF " entries", *res->numberOfEntriesReturned);
3441 if (res->positionOfTerm)
3442 printf(", position=" ODR_INT_PRINTF, *res->positionOfTerm);
3444 if (*res->scanStatus != Z_Scan_success)
3445 printf("Scan returned code " ODR_INT_PRINTF "\n", *res->scanStatus);
3448 if ((entries = res->entries->entries))
3449 num_entries = res->entries->num_entries;
3450 for (i = 0; i < num_entries; i++)
3452 int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
3453 if (entries[i]->which == Z_Entry_termInfo)
3455 printf("%c ", i + 1 == pos_term ? '*' : ' ');
3456 display_term_info(entries[i]->u.termInfo);
3459 display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
3461 if (res->entries->nonsurrogateDiagnostics)
3462 display_diagrecs(res->entries->nonsurrogateDiagnostics,
3463 res->entries->num_nonsurrogateDiagnostics);
3466 static void process_Z3950_sortResponse(Z_SortResponse *res)
3468 printf("Received SortResponse: status=");
3469 switch (*res->sortStatus)
3471 case Z_SortResponse_success:
3472 printf("success"); break;
3473 case Z_SortResponse_partial_1:
3474 printf("partial"); break;
3475 case Z_SortResponse_failure:
3476 printf("failure"); break;
3478 printf("unknown (" ODR_INT_PRINTF ")", *res->sortStatus);
3481 print_refid (res->referenceId);
3482 if (res->diagnostics)
3483 display_diagrecs(res->diagnostics,
3484 res->num_diagnostics);
3487 static void process_Z3950_deleteResultSetResponse(
3488 Z_DeleteResultSetResponse *res)
3490 printf("Got deleteResultSetResponse status=" ODR_INT_PRINTF "\n",
3491 *res->deleteOperationStatus);
3492 if (res->deleteListStatuses)
3495 for (i = 0; i < res->deleteListStatuses->num; i++)
3497 printf("%s status=" ODR_INT_PRINTF "\n",
3498 res->deleteListStatuses->elements[i]->id,
3499 *res->deleteListStatuses->elements[i]->status);
3504 static int cmd_sort_generic(const char *arg, int newset)
3508 if (session_initResponse &&
3509 !ODR_MASK_GET(session_initResponse->options, Z_Options_sort))
3511 printf("Target doesn't support sort\n");
3516 if (send_sortrequest(arg, newset) < 0)
3523 static int cmd_sort(const char *arg)
3525 return cmd_sort_generic(arg, 0);
3528 static int cmd_sort_newset(const char *arg)
3530 return cmd_sort_generic(arg, 1);
3533 static int cmd_scanstep(const char *arg)
3535 scan_stepSize = atoi(arg);
3539 static int cmd_scanpos(const char *arg)
3541 int r = sscanf(arg, "%d", &scan_position);
3547 static int cmd_scansize(const char *arg)
3549 int r = sscanf(arg, "%d", &scan_size);
3555 static int cmd_scan_common(const char *set, const char *arg)
3557 if (protocol == PROTO_HTTP)
3561 session_connect(cur_host);
3566 if (send_SRW_scanRequest(arg, scan_position, scan_size) < 0)
3571 if (send_SRW_scanRequest(last_scan_line, 1, scan_size) < 0)
3581 if (*cur_host && !conn && auto_reconnect)
3583 session_connect(cur_host);
3584 wait_and_handle_response(0);
3588 if (session_initResponse &&
3589 !ODR_MASK_GET(session_initResponse->options, Z_Options_scan))
3591 printf("Target doesn't support scan\n");
3596 strcpy(last_scan_query, arg);
3597 if (send_Z3950_scanrequest(set, arg,
3598 scan_position, scan_size, 0) < 0)
3603 if (send_Z3950_scanrequest(set, last_scan_query,
3604 1, scan_size, last_scan_line) < 0)
3611 static int cmd_scan(const char *arg)
3613 return cmd_scan_common(0, arg);
3616 static int cmd_setscan(const char *arg)
3618 char setstring[100];
3620 if (sscanf(arg, "%99s%n", setstring, &nor) < 1)
3622 printf("missing set for setscan\n");
3625 return cmd_scan_common(setstring, arg + nor);
3628 static int cmd_schema(const char *arg)
3630 xfree(record_schema);
3633 record_schema = xstrdup(arg);
3637 static int cmd_format(const char *arg)
3639 const char *cp = arg;
3646 printf("Usage: format <recordsyntax>\n");
3649 while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3650 && idx < RECORDSYNTAX_MAX)
3652 if (strcmp(form_str, "none") &&
3653 !yaz_string_to_oid_odr(yaz_oid_std(), CLASS_RECSYN, form_str, out))
3655 printf("Bad format: %s\n", form_str);
3660 for (i = 0; i < recordsyntax_size; i++)
3662 xfree(recordsyntax_list[i]);
3663 recordsyntax_list[i] = 0;
3667 while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3668 && idx < RECORDSYNTAX_MAX)
3670 if (!strcmp(form_str, "none"))
3672 recordsyntax_list[idx] = xstrdup(form_str);
3676 recordsyntax_size = idx;
3680 static int cmd_elements(const char *arg)
3682 static Z_ElementSetNames esn;
3683 static char what[100];
3687 elementSetNames = 0;
3691 esn.which = Z_ElementSetNames_generic;
3692 esn.u.generic = what;
3693 elementSetNames = &esn;
3697 static int cmd_querytype(const char *arg)
3699 if (!strcmp(arg, "ccl"))
3700 queryType = QueryType_CCL;
3701 else if (!strcmp(arg, "prefix") || !strcmp(arg, "rpn"))
3702 queryType = QueryType_Prefix;
3703 else if (!strcmp(arg, "ccl2rpn") || !strcmp(arg, "cclrpn"))
3704 queryType = QueryType_CCL2RPN;
3705 else if (!strcmp(arg, "cql"))
3706 queryType = QueryType_CQL;
3707 else if (!strcmp(arg, "cql2rpn") || !strcmp(arg, "cqlrpn"))
3708 queryType = QueryType_CQL2RPN;
3711 printf("Querytype must be one of:\n");
3712 printf(" prefix - Prefix query\n");
3713 printf(" ccl - CCL query\n");
3714 printf(" ccl2rpn - CCL query converted to RPN\n");
3715 printf(" cql - CQL\n");
3716 printf(" cql2rpn - CQL query converted to RPN\n");
3722 static int cmd_refid(const char *arg)
3727 refid = xstrdup(arg);
3731 static int cmd_close(const char *arg)
3737 apdu = zget_APDU(out, Z_APDU_close);
3738 req = apdu->u.close;
3739 *req->closeReason = Z_Close_finished;
3741 printf("Sent close request.\n");
3746 int cmd_packagename(const char* arg)
3748 xfree(esPackageName);
3749 esPackageName = NULL;
3751 esPackageName = xstrdup(arg);
3755 static int cmd_proxy(const char* arg)
3760 yazProxy = xstrdup(arg);
3764 static int cmd_marccharset(const char *arg)
3769 if (sscanf(arg, "%29s", l1) < 1)
3771 printf("MARC character set is `%s'\n",
3772 marcCharset ? marcCharset: "none");
3777 if (strcmp(l1, "-") && strcmp(l1, "none"))
3778 marcCharset = xstrdup(l1);
3782 static int cmd_querycharset(const char *arg)
3787 if (sscanf(arg, "%29s", l1) < 1)
3789 printf("Query character set is `%s'\n",
3790 queryCharset ? queryCharset: "none");
3793 xfree(queryCharset);
3795 if (strcmp(l1, "-") && strcmp(l1, "none"))
3796 queryCharset = xstrdup(l1);
3800 static int cmd_displaycharset(const char *arg)
3805 if (sscanf(arg, "%29s", l1) < 1)
3807 printf("Display character set is `%s'\n",
3808 outputCharset ? outputCharset: "none");
3812 xfree(outputCharset);
3814 if (!strcmp(l1, "auto") && codeset)
3818 printf("Display character set: %s\n", codeset);
3819 outputCharset = xstrdup(codeset);
3822 printf("No codeset found on this system\n");
3824 else if (strcmp(l1, "-") && strcmp(l1, "none"))
3825 outputCharset = xstrdup(l1);
3830 static int cmd_negcharset(const char *arg)
3835 if (sscanf(arg, "%29s %d %d", l1, &negotiationCharsetRecords,
3836 &negotiationCharsetVersion) < 1)
3838 printf("Negotiation character set `%s'\n",
3839 negotiationCharset ? negotiationCharset: "none");
3840 if (negotiationCharset)
3842 printf("Records in charset %s\n", negotiationCharsetRecords ?
3844 printf("Charneg version %d\n", negotiationCharsetVersion);
3849 xfree(negotiationCharset);
3850 negotiationCharset = NULL;
3851 if (*l1 && strcmp(l1, "-") && strcmp(l1, "none"))
3853 negotiationCharset = xstrdup(l1);
3854 printf("Character set negotiation : %s\n", negotiationCharset);
3860 static int cmd_charset(const char* arg)
3862 char l1[30], l2[30], l3[30], l4[30];
3864 *l1 = *l2 = *l3 = *l4 = '\0';
3865 if (sscanf(arg, "%29s %29s %29s %29s", l1, l2, l3, l4) < 1)
3868 cmd_displaycharset("");
3869 cmd_marccharset("");
3870 cmd_querycharset("");
3876 cmd_displaycharset(l2);
3878 cmd_marccharset(l3);
3880 cmd_querycharset(l4);
3885 static int cmd_lang(const char* arg)
3889 printf("Current language is `%s'\n", yazLang ? yazLang : "none");
3895 yazLang = xstrdup(arg);
3899 static int cmd_source(const char* arg, int echo )
3901 /* first should open the file and read one line at a time.. */
3903 char line[102400], *cp;
3905 if (strlen(arg) < 1)
3907 fprintf(stderr, "Error in source command use a filename\n");
3911 includeFile = fopen(arg, "r");
3915 fprintf(stderr, "Unable to open file %s for reading\n",arg);
3919 while (fgets(line, sizeof(line), includeFile))
3921 if (strlen(line) < 2)
3926 if ((cp = strrchr(line, '\n')))
3930 printf("processing line: %s\n", line);
3931 process_cmd_line(line);
3934 if (fclose(includeFile))
3936 perror("unable to close include file");
3942 static int cmd_source_echo(const char* arg)
3948 static int cmd_subshell(const char* args)
3950 int ret = system(strlen(args) ? args : getenv("SHELL"));
3954 printf("Exit %d\n", ret);
3959 static int cmd_set_berfile(const char *arg)
3961 if (ber_file && ber_file != stdout && ber_file != stderr)
3963 if (!strcmp(arg, ""))
3965 else if (!strcmp(arg, "-"))
3968 ber_file = fopen(arg, "a");
3972 static int cmd_set_apdufile(const char *arg)
3974 if (apdu_file && apdu_file != stderr && apdu_file != stderr)
3976 if (!strcmp(arg, ""))
3978 else if (!strcmp(arg, "-"))
3982 apdu_file = fopen(arg, "a");
3984 perror("unable to open apdu log file");
3987 odr_setprint(print, apdu_file);
3991 static int cmd_set_cclfile(const char* arg)
3995 bibset = ccl_qual_mk();
3996 inf = fopen(arg, "r");
3998 perror("unable to open CCL file");
4001 ccl_qual_file(bibset, inf);
4004 strcpy(ccl_fields,arg);
4008 static int cmd_set_cqlfile(const char* arg)
4010 cql_transform_t newcqltrans;
4012 if ((newcqltrans = cql_transform_open_fname(arg)) == 0)
4014 perror("unable to open CQL file");
4018 cql_transform_close(cqltrans);
4020 cqltrans = newcqltrans;
4021 strcpy(cql_fields, arg);
4025 static int cmd_set_auto_reconnect(const char* arg)
4028 auto_reconnect = ! auto_reconnect;
4029 else if (strcmp(arg,"on")==0)
4031 else if (strcmp(arg,"off")==0)
4035 printf("Error use on or off\n");
4040 printf("Set auto reconnect enabled.\n");
4042 printf("Set auto reconnect disabled.\n");
4047 static int cmd_set_auto_wait(const char* arg)
4050 auto_wait = ! auto_wait;
4051 else if (strcmp(arg,"on")==0)
4053 else if (strcmp(arg,"off")==0)
4057 printf("Error use on or off\n");
4062 printf("Set auto wait enabled.\n");
4064 printf("Set auto wait disabled.\n");
4069 static int cmd_set_marcdump(const char* arg)
4071 if (marc_file && marc_file != stderr)
4072 { /* don't close stdout*/
4076 if (!strcmp(arg, ""))
4078 else if (!strcmp(arg, "-"))
4082 marc_file = fopen(arg, "a");
4084 perror("unable to open marc log file");
4089 static void marc_file_write(const char *buf, size_t sz)
4093 if (fwrite(buf, 1, sz, marc_file) != sz)
4095 perror("marcfile write");
4100 this command takes 3 arge {name class oid}
4102 static int cmd_register_oid(const char* args)
4108 {"appctx",CLASS_APPCTX},
4109 {"absyn",CLASS_ABSYN},
4110 {"attset",CLASS_ATTSET},
4111 {"transyn",CLASS_TRANSYN},
4112 {"diagset",CLASS_DIAGSET},
4113 {"recsyn",CLASS_RECSYN},
4114 {"resform",CLASS_RESFORM},
4115 {"accform",CLASS_ACCFORM},
4116 {"extserv",CLASS_EXTSERV},
4117 {"userinfo",CLASS_USERINFO},
4118 {"elemspec",CLASS_ELEMSPEC},
4119 {"varset",CLASS_VARSET},
4120 {"schema",CLASS_SCHEMA},
4121 {"tagset",CLASS_TAGSET},
4122 {"general",CLASS_GENERAL},
4123 {0,(enum oid_class) 0}
4125 char oname_str[101], oclass_str[101], oid_str[101];
4127 oid_class oidclass = CLASS_GENERAL;
4128 Odr_oid oid[OID_SIZE];
4130 if (sscanf(args, "%100[^ ] %100[^ ] %100s",
4131 oname_str,oclass_str, oid_str) < 1)
4133 printf("Error in register command \n");
4137 for (i = 0; oid_classes[i].className; i++)
4139 if (!strcmp(oid_classes[i].className, oclass_str))
4141 oidclass=oid_classes[i].oclass;
4146 if (!(oid_classes[i].className))
4148 printf("Unknown oid class %s\n",oclass_str);
4152 oid_dotstring_to_oid(oid_str, oid);
4154 if (yaz_oid_add(yaz_oid_std(), oidclass, oname_str, oid))
4156 printf("oid %s already exists, registration failed\n",
4162 static int cmd_push_command(const char* arg)
4164 #if HAVE_READLINE_HISTORY_H
4165 if (strlen(arg) > 1)
4168 fprintf(stderr,"Not compiled with the readline/history module\n");
4173 void source_rc_file(const char *rc_file)
4175 /* If rc_file != NULL, source that. Else
4176 Look for .yazclientrc and read it if it exists.
4177 If it does not exist, read $HOME/.yazclientrc instead */
4178 struct stat statbuf;
4182 if (stat(rc_file, &statbuf) == 0)
4183 cmd_source(rc_file, 0);
4186 fprintf(stderr, "yaz_client: cannot source '%s'\n", rc_file);
4193 strcpy(fname, ".yazclientrc");
4194 if (stat(fname, &statbuf)==0)
4196 cmd_source(fname, 0);
4200 const char* homedir = getenv("HOME");
4203 sprintf(fname, "%.800s/%s", homedir, ".yazclientrc");
4204 if (stat(fname, &statbuf)==0)
4205 cmd_source(fname, 0);
4211 static void add_to_readline_history(void *client_data, const char *line)
4213 #if HAVE_READLINE_HISTORY_H
4219 static void initialize(const char *rc_file)
4224 if (!(out = odr_createmem(ODR_ENCODE)) ||
4225 !(in = odr_createmem(ODR_DECODE)) ||
4226 !(print = odr_createmem(ODR_PRINT)))
4228 fprintf(stderr, "failed to allocate ODR streams\n");
4232 setvbuf(stdout, 0, _IONBF, 0);
4234 odr_setprint(print, apdu_file);
4236 bibset = ccl_qual_mk();
4237 inf = fopen(ccl_fields, "r");
4240 ccl_qual_file(bibset, inf);
4244 cqltrans = cql_transform_open_fname(cql_fields);
4245 /* If this fails, no problem: we detect cqltrans == 0 later */
4247 #if HAVE_READLINE_READLINE_H
4248 rl_attempted_completion_function =
4249 (char **(*)(const char *, int, int)) readline_completer;
4251 for (i = 0; i < maxOtherInfosSupported; ++i)
4253 extraOtherInfos[i].oid[0] = -1;
4254 extraOtherInfos[i].value = 0;
4257 cmd_format("usmarc");
4259 file_history = file_history_new();
4261 source_rc_file(rc_file);
4263 file_history_load(file_history);
4264 file_history_trav(file_history, 0, add_to_readline_history);
4268 #if HAVE_GETTIMEOFDAY
4269 struct timeval tv_start;
4273 static void handle_srw_record(Z_SRW_record *rec)
4275 if (rec->recordPosition)
4277 printf("pos=" ODR_INT_PRINTF, *rec->recordPosition);
4278 setno = *rec->recordPosition + 1;
4280 if (rec->recordSchema)
4281 printf(" schema=%s", rec->recordSchema);
4283 if (rec->recordData_buf && rec->recordData_len)
4285 printf("%.*s", rec->recordData_len, rec->recordData_buf);
4286 marc_file_write(rec->recordData_buf, rec->recordData_len);
4293 static void handle_srw_explain_response(Z_SRW_explainResponse *res)
4295 handle_srw_record(&res->record);
4298 static void handle_srw_response(Z_SRW_searchRetrieveResponse *res)
4302 printf("Received SRW SearchRetrieve Response\n");
4304 for (i = 0; i<res->num_diagnostics; i++)
4306 if (res->diagnostics[i].uri)
4307 printf("SRW diagnostic %s\n",
4308 res->diagnostics[i].uri);
4310 printf("SRW diagnostic missing or could not be decoded\n");
4311 if (res->diagnostics[i].message)
4312 printf("Message: %s\n", res->diagnostics[i].message);
4313 if (res->diagnostics[i].details)
4314 printf("Details: %s\n", res->diagnostics[i].details);
4316 if (res->numberOfRecords)
4317 printf("Number of hits: " ODR_INT_PRINTF "\n", *res->numberOfRecords);
4318 if (res->facetList) {
4319 display_facets(res->facetList);
4321 for (i = 0; i<res->num_records; i++)
4322 handle_srw_record(res->records + i);
4325 static void handle_srw_scan_term(Z_SRW_scanTerm *term)
4327 if (term->displayTerm)
4328 printf("%s:", term->displayTerm);
4329 else if (term->value)
4330 printf("%s:", term->value);
4332 printf("No value:");
4333 if (term->numberOfRecords)
4334 printf(" " ODR_INT_PRINTF, *term->numberOfRecords);
4335 if (term->whereInList)
4336 printf(" %s", term->whereInList);
4337 if (term->value && term->displayTerm)
4338 printf(" %s", term->value);
4340 strcpy(last_scan_line, term->value);
4344 static void handle_srw_scan_response(Z_SRW_scanResponse *res)
4348 printf("Received SRW Scan Response\n");
4350 for (i = 0; i<res->num_diagnostics; i++)
4352 if (res->diagnostics[i].uri)
4353 printf("SRW diagnostic %s\n",
4354 res->diagnostics[i].uri);
4356 printf("SRW diagnostic missing or could not be decoded\n");
4357 if (res->diagnostics[i].message)
4358 printf("Message: %s\n", res->diagnostics[i].message);
4359 if (res->diagnostics[i].details)
4360 printf("Details: %s\n", res->diagnostics[i].details);
4363 for (i = 0; i<res->num_terms; i++)
4364 handle_srw_scan_term(res->terms + i);
4367 static void http_response(Z_HTTP_Response *hres)
4370 const char *connection_head = z_HTTP_header_lookup(hres->headers,
4372 if (hres->code != 200)
4374 printf("HTTP Error Status=%d\n", hres->code);
4377 if (!yaz_srw_check_content_type(hres))
4378 printf("Content type does not appear to be XML\n");
4381 if (!yaz_matchstr(sru_method, "solr"))
4384 ODR o = odr_createmem(ODR_DECODE);
4385 ret = yaz_solr_decode_response(o, hres, &sr);
4387 if (ret == 0 && sr->which == Z_SRW_searchRetrieve_response)
4388 handle_srw_response(sr->u.response);
4391 printf("Decoding of SOLR package failed\n");
4398 Z_SOAP *soap_package = 0;
4399 ODR o = odr_createmem(ODR_DECODE);
4400 Z_SOAP_Handler soap_handlers[3] = {
4401 {YAZ_XMLNS_SRU_v1_1, 0, (Z_SOAP_fun) yaz_srw_codec},
4402 {YAZ_XMLNS_UPDATE_v0_9, 0, (Z_SOAP_fun) yaz_ucp_codec},
4405 ret = z_soap_codec(o, &soap_package,
4406 &hres->content_buf, &hres->content_len,
4408 if (!ret && soap_package->which == Z_SOAP_generic)
4410 Z_SRW_PDU *sr = (Z_SRW_PDU *) soap_package->u.generic->p;
4411 if (sr->which == Z_SRW_searchRetrieve_response)
4412 handle_srw_response(sr->u.response);
4413 else if (sr->which == Z_SRW_explain_response)
4414 handle_srw_explain_response(sr->u.explain_response);
4415 else if (sr->which == Z_SRW_scan_response)
4416 handle_srw_scan_response(sr->u.scan_response);
4417 else if (sr->which == Z_SRW_update_response)
4418 printf("Got update response. Status: %s\n",
4419 sr->u.update_response->operationStatus);
4422 printf("Decoding of SRW package failed\n");
4426 else if (soap_package && (soap_package->which == Z_SOAP_fault
4427 || soap_package->which == Z_SOAP_error))
4429 printf("SOAP Fault code %s\n",
4430 soap_package->u.fault->fault_code);
4431 printf("SOAP Fault string %s\n",
4432 soap_package->u.fault->fault_string);
4433 if (soap_package->u.fault->details)
4434 printf("SOAP Details %s\n",
4435 soap_package->u.fault->details);
4439 printf("z_soap_codec failed. (no SOAP error)\n");
4446 close_session(); /* close session on error */
4449 if (!strcmp(hres->version, "1.0"))
4451 /* HTTP 1.0: only if Keep-Alive we stay alive.. */
4452 if (!connection_head || strcmp(connection_head, "Keep-Alive"))
4457 /* HTTP 1.1: only if no close we stay alive .. */
4458 if (connection_head && !strcmp(connection_head, "close"))
4465 #define max_HTTP_redirects 2
4467 static void wait_and_handle_response(int one_response_only)
4469 int reconnect_ok = 1;
4470 int no_redirects = 0;
4473 int netbufferlen = 0;
4474 #if HAVE_GETTIMEOFDAY
4476 struct timeval tv_end;
4482 res = cs_get(conn, &netbuffer, &netbufferlen);
4483 if (reconnect_ok && res <= 0 && protocol == PROTO_HTTP)
4487 session_connect(cur_host);
4494 buf_out = odr_getbuf(out, &len_out, 0);
4496 do_hex_dump(buf_out, len_out);
4498 cs_put(conn, buf_out, len_out);
4506 printf("Target closed connection\n");
4510 #if HAVE_GETTIMEOFDAY
4511 if (got_tv_end == 0)
4512 gettimeofday(&tv_end, 0); /* count first one only */
4516 odr_reset(in); /* release APDU from last round */
4518 do_hex_dump(netbuffer, res);
4519 odr_setbuf(in, netbuffer, res, 0);
4521 if (!z_GDU(in, &gdu, 0, 0))
4523 FILE *f = ber_file ? ber_file : stdout;
4524 odr_perror(in, "Decoding incoming APDU");
4525 fprintf(f, "[Near %ld]\n", (long) odr_offset(in));
4526 fprintf(f, "Packet dump:\n---------\n");
4527 odr_dumpBER(f, netbuffer, res);
4528 fprintf(f, "---------\n");
4531 z_GDU(print, &gdu, 0, 0);
4534 if (conn && cs_more(conn))
4539 odr_dumpBER(ber_file, netbuffer, res);
4540 if (apdu_file && !z_GDU(print, &gdu, 0, 0))
4542 odr_perror(print, "Failed to print incoming APDU");
4546 if (gdu->which == Z_GDU_Z3950)
4548 Z_APDU *apdu = gdu->u.z3950;
4549 switch (apdu->which)
4551 case Z_APDU_initResponse:
4552 process_Z3950_initResponse(apdu->u.initResponse);
4554 case Z_APDU_searchResponse:
4555 process_Z3950_searchResponse(apdu->u.searchResponse);
4557 case Z_APDU_scanResponse:
4558 process_Z3950_scanResponse(apdu->u.scanResponse);
4560 case Z_APDU_presentResponse:
4561 print_refid(apdu->u.presentResponse->referenceId);
4563 *apdu->u.presentResponse->numberOfRecordsReturned;
4564 if (apdu->u.presentResponse->records)
4565 display_records(apdu->u.presentResponse->records);
4567 printf("No records.\n");
4568 printf("nextResultSetPosition = " ODR_INT_PRINTF "\n",
4569 *apdu->u.presentResponse->nextResultSetPosition);
4571 case Z_APDU_sortResponse:
4572 process_Z3950_sortResponse(apdu->u.sortResponse);
4574 case Z_APDU_extendedServicesResponse:
4575 printf("Got extended services response\n");
4576 process_Z3950_ESResponse(apdu->u.extendedServicesResponse);
4579 printf("Target has closed the association.\n");
4580 process_Z3950_close(apdu->u.close);
4582 case Z_APDU_resourceControlRequest:
4583 process_Z3950_resourceControlRequest(
4584 apdu->u.resourceControlRequest);
4586 case Z_APDU_deleteResultSetResponse:
4587 process_Z3950_deleteResultSetResponse(
4588 apdu->u.deleteResultSetResponse);
4591 printf("Received unknown APDU type (%d).\n",
4597 else if (gdu->which == Z_GDU_HTTP_Response)
4599 Z_HTTP_Response *hres = gdu->u.HTTP_Response;
4600 int code = hres->code;
4601 const char *location = 0;
4602 if ((code == 301 || code == 302)
4603 && no_redirects < max_HTTP_redirects
4604 && !yaz_matchstr(sru_method, "get")
4605 && (location = z_HTTP_header_lookup(hres->headers, "Location")))
4607 const char *base_tmp;
4608 session_connect_base(location, &base_tmp);
4612 if (send_SRW_redirect(location, hres) == 2)
4615 printf("Redirect failed\n");
4618 http_response(gdu->u.HTTP_Response);
4621 if (one_response_only)
4623 if (conn && !cs_more(conn))
4626 #if HAVE_GETTIMEOFDAY
4630 printf("S/U S/U=%ld/%ld %ld/%ld",
4631 (long) tv_start.tv_sec,
4632 (long) tv_start.tv_usec,
4633 (long) tv_end.tv_sec,
4634 (long) tv_end.tv_usec);
4636 printf("Elapsed: %.6f\n",
4637 (double) tv_end.tv_usec / 1e6 + tv_end.tv_sec -
4638 ((double) tv_start.tv_usec / 1e6 + tv_start.tv_sec));
4644 static int cmd_cclparse(const char* arg)
4647 struct ccl_rpn_node *rpn=NULL;
4650 rpn = ccl_find_str(bibset, arg, &error, &pos);
4654 int ioff = 3+strlen(last_cmd)+1+pos;
4655 printf("%*s^ - ", ioff, " ");
4656 printf("%s\n", ccl_err_msg(error));
4662 ccl_pr_tree(rpn, stdout);
4666 ccl_rpn_delete(rpn);
4673 static int cmd_set_otherinfo(const char* args)
4675 char oidstr[101], otherinfoString[101];
4679 sscan_res = sscanf(args, "%d %100[^ ] %100s",
4680 &otherinfoNo, oidstr, otherinfoString);
4682 if (sscan_res > 0 && otherinfoNo >= maxOtherInfosSupported)
4684 printf("Error otherinfo index too large (%d>=%d)\n",
4685 otherinfoNo,maxOtherInfosSupported);
4692 /* reset this otherinfo */
4693 extraOtherInfos[otherinfoNo].oid[0] = -1;
4694 xfree(extraOtherInfos[otherinfoNo].value);
4695 extraOtherInfos[otherinfoNo].value = 0;
4700 printf("Error in set_otherinfo command \n");
4705 NMEM oid_tmp = nmem_create();
4706 const Odr_oid *oid =
4707 yaz_string_to_oid_nmem(yaz_oid_std(),
4708 CLASS_GENERAL, oidstr, oid_tmp);
4709 oid_oidcpy(extraOtherInfos[otherinfoNo].oid, oid);
4711 xfree(extraOtherInfos[otherinfoNo].value);
4712 extraOtherInfos[otherinfoNo].value = xstrdup(otherinfoString);
4714 nmem_destroy(oid_tmp);
4720 static int cmd_sleep(const char* args )
4722 int sec = atoi(args);
4730 printf("Done sleeping %d seconds\n", sec);
4735 static int cmd_list_otherinfo(const char* args)
4742 if (i >= maxOtherInfosSupported)
4744 printf("Error otherinfo index to large (%d>%d)\n",i,maxOtherInfosSupported);
4747 if (extraOtherInfos[i].value)
4749 char name_oid[OID_STR_MAX];
4752 yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4754 printf(" otherinfo %d %s %s\n",
4755 i, name ? name : "null",
4756 extraOtherInfos[i].value);
4762 for (i = 0; i < maxOtherInfosSupported; ++i)
4764 if (extraOtherInfos[i].value)
4766 char name_oid[OID_STR_MAX];
4769 yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4771 printf(" otherinfo %d %s %s\n",
4772 i, name ? name : "null",
4773 extraOtherInfos[i].value);
4780 static int cmd_list_all(const char* args)
4784 /* connection options */
4786 printf("Connected to : %s\n", cur_host);
4788 printf("Not connected to : %s\n", cur_host);
4790 printf("Not connected : \n");
4791 if (yazProxy) printf("using proxy : %s\n",yazProxy);
4793 printf("auto_reconnect : %s\n",auto_reconnect?"on":"off");
4794 printf("auto_wait : %s\n",auto_wait?"on":"off");
4797 printf("Authentication : none\n");
4800 switch (auth->which)
4802 case Z_IdAuthentication_idPass:
4803 printf("Authentication : IdPass\n");
4804 printf(" Login User : %s\n",auth->u.idPass->userId?auth->u.idPass->userId:"");
4805 printf(" Login Group : %s\n",auth->u.idPass->groupId?auth->u.idPass->groupId:"");
4806 printf(" Password : %s\n",auth->u.idPass->password?auth->u.idPass->password:"");
4808 case Z_IdAuthentication_open:
4809 printf("Authentication : psOpen\n");
4810 printf(" Open string : %s\n",auth->u.open);
4813 printf("Authentication : Unknown\n");
4816 if (negotiationCharset)
4817 printf("Neg. Character set : `%s'\n", negotiationCharset);
4821 for (i = 0; i<num_databaseNames; i++) printf("%s ",databaseNames[i]);
4825 printf("CCL file : %s\n",ccl_fields);
4826 printf("CQL file : %s\n",cql_fields);
4827 printf("Query type : %s\n",query_type_as_string(queryType));
4829 printf("Named Result Sets : %s\n",setnumber==-1?"off":"on");
4831 /* piggy back options */
4832 printf("ssub/lslb/mspn : %d/%d/%d\n",smallSetUpperBound,largeSetLowerBound,mediumSetPresentNumber);
4834 /* print present related options */
4835 if (recordsyntax_size > 0)
4837 printf("Format : %s\n", recordsyntax_list[0]);
4839 printf("Schema : %s\n",record_schema ? record_schema : "not set");
4840 printf("Elements : %s\n",elementSetNames?elementSetNames->u.generic:"");
4842 /* loging options */
4843 printf("APDU log : %s\n",apdu_file?"on":"off");
4844 printf("Record log : %s\n",marc_file?"on":"off");
4847 printf("Other Info: \n");
4848 cmd_list_otherinfo("");
4853 static int cmd_clear_otherinfo(const char* args)
4855 if (strlen(args) > 0)
4857 int otherinfoNo = atoi(args);
4858 if (otherinfoNo >= maxOtherInfosSupported)
4860 printf("Error otherinfo index too large (%d>=%d)\n",
4861 otherinfoNo, maxOtherInfosSupported);
4864 if (extraOtherInfos[otherinfoNo].value)
4866 /* only clear if set. */
4867 extraOtherInfos[otherinfoNo].oid[0] = -1;
4868 xfree(extraOtherInfos[otherinfoNo].value);
4869 extraOtherInfos[otherinfoNo].value = 0;
4875 for (i = 0; i < maxOtherInfosSupported; ++i)
4877 if (extraOtherInfos[i].value)
4879 extraOtherInfos[i].oid[0] = -1;
4880 xfree(extraOtherInfos[i].value);
4881 extraOtherInfos[i].value = 0;
4888 static int cmd_wait_response(const char *arg)
4891 int wait_for = atoi(arg);
4895 for (i = 0 ; i < wait_for; ++i )
4896 wait_and_handle_response(1);
4900 static int cmd_help(const char *line);
4902 typedef char *(*completerFunctionType)(const char *text, int state);
4906 int (*fun)(const char *arg);
4908 completerFunctionType rl_completerfunction;
4909 int complete_filenames;
4910 const char **local_tabcompletes;
4912 {"open", cmd_open, "('tcp'|'ssl')':<host>[':'<port>][/<db>]",NULL,0,NULL},
4913 {"quit", cmd_quit, "",NULL,0,NULL},
4914 {"find", cmd_find, "<query>",NULL,0,NULL},
4915 {"facets", cmd_facets, "<query>",NULL,0,NULL},
4916 {"delete", cmd_delete, "<setname>",NULL,0,NULL},
4917 {"base", cmd_base, "<base-name>",NULL,0,NULL},
4918 {"show", cmd_show, "<rec#>['+'<#recs>['+'<setname>]]",NULL,0,NULL},
4919 {"setscan", cmd_setscan, "<term>",NULL,0,NULL},
4920 {"scan", cmd_scan, "<term>",NULL,0,NULL},
4921 {"scanstep", cmd_scanstep, "<size>",NULL,0,NULL},
4922 {"scanpos", cmd_scanpos, "<size>",NULL,0,NULL},
4923 {"scansize", cmd_scansize, "<size>",NULL,0,NULL},
4924 {"sort", cmd_sort, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4925 {"sort+", cmd_sort_newset, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4926 {"authentication", cmd_authentication, "<acctstring>",NULL,0,NULL},
4927 {"lslb", cmd_lslb, "<largeSetLowerBound>",NULL,0,NULL},
4928 {"ssub", cmd_ssub, "<smallSetUpperBound>",NULL,0,NULL},
4929 {"mspn", cmd_mspn, "<mediumSetPresentNumber>",NULL,0,NULL},
4930 {"status", cmd_status, "",NULL,0,NULL},
4931 {"setnames", cmd_setnames, "",NULL,0,NULL},
4932 {"cancel", cmd_cancel, "",NULL,0,NULL},
4933 {"cancel_find", cmd_cancel_find, "<query>",NULL,0,NULL},
4934 {"format", cmd_format, "<recordsyntax>",complete_format,0,NULL},
4935 {"schema", cmd_schema, "<schema>",complete_schema,0,NULL},
4936 {"elements", cmd_elements, "<elementSetName>",NULL,0,NULL},
4937 {"close", cmd_close, "",NULL,0,NULL},
4938 {"querytype", cmd_querytype, "<type>",complete_querytype,0,NULL},
4939 {"refid", cmd_refid, "<id>",NULL,0,NULL},
4940 {"itemorder", cmd_itemorder, "ill|item|xml <itemno>",NULL,0,NULL},
4941 {"update", cmd_update, "<action> <recid> [<doc>]",NULL,0,NULL},
4942 {"update0", cmd_update0, "<action> <recid> [<doc>]",NULL,0,NULL},
4943 {"xmles", cmd_xmles, "<OID> <doc>",NULL,0,NULL},
4944 {"packagename", cmd_packagename, "<packagename>",NULL,0,NULL},
4945 {"proxy", cmd_proxy, "[('tcp'|'ssl')]<host>[':'<port>]",NULL,0,NULL},
4946 {"charset", cmd_charset, "<nego_charset> <output_charset>",NULL,0,NULL},
4947 {"negcharset", cmd_negcharset, "<nego_charset>",NULL,0,NULL},
4948 {"displaycharset", cmd_displaycharset, "<output_charset>",NULL,0,NULL},
4949 {"marccharset", cmd_marccharset, "<charset_name>",NULL,0,NULL},
4950 {"querycharset", cmd_querycharset, "<charset_name>",NULL,0,NULL},
4951 {"lang", cmd_lang, "<language_code>",NULL,0,NULL},
4952 {"source", cmd_source_echo, "<filename>",NULL,1,NULL},
4953 {".", cmd_source_echo, "<filename>",NULL,1,NULL},
4954 {"!", cmd_subshell, "Subshell command",NULL,1,NULL},
4955 {"set_apdufile", cmd_set_apdufile, "<filename>",NULL,1,NULL},
4956 {"set_berfile", cmd_set_berfile, "<filename>",NULL,1,NULL},
4957 {"set_marcdump", cmd_set_marcdump," <filename>",NULL,1,NULL},
4958 {"set_cclfile", cmd_set_cclfile," <filename>",NULL,1,NULL},
4959 {"set_cqlfile", cmd_set_cqlfile," <filename>",NULL,1,NULL},
4960 {"set_auto_reconnect", cmd_set_auto_reconnect," on|off",complete_auto_reconnect,1,NULL},
4961 {"set_auto_wait", cmd_set_auto_wait," on|off",complete_auto_reconnect,1,NULL},
4962 {"set_otherinfo", cmd_set_otherinfo,"<otherinfoinddex> <oid> <string>",NULL,0,NULL},
4963 {"sleep", cmd_sleep,"<seconds>",NULL,0,NULL},
4964 {"register_oid", cmd_register_oid,"<name> <class> <oid>",NULL,0,NULL},
4965 {"push_command", cmd_push_command,"<command>",command_generator,0,NULL},
4966 {"register_tab", cmd_register_tab,"<commandname> <tab>",command_generator,0,NULL},
4967 {"cclparse", cmd_cclparse,"<ccl find command>",NULL,0,NULL},
4968 {"list_otherinfo",cmd_list_otherinfo,"[otherinfoinddex]",NULL,0,NULL},
4969 {"list_all",cmd_list_all,"",NULL,0,NULL},
4970 {"clear_otherinfo",cmd_clear_otherinfo,"",NULL,0,NULL},
4971 {"wait_response",cmd_wait_response,"<number>",NULL,0,NULL},
4972 /* Server Admin Functions */
4973 {"adm-reindex", cmd_adm_reindex, "<database-name>",NULL,0,NULL},
4974 {"adm-truncate", cmd_adm_truncate, "('database'|'index')<object-name>",NULL,0,NULL},
4975 {"adm-create", cmd_adm_create, "",NULL,0,NULL},
4976 {"adm-drop", cmd_adm_drop, "('database'|'index')<object-name>",NULL,0,NULL},
4977 {"adm-import", cmd_adm_import, "<record-type> <dir> <pattern>",NULL,0,NULL},
4978 {"adm-refresh", cmd_adm_refresh, "",NULL,0,NULL},
4979 {"adm-commit", cmd_adm_commit, "",NULL,0,NULL},
4980 {"adm-shutdown", cmd_adm_shutdown, "",NULL,0,NULL},
4981 {"adm-startup", cmd_adm_startup, "",NULL,0,NULL},
4982 {"explain", cmd_explain, "", NULL, 0, NULL},
4983 {"options", cmd_options, "", NULL, 0, NULL},
4984 {"zversion", cmd_zversion, "", NULL, 0, NULL},
4985 {"help", cmd_help, "", NULL,0,NULL},
4986 {"init", cmd_init, "", NULL,0,NULL},
4987 {"sru", cmd_sru, "<method> <version>", NULL,0,NULL},
4988 {"url", cmd_url, "<url>", NULL,0,NULL},
4989 {"exit", cmd_quit, "",NULL,0,NULL},
4993 static int cmd_help(const char *line)
4999 sscanf(line, "%20s", topic);
5002 printf("Commands:\n");
5003 for (i = 0; cmd_array[i].cmd; i++)
5004 if (*topic == 0 || strcmp(topic, cmd_array[i].cmd) == 0)
5005 printf(" %s %s\n", cmd_array[i].cmd, cmd_array[i].ad);
5006 if (!strcmp(topic, "find"))
5009 printf(" \"term\" Simple Term\n");
5010 printf(" @attr [attset] type=value op Attribute\n");
5011 printf(" @and opl opr And\n");
5012 printf(" @or opl opr Or\n");
5013 printf(" @not opl opr And-Not\n");
5014 printf(" @set set Result set\n");
5015 printf(" @prox exl dist ord rel uc ut Proximity. Use help prox\n");
5017 printf("Bib-1 attribute types\n");
5019 printf("4=Title 7=ISBN 8=ISSN 30=Date 62=Abstract 1003=Author 1016=Any\n");
5020 printf("2=Relation: ");
5021 printf("1< 2<= 3= 4>= 5> 6!= 102=Relevance\n");
5022 printf("3=Position: ");
5023 printf("1=First in Field 2=First in subfield 3=Any position\n");
5024 printf("4=Structure: ");
5025 printf("1=Phrase 2=Word 3=Key 4=Year 5=Date 6=WordList\n");
5026 printf("5=Truncation: ");
5027 printf("1=Right 2=Left 3=L&R 100=No 101=# 102=Re-1 103=Re-2\n");
5028 printf("6=Completeness:");
5029 printf("1=Incomplete subfield 2=Complete subfield 3=Complete field\n");
5031 if (!strcmp(topic, "prox"))
5033 printf("Proximity:\n");
5034 printf(" @prox exl dist ord rel uc ut\n");
5035 printf(" exl: exclude flag . 0=include, 1=exclude.\n");
5036 printf(" dist: distance integer.\n");
5037 printf(" ord: order flag. 0=unordered, 1=ordered.\n");
5038 printf(" rel: relation integer. 1< 2<= 3= 4>= 5> 6!= .\n");
5039 printf(" uc: unit class. k=known, p=private.\n");
5040 printf(" ut: unit type. 1=character, 2=word, 3=sentence,\n");
5041 printf(" 4=paragraph, 5=section, 6=chapter, 7=document,\n");
5042 printf(" 8=element, 9=subelement, 10=elementType, 11=byte.\n");
5043 printf("\nExamples:\n");
5044 printf(" Search for a and b in-order at most 3 words apart:\n");
5045 printf(" @prox 0 3 1 2 k 2 a b\n");
5046 printf(" Search for any order of a and b next to each other:\n");
5047 printf(" @prox 0 1 0 3 k 2 a b\n");
5052 static int cmd_register_tab(const char* arg)
5054 #if HAVE_READLINE_READLINE_H
5055 char command[101], tabargument[101];
5058 const char** tabslist;
5060 if (sscanf(arg, "%100s %100s", command, tabargument) < 1)
5065 /* locate the amdn in the list */
5066 for (i = 0; cmd_array[i].cmd; i++)
5068 if (!strncmp(cmd_array[i].cmd, command, strlen(command)))
5072 if (!cmd_array[i].cmd)
5074 fprintf(stderr,"Unknown command %s\n",command);
5079 if (!cmd_array[i].local_tabcompletes)
5080 cmd_array[i].local_tabcompletes = (const char **) calloc(1,sizeof(char**));
5084 tabslist = cmd_array[i].local_tabcompletes;
5085 for (; tabslist && *tabslist; tabslist++)
5088 cmd_array[i].local_tabcompletes = (const char **)
5089 realloc(cmd_array[i].local_tabcompletes,
5090 (num_of_tabs+2)*sizeof(char**));
5091 tabslist = cmd_array[i].local_tabcompletes;
5092 tabslist[num_of_tabs] = strdup(tabargument);
5093 tabslist[num_of_tabs+1] = NULL;
5098 static void process_cmd_line(char* line)
5101 char word[32], arg[10240];
5103 #if HAVE_GETTIMEOFDAY
5104 gettimeofday(&tv_start, 0);
5107 if ((res = sscanf(line, "%31s %10239[^;]", word, arg)) <= 0)
5109 strcpy(word, last_cmd);
5114 strcpy(last_cmd, word);
5116 /* removed tailing spaces from the arg command */
5119 char* lastnonspace=NULL;
5123 if (!isspace(*(unsigned char *) p))
5127 *(++lastnonspace) = 0;
5130 for (i = 0; cmd_array[i].cmd; i++)
5131 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
5133 res = (*cmd_array[i].fun)(arg);
5137 if (!cmd_array[i].cmd) /* dump our help-screen */
5139 printf("Unknown command: %s.\n", word);
5140 printf("Type 'help' for list of commands\n");
5147 if (res >= 2 && auto_wait)
5148 wait_and_handle_response(0);
5156 static char *command_generator(const char *text, int state)
5158 #if HAVE_READLINE_READLINE_H
5162 for (; cmd_array[idx].cmd; ++idx)
5164 if (!strncmp(cmd_array[idx].cmd, text, strlen(text)))
5166 ++idx; /* skip this entry on the next run */
5167 return strdup(cmd_array[idx-1].cmd);
5174 #if HAVE_READLINE_READLINE_H
5175 static const char** default_completer_list = NULL;
5177 static char* default_completer(const char* text, int state)
5179 return complete_from_list(default_completer_list, text, state);
5183 #if HAVE_READLINE_READLINE_H
5186 This function only known how to complete on the first word
5188 static char **readline_completer(char *text, int start, int end)
5190 completerFunctionType completerToUse;
5194 #if HAVE_READLINE_RL_COMPLETION_MATCHES
5195 char** res = rl_completion_matches(text, command_generator);
5197 char** res = completion_matches(text,
5198 (CPFunction*)command_generator);
5200 rl_attempted_completion_over = 1;
5205 char arg[10240],word[32];
5207 if ((res = sscanf(rl_line_buffer, "%31s %10239[^;]", word, arg)) <= 0)
5209 rl_attempted_completion_over = 1;
5213 for (i = 0; cmd_array[i].cmd; i++)
5214 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
5217 if (!cmd_array[i].cmd)
5220 default_completer_list = cmd_array[i].local_tabcompletes;
5222 completerToUse = cmd_array[i].rl_completerfunction;
5223 if (!completerToUse)
5224 { /* if command completer is not defined use the default completer */
5225 completerToUse = default_completer;
5229 #ifdef HAVE_READLINE_RL_COMPLETION_MATCHES
5231 rl_completion_matches(text, completerToUse);
5234 completion_matches(text, (CPFunction*)completerToUse);
5236 if (!cmd_array[i].complete_filenames)
5237 rl_attempted_completion_over = 1;
5242 if (!cmd_array[i].complete_filenames)
5243 rl_attempted_completion_over = 1;
5251 static void ctrl_c_handler(int x)
5257 static void client(void)
5264 signal(SIGINT, ctrl_c_handler);
5267 #if HAVE_GETTIMEOFDAY
5268 gettimeofday(&tv_start, 0);
5273 char *line_in = NULL;
5274 #if HAVE_READLINE_READLINE_H
5277 line_in=readline(C_PROMPT);
5283 #if HAVE_READLINE_HISTORY_H
5285 add_history(line_in);
5287 strncpy(line, line_in, sizeof(line)-1);
5296 if (!fgets(line, sizeof(line)-1, stdin))
5298 if ((end_p = strchr(line, '\n')))
5302 file_history_add_line(file_history, line);
5303 process_cmd_line(line);
5307 static void show_version(void)
5309 char vstr[20], sha1_str[41];
5311 yaz_version(vstr, sha1_str);
5312 printf("YAZ version: %s %s\n", YAZ_VERSION, YAZ_VERSION_SHA1);
5313 if (strcmp(sha1_str, YAZ_VERSION_SHA1))
5314 printf("YAZ DLL/SO: %s %s\n", vstr, sha1_str);
5318 int main(int argc, char **argv)
5321 char *open_command = 0;
5322 char *auth_command = 0;
5324 const char *rc_file = 0;
5328 if (!setlocale(LC_CTYPE, ""))
5329 fprintf(stderr, "setlocale failed\n");
5333 codeset = nl_langinfo(CODESET);
5337 outputCharset = xstrdup(codeset);
5339 ODR_MASK_SET(&z3950_options, Z_Options_search);
5340 ODR_MASK_SET(&z3950_options, Z_Options_present);
5341 ODR_MASK_SET(&z3950_options, Z_Options_namedResultSets);
5342 ODR_MASK_SET(&z3950_options, Z_Options_triggerResourceCtrl);
5343 ODR_MASK_SET(&z3950_options, Z_Options_scan);
5344 ODR_MASK_SET(&z3950_options, Z_Options_sort);
5345 ODR_MASK_SET(&z3950_options, Z_Options_extendedServices);
5346 ODR_MASK_SET(&z3950_options, Z_Options_delSet);
5348 nmem_auth = nmem_create();
5350 while ((ret = options("k:c:q:a:b:m:v:p:u:t:Vxd:f:", argv, argc, &arg)) != -2)
5357 open_command = (char *) xmalloc(strlen(arg)+6);
5358 strcpy(open_command, "open ");
5359 strcat(open_command, arg);
5363 fprintf(stderr, "%s: Specify at most one server address\n",
5369 if (!strcmp(arg, "-"))
5372 apdu_file=fopen(arg, "a");
5375 if (!strcmp(arg, "-"))
5378 ber_file=fopen(arg, "a");
5381 strncpy(ccl_fields, arg, sizeof(ccl_fields)-1);
5382 ccl_fields[sizeof(ccl_fields)-1] = '\0';
5385 dump_file_prefix = arg;
5391 kilobytes = atoi(arg);
5394 if (!(marc_file = fopen(arg, "a")))
5401 yazProxy = xstrdup(arg);
5404 strncpy(cql_fields, arg, sizeof(cql_fields)-1);
5405 cql_fields[sizeof(cql_fields)-1] = '\0';
5408 outputCharset = xstrdup(arg);
5413 auth_command = (char *) xmalloc(strlen(arg)+6);
5414 strcpy(auth_command, "auth ");
5415 strcat(auth_command, arg);
5419 yaz_log_init(yaz_log_mask_str(arg), "", 0);
5428 fprintf(stderr, "Usage: %s "
5448 initialize(rc_file);
5451 #ifdef HAVE_GETTIMEOFDAY
5452 gettimeofday(&tv_start, 0);
5454 process_cmd_line(auth_command);
5455 #if HAVE_READLINE_HISTORY_H
5456 add_history(auth_command);
5458 xfree(auth_command);
5462 #ifdef HAVE_GETTIMEOFDAY
5463 gettimeofday(&tv_start, 0);
5465 process_cmd_line(open_command);
5466 #if HAVE_READLINE_HISTORY_H
5467 add_history(open_command);
5469 xfree(open_command);
5478 * c-file-style: "Stroustrup"
5479 * indent-tabs-mode: nil
5481 * vim: shiftwidth=4 tabstop=8 expandtab