1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) Index Data
3 * See the file LICENSE for details.
6 * \brief yaz-client program
20 #include <sys/types.h>
42 #define S_ISREG(x) (x & _S_IFREG)
43 #define S_ISDIR(x) (x & _S_IFDIR)
46 #include <yaz/yaz-util.h>
47 #include <yaz/backtrace.h>
48 #include <yaz/comstack.h>
50 #include <yaz/oid_db.h>
51 #include <yaz/proto.h>
52 #include <yaz/marcdisp.h>
53 #include <yaz/diagbib1.h>
54 #include <yaz/otherinfo.h>
55 #include <yaz/charneg.h>
56 #include <yaz/query-charset.h>
58 #include <yaz/pquery.h>
59 #include <yaz/sortspec.h>
63 #include <yaz/yaz-ccl.h>
66 #include <yaz/facet.h>
67 #include <yaz/cookie.h>
69 #if HAVE_READLINE_READLINE_H
70 #include <readline/readline.h>
72 #if HAVE_READLINE_HISTORY_H
73 #include <readline/history.h>
78 #include "tabcomplete.h"
81 #define C_PROMPT "Z> "
83 static file_history_t file_history = 0;
85 static char sru_method[10] = "soap";
86 static char sru_version[10] = "1.2";
87 static char sru_recordPacking[10] = "";
88 static char *codeset = 0; /* character set for output */
89 static int hex_dump = 0;
90 static char *dump_file_prefix = 0;
91 static ODR out, in, print; /* encoding and decoding streams */
93 static ODR srw_sr_odr_out = 0;
94 static Z_SRW_PDU *srw_sr = 0;
96 static FILE *apdu_file = 0;
97 static FILE *ber_file = 0;
98 static COMSTACK conn = 0; /* our z-association */
100 static Z_IdAuthentication *auth = 0; /* our current auth definition */
101 static NMEM nmem_auth = NULL;
103 char *databaseNames[128];
104 int num_databaseNames = 0;
105 static Z_External *record_last = 0;
106 static int setnumber = -1; /* current result set number */
107 static Odr_int smallSetUpperBound = 0;
108 static Odr_int largeSetLowerBound = 1;
109 static Odr_int mediumSetPresentNumber = 0;
110 static Z_ElementSetNames *elementSetNames = 0;
111 static Z_FacetList *facet_list = 0;
112 static ODR facet_odr = 0;
113 static Odr_int setno = 1; /* current set offset */
114 static enum oid_proto protocol = PROTO_Z3950; /* current app protocol */
115 #define RECORDSYNTAX_MAX 20
116 static char *recordsyntax_list[RECORDSYNTAX_MAX];
117 static int recordsyntax_size = 0;
119 static char *record_schema = 0;
120 static int sent_close = 0;
121 static NMEM session_mem = NULL; /* memory handle for init-response */
122 static Z_InitResponse *session_initResponse = 0; /* session parameters */
123 static char last_scan_line[512] = "0";
124 static char last_scan_query[512] = "0";
125 static char ccl_fields[512] = "default.bib";
126 /* ### How can I set this path to use wherever YAZ is installed? */
127 static char cql_fields[512] = "/usr/local/share/yaz/etc/pqf.properties";
128 static char *esPackageName = 0;
129 static char *yazProxy = 0;
130 static int kilobytes = 64 * 1024;
131 static char *negotiationCharset = 0;
132 static int negotiationCharsetRecords = 1;
133 static int negotiationCharsetVersion = 3;
134 static char *outputCharset = 0;
135 static char *marcCharset = 0;
136 static char *queryCharset = 0;
137 static char* yazLang = 0;
139 static char last_cmd[32] = "?";
140 static FILE *marc_file = 0;
141 static char *refid = NULL;
142 static int auto_reconnect = 0;
143 static int auto_wait = 1;
144 static Odr_bitmask z3950_options;
145 static int z3950_version = 3;
146 static int scan_stepSize = 0;
147 static char scan_position[64];
148 static int scan_size = 20;
149 static WRBUF cur_host = 0;
150 static Odr_int last_hit_count = 0;
151 static int pretty_xml = 0;
152 static Odr_int sru_maximumRecords = 0;
153 static yaz_cookies_t yaz_cookies = 0;
163 static QueryType queryType = QueryType_Prefix;
165 static CCL_bibset bibset; /* CCL bibset handle */
166 static cql_transform_t cqltrans = 0; /* CQL context-set handle */
168 #if HAVE_READLINE_COMPLETION_OVER
171 /* readline doesn't have this var. Define it ourselves. */
172 int rl_attempted_completion_over = 0;
175 #define maxOtherInfosSupported 10
177 Odr_oid oid[OID_SIZE];
179 } extraOtherInfos[maxOtherInfosSupported];
181 static void process_cmd_line(char* line);
182 #if HAVE_READLINE_READLINE_H
183 static char **readline_completer(char *text, int start, int end);
185 static char *command_generator(const char *text, int state);
186 static int cmd_register_tab(const char* arg);
187 static int cmd_querycharset(const char *arg);
189 static void close_session(void);
191 static void marc_file_write(const char *buf, size_t sz);
193 static void wait_and_handle_response(int one_response_only);
194 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url);
196 ODR getODROutputStream(void)
201 static const char* query_type_as_string(QueryType q)
205 case QueryType_Prefix: return "prefix (RPN sent to server)";
206 case QueryType_CCL: return "CCL (CCL sent to server) ";
207 case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
208 case QueryType_CQL: return "CQL (CQL sent to server)";
209 case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
211 return "unknown Query type internal yaz-client error";
215 static void do_hex_dump(const char* buf, size_t len)
221 for (i = 0; i < len ; i = i+16 )
223 printf(" %4.4ld ", (long) i);
224 for (x = 0 ; i+x < len && x < 16; ++x)
226 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
231 if (dump_file_prefix)
234 if (++no < 1000 && strlen(dump_file_prefix) < 500)
238 sprintf(fname, "%s.%03d.raw", dump_file_prefix, no);
239 of = fopen(fname, "wb");
241 if (fwrite(buf, 1, len, of) != len)
243 printf("write failed for %s", fname);
247 printf("close failed for %s", fname);
253 static void add_otherInfos(Z_APDU *a)
255 Z_OtherInformation **oi;
258 if (facet_list && a->which == Z_APDU_searchRequest)
260 oi = &a->u.searchRequest->additionalSearchInfo;
261 yaz_oi_set_facetlist(oi, out, facet_list);
264 for (i = 0; i < maxOtherInfosSupported; ++i)
266 if (oid_oidlen(extraOtherInfos[i].oid) > 0)
267 yaz_oi_set_string_oid(oi, out, extraOtherInfos[i].oid,
268 1, extraOtherInfos[i].value);
272 int send_apdu(Z_APDU *a)
281 z_APDU(print, &a, 0, 0);
284 if (!z_APDU(out, &a, 0, 0))
286 odr_perror(out, "Encoding APDU");
290 buf = odr_getbuf(out, &len, 0);
292 odr_dumpBER(ber_file, buf, len);
293 do_hex_dump(buf, len);
294 if (cs_put(conn, buf, len) < 0)
296 fprintf(stderr, "cs_put: %s\n", cs_errmsg(cs_errno(conn)));
300 odr_reset(out); /* release the APDU structure */
304 static void print_stringn(const char *buf, size_t len)
307 for (i = 0; i < len; i++)
308 if ((buf[i] <= 126 && buf[i] >= 32) || strchr("\n\r\t\f", buf[i]))
309 printf("%c", buf[i]);
311 printf("\\X%02X", ((const unsigned char *)buf)[i]);
314 static void print_refid(Z_ReferenceId *id)
318 printf("Reference Id: ");
319 print_stringn((const char *) id->buf, id->len);
324 static Z_ReferenceId *set_refid(ODR out)
328 return odr_create_Odr_oct(out, refid, strlen(refid));
331 /* INIT SERVICE ------------------------------- */
333 static void send_Z3950_initRequest(const char* type_and_host)
335 Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
336 Z_InitRequest *req = apdu->u.initRequest;
339 req->options = &z3950_options;
341 ODR_MASK_ZERO(req->protocolVersion);
342 for (i = 0; i<z3950_version; i++)
343 ODR_MASK_SET(req->protocolVersion, i);
345 *req->maximumRecordSize = 1024*kilobytes;
346 *req->preferredMessageSize = 1024*kilobytes;
348 req->idAuthentication = auth;
350 req->referenceId = set_refid(out);
352 if (yazProxy && type_and_host)
354 yaz_oi_set_string_oid(&req->otherInfo, out, yaz_oid_userinfo_proxy,
358 if (negotiationCharset || yazLang)
360 Z_OtherInformation **p;
361 Z_OtherInformationUnit *p0;
363 yaz_oi_APDU(apdu, &p);
365 if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
367 ODR_MASK_SET(req->options, Z_Options_negotiationModel);
369 p0->which = Z_OtherInfo_externallyDefinedInfo;
370 p0->information.externallyDefinedInfo =
371 yaz_set_proposal_charneg_list(out, ",",
374 negotiationCharsetRecords);
378 printf("Sent initrequest.\n");
382 static void render_initUserInfo(Z_OtherInformation *ui1);
383 static void render_diag(Z_DiagnosticFormat *diag);
385 static void pr_opt(const char *opt, void *clientData)
390 static int process_Z3950_initResponse(Z_InitResponse *res)
393 /* save session parameters for later use */
394 session_mem = odr_extract_mem(in);
395 session_initResponse = res;
397 for (ver = 0; ver < 8; ver++)
398 if (!ODR_MASK_GET(res->protocolVersion, ver))
402 printf("Connection rejected by v%d target.\n", ver);
404 printf("Connection accepted by v%d target.\n", ver);
405 if (res->implementationId)
406 printf("ID : %s\n", res->implementationId);
407 if (res->implementationName)
408 printf("Name : %s\n", res->implementationName);
409 if (res->implementationVersion)
410 printf("Version: %s\n", res->implementationVersion);
411 if (res->userInformationField)
413 Z_External *uif = res->userInformationField;
414 if (uif->which == Z_External_userInfo1)
415 render_initUserInfo(uif->u.userInfo1);
418 printf("UserInformationfield:\n");
419 if (!z_External(print, (Z_External**)&uif, 0, 0))
421 odr_perror(print, "Printing userinfo\n");
424 if (uif->which == Z_External_octet)
426 printf("Guessing visiblestring:\n");
427 printf("'%.*s'\n", uif->u.octet_aligned->len,
428 uif->u.octet_aligned->buf);
430 else if (uif->which == Z_External_single)
432 Odr_any *sat = uif->u.single_ASN1_type;
433 if (!oid_oidcmp(uif->direct_reference,
434 yaz_oid_userinfo_oclc_userinfo))
436 Z_OCLC_UserInformation *oclc_ui;
437 ODR decode = odr_createmem(ODR_DECODE);
438 odr_setbuf(decode, (char *) sat->buf, sat->len, 0);
439 if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
440 printf("Bad OCLC UserInformation:\n");
442 printf("OCLC UserInformation:\n");
443 if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
444 printf("Bad OCLC UserInformation spec\n");
449 /* Peek at any private Init-diagnostic APDUs */
450 printf("yaz-client ignoring unrecognised userInformationField: %d-octet External '%.*s'\n",
451 (int) sat->len, sat->len, sat->buf);
458 yaz_init_opt_decode(res->options, pr_opt, 0);
461 if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
464 if (ODR_MASK_GET(res->options, Z_Options_negotiationModel))
466 Z_CharSetandLanguageNegotiation *p =
467 yaz_get_charneg_record(res->otherInfo);
471 char *charset=NULL, *lang=NULL;
474 yaz_get_response_charneg(session_mem, p, &charset, &lang,
477 printf("Accepted character set : %s\n", charset ? charset:"none");
478 printf("Accepted code language : %s\n", lang ? lang:"none");
479 printf("Accepted records in ...: %d\n", selected );
481 if (outputCharset && charset)
483 printf("Converting between %s and %s\n",
484 outputCharset, charset);
485 odr_set_charset(out, charset, outputCharset);
486 odr_set_charset(in, outputCharset, charset);
487 cmd_querycharset(charset);
491 odr_set_charset(out, 0, 0);
492 odr_set_charset(in, 0, 0);
501 static void render_initUserInfo(Z_OtherInformation *ui1)
504 printf("Init response contains %d otherInfo unit%s:\n",
505 ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
507 for (i = 0; i < ui1->num_elements; i++)
509 Z_OtherInformationUnit *unit = ui1->list[i];
510 printf(" %d: otherInfo unit contains ", i+1);
511 if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
512 unit->information.externallyDefinedInfo &&
513 unit->information.externallyDefinedInfo->which ==
516 render_diag(unit->information.externallyDefinedInfo->u.diag1);
518 else if (unit->which != Z_OtherInfo_externallyDefinedInfo)
520 printf("unsupported otherInfo unit->which = %d\n", unit->which);
524 printf("unsupported otherInfo unit external %d\n",
525 unit->information.externallyDefinedInfo ?
526 unit->information.externallyDefinedInfo->which : -2);
532 /* ### should this share code with display_diagrecs()? */
533 static void render_diag(Z_DiagnosticFormat *diag)
537 printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
538 for (i = 0; i < diag->num; i++)
540 Z_DiagnosticFormat_s *ds = diag->elements[i];
541 printf(" %d: ", i+1);
544 case Z_DiagnosticFormat_s_defaultDiagRec: {
545 Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
546 /* ### should check `dd->diagnosticSetId' */
547 printf("code=" ODR_INT_PRINTF " (%s)", *dd->condition,
548 diagbib1_str((int) *dd->condition));
549 /* Both types of addinfo are the same, so use type-pun */
550 if (dd->u.v2Addinfo != 0)
551 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
554 case Z_DiagnosticFormat_s_explicitDiagnostic:
555 printf("Explicit diagnostic (not supported)");
558 printf("Unrecognised diagnostic type %d", ds->which);
562 if (ds->message != 0)
563 printf(", message='%s'", ds->message);
569 static int set_base(const char *arg)
574 for (i = 0; i<num_databaseNames; i++)
575 xfree(databaseNames[i]);
576 num_databaseNames = 0;
580 if (!(cp = strchr(arg, ' ')))
581 cp = arg + strlen(arg);
584 databaseNames[num_databaseNames] = (char *)xmalloc(1 + cp - arg);
585 memcpy(databaseNames[num_databaseNames], arg, cp - arg);
586 databaseNames[num_databaseNames][cp - arg] = '\0';
588 for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
597 if (num_databaseNames == 0)
599 num_databaseNames = 1;
600 databaseNames[0] = xstrdup("");
605 static int parse_cmd_doc(const char **arg, ODR out, char **buf, int *len)
608 while (**arg && strchr(" \t\n\r\f", **arg))
614 else if ((*arg)[0] == '<')
619 const char *arg_start = ++(*arg);
621 while (**arg != '\0' && **arg != ' ')
624 fname = odr_strdupn(out, arg_start, *arg - arg_start);
626 inf = fopen(fname, "rb");
629 printf("Couldn't open %s\n", fname);
632 if (fseek(inf, 0L, SEEK_END) == -1)
634 printf("Couldn't seek in %s\n", fname);
639 if (fseek(inf, 0L, SEEK_SET) == -1)
641 printf("Couldn't seek in %s\n", fname);
646 *buf = (char *) odr_malloc(out, fsize+1);
647 (*buf)[fsize] = '\0';
648 if (fread(*buf, 1, fsize, inf) != fsize)
650 printf("Unable to read %s\n", fname);
656 else if ((*arg)[0] == '\"' && (sep=strchr(*arg+1, '"')))
660 *buf = odr_strdupn(out, *arg, *len);
665 const char *arg_start = *arg;
667 while (**arg != '\0' && **arg != ' ')
670 *len = *arg - arg_start;
671 *buf = odr_strdupn(out, arg_start, *len);
676 static int cmd_base(const char *arg)
680 printf("Usage: base <database> <database> ...\n");
683 return set_base(arg);
686 static int session_connect_base(const char *arg, const char **basep)
689 char type_and_host[101];
697 nmem_destroy(session_mem);
699 session_initResponse = 0;
701 cs_get_host_args(arg, basep);
703 strncpy(type_and_host, arg, sizeof(type_and_host)-1);
704 type_and_host[sizeof(type_and_host)-1] = '\0';
706 conn = cs_create_host_proxy(arg, 1, &add, yazProxy);
709 printf("Could not resolve address %s\n", arg);
714 if (conn->protocol == PROTO_HTTP)
716 printf("SRW/HTTP not enabled in this YAZ\n");
722 protocol = conn->protocol;
723 printf("Connecting...");
725 if (cs_connect(conn, add) < 0)
727 printf("error = %s\n", cs_strerror(conn));
733 cs_print_session_info(conn);
734 if (protocol == PROTO_Z3950)
736 send_Z3950_initRequest(type_and_host);
742 static int session_connect(void)
745 const char *basep = 0;
747 yaz_cookies_destroy(yaz_cookies);
748 yaz_cookies = yaz_cookies_create();
750 r = session_connect_base(wrbuf_cstr(cur_host), &basep);
753 else if (protocol == PROTO_Z3950)
758 static int cmd_open(const char *arg)
763 wrbuf_rewind(cur_host);
764 if (!strstr(arg, "://") && strcmp(sru_method, "soap"))
765 wrbuf_puts(cur_host, "http://");
766 wrbuf_puts(cur_host, arg);
769 r = session_connect();
770 if (conn && conn->protocol == PROTO_HTTP)
771 queryType = QueryType_CQL;
776 static int cmd_authentication(const char *arg)
781 nmem_reset(nmem_auth);
782 nmem_strsplit_blank(nmem_auth, arg, &args, &r);
786 printf("Authentication set to null\n");
791 auth = (Z_IdAuthentication *) nmem_malloc(nmem_auth, sizeof(*auth));
792 if (!strcmp(args[0], "-"))
794 auth->which = Z_IdAuthentication_anonymous;
795 auth->u.anonymous = odr_nullval();
796 printf("Authentication set to Anonymous\n");
800 auth->which = Z_IdAuthentication_open;
801 auth->u.open = args[0];
802 printf("Authentication set to Open (%s)\n", args[0]);
807 auth = (Z_IdAuthentication *) nmem_malloc(nmem_auth, sizeof(*auth));
808 auth->which = Z_IdAuthentication_idPass;
809 auth->u.idPass = (Z_IdPass *)
810 nmem_malloc(nmem_auth, sizeof(*auth->u.idPass));
811 auth->u.idPass->groupId = NULL;
812 auth->u.idPass->userId = !strcmp(args[0], "-") ? 0 : args[0];
813 auth->u.idPass->password = !strcmp(args[1], "-") ? 0 : args[1];
814 printf("Authentication set to User (%s), Pass (%s)\n",
819 auth = (Z_IdAuthentication*) nmem_malloc(nmem_auth, sizeof(*auth));
820 auth->which = Z_IdAuthentication_idPass;
821 auth->u.idPass = (Z_IdPass *)
822 nmem_malloc(nmem_auth, sizeof(*auth->u.idPass));
823 auth->u.idPass->groupId = args[1];
824 auth->u.idPass->userId = args[0];
825 auth->u.idPass->password = args[2];
826 printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
827 args[0], args[1], args[2]);
831 printf("Bad number of args to auth\n");
838 /* SEARCH SERVICE ------------------------------ */
839 static void display_record(Z_External *r);
841 static void print_record(const char *buf, size_t len)
844 print_stringn(buf, len);
845 /* add newline if not already added ... */
846 if (i <= 0 || buf[i-1] != '\n')
850 static void print_mab_record(const char *buf, size_t len)
853 size_t last_linebreak = 0;
854 size_t last_subfield = 0;
855 for (i = 0; i < len; i++)
857 // line break after header
861 last_linebreak = i - 1;
864 // space between field and content
865 if ( i > 24 && i - last_linebreak == 5 )
868 // space after subfield
869 if ( last_subfield != 0 && i - last_subfield == 2 )
872 if ((buf[i] <= 126 && buf[i] >= 32) || strchr("\n\r\t\f", buf[i]))
873 printf("%c", buf[i]);
874 else if ( buf[i] == 29 ) // record separator
876 else if ( buf[i] == 30 ) // field separator
881 else if ( buf[i] == 31 ) // subfield
883 // space before subfields; except first one
884 if ( i > 24 && i - last_linebreak > 5 )
890 printf("\\X%02X", ((const unsigned char *)buf)[i]);
894 static void print_xml_record(const char *buf, size_t len)
901 xmlKeepBlanksDefault(0); /* get get xmlDocFormatMemory to work! */
902 doc = xmlParseMemory(buf, len);
907 xmlDocDumpFormatMemory(doc, &xml_mem, &xml_size, 1);
908 fwrite(xml_mem, 1, xml_size, stdout);
916 fwrite(buf, 1, len, stdout);
919 static void display_record(Z_External *r)
921 const Odr_oid *oid = r->direct_reference;
925 * Tell the user what we got.
930 char oid_name_buf[OID_STR_MAX];
932 = yaz_oid_to_string_buf(oid, &oclass, oid_name_buf);
933 printf("Record type: ");
935 printf("%s\n", oid_name);
937 /* Check if this is a known, ASN.1 type tucked away in an octet string */
938 if (r->which == Z_External_octet)
940 Z_ext_typeent *type = z_ext_getentbyref(r->direct_reference);
946 * Call the given decoder to process the record.
948 odr_setbuf(in, (char*)r->u.octet_aligned->buf,
949 r->u.octet_aligned->len, 0);
950 if (!(*type->fun)(in, &rr, 0, 0))
952 odr_perror(in, "Decoding constructed record.");
953 fprintf(stdout, "[Near %ld]\n", (long) odr_offset(in));
954 fprintf(stdout, "Packet dump:\n---------\n");
955 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
956 r->u.octet_aligned->len);
957 fprintf(stdout, "---------\n");
959 /* note just ignores the error ant print the bytes form the octet_aligned later */
962 * Note: we throw away the original, BER-encoded record here.
963 * Do something else with it if you want to keep it.
965 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
966 r->which = type->what;
970 if (oid && r->which == Z_External_octet)
972 const char *octet_buf = (const char*)r->u.octet_aligned->buf;
973 size_t octet_len = r->u.octet_aligned->len;
974 if (!oid_oidcmp(oid, yaz_oid_recsyn_xml)
975 || !oid_oidcmp(oid, yaz_oid_recsyn_application_xml)
976 || !oid_oidcmp(oid, yaz_oid_recsyn_html))
978 print_xml_record(octet_buf, octet_len);
980 else if (!oid_oidcmp(oid, yaz_oid_recsyn_mab))
982 print_mab_record(octet_buf, octet_len);
989 yaz_marc_t mt = yaz_marc_create();
990 const char *from = 0;
992 if (marcCharset && !strcmp(marcCharset, "auto"))
994 if (!oid_oidcmp(oid, yaz_oid_recsyn_usmarc))
996 if (octet_buf[9] == 'a')
1002 from = "ISO-8859-1";
1004 else if (marcCharset)
1006 if (outputCharset && from)
1008 cd = yaz_iconv_open(outputCharset, from);
1009 printf("convert from %s to %s", from,
1012 printf(" unsupported\n");
1015 yaz_marc_iconv(mt, cd);
1020 if (yaz_marc_decode_buf(mt, octet_buf, octet_len,
1023 if (fwrite(result, rlen, 1, stdout) != 1)
1025 printf("write to stdout failed\n");
1030 if (yaz_oid_is_iso2709(oid))
1031 printf("bad MARC. Dumping as it is:\n");
1032 print_record(octet_buf, octet_len);
1034 yaz_marc_destroy(mt);
1036 yaz_iconv_close(cd);
1038 marc_file_write(octet_buf, r->u.octet_aligned->len);
1040 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_sutrs))
1042 if (r->which != Z_External_sutrs)
1044 printf("Expecting single SUTRS type for SUTRS.\n");
1047 print_record((const char *) r->u.sutrs->buf, r->u.sutrs->len);
1048 marc_file_write((const char *) r->u.sutrs->buf, r->u.sutrs->len);
1050 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_grs_1))
1053 if (r->which != Z_External_grs1)
1055 printf("Expecting single GRS type for GRS.\n");
1059 yaz_display_grs1(w, r->u.grs1, 0);
1060 puts(wrbuf_cstr(w));
1063 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_opac))
1066 if (r->u.opac->bibliographicRecord)
1067 display_record(r->u.opac->bibliographicRecord);
1068 for (i = 0; i<r->u.opac->num_holdingsData; i++)
1070 Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
1071 if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
1073 printf("MARC holdings %d\n", i);
1074 display_record(h->u.marcHoldingsRecord);
1076 else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
1080 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
1082 printf("Data holdings %d\n", i);
1083 if (data->typeOfRecord)
1084 printf("typeOfRecord: %s\n", data->typeOfRecord);
1085 if (data->encodingLevel)
1086 printf("encodingLevel: %s\n", data->encodingLevel);
1087 if (data->receiptAcqStatus)
1088 printf("receiptAcqStatus: %s\n", data->receiptAcqStatus);
1089 if (data->generalRetention)
1090 printf("generalRetention: %s\n", data->generalRetention);
1091 if (data->completeness)
1092 printf("completeness: %s\n", data->completeness);
1093 if (data->dateOfReport)
1094 printf("dateOfReport: %s\n", data->dateOfReport);
1096 printf("nucCode: %s\n", data->nucCode);
1097 if (data->localLocation)
1098 printf("localLocation: %s\n", data->localLocation);
1099 if (data->shelvingLocation)
1100 printf("shelvingLocation: %s\n", data->shelvingLocation);
1101 if (data->callNumber)
1102 printf("callNumber: %s\n", data->callNumber);
1103 if (data->shelvingData)
1104 printf("shelvingData: %s\n", data->shelvingData);
1105 if (data->copyNumber)
1106 printf("copyNumber: %s\n", data->copyNumber);
1107 if (data->publicNote)
1108 printf("publicNote: %s\n", data->publicNote);
1109 if (data->reproductionNote)
1110 printf("reproductionNote: %s\n", data->reproductionNote);
1111 if (data->termsUseRepro)
1112 printf("termsUseRepro: %s\n", data->termsUseRepro);
1113 if (data->enumAndChron)
1114 printf("enumAndChron: %s\n", data->enumAndChron);
1115 for (j = 0; j<data->num_volumes; j++)
1117 printf("volume %d\n", j);
1118 if (data->volumes[j]->enumeration)
1119 printf(" enumeration: %s\n",
1120 data->volumes[j]->enumeration);
1121 if (data->volumes[j]->chronology)
1122 printf(" chronology: %s\n",
1123 data->volumes[j]->chronology);
1124 if (data->volumes[j]->enumAndChron)
1125 printf(" enumAndChron: %s\n",
1126 data->volumes[j]->enumAndChron);
1128 for (j = 0; j<data->num_circulationData; j++)
1130 printf("circulation %d\n", j);
1131 if (data->circulationData[j]->availableNow)
1132 printf(" availableNow: %d\n",
1133 *data->circulationData[j]->availableNow);
1134 if (data->circulationData[j]->availablityDate)
1135 printf(" availabiltyDate: %s\n",
1136 data->circulationData[j]->availablityDate);
1137 if (data->circulationData[j]->availableThru)
1138 printf(" availableThru: %s\n",
1139 data->circulationData[j]->availableThru);
1140 if (data->circulationData[j]->restrictions)
1141 printf(" restrictions: %s\n",
1142 data->circulationData[j]->restrictions);
1143 if (data->circulationData[j]->itemId)
1144 printf(" itemId: %s\n",
1145 data->circulationData[j]->itemId);
1146 if (data->circulationData[j]->renewable)
1147 printf(" renewable: %d\n",
1148 *data->circulationData[j]->renewable);
1149 if (data->circulationData[j]->onHold)
1150 printf(" onHold: %d\n",
1151 *data->circulationData[j]->onHold);
1152 if (data->circulationData[j]->enumAndChron)
1153 printf(" enumAndChron: %s\n",
1154 data->circulationData[j]->enumAndChron);
1155 if (data->circulationData[j]->midspine)
1156 printf(" midspine: %s\n",
1157 data->circulationData[j]->midspine);
1158 if (data->circulationData[j]->temporaryLocation)
1159 printf(" temporaryLocation: %s\n",
1160 data->circulationData[j]->temporaryLocation);
1167 printf("Unknown record representation.\n");
1168 if (!z_External(print, &r, 0, 0))
1170 odr_perror(print, "Printing external");
1176 static void display_diagrecs(Z_DiagRec **pp, int num)
1179 Z_DefaultDiagFormat *r;
1181 printf("Diagnostic message(s) from database:\n");
1182 for (i = 0; i<num; i++)
1184 Z_DiagRec *p = pp[i];
1185 if (p->which != Z_DiagRec_defaultFormat)
1187 printf("Diagnostic record not in default format.\n");
1191 r = p->u.defaultFormat;
1193 if (!r->diagnosticSetId)
1194 printf("Missing diagset\n");
1198 char diag_name_buf[OID_STR_MAX];
1199 const char *diag_name = 0;
1200 diag_name = yaz_oid_to_string_buf
1201 (r->diagnosticSetId, &oclass, diag_name_buf);
1202 if (oid_oidcmp(r->diagnosticSetId, yaz_oid_diagset_bib_1))
1203 printf("Unknown diagset: %s\n", diag_name);
1205 printf(" [" ODR_INT_PRINTF "] %s",
1206 *r->condition, diagbib1_str((int) *r->condition));
1209 case Z_DefaultDiagFormat_v2Addinfo:
1210 printf(" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1212 case Z_DefaultDiagFormat_v3Addinfo:
1213 printf(" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1220 static void display_nameplusrecord(Z_NamePlusRecord *p)
1222 if (p->databaseName)
1223 printf("[%s]", p->databaseName);
1224 if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1225 display_diagrecs(&p->u.surrogateDiagnostic, 1);
1226 else if (p->which == Z_NamePlusRecord_databaseRecord)
1227 display_record(p->u.databaseRecord);
1230 static void display_records(Z_Records *p)
1234 if (p->which == Z_Records_NSD)
1236 Z_DiagRec dr, *dr_p = &dr;
1237 dr.which = Z_DiagRec_defaultFormat;
1238 dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1239 display_diagrecs(&dr_p, 1);
1241 else if (p->which == Z_Records_multipleNSD)
1242 display_diagrecs(p->u.multipleNonSurDiagnostics->diagRecs,
1243 p->u.multipleNonSurDiagnostics->num_diagRecs);
1246 printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1247 for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1248 display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1252 static int send_Z3950_deleteResultSetRequest(const char *arg)
1257 Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1258 Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1260 req->referenceId = set_refid(out);
1262 req->num_resultSetList =
1263 sscanf(arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1264 names[0], names[1], names[2], names[3],
1265 names[4], names[5], names[6], names[7]);
1267 req->deleteFunction = odr_intdup(out, 0);
1268 if (req->num_resultSetList > 0)
1270 *req->deleteFunction = Z_DeleteResultSetRequest_list;
1271 req->resultSetList = (char **)
1272 odr_malloc(out, sizeof(*req->resultSetList)*
1273 req->num_resultSetList);
1274 for (i = 0; i<req->num_resultSetList; i++)
1275 req->resultSetList[i] = names[i];
1279 *req->deleteFunction = Z_DeleteResultSetRequest_all;
1280 req->resultSetList = 0;
1284 printf("Sent deleteResultSetRequest.\n");
1289 static int send_gdu(Z_GDU *gdu)
1291 if (z_GDU(out, &gdu, 0, 0))
1299 if (!z_GDU(print, &gdu, 0, 0))
1300 printf("Failed to print outgoing SRU package\n");
1303 buf_out = odr_getbuf(out, &len_out, 0);
1305 /* we don't odr_reset(out), since we may need the buffer again */
1307 do_hex_dump(buf_out, len_out);
1309 r = cs_put(conn, buf_out, len_out);
1317 static int send_srw_host_path(Z_SRW_PDU *sr, const char *host_port,
1320 const char *charset = negotiationCharset;
1323 gdu = z_get_HTTP_Request_uri(out, host_port, path, yazProxy ? 1 : 0);
1327 if (auth->which == Z_IdAuthentication_open)
1331 nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1333 sr->username = darray[0];
1335 sr->password = darray[1];
1337 else if (auth->which == Z_IdAuthentication_idPass)
1339 sr->username = auth->u.idPass->userId;
1340 sr->password = auth->u.idPass->password;
1344 if (!yaz_matchstr(sru_method, "get"))
1346 yaz_sru_get_encode(gdu->u.HTTP_Request, sr, out, charset);
1348 else if (!yaz_matchstr(sru_method, "post"))
1350 yaz_sru_post_encode(gdu->u.HTTP_Request, sr, out, charset);
1352 else if (!yaz_matchstr(sru_method, "soap"))
1354 yaz_sru_soap_encode(gdu->u.HTTP_Request, sr, out, charset);
1356 else if (!yaz_matchstr(sru_method, "solr"))
1358 yaz_solr_encode_request(gdu->u.HTTP_Request, sr, out, charset);
1361 return send_gdu(gdu);
1364 static int send_srw(Z_SRW_PDU *sr)
1366 return send_srw_host_path(sr, wrbuf_cstr(cur_host), databaseNames[0]);
1369 static int send_SRW_redirect(const char *uri)
1371 const char *username = 0;
1372 const char *password = 0;
1373 Z_GDU *gdu = get_HTTP_Request_url(out, uri);
1375 gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
1376 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
1379 yaz_cookies_request(yaz_cookies, out, gdu->u.HTTP_Request);
1382 if (auth->which == Z_IdAuthentication_open)
1386 nmem_strsplit(out->mem, "/", auth->u.open, &darray, &num);
1388 username = darray[0];
1390 password = darray[1];
1392 else if (auth->which == Z_IdAuthentication_idPass)
1394 username = auth->u.idPass->userId;
1395 password = auth->u.idPass->password;
1399 if (username && password)
1401 z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
1402 username, password);
1405 return send_gdu(gdu);
1410 static char *encode_SRW_term(ODR o, const char *q)
1412 const char *in_charset = "ISO-8859-1";
1413 WRBUF w = wrbuf_alloc();
1417 in_charset = outputCharset;
1418 cd = yaz_iconv_open("UTF-8", in_charset);
1422 return odr_strdup(o, q);
1424 wrbuf_iconv_write(w, cd, q, strlen(q));
1426 res = odr_strdup(o, wrbuf_cstr(w));
1428 res = odr_strdup(o, q);
1429 yaz_iconv_close(cd);
1435 static int send_SRW_scanRequest(const char *arg, Odr_int *pos, int num)
1439 /* regular requestse .. */
1440 sr = yaz_srw_get_pdu(out, Z_SRW_scan_request, sru_version);
1445 sr->u.scan_request->queryType = "cql";
1446 sr->u.scan_request->scanClause = encode_SRW_term(out, arg);
1448 case QueryType_Prefix:
1449 sr->u.scan_request->queryType = "pqf";
1450 sr->u.scan_request->scanClause = encode_SRW_term(out, arg);
1453 printf("Only CQL and PQF supported in SRW\n");
1456 sr->u.scan_request->responsePosition = pos;
1457 sr->u.scan_request->maximumTerms = odr_intdup(out, num);
1458 return send_srw(sr);
1461 static int send_SRW_searchRequest(const char *arg)
1467 assert(srw_sr_odr_out == 0);
1468 srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1470 odr_reset(srw_sr_odr_out);
1474 /* save this for later .. when fetching individual records */
1475 srw_sr = yaz_srw_get_pdu(srw_sr_odr_out, Z_SRW_searchRetrieve_request,
1478 /* regular request .. */
1479 sr = yaz_srw_get_pdu(out, Z_SRW_searchRetrieve_request, sru_version);
1484 srw_sr->u.request->queryType = "cql";
1485 srw_sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1487 sr->u.request->queryType = "cql";
1488 sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1490 case QueryType_Prefix:
1491 srw_sr->u.request->queryType = "pqf";
1492 srw_sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1494 sr->u.request->queryType = "pqf";
1495 sr->u.request->query = encode_SRW_term(srw_sr_odr_out, arg);
1498 printf("Only CQL and PQF supported in SRW\n");
1501 if (*sru_recordPacking)
1502 sr->u.request->recordPacking = sru_recordPacking;
1503 sru_maximumRecords = 0;
1504 sr->u.request->maximumRecords = odr_intdup(out, 0);
1505 sr->u.request->facetList = facet_list;
1506 sr->u.request->recordSchema = record_schema;
1507 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
1508 sr->u.request->recordPacking = "xml";
1509 return send_srw(sr);
1513 static void query_charset_convert(Z_RPNQuery *q)
1515 if (queryCharset && outputCharset)
1517 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
1520 printf("Conversion from %s to %s unsupported\n",
1521 outputCharset, queryCharset);
1524 yaz_query_charset_convert_rpnquery(q, out, cd);
1525 yaz_iconv_close(cd);
1529 static int send_Z3950_searchRequest(const char *arg)
1531 Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1532 Z_SearchRequest *req = apdu->u.searchRequest;
1534 struct ccl_rpn_node *rpn = NULL;
1536 char setstring[100];
1537 Z_RPNQuery *RPNquery;
1539 YAZ_PQF_Parser pqf_parser;
1541 QueryType myQueryType = queryType;
1544 if (myQueryType == QueryType_CCL2RPN)
1546 rpn = ccl_find_str(bibset, arg, &error, &pos);
1549 printf("CCL ERROR: %s\n", ccl_err_msg(error));
1553 else if (myQueryType == QueryType_CQL2RPN)
1555 /* ### All this code should be wrapped in a utility function */
1557 struct cql_node *node;
1558 const char *addinfo;
1561 printf("Can't use CQL: no translation file. Try set_cqlfile\n");
1564 parser = cql_parser_create();
1565 if ((error = cql_parser_string(parser, arg)) != 0)
1567 printf("Can't parse CQL: must be a syntax error\n");
1570 node = cql_parser_result(parser);
1571 if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1572 sizeof pqfbuf)) != 0)
1574 error = cql_transform_error(cqltrans, &addinfo);
1575 printf("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1576 cql_strerror(error), addinfo);
1580 myQueryType = QueryType_Prefix;
1583 req->referenceId = set_refid(out);
1584 if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1586 static char big[2100];
1587 static Odr_oct bigo;
1589 /* send a very big referenceid to test transport stack etc. */
1590 memset(big, 'A', 2100);
1593 req->referenceId = &bigo;
1598 sprintf(setstring, "%d", ++setnumber);
1599 req->resultSetName = setstring;
1601 *req->smallSetUpperBound = smallSetUpperBound;
1602 *req->largeSetLowerBound = largeSetLowerBound;
1603 *req->mediumSetPresentNumber = mediumSetPresentNumber;
1604 if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1605 mediumSetPresentNumber > 0))
1607 if (recordsyntax_size)
1608 req->preferredRecordSyntax =
1609 yaz_string_to_oid_odr(yaz_oid_std(),
1610 CLASS_RECSYN, recordsyntax_list[0], out);
1612 req->smallSetElementSetNames =
1613 req->mediumSetElementSetNames = elementSetNames;
1615 req->num_databaseNames = num_databaseNames;
1616 req->databaseNames = databaseNames;
1618 req->query = &query;
1620 switch (myQueryType)
1622 case QueryType_Prefix:
1623 query.which = Z_Query_type_1;
1624 pqf_parser = yaz_pqf_create();
1625 RPNquery = yaz_pqf_parse(pqf_parser, out, arg);
1628 const char *pqf_msg;
1630 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
1632 printf("%*s^\n", ioff+4, "");
1633 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1635 yaz_pqf_destroy(pqf_parser);
1638 yaz_pqf_destroy(pqf_parser);
1639 query_charset_convert(RPNquery);
1640 query.u.type_1 = RPNquery;
1643 query.which = Z_Query_type_2;
1644 query.u.type_2 = &ccl_query;
1645 ccl_query.buf = (char *) arg;
1646 ccl_query.len = strlen(arg);
1648 case QueryType_CCL2RPN:
1649 query.which = Z_Query_type_1;
1650 RPNquery = ccl_rpn_query(out, rpn);
1653 printf("Couldn't convert from CCL to RPN\n");
1656 query_charset_convert(RPNquery);
1657 query.u.type_1 = RPNquery;
1658 ccl_rpn_delete(rpn);
1661 query.which = Z_Query_type_104;
1662 ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1663 ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1664 ext->indirect_reference = 0;
1665 ext->descriptor = 0;
1666 ext->which = Z_External_CQL;
1667 ext->u.cql = odr_strdup(out, arg);
1668 query.u.type_104 = ext;
1671 printf("Unsupported query type\n");
1674 if (send_apdu(apdu))
1675 printf("Sent searchRequest.\n");
1680 static void display_term(Z_Term *term)
1682 switch (term->which)
1684 case Z_Term_general:
1685 printf("%.*s", term->u.general->len, term->u.general->buf);
1687 case Z_Term_characterString:
1688 printf("%s", term->u.characterString);
1690 case Z_Term_numeric:
1691 printf(ODR_INT_PRINTF, *term->u.numeric);
1699 /* display Query Expression as part of searchResult-1 */
1700 static void display_queryExpression(const char *lead, Z_QueryExpression *qe)
1704 printf(" %s=", lead);
1705 if (qe->which == Z_QueryExpression_term)
1707 if (qe->u.term->queryTerm)
1709 Z_Term *term = qe->u.term->queryTerm;
1715 static void display_facet(Z_FacetField *facet)
1717 if (facet->attributes)
1719 Z_AttributeList *al = facet->attributes;
1720 struct yaz_facet_attr attr_values;
1721 yaz_facet_attr_init(&attr_values);
1722 yaz_facet_attr_get_z_attributes(al, &attr_values);
1723 if (!attr_values.errcode)
1726 printf(" %s (%d): \n", attr_values.useattr, facet->num_terms);
1727 for (term_index = 0 ; term_index < facet->num_terms; term_index++)
1729 Z_FacetTerm *facetTerm = facet->terms[term_index];
1731 display_term(facetTerm->term);
1732 printf(" (" NMEM_INT_PRINTF ")\n", *facetTerm->count);
1739 static void* display_facets(Z_FacetList *fl)
1742 printf("Facets(%d): \n", fl->num);
1744 for (index = 0; index < fl->num ; index++)
1746 display_facet(fl->elements[index]);
1751 void display_searchResult1(Z_SearchInfoReport *sr)
1754 printf("SearchResult-1:");
1755 for (j = 0; j < sr->num; j++)
1759 if (!sr->elements[j]->subqueryExpression)
1761 display_queryExpression("term",
1762 sr->elements[j]->subqueryExpression);
1763 display_queryExpression("interpretation",
1764 sr->elements[j]->subqueryInterpretation);
1765 display_queryExpression("recommendation",
1766 sr->elements[j]->subqueryRecommendation);
1767 if (sr->elements[j]->subqueryCount)
1768 printf(" cnt=" ODR_INT_PRINTF,
1769 *sr->elements[j]->subqueryCount);
1770 if (sr->elements[j]->subqueryId)
1771 printf(" id=%s ", sr->elements[j]->subqueryId);
1778 /* see if we can find USR:SearchResult-1 */
1779 static void display_searchResult(Z_OtherInformation *o)
1784 for (i = 0; i < o->num_elements; i++)
1786 if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1788 Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1790 if (ext->which == Z_External_searchResult1)
1791 display_searchResult1(ext->u.searchResult1);
1792 else if (ext->which == Z_External_userFacets)
1793 display_facets(ext->u.facetList);
1798 static int process_Z3950_searchResponse(Z_SearchResponse *res)
1800 printf("Received SearchResponse.\n");
1801 print_refid(res->referenceId);
1802 if (*res->searchStatus)
1803 printf("Search was a success.\n");
1805 printf("Search was a bloomin' failure.\n");
1806 printf("Number of hits: " ODR_INT_PRINTF, *res->resultCount);
1807 last_hit_count = *res->resultCount;
1809 printf(", setno %d", setnumber);
1811 if (res->resultSetStatus)
1813 printf("Result Set Status: ");
1814 switch (*res->resultSetStatus)
1816 case Z_SearchResponse_subset:
1817 printf("subset"); break;
1818 case Z_SearchResponse_interim:
1819 printf("interim"); break;
1820 case Z_SearchResponse_none:
1821 printf("none"); break;
1822 case Z_SearchResponse_estimate:
1823 printf("estimate"); break;
1825 printf(ODR_INT_PRINTF, *res->resultSetStatus);
1829 display_searchResult(res->additionalSearchInfo);
1830 printf("records returned: " ODR_INT_PRINTF "\n",
1831 *res->numberOfRecordsReturned);
1832 setno += *res->numberOfRecordsReturned;
1834 display_records(res->records);
1838 static void print_level(int iLevel)
1841 for (i = 0; i < iLevel * 4; i++)
1845 static void print_int(int iLevel, const char *pTag, Odr_int *pInt)
1849 print_level(iLevel);
1850 printf("%s: " ODR_INT_PRINTF "\n", pTag, *pInt);
1854 static void print_bool(int iLevel, const char *pTag, Odr_bool *pInt)
1858 print_level(iLevel);
1859 printf("%s: %d\n", pTag, *pInt);
1863 static void print_string(int iLevel, const char *pTag, const char *pString)
1865 if (pString != NULL)
1867 print_level(iLevel);
1868 printf("%s: %s\n", pTag, pString);
1872 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1876 Odr_oid *pInt = pOid;
1878 print_level(iLevel);
1879 printf("%s:", pTag);
1880 for (; *pInt != -1; pInt++)
1881 printf(" %d", *pInt);
1886 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1888 if (referenceId != NULL)
1892 print_level(iLevel);
1893 printf("Ref Id (%d): ", referenceId->len);
1894 for (i = 0; i < referenceId->len; i++)
1895 printf("%c", referenceId->buf[i]);
1900 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1902 if (pStringNumeric != NULL)
1904 switch (pStringNumeric->which)
1906 case Z_StringOrNumeric_string:
1907 print_string(iLevel, pTag, pStringNumeric->u.string);
1910 case Z_StringOrNumeric_numeric:
1911 print_int(iLevel, pTag, pStringNumeric->u.numeric);
1915 print_level(iLevel);
1916 printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1922 static void print_universe_report_duplicate(
1924 Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1926 if (pUniverseReportDuplicate != NULL)
1928 print_level(iLevel);
1929 printf("Universe Report Duplicate: \n");
1931 print_string_or_numeric(iLevel, "Hit No",
1932 pUniverseReportDuplicate->hitno);
1936 static void print_universe_report_hits(
1938 Z_UniverseReportHits *pUniverseReportHits)
1940 if (pUniverseReportHits != NULL)
1942 print_level(iLevel);
1943 printf("Universe Report Hits: \n");
1945 print_string_or_numeric(iLevel, "Database",
1946 pUniverseReportHits->database);
1947 print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1951 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1953 if (pUniverseReport != NULL)
1955 print_level(iLevel);
1956 printf("Universe Report: \n");
1958 print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1959 switch (pUniverseReport->which)
1961 case Z_UniverseReport_databaseHits:
1962 print_universe_report_hits(iLevel,
1963 pUniverseReport->u.databaseHits);
1966 case Z_UniverseReport_duplicate:
1967 print_universe_report_duplicate(iLevel,
1968 pUniverseReport->u.duplicate);
1972 print_level(iLevel);
1973 printf("Type: %d\n", pUniverseReport->which);
1979 static void print_external(int iLevel, Z_External *pExternal)
1981 if (pExternal != NULL)
1983 print_level(iLevel);
1984 printf("External: \n");
1986 print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
1987 print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
1988 print_string(iLevel, "Descriptor", pExternal->descriptor);
1989 switch (pExternal->which)
1991 case Z_External_universeReport:
1992 print_universe_report(iLevel, pExternal->u.universeReport);
1996 print_level(iLevel);
1997 printf("Type: %d\n", pExternal->which);
2003 static int process_Z3950_resourceControlRequest(Z_ResourceControlRequest *req)
2005 printf("Received ResourceControlRequest.\n");
2006 print_referenceId(1, req->referenceId);
2007 print_bool(1, "Suspended Flag", req->suspendedFlag);
2008 print_int(1, "Partial Results Available", req->partialResultsAvailable);
2009 print_bool(1, "Response Required", req->responseRequired);
2010 print_bool(1, "Triggered Request Flag", req->triggeredRequestFlag);
2011 print_external(1, req->resourceReport);
2015 static void process_Z3950_ESResponse(Z_ExtendedServicesResponse *res)
2018 switch (*res->operationStatus)
2020 case Z_ExtendedServicesResponse_done:
2023 case Z_ExtendedServicesResponse_accepted:
2024 printf("accepted\n");
2026 case Z_ExtendedServicesResponse_failure:
2027 printf("failure\n");
2028 display_diagrecs(res->diagnostics, res->num_diagnostics);
2031 printf("unknown\n");
2033 if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
2034 (res->num_diagnostics != 0) )
2036 display_diagrecs(res->diagnostics, res->num_diagnostics);
2038 print_refid (res->referenceId);
2039 if (res->taskPackage &&
2040 res->taskPackage->which == Z_External_extendedService)
2042 Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
2043 Odr_oct *id = taskPackage->targetReference;
2044 Z_External *ext = taskPackage->taskSpecificParameters;
2048 printf("Target Reference: ");
2049 print_stringn((const char *) id->buf, id->len);
2052 if (ext->which == Z_External_update)
2054 Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
2055 if (utp && utp->targetPart)
2057 Z_IUTargetPart *targetPart = utp->targetPart;
2060 for (i = 0; i<targetPart->num_taskPackageRecords; i++)
2063 Z_IUTaskPackageRecordStructure *tpr =
2064 targetPart->taskPackageRecords[i];
2065 printf("task package record %d\n", i+1);
2066 if (tpr->which == Z_IUTaskPackageRecordStructure_record)
2068 display_record (tpr->u.record);
2072 printf("other type\n");
2077 if (ext->which == Z_External_itemOrder)
2079 Z_IOTaskPackage *otp = ext->u.itemOrder->u.taskPackage;
2081 if (otp && otp->targetPart)
2083 if (otp->targetPart->itemRequest)
2085 Z_External *ext = otp->targetPart->itemRequest;
2086 if (ext->which == Z_External_octet)
2088 Odr_oct *doc = ext->u.octet_aligned;
2089 printf("Got itemRequest doc %.*s\n",
2090 doc->len, doc->buf);
2093 else if (otp->targetPart->statusOrErrorReport)
2095 Z_External *ext = otp->targetPart->statusOrErrorReport;
2096 if (ext->which == Z_External_octet)
2098 Odr_oct *doc = ext->u.octet_aligned;
2099 printf("Got Status or Error Report doc %.*s\n",
2100 doc->len, doc->buf);
2106 if (res->taskPackage && res->taskPackage->which == Z_External_octet)
2108 Odr_oct *doc = res->taskPackage->u.octet_aligned;
2109 printf("%.*s\n", doc->len, doc->buf);
2113 static const char *get_ill_element(void *clientData, const char *element)
2118 static Z_External *create_external_itemRequest(void)
2120 struct ill_get_ctl ctl;
2121 ILL_ItemRequest *req;
2123 int item_request_size = 0;
2124 char *item_request_buf = 0;
2128 ctl.f = get_ill_element;
2130 req = ill_get_ItemRequest(&ctl, "ill", 0);
2132 printf("ill_get_ItemRequest failed\n");
2134 if (!ill_ItemRequest(out, &req, 0, 0))
2138 ill_ItemRequest(print, &req, 0, 0);
2141 item_request_buf = odr_getbuf (out, &item_request_size, 0);
2142 if (item_request_buf)
2143 odr_setbuf (out, item_request_buf, item_request_size, 1);
2144 printf("Couldn't encode ItemRequest, size %d\n", item_request_size);
2149 item_request_buf = odr_getbuf (out, &item_request_size, 0);
2150 r = (Z_External *) odr_malloc(out, sizeof(*r));
2151 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2152 r->indirect_reference = 0;
2154 r->which = Z_External_single;
2155 r->u.single_ASN1_type =
2156 odr_create_Odr_oct(out, item_request_buf, item_request_size);
2157 do_hex_dump(item_request_buf,item_request_size);
2162 static Z_External *create_external_ILL_APDU(void)
2164 struct ill_get_ctl ctl;
2167 int ill_request_size = 0;
2168 char *ill_request_buf = 0;
2172 ctl.f = get_ill_element;
2174 ill_apdu = ill_get_APDU(&ctl, "ill", 0);
2176 if (!ill_APDU (out, &ill_apdu, 0, 0))
2180 printf("-------------------\n");
2181 ill_APDU(print, &ill_apdu, 0, 0);
2183 printf("-------------------\n");
2185 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2186 if (ill_request_buf)
2187 odr_setbuf (out, ill_request_buf, ill_request_size, 1);
2188 printf("Couldn't encode ILL-Request, size %d\n", ill_request_size);
2193 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2195 r = (Z_External *) odr_malloc(out, sizeof(*r));
2196 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2197 r->indirect_reference = 0;
2199 r->which = Z_External_single;
2200 r->u.single_ASN1_type = odr_create_Odr_oct(out, ill_request_buf,
2207 static Z_External *create_ItemOrderExternal(const char *type, int itemno,
2208 const char *xml_buf,
2211 Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
2212 r->direct_reference = odr_oiddup(out, yaz_oid_extserv_item_order);
2213 r->indirect_reference = 0;
2216 r->which = Z_External_itemOrder;
2218 r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
2219 memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
2220 r->u.itemOrder->which=Z_IOItemOrder_esRequest;
2222 r->u.itemOrder->u.esRequest = (Z_IORequest *)
2223 odr_malloc(out,sizeof(Z_IORequest));
2224 memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
2226 r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
2227 odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
2228 memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
2229 r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
2230 odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
2231 memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
2233 r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
2234 r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
2235 r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
2237 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
2238 (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
2239 memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
2240 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
2242 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
2243 odr_intdup(out, itemno);
2244 if (!strcmp (type, "item") || !strcmp(type, "2"))
2246 printf("using item-request\n");
2247 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2248 create_external_itemRequest();
2250 else if (!strcmp(type, "ill") || !strcmp(type, "1"))
2252 printf("using ILL-request\n");
2253 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2254 create_external_ILL_APDU();
2256 else if (!strcmp(type, "xml") || !strcmp(type, "3"))
2258 printf("using XML ILL-request\n");
2262 printf("no docoument added\n");
2263 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2267 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2268 z_ext_record_oid(out, yaz_oid_recsyn_xml, xml_buf, xml_len);
2272 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2277 static int send_Z3950_itemorder(const char *type, int itemno,
2278 const char *xml_buf, int xml_len)
2280 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2281 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2283 req->referenceId = set_refid (out);
2285 req->packageType = odr_oiddup(out, yaz_oid_extserv_item_order);
2286 req->packageName = esPackageName;
2288 req->taskSpecificParameters = create_ItemOrderExternal(type, itemno,
2294 static int only_z3950(void)
2298 printf("Not connected yet\n");
2301 if (protocol == PROTO_HTTP)
2303 printf("Not supported by SRW\n");
2309 static int cmd_update_common(const char *arg, int version);
2311 static int cmd_update(const char *arg)
2313 return cmd_update_common(arg, 1);
2316 static int cmd_update0(const char *arg)
2318 return cmd_update_common(arg, 0);
2321 static int send_Z3950_update(int version, int action_no, const char *recid,
2322 char *rec_buf, int rec_len);
2325 static int send_SRW_update(int action_no, const char *recid,
2326 char *rec_buf, int rec_len);
2329 static int cmd_update_common(const char *arg, int version)
2335 const char *recid = 0;
2341 if (parse_cmd_doc(&arg, out, &action_buf, &action_len) == 0)
2343 printf("Use: update action recid [fname]\n");
2344 printf(" where action is one of insert,replace,delete.update\n");
2345 printf(" recid is some record ID. Use none for no ID\n");
2346 printf(" fname is file of record to be updated\n");
2350 if (parse_cmd_doc(&arg, out, &recid_buf, &recid_len) == 0)
2352 printf("Missing recid\n");
2356 if (!strcmp(action_buf, "insert"))
2357 action_no = Z_IUOriginPartToKeep_recordInsert;
2358 else if (!strcmp(action_buf, "replace"))
2359 action_no = Z_IUOriginPartToKeep_recordReplace;
2360 else if (!strcmp(action_buf, "delete"))
2361 action_no = Z_IUOriginPartToKeep_recordDelete;
2362 else if (!strcmp(action_buf, "update"))
2363 action_no = Z_IUOriginPartToKeep_specialUpdate;
2366 printf("Bad action: %s\n", action_buf);
2367 printf("Possible values: insert, replace, delete, update\n");
2371 if (strcmp(recid_buf, "none")) /* none means no record ID */
2375 if (parse_cmd_doc(&arg, out, &rec_buf, &rec_len) == 0)
2379 if (protocol == PROTO_HTTP)
2380 return send_SRW_update(action_no, recid, rec_buf, rec_len);
2382 return send_Z3950_update(version, action_no, recid, rec_buf, rec_len);
2386 static int send_SRW_update(int action_no, const char *recid,
2387 char *rec_buf, int rec_len)
2395 Z_SRW_PDU *srw = yaz_srw_get(out, Z_SRW_update_request);
2396 Z_SRW_updateRequest *sr = srw->u.update_request;
2400 case Z_IUOriginPartToKeep_recordInsert:
2401 sr->operation = "info:srw/action/1/create";
2403 case Z_IUOriginPartToKeep_recordReplace:
2404 sr->operation = "info:srw/action/1/replace";
2406 case Z_IUOriginPartToKeep_recordDelete:
2407 sr->operation = "info:srw/action/1/delete";
2412 sr->record = yaz_srw_get_record(out);
2413 sr->record->recordData_buf = rec_buf;
2414 sr->record->recordData_len = rec_len;
2415 sr->record->recordSchema = record_schema;
2418 sr->recordId = odr_strdup(out, recid);
2419 return send_srw(srw);
2424 static int send_Z3950_update(int version, int action_no, const char *recid,
2425 char *rec_buf, int rec_len)
2427 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
2428 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2430 Z_External *record_this = 0;
2432 record_this = z_ext_record_oid(out, yaz_oid_recsyn_xml,
2438 printf("No last record (update ignored)\n");
2441 record_this = record_last;
2444 req->packageType = odr_oiddup(out, (version == 0 ?
2445 yaz_oid_extserv_database_update_first_version :
2446 yaz_oid_extserv_database_update));
2448 req->packageName = esPackageName;
2450 req->referenceId = set_refid (out);
2452 r = req->taskSpecificParameters = (Z_External *)
2453 odr_malloc(out, sizeof(*r));
2454 r->direct_reference = req->packageType;
2455 r->indirect_reference = 0;
2459 Z_IU0OriginPartToKeep *toKeep;
2460 Z_IU0SuppliedRecords *notToKeep;
2462 r->which = Z_External_update0;
2463 r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2464 r->u.update0->which = Z_IUUpdate_esRequest;
2465 r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2466 odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2467 toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2468 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2470 toKeep->databaseName = databaseNames[0];
2474 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2476 record_schema, out);
2478 toKeep->elementSetName = 0;
2480 toKeep->action = odr_intdup(out, action_no);
2482 notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2483 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2485 notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2486 odr_malloc(out, sizeof(*notToKeep->elements));
2487 notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2488 odr_malloc(out, sizeof(**notToKeep->elements));
2489 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2490 notToKeep->elements[0]->u.opaque = recid ?
2491 odr_create_Odr_oct(out, recid, strlen(recid)) : 0;
2492 notToKeep->elements[0]->supplementalId = 0;
2493 notToKeep->elements[0]->correlationInfo = 0;
2494 notToKeep->elements[0]->record = record_this;
2498 Z_IUOriginPartToKeep *toKeep;
2499 Z_IUSuppliedRecords *notToKeep;
2501 r->which = Z_External_update;
2502 r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2503 r->u.update->which = Z_IUUpdate_esRequest;
2504 r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2505 odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2506 toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2507 odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2509 toKeep->databaseName = databaseNames[0];
2513 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2515 record_schema, out);
2517 toKeep->elementSetName = 0;
2518 toKeep->actionQualifier = 0;
2519 toKeep->action = odr_intdup(out, action_no);
2521 notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2522 odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2524 notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2525 odr_malloc(out, sizeof(*notToKeep->elements));
2526 notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2527 odr_malloc(out, sizeof(**notToKeep->elements));
2528 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2529 notToKeep->elements[0]->u.opaque = recid ?
2530 odr_create_Odr_oct(out, recid, strlen(recid)) : 0;
2531 notToKeep->elements[0]->supplementalId = 0;
2532 notToKeep->elements[0]->correlationInfo = 0;
2533 notToKeep->elements[0]->record = record_this;
2541 static int cmd_xmles(const char *arg)
2551 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2552 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2555 Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
2557 req->referenceId = set_refid (out);
2558 req->taskSpecificParameters = ext;
2559 ext->indirect_reference = 0;
2560 ext->descriptor = 0;
2561 ext->which = Z_External_octet;
2562 ext->u.single_ASN1_type = (Odr_oct *) odr_malloc(out, sizeof(Odr_oct));
2563 sscanf(arg, "%50s%n", oid_str, &noread);
2566 printf("Missing OID for xmles\n");
2570 if (parse_cmd_doc(&arg, out, &asn_buf,
2571 &ext->u.single_ASN1_type->len) == 0)
2574 ext->u.single_ASN1_type->buf = asn_buf;
2576 oid = yaz_string_to_oid_odr(yaz_oid_std(),
2577 CLASS_EXTSERV, oid_str, out);
2580 printf("Bad OID: %s\n", oid_str);
2584 req->packageType = oid;
2586 ext->direct_reference = oid;
2594 static int cmd_itemorder(const char *arg)
2604 if (sscanf(arg, "%10s %d%n", type, &itemno, &no_read) < 2)
2607 parse_cmd_doc(&arg, out, &xml_buf, &xml_len);
2610 send_Z3950_itemorder(type, itemno, xml_buf, xml_len);
2614 static void show_opt(const char *arg, void *clientData)
2619 static int cmd_zversion(const char *arg)
2622 z3950_version = atoi(arg);
2624 printf("version is %d\n", z3950_version);
2628 static int cmd_options(const char *arg)
2634 r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2636 printf("Unknown option(s) near %s\n", arg+pos);
2640 yaz_init_opt_decode(&z3950_options, show_opt, 0);
2646 static int cmd_explain(const char *arg)
2648 if (protocol != PROTO_HTTP)
2659 /* save this for later .. when fetching individual records */
2660 sr = yaz_srw_get_pdu(out, Z_SRW_explain_request, sru_version);
2661 if (recordsyntax_size == 1
2662 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2663 sr->u.explain_request->recordPacking = "xml";
2671 static int cmd_init(const char *arg)
2675 wrbuf_rewind(cur_host);
2676 if (!strstr(arg, "://") && strcmp(sru_method, "soap"))
2677 wrbuf_puts(cur_host, "http://");
2678 wrbuf_puts(cur_host, arg);
2682 send_Z3950_initRequest(wrbuf_cstr(cur_host));
2686 static Z_GDU *get_HTTP_Request_url(ODR odr, const char *url)
2688 Z_GDU *p = z_get_HTTP_Request(odr);
2689 const char *host = url;
2690 const char *cp0 = strstr(host, "://");
2691 const char *cp1 = 0;
2697 cp1 = strchr(cp0, '/');
2699 cp1 = cp0 + strlen(cp0);
2703 char *h = (char*) odr_malloc(odr, cp1 - cp0 + 1);
2704 memcpy (h, cp0, cp1 - cp0);
2706 z_HTTP_header_add(odr, &p->u.HTTP_Request->headers, "Host", h);
2708 p->u.HTTP_Request->path = odr_strdup(odr, *cp1 ? cp1 : "/");
2712 static WRBUF get_url(const char *uri, WRBUF username, WRBUF password,
2713 int *code, int show_headers)
2716 ODR out = odr_createmem(ODR_ENCODE);
2717 ODR in = odr_createmem(ODR_DECODE);
2718 Z_GDU *gdu = get_HTTP_Request_url(out, uri);
2720 gdu->u.HTTP_Request->method = odr_strdup(out, "GET");
2721 if (username && password)
2723 z_HTTP_header_add_basic_auth(out, &gdu->u.HTTP_Request->headers,
2724 wrbuf_cstr(username),
2725 wrbuf_cstr(password));
2727 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers, "Accept",
2729 if (!z_GDU(out, &gdu, 0, 0))
2731 yaz_log(YLOG_WARN, "Can not encode HTTP request URL:%s", uri);
2736 COMSTACK conn = cs_create_host(uri, 1, &add);
2737 if (cs_connect(conn, add) < 0)
2738 yaz_log(YLOG_WARN, "Can not connect to URL:%s", uri);
2742 char *buf = odr_getbuf(out, &len, 0);
2744 if (cs_put(conn, buf, len) < 0)
2745 yaz_log(YLOG_WARN, "cs_put failed URL:%s", uri);
2748 char *netbuffer = 0;
2750 int res = cs_get(conn, &netbuffer, &netlen);
2753 yaz_log(YLOG_WARN, "cs_get failed URL:%s", uri);
2758 odr_setbuf(in, netbuffer, res, 0);
2759 if (!z_GDU(in, &gdu, 0, 0)
2760 || gdu->which != Z_GDU_HTTP_Response)
2762 yaz_log(YLOG_WARN, "decode failed URL: %s", uri);
2766 Z_HTTP_Response *res = gdu->u.HTTP_Response;
2767 struct Z_HTTP_Header *h;
2768 result = wrbuf_alloc();
2772 wrbuf_printf(result, "HTTP %d\n", res->code);
2773 for (h = res->headers; h; h = h->next)
2774 wrbuf_printf(result, "%s: %s\n",
2778 wrbuf_write(result, res->content_buf, res->content_len);
2792 static int cmd_url(const char *arg)
2795 WRBUF res = get_url(arg, 0, 0, &code, 1);
2798 if (wrbuf_len(res) > 1200)
2800 fwrite(wrbuf_buf(res), 1, 1200, stdout);
2801 printf(".. out of %lld\n", (long long) wrbuf_len(res));
2804 puts(wrbuf_cstr(res));
2810 static int cmd_sru(const char *arg)
2814 printf("SRU method is: %s\n", sru_method);
2815 printf("SRU version is: %s\n", sru_version);
2819 int r = sscanf(arg, "%9s %9s %9s", sru_method, sru_version,
2823 if (!yaz_matchstr(sru_method, "post"))
2825 else if (!yaz_matchstr(sru_method, "get"))
2827 else if (!yaz_matchstr(sru_method, "soap"))
2829 else if (!yaz_matchstr(sru_method, "solr"))
2833 strcpy(sru_method, "soap");
2834 printf("Unknown SRU method: %s\n", arg);
2835 printf("Specify one of POST, GET, SOAP, SOLR\n");
2842 static int cmd_find(const char *arg)
2846 printf("Find what?\n");
2849 if (protocol == PROTO_HTTP)
2856 if (!send_SRW_searchRequest(arg))
2864 if (wrbuf_len(cur_host) && auto_reconnect)
2871 if (!send_Z3950_searchRequest(arg))
2873 wait_and_handle_response(0);
2879 printf("Unable to reconnect\n");
2883 wait_and_handle_response(0);
2889 if (!send_Z3950_searchRequest(arg))
2894 printf("Not connected yet\n");
2901 static int cmd_facets(const char *arg)
2904 facet_odr = odr_createmem(ODR_ENCODE);
2905 odr_reset(facet_odr);
2910 printf("Facets cleared.\n");
2913 facet_list = yaz_pqf_parse_facet_list(facet_odr, arg);
2916 printf("Invalid facet list: %s", arg);
2922 static int cmd_delete(const char *arg)
2926 if (!send_Z3950_deleteResultSetRequest(arg))
2931 static int cmd_ssub(const char *arg)
2933 smallSetUpperBound = odr_strtol(arg, 0, 10);
2937 static int cmd_lslb(const char *arg)
2939 largeSetLowerBound = odr_strtol(arg, 0, 10);
2943 static int cmd_mspn(const char *arg)
2945 mediumSetPresentNumber = odr_strtol(arg, 0, 10);
2949 static int cmd_status(const char *arg)
2951 printf("smallSetUpperBound: " ODR_INT_PRINTF "\n",
2952 smallSetUpperBound);
2953 printf("largeSetLowerBound: " ODR_INT_PRINTF "\n",
2954 largeSetLowerBound);
2955 printf("mediumSetPresentNumber: " ODR_INT_PRINTF "\n",
2956 mediumSetPresentNumber);
2960 static int cmd_setnames(const char *arg)
2962 if (*arg == '1') /* enable ? */
2964 else if (*arg == '0') /* disable ? */
2966 else if (setnumber < 0) /* no args, toggle .. */
2972 printf("Set numbering enabled.\n");
2974 printf("Set numbering disabled.\n");
2978 /* PRESENT SERVICE ----------------------------- */
2980 size_t check_token(const char *haystack, const char *token)
2982 size_t len = strlen(token);
2984 if (strncmp(haystack, token, len))
2986 for (extra = 0; haystack[extra + len] != '\0'; extra++)
2987 if (!strchr(" \r\n\t", haystack[extra + len]))
2992 return 0; /* no whitespace after token */
2997 static int parse_show_args(const char *arg_c, char *setstring,
2998 Odr_int *start, Odr_int *number)
3001 Odr_int start_position;
3005 sprintf(setstring, "%d", setnumber);
3009 token_len = check_token(arg_c, "format");
3018 token_len = check_token(arg_c, "all");
3021 *number = last_hit_count;
3025 start_position = odr_strtol(arg_c, &end_ptr, 10);
3026 if (end_ptr == arg_c)
3028 *start = start_position;
3029 if (*end_ptr == '\0')
3031 while (yaz_isspace(*end_ptr))
3033 if (*end_ptr != '+')
3035 printf("Bad show arg: expected +. Got %s\n", end_ptr);
3040 *number = odr_strtol(arg_c, &end_ptr, 10);
3041 if (end_ptr == arg_c)
3043 printf("Bad show arg: expected number after +\n");
3046 if (*end_ptr == '\0')
3048 while (yaz_isspace(*end_ptr))
3050 if (*end_ptr != '+')
3052 printf("Bad show arg: + expected. Got %s\n", end_ptr);
3055 strcpy(setstring, end_ptr+1);
3059 static int send_Z3950_presentRequest(const char *arg)
3061 Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
3062 Z_PresentRequest *req = apdu->u.presentRequest;
3063 Z_RecordComposition compo;
3065 char setstring[100];
3067 req->referenceId = set_refid(out);
3069 if (!parse_show_args(arg, setstring, &setno, &nos))
3072 req->resultSetId = setstring;
3074 req->resultSetStartPoint = &setno;
3075 req->numberOfRecordsRequested = &nos;
3077 if (recordsyntax_size)
3078 req->preferredRecordSyntax =
3079 yaz_string_to_oid_odr(yaz_oid_std(),
3080 CLASS_RECSYN, recordsyntax_list[0], out);
3082 if (record_schema || recordsyntax_size >= 2)
3084 req->recordComposition = &compo;
3085 compo.which = Z_RecordComp_complex;
3086 compo.u.complex = (Z_CompSpec *)
3087 odr_malloc(out, sizeof(*compo.u.complex));
3088 compo.u.complex->selectAlternativeSyntax = (bool_t *)
3089 odr_malloc(out, sizeof(bool_t));
3090 *compo.u.complex->selectAlternativeSyntax = 0;
3092 compo.u.complex->generic = (Z_Specification *)
3093 odr_malloc(out, sizeof(*compo.u.complex->generic));
3095 compo.u.complex->generic->which = Z_Schema_oid;
3097 compo.u.complex->generic->schema.oid = 0;
3100 compo.u.complex->generic->schema.oid =
3101 yaz_string_to_oid_odr(yaz_oid_std(),
3102 CLASS_SCHEMA, record_schema, out);
3104 if (!compo.u.complex->generic->schema.oid)
3106 /* OID wasn't a schema! Try record syntax instead. */
3107 compo.u.complex->generic->schema.oid = (Odr_oid *)
3108 yaz_string_to_oid_odr(yaz_oid_std(),
3109 CLASS_RECSYN, record_schema, out);
3112 if (!elementSetNames)
3113 compo.u.complex->generic->elementSpec = 0;
3116 compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
3117 odr_malloc(out, sizeof(Z_ElementSpec));
3118 compo.u.complex->generic->elementSpec->which =
3119 Z_ElementSpec_elementSetName;
3120 compo.u.complex->generic->elementSpec->u.elementSetName =
3121 elementSetNames->u.generic;
3123 compo.u.complex->num_dbSpecific = 0;
3124 compo.u.complex->dbSpecific = 0;
3126 compo.u.complex->num_recordSyntax = 0;
3127 compo.u.complex->recordSyntax = 0;
3128 if (recordsyntax_size >= 2)
3131 compo.u.complex->num_recordSyntax = recordsyntax_size;
3132 compo.u.complex->recordSyntax = (Odr_oid **)
3133 odr_malloc(out, recordsyntax_size * sizeof(Odr_oid*));
3134 for (i = 0; i < recordsyntax_size; i++)
3135 compo.u.complex->recordSyntax[i] =
3136 yaz_string_to_oid_odr(yaz_oid_std(),
3137 CLASS_RECSYN, recordsyntax_list[i], out);
3140 else if (elementSetNames)
3142 req->recordComposition = &compo;
3143 compo.which = Z_RecordComp_simple;
3144 compo.u.simple = elementSetNames;
3147 printf("Sent presentRequest (" ODR_INT_PRINTF "+" ODR_INT_PRINTF ").\n",
3153 static int send_SRW_presentRequest(const char *arg)
3155 char setstring[100];
3157 Z_SRW_PDU *sr = srw_sr;
3161 if (!parse_show_args(arg, setstring, &setno, &nos))
3163 if (*sru_recordPacking)
3164 sr->u.request->recordPacking = sru_recordPacking;
3165 sr->u.request->startRecord = odr_intdup(out, setno);
3166 sru_maximumRecords = nos;
3167 sr->u.request->maximumRecords = odr_intdup(out, nos);
3168 sr->u.request->recordSchema = record_schema;
3169 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
3170 sr->u.request->recordPacking = "xml";
3171 return send_srw(sr);
3175 static void close_session(void)
3187 static void process_Z3950_close(Z_Close *req)
3189 Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
3190 Z_Close *res = apdu->u.close;
3192 static char *reasons[] =
3197 "cost limit reached",
3199 "security violation",
3206 printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
3207 req->diagnosticInformation ? req->diagnosticInformation : "NULL");
3212 *res->closeReason = Z_Close_finished;
3214 printf("Sent response.\n");
3219 static int cmd_show(const char *arg)
3221 if (protocol == PROTO_HTTP)
3228 if (!send_SRW_presentRequest(arg))
3238 printf("Not connected yet\n");
3241 if (!send_Z3950_presentRequest(arg))
3247 static void exit_client(int code)
3252 ccl_qual_rm(&bibset);
3253 yaz_cookies_destroy(yaz_cookies);
3254 file_history_save(file_history);
3255 file_history_destroy(&file_history);
3256 nmem_destroy(nmem_auth);
3257 wrbuf_destroy(cur_host);
3261 static int cmd_quit(const char *arg)
3263 printf("See you later, alligator.\n");
3269 static int cmd_cancel(const char *arg)
3275 Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
3276 Z_TriggerResourceControlRequest *req =
3277 apdu->u.triggerResourceControlRequest;
3282 sscanf(arg, "%15s", command);
3286 if (session_initResponse &&
3287 !ODR_MASK_GET(session_initResponse->options,
3288 Z_Options_triggerResourceCtrl))
3290 printf("Target doesn't support cancel (trigger resource ctrl)\n");
3293 *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
3294 req->resultSetWanted = &rfalse;
3295 req->referenceId = set_refid(out);
3298 printf("Sent cancel request\n");
3299 if (!strcmp(command, "wait"))
3305 static int cmd_cancel_find(const char *arg)
3310 fres = cmd_find(arg);
3313 return cmd_cancel("");
3318 static int send_Z3950_scanrequest(const char *set, const char *query,
3319 Odr_int *pos, Odr_int num, const char *term)
3321 Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
3322 Z_ScanRequest *req = apdu->u.scanRequest;
3326 printf("query: %s\n", query);
3327 if (queryType == QueryType_CCL2RPN)
3330 struct ccl_rpn_node *rpn;
3332 rpn = ccl_find_str(bibset, query, &error, &pos);
3335 printf("CCL ERROR: %s\n", ccl_err_msg(error));
3339 yaz_string_to_oid_odr(yaz_oid_std(),
3340 CLASS_ATTSET, "Bib-1", out);
3341 if (!(req->termListAndStartPoint = ccl_scan_query(out, rpn)))
3343 printf("Couldn't convert CCL to Scan term\n");
3346 ccl_rpn_delete(rpn);
3350 YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
3353 if (!(req->termListAndStartPoint =
3354 yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
3356 const char *pqf_msg;
3358 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
3360 printf("%*s^\n", ioff+7, "");
3361 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
3362 yaz_pqf_destroy(pqf_parser);
3365 yaz_pqf_destroy(pqf_parser);
3367 if (queryCharset && outputCharset)
3369 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
3372 printf("Conversion from %s to %s unsupported\n",
3373 outputCharset, queryCharset);
3376 yaz_query_charset_convert_apt(req->termListAndStartPoint, out, cd);
3377 yaz_iconv_close(cd);
3381 if (req->termListAndStartPoint->term &&
3382 req->termListAndStartPoint->term->which == Z_Term_general &&
3383 req->termListAndStartPoint->term->u.general)
3385 req->termListAndStartPoint->term->u.general->buf =
3386 odr_strdup(out, term);
3387 req->termListAndStartPoint->term->u.general->len = strlen(term);
3390 req->referenceId = set_refid(out);
3391 req->num_databaseNames = num_databaseNames;
3392 req->databaseNames = databaseNames;
3393 req->numberOfTermsRequested = #
3394 req->preferredPositionInResponse = pos;
3395 req->stepSize = odr_intdup(out, scan_stepSize);
3398 yaz_oi_set_string_oid(&req->otherInfo, out,
3399 yaz_oid_userinfo_scan_set, 1, set);
3405 static int send_sortrequest(const char *arg, int newset)
3407 Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
3408 Z_SortRequest *req = apdu->u.sortRequest;
3409 Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
3410 odr_malloc(out, sizeof(*sksl));
3416 sprintf(setstring, "%d", setnumber);
3418 sprintf(setstring, "default");
3420 req->referenceId = set_refid(out);
3422 req->num_inputResultSetNames = 1;
3423 req->inputResultSetNames = (Z_InternationalString **)
3424 odr_malloc(out, sizeof(*req->inputResultSetNames));
3425 req->inputResultSetNames[0] = odr_strdup(out, setstring);
3427 if (newset && setnumber >= 0)
3428 sprintf(setstring, "%d", ++setnumber);
3430 req->sortedResultSetName = odr_strdup(out, setstring);
3432 req->sortSequence = yaz_sort_spec(out, arg);
3433 if (!req->sortSequence)
3435 printf("Missing sort specifications\n");
3442 static void display_term_info(Z_TermInfo *t)
3445 printf("%s", t->displayTerm);
3446 else if (t->term->which == Z_Term_general)
3447 printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
3449 printf("Term (not general)");
3450 if (t->term->which == Z_Term_general)
3451 sprintf(last_scan_line, "%.*s", t->term->u.general->len,
3452 t->term->u.general->buf);
3454 if (t->globalOccurrences)
3455 printf(" (" ODR_INT_PRINTF ")\n", *t->globalOccurrences);
3460 static void process_Z3950_scanResponse(Z_ScanResponse *res)
3463 Z_Entry **entries = NULL;
3464 int num_entries = 0;
3466 printf("Received ScanResponse\n");
3467 print_refid(res->referenceId);
3468 printf(ODR_INT_PRINTF " entries", *res->numberOfEntriesReturned);
3469 if (res->positionOfTerm)
3470 printf(", position=" ODR_INT_PRINTF, *res->positionOfTerm);
3472 if (*res->scanStatus != Z_Scan_success)
3473 printf("Scan returned code " ODR_INT_PRINTF "\n", *res->scanStatus);
3476 if ((entries = res->entries->entries))
3477 num_entries = res->entries->num_entries;
3478 for (i = 0; i < num_entries; i++)
3480 Odr_int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
3481 if (entries[i]->which == Z_Entry_termInfo)
3483 printf("%c ", i + 1 == pos_term ? '*' : ' ');
3484 display_term_info(entries[i]->u.termInfo);
3487 display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
3489 if (res->entries->nonsurrogateDiagnostics)
3490 display_diagrecs(res->entries->nonsurrogateDiagnostics,
3491 res->entries->num_nonsurrogateDiagnostics);
3494 static void process_Z3950_sortResponse(Z_SortResponse *res)
3496 printf("Received SortResponse: status=");
3497 switch (*res->sortStatus)
3499 case Z_SortResponse_success:
3500 printf("success"); break;
3501 case Z_SortResponse_partial_1:
3502 printf("partial"); break;
3503 case Z_SortResponse_failure:
3504 printf("failure"); break;
3506 printf("unknown (" ODR_INT_PRINTF ")", *res->sortStatus);
3509 print_refid (res->referenceId);
3510 if (res->diagnostics)
3511 display_diagrecs(res->diagnostics,
3512 res->num_diagnostics);
3515 static void process_Z3950_deleteResultSetResponse(
3516 Z_DeleteResultSetResponse *res)
3518 printf("Got deleteResultSetResponse status=" ODR_INT_PRINTF "\n",
3519 *res->deleteOperationStatus);
3520 if (res->deleteListStatuses)
3523 for (i = 0; i < res->deleteListStatuses->num; i++)
3525 printf("%s status=" ODR_INT_PRINTF "\n",
3526 res->deleteListStatuses->elements[i]->id,
3527 *res->deleteListStatuses->elements[i]->status);
3532 static int cmd_sort_generic(const char *arg, int newset)
3536 if (session_initResponse &&
3537 !ODR_MASK_GET(session_initResponse->options, Z_Options_sort))
3539 printf("Target doesn't support sort\n");
3544 if (send_sortrequest(arg, newset) < 0)
3551 static int cmd_sort(const char *arg)
3553 return cmd_sort_generic(arg, 0);
3556 static int cmd_sort_newset(const char *arg)
3558 return cmd_sort_generic(arg, 1);
3561 static int cmd_scanstep(const char *arg)
3563 scan_stepSize = atoi(arg);
3567 static int cmd_scanpos(const char *arg)
3569 if (!strcmp(arg, "none"))
3570 strcpy(scan_position, "none");
3574 int r = sscanf(arg, "%d", &dummy);
3575 if (r == 1 && strlen(arg) < sizeof(scan_position)-1)
3576 strcpy(scan_position, arg);
3578 printf("specify number of none for scanpos\n");
3583 static int cmd_scansize(const char *arg)
3585 int r = sscanf(arg, "%d", &scan_size);
3591 static int cmd_scan_common(const char *set, const char *arg)
3593 Odr_int pos, *pos_p = 0;
3594 const char *scan_term = 0;
3595 const char *scan_query = 0;
3601 scan_query = last_scan_query;
3602 scan_term = last_scan_line;
3606 strcpy(last_scan_query, arg);
3608 if (strcmp(scan_position, "none"))
3610 pos = odr_atoi(scan_position);
3615 if (protocol == PROTO_HTTP)
3622 if (send_SRW_scanRequest(scan_query, pos_p, scan_size) < 0)
3631 if (wrbuf_len(cur_host) && !conn && auto_reconnect)
3634 wait_and_handle_response(0);
3638 if (session_initResponse &&
3639 !ODR_MASK_GET(session_initResponse->options, Z_Options_scan))
3641 printf("Target doesn't support scan\n");
3644 if (send_Z3950_scanrequest(set, scan_query, pos_p,
3645 scan_size, scan_term) < 0)
3651 static int cmd_scan(const char *arg)
3653 return cmd_scan_common(0, arg);
3656 static int cmd_setscan(const char *arg)
3658 char setstring[100];
3660 if (sscanf(arg, "%99s%n", setstring, &nor) < 1)
3662 printf("missing set for setscan\n");
3665 return cmd_scan_common(setstring, arg + nor);
3668 static int cmd_schema(const char *arg)
3670 xfree(record_schema);
3673 record_schema = xstrdup(arg);
3677 static int cmd_format(const char *arg)
3679 const char *cp = arg;
3686 printf("Usage: format <recordsyntax>\n");
3689 while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3690 && idx < RECORDSYNTAX_MAX)
3692 if (strcmp(form_str, "none") &&
3693 !yaz_string_to_oid_odr(yaz_oid_std(), CLASS_RECSYN, form_str, out))
3695 printf("Bad format: %s\n", form_str);
3700 for (i = 0; i < recordsyntax_size; i++)
3702 xfree(recordsyntax_list[i]);
3703 recordsyntax_list[i] = 0;
3707 while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3708 && idx < RECORDSYNTAX_MAX)
3710 if (!strcmp(form_str, "none"))
3712 recordsyntax_list[idx] = xstrdup(form_str);
3716 recordsyntax_size = idx;
3720 static int cmd_elements(const char *arg)
3722 static Z_ElementSetNames esn;
3723 static char what[100];
3727 elementSetNames = 0;
3731 esn.which = Z_ElementSetNames_generic;
3732 esn.u.generic = what;
3733 elementSetNames = &esn;
3737 static int cmd_querytype(const char *arg)
3739 if (!strcmp(arg, "ccl"))
3740 queryType = QueryType_CCL;
3741 else if (!strcmp(arg, "prefix") || !strcmp(arg, "rpn"))
3742 queryType = QueryType_Prefix;
3743 else if (!strcmp(arg, "ccl2rpn") || !strcmp(arg, "cclrpn"))
3744 queryType = QueryType_CCL2RPN;
3745 else if (!strcmp(arg, "cql"))
3746 queryType = QueryType_CQL;
3747 else if (!strcmp(arg, "cql2rpn") || !strcmp(arg, "cqlrpn"))
3748 queryType = QueryType_CQL2RPN;
3751 printf("Querytype must be one of:\n");
3752 printf(" prefix - Prefix query\n");
3753 printf(" ccl - CCL query\n");
3754 printf(" ccl2rpn - CCL query converted to RPN\n");
3755 printf(" cql - CQL\n");
3756 printf(" cql2rpn - CQL query converted to RPN\n");
3762 static int cmd_refid(const char *arg)
3767 refid = xstrdup(arg);
3771 static int cmd_close(const char *arg)
3777 apdu = zget_APDU(out, Z_APDU_close);
3778 req = apdu->u.close;
3779 *req->closeReason = Z_Close_finished;
3781 printf("Sent close request.\n");
3786 int cmd_packagename(const char* arg)
3788 xfree(esPackageName);
3789 esPackageName = NULL;
3791 esPackageName = xstrdup(arg);
3795 static int cmd_proxy(const char* arg)
3800 yazProxy = xstrdup(arg);
3804 static int cmd_marccharset(const char *arg)
3809 if (sscanf(arg, "%29s", l1) < 1)
3811 printf("MARC character set is `%s'\n",
3812 marcCharset ? marcCharset: "none");
3817 if (strcmp(l1, "-") && strcmp(l1, "none"))
3818 marcCharset = xstrdup(l1);
3822 static int cmd_querycharset(const char *arg)
3827 if (sscanf(arg, "%29s", l1) < 1)
3829 printf("Query character set is `%s'\n",
3830 queryCharset ? queryCharset: "none");
3833 xfree(queryCharset);
3835 if (strcmp(l1, "-") && strcmp(l1, "none"))
3836 queryCharset = xstrdup(l1);
3840 static int cmd_displaycharset(const char *arg)
3845 if (sscanf(arg, "%29s", l1) < 1)
3847 printf("Display character set is `%s'\n",
3848 outputCharset ? outputCharset: "none");
3852 xfree(outputCharset);
3854 if (!strcmp(l1, "auto") && codeset)
3858 printf("Display character set: %s\n", codeset);
3859 outputCharset = xstrdup(codeset);
3862 printf("No codeset found on this system\n");
3864 else if (strcmp(l1, "-") && strcmp(l1, "none"))
3865 outputCharset = xstrdup(l1);
3870 static int cmd_negcharset(const char *arg)
3875 if (sscanf(arg, "%29s %d %d", l1, &negotiationCharsetRecords,
3876 &negotiationCharsetVersion) < 1)
3878 printf("Negotiation character set `%s'\n",
3879 negotiationCharset ? negotiationCharset: "none");
3880 if (negotiationCharset)
3882 printf("Records in charset %s\n", negotiationCharsetRecords ?
3884 printf("Charneg version %d\n", negotiationCharsetVersion);
3889 xfree(negotiationCharset);
3890 negotiationCharset = NULL;
3891 if (*l1 && strcmp(l1, "-") && strcmp(l1, "none"))
3893 negotiationCharset = xstrdup(l1);
3894 printf("Character set negotiation : %s\n", negotiationCharset);
3900 static int cmd_charset(const char* arg)
3902 char l1[30], l2[30], l3[30], l4[30];
3904 *l1 = *l2 = *l3 = *l4 = '\0';
3905 if (sscanf(arg, "%29s %29s %29s %29s", l1, l2, l3, l4) < 1)
3908 cmd_displaycharset("");
3909 cmd_marccharset("");
3910 cmd_querycharset("");
3916 cmd_displaycharset(l2);
3918 cmd_marccharset(l3);
3920 cmd_querycharset(l4);
3925 static int cmd_lang(const char* arg)
3929 printf("Current language is `%s'\n", yazLang ? yazLang : "none");
3935 yazLang = xstrdup(arg);
3939 static int cmd_source(const char* arg, int echo )
3941 /* first should open the file and read one line at a time.. */
3943 char line[102400], *cp;
3945 if (strlen(arg) < 1)
3947 fprintf(stderr, "Error in source command use a filename\n");
3951 includeFile = fopen(arg, "r");
3955 fprintf(stderr, "Unable to open file %s for reading\n",arg);
3959 while (fgets(line, sizeof(line), includeFile))
3961 if (strlen(line) < 2)
3966 if ((cp = strrchr(line, '\n')))
3970 printf("processing line: %s\n", line);
3971 process_cmd_line(line);
3974 if (fclose(includeFile))
3976 perror("unable to close include file");
3982 static int cmd_source_echo(const char* arg)
3988 static int cmd_subshell(const char* args)
3990 int ret = system(strlen(args) ? args : getenv("SHELL"));
3994 printf("Exit %d\n", ret);
3999 static int cmd_set_berfile(const char *arg)
4001 if (ber_file && ber_file != stdout && ber_file != stderr)
4003 if (!strcmp(arg, ""))
4005 else if (!strcmp(arg, "-"))
4008 ber_file = fopen(arg, "a");
4012 static int cmd_set_apdufile(const char *arg)
4014 if (apdu_file && apdu_file != stderr && apdu_file != stderr)
4016 if (!strcmp(arg, ""))
4018 else if (!strcmp(arg, "-"))
4022 apdu_file = fopen(arg, "a");
4024 perror("unable to open apdu log file");
4027 odr_setprint(print, apdu_file);
4031 static int cmd_set_cclfile(const char* arg)
4035 bibset = ccl_qual_mk();
4036 inf = fopen(arg, "r");
4038 perror("unable to open CCL file");
4041 ccl_qual_file(bibset, inf);
4044 strcpy(ccl_fields,arg);
4048 static int cmd_set_cqlfile(const char* arg)
4050 cql_transform_t newcqltrans;
4052 if ((newcqltrans = cql_transform_open_fname(arg)) == 0)
4054 perror("unable to open CQL file");
4058 cql_transform_close(cqltrans);
4060 cqltrans = newcqltrans;
4061 strcpy(cql_fields, arg);
4065 static int cmd_set_auto_reconnect(const char* arg)
4068 auto_reconnect = ! auto_reconnect;
4069 else if (strcmp(arg,"on")==0)
4071 else if (strcmp(arg,"off")==0)
4075 printf("Error use on or off\n");
4080 printf("Set auto reconnect enabled.\n");
4082 printf("Set auto reconnect disabled.\n");
4087 static int cmd_set_auto_wait(const char* arg)
4090 auto_wait = ! auto_wait;
4091 else if (strcmp(arg,"on")==0)
4093 else if (strcmp(arg,"off")==0)
4097 printf("Error use on or off\n");
4102 printf("Set auto wait enabled.\n");
4104 printf("Set auto wait disabled.\n");
4109 static int cmd_set_marcdump(const char* arg)
4111 if (marc_file && marc_file != stderr)
4112 { /* don't close stdout*/
4116 if (!strcmp(arg, ""))
4118 else if (!strcmp(arg, "-"))
4122 marc_file = fopen(arg, "a");
4124 perror("unable to open marc log file");
4129 static void marc_file_write(const char *buf, size_t sz)
4133 if (fwrite(buf, 1, sz, marc_file) != sz)
4135 perror("marcfile write");
4140 this command takes 3 arge {name class oid}
4142 static int cmd_register_oid(const char* args)
4148 {"appctx",CLASS_APPCTX},
4149 {"absyn",CLASS_ABSYN},
4150 {"attset",CLASS_ATTSET},
4151 {"transyn",CLASS_TRANSYN},
4152 {"diagset",CLASS_DIAGSET},
4153 {"recsyn",CLASS_RECSYN},
4154 {"resform",CLASS_RESFORM},
4155 {"accform",CLASS_ACCFORM},
4156 {"extserv",CLASS_EXTSERV},
4157 {"userinfo",CLASS_USERINFO},
4158 {"elemspec",CLASS_ELEMSPEC},
4159 {"varset",CLASS_VARSET},
4160 {"schema",CLASS_SCHEMA},
4161 {"tagset",CLASS_TAGSET},
4162 {"general",CLASS_GENERAL},
4163 {0,(enum oid_class) 0}
4165 char oname_str[101], oclass_str[101], oid_str[101];
4167 oid_class oidclass = CLASS_GENERAL;
4168 Odr_oid oid[OID_SIZE];
4170 if (sscanf(args, "%100[^ ] %100[^ ] %100s",
4171 oname_str,oclass_str, oid_str) < 1)
4173 printf("Error in register command \n");
4177 for (i = 0; oid_classes[i].className; i++)
4179 if (!strcmp(oid_classes[i].className, oclass_str))
4181 oidclass=oid_classes[i].oclass;
4186 if (!(oid_classes[i].className))
4188 printf("Unknown oid class %s\n",oclass_str);
4192 oid_dotstring_to_oid(oid_str, oid);
4194 if (yaz_oid_add(yaz_oid_std(), oidclass, oname_str, oid))
4196 printf("oid %s already exists, registration failed\n",
4202 static int cmd_push_command(const char* arg)
4204 #if HAVE_READLINE_HISTORY_H
4205 if (strlen(arg) > 1)
4208 fprintf(stderr,"Not compiled with the readline/history module\n");
4213 void source_rc_file(const char *rc_file)
4215 /* If rc_file != NULL, source that. Else
4216 Look for .yazclientrc and read it if it exists.
4217 If it does not exist, read $HOME/.yazclientrc instead */
4218 struct stat statbuf;
4222 if (stat(rc_file, &statbuf) == 0)
4223 cmd_source(rc_file, 0);
4226 fprintf(stderr, "yaz_client: cannot source '%s'\n", rc_file);
4233 strcpy(fname, ".yazclientrc");
4234 if (stat(fname, &statbuf)==0)
4236 cmd_source(fname, 0);
4240 const char* homedir = getenv("HOME");
4243 sprintf(fname, "%.800s/%s", homedir, ".yazclientrc");
4244 if (stat(fname, &statbuf)==0)
4245 cmd_source(fname, 0);
4251 static void add_to_readline_history(void *client_data, const char *line)
4253 #if HAVE_READLINE_HISTORY_H
4259 static void initialize(const char *rc_file)
4264 cur_host = wrbuf_alloc();
4266 if (!(out = odr_createmem(ODR_ENCODE)) ||
4267 !(in = odr_createmem(ODR_DECODE)) ||
4268 !(print = odr_createmem(ODR_PRINT)))
4270 fprintf(stderr, "failed to allocate ODR streams\n");
4274 strcpy(scan_position, "1");
4276 setvbuf(stdout, 0, _IONBF, 0);
4278 odr_setprint(print, apdu_file);
4280 bibset = ccl_qual_mk();
4281 inf = fopen(ccl_fields, "r");
4284 ccl_qual_file(bibset, inf);
4288 cqltrans = cql_transform_open_fname(cql_fields);
4289 /* If this fails, no problem: we detect cqltrans == 0 later */
4291 #if HAVE_READLINE_READLINE_H
4292 rl_attempted_completion_function =
4293 (char **(*)(const char *, int, int)) readline_completer;
4295 for (i = 0; i < maxOtherInfosSupported; ++i)
4297 extraOtherInfos[i].oid[0] = -1;
4298 extraOtherInfos[i].value = 0;
4301 cmd_format("usmarc");
4303 file_history = file_history_new();
4305 source_rc_file(rc_file);
4307 file_history_load(file_history);
4308 file_history_trav(file_history, 0, add_to_readline_history);
4312 #if HAVE_GETTIMEOFDAY
4313 struct timeval tv_start;
4317 static void handle_srw_record(Z_SRW_record *rec)
4319 if (rec->recordPosition)
4320 printf("pos=" ODR_INT_PRINTF, *rec->recordPosition);
4321 if (rec->recordSchema)
4322 printf(" schema=%s", rec->recordSchema);
4324 if (rec->recordData_buf && rec->recordData_len)
4326 print_xml_record(rec->recordData_buf, rec->recordData_len);
4327 marc_file_write(rec->recordData_buf, rec->recordData_len);
4334 static void handle_srw_explain_response(Z_SRW_explainResponse *res)
4336 handle_srw_record(&res->record);
4339 static void handle_srw_response(Z_SRW_searchRetrieveResponse *res)
4343 printf("Received SRW SearchRetrieve Response\n");
4345 for (i = 0; i<res->num_diagnostics; i++)
4347 if (res->diagnostics[i].uri)
4348 printf("SRW diagnostic %s\n",
4349 res->diagnostics[i].uri);
4351 printf("SRW diagnostic missing or could not be decoded\n");
4352 if (res->diagnostics[i].message)
4353 printf("Message: %s\n", res->diagnostics[i].message);
4354 if (res->diagnostics[i].details)
4355 printf("Details: %s\n", res->diagnostics[i].details);
4357 if (res->numberOfRecords)
4358 printf("Number of hits: " ODR_INT_PRINTF "\n", *res->numberOfRecords);
4360 display_facets(res->facetList);
4361 if (res->suggestions)
4362 printf("Suggestions:\n%s\n", res->suggestions);
4363 for (i = 0; i < res->num_records; i++)
4365 if (i >= sru_maximumRecords)
4367 printf("SRU server returns extra records. Skipping "
4368 ODR_INT_PRINTF " records.\n",
4369 res->num_records - sru_maximumRecords);
4372 handle_srw_record(res->records + i);
4374 setno += res->num_records;
4377 static void handle_srw_scan_term(Z_SRW_scanTerm *term)
4379 if (term->displayTerm)
4380 printf("%s:", term->displayTerm);
4381 else if (term->value)
4382 printf("%s:", term->value);
4384 printf("No value:");
4385 if (term->numberOfRecords)
4386 printf(" " ODR_INT_PRINTF, *term->numberOfRecords);
4387 if (term->whereInList)
4388 printf(" %s", term->whereInList);
4389 if (term->value && term->displayTerm)
4390 printf(" %s", term->value);
4392 strcpy(last_scan_line, term->value);
4396 static void handle_srw_scan_response(Z_SRW_scanResponse *res)
4400 printf("Received SRW Scan Response\n");
4402 for (i = 0; i<res->num_diagnostics; i++)
4404 if (res->diagnostics[i].uri)
4405 printf("SRW diagnostic %s\n",
4406 res->diagnostics[i].uri);
4408 printf("SRW diagnostic missing or could not be decoded\n");
4409 if (res->diagnostics[i].message)
4410 printf("Message: %s\n", res->diagnostics[i].message);
4411 if (res->diagnostics[i].details)
4412 printf("Details: %s\n", res->diagnostics[i].details);
4415 for (i = 0; i<res->num_terms; i++)
4416 handle_srw_scan_term(res->terms + i);
4419 static void http_response(Z_HTTP_Response *hres)
4422 const char *connection_head = z_HTTP_header_lookup(hres->headers,
4424 if (hres->code != 200)
4426 printf("HTTP Error Status=%d\n", hres->code);
4429 if (!yaz_srw_check_content_type(hres))
4430 printf("Content type does not appear to be XML\n");
4433 if (!yaz_matchstr(sru_method, "solr"))
4436 ODR o = odr_createmem(ODR_DECODE);
4437 ret = yaz_solr_decode_response(o, hres, &sr);
4439 if (ret == 0 && sr->which == Z_SRW_searchRetrieve_response)
4440 handle_srw_response(sr->u.response);
4441 else if (ret == 0 && sr->which == Z_SRW_scan_response)
4442 handle_srw_scan_response(sr->u.scan_response);
4445 printf("Decoding of Solr package failed\n");
4452 Z_SOAP *soap_package = 0;
4453 ODR o = odr_createmem(ODR_DECODE);
4454 Z_SOAP_Handler soap_handlers[] = {
4455 {YAZ_XMLNS_SRU_v2_mask, 0, (Z_SOAP_fun) yaz_srw_codec},
4456 {YAZ_XMLNS_UPDATE_v0_9, 0, (Z_SOAP_fun) yaz_ucp_codec},
4457 {YAZ_XMLNS_SRU_v1_response, 0, (Z_SOAP_fun) yaz_srw_codec},
4458 {"searchRetrieveResponse", 0, (Z_SOAP_fun) yaz_srw_codec},
4461 ret = z_soap_codec(o, &soap_package,
4462 &hres->content_buf, &hres->content_len,
4464 if (!ret && soap_package->which == Z_SOAP_generic)
4466 Z_SRW_PDU *sr = (Z_SRW_PDU *) soap_package->u.generic->p;
4467 if (sr->which == Z_SRW_searchRetrieve_response)
4468 handle_srw_response(sr->u.response);
4469 else if (sr->which == Z_SRW_explain_response)
4470 handle_srw_explain_response(sr->u.explain_response);
4471 else if (sr->which == Z_SRW_scan_response)
4472 handle_srw_scan_response(sr->u.scan_response);
4473 else if (sr->which == Z_SRW_update_response)
4474 printf("Got update response. Status: %s\n",
4475 sr->u.update_response->operationStatus);
4478 printf("Decoding of SRW package failed\n");
4482 else if (soap_package && (soap_package->which == Z_SOAP_fault
4483 || soap_package->which == Z_SOAP_error))
4485 printf("SOAP Fault code %s\n",
4486 soap_package->u.fault->fault_code);
4487 printf("SOAP Fault string %s\n",
4488 soap_package->u.fault->fault_string);
4489 if (soap_package->u.fault->details)
4490 printf("SOAP Details %s\n",
4491 soap_package->u.fault->details);
4495 printf("z_soap_codec failed. (no SOAP error)\n");
4502 close_session(); /* close session on error */
4505 if (!strcmp(hres->version, "1.0"))
4507 /* HTTP 1.0: only if Keep-Alive we stay alive.. */
4508 if (!connection_head || strcmp(connection_head, "Keep-Alive"))
4513 /* HTTP 1.1: only if no close we stay alive .. */
4514 if (connection_head && !strcmp(connection_head, "close"))
4521 #define max_HTTP_redirects 3
4523 static void wait_and_handle_response(int one_response_only)
4525 int reconnect_ok = 1;
4526 int no_redirects = 0;
4529 int netbufferlen = 0;
4530 #if HAVE_GETTIMEOFDAY
4532 struct timeval tv_end;
4538 res = cs_get(conn, &netbuffer, &netbufferlen);
4539 if (reconnect_ok && res <= 0 && protocol == PROTO_HTTP)
4550 buf_out = odr_getbuf(out, &len_out, 0);
4552 do_hex_dump(buf_out, len_out);
4554 cs_put(conn, buf_out, len_out);
4562 printf("Target closed connection\n");
4566 #if HAVE_GETTIMEOFDAY
4567 if (got_tv_end == 0)
4568 gettimeofday(&tv_end, 0); /* count first one only */
4572 odr_reset(in); /* release APDU from last round */
4574 do_hex_dump(netbuffer, res);
4575 odr_setbuf(in, netbuffer, res, 0);
4577 if (!z_GDU(in, &gdu, 0, 0))
4579 FILE *f = ber_file ? ber_file : stdout;
4580 odr_perror(in, "Decoding incoming APDU");
4581 fprintf(f, "[Near %ld]\n", (long) odr_offset(in));
4582 fprintf(f, "Packet dump:\n---------\n");
4583 odr_dumpBER(f, netbuffer, res);
4584 fprintf(f, "---------\n");
4587 z_GDU(print, &gdu, 0, 0);
4590 if (conn && cs_more(conn))
4595 odr_dumpBER(ber_file, netbuffer, res);
4596 if (apdu_file && !z_GDU(print, &gdu, 0, 0))
4598 odr_perror(print, "Failed to print incoming APDU");
4602 if (gdu->which == Z_GDU_Z3950)
4604 Z_APDU *apdu = gdu->u.z3950;
4605 switch (apdu->which)
4607 case Z_APDU_initResponse:
4608 process_Z3950_initResponse(apdu->u.initResponse);
4610 case Z_APDU_searchResponse:
4611 process_Z3950_searchResponse(apdu->u.searchResponse);
4613 case Z_APDU_scanResponse:
4614 process_Z3950_scanResponse(apdu->u.scanResponse);
4616 case Z_APDU_presentResponse:
4617 print_refid(apdu->u.presentResponse->referenceId);
4619 *apdu->u.presentResponse->numberOfRecordsReturned;
4620 if (apdu->u.presentResponse->records)
4621 display_records(apdu->u.presentResponse->records);
4623 printf("No records.\n");
4624 printf("nextResultSetPosition = " ODR_INT_PRINTF "\n",
4625 *apdu->u.presentResponse->nextResultSetPosition);
4627 case Z_APDU_sortResponse:
4628 process_Z3950_sortResponse(apdu->u.sortResponse);
4630 case Z_APDU_extendedServicesResponse:
4631 printf("Got extended services response\n");
4632 process_Z3950_ESResponse(apdu->u.extendedServicesResponse);
4635 printf("Target has closed the association.\n");
4636 process_Z3950_close(apdu->u.close);
4638 case Z_APDU_resourceControlRequest:
4639 process_Z3950_resourceControlRequest(
4640 apdu->u.resourceControlRequest);
4642 case Z_APDU_deleteResultSetResponse:
4643 process_Z3950_deleteResultSetResponse(
4644 apdu->u.deleteResultSetResponse);
4647 printf("Received unknown APDU type (%d).\n",
4653 else if (gdu->which == Z_GDU_HTTP_Response)
4655 Z_HTTP_Response *hres = gdu->u.HTTP_Response;
4656 int code = hres->code;
4657 const char *location = 0;
4659 yaz_cookies_response(yaz_cookies, hres);
4660 if ((code == 301 || code == 302)
4661 && no_redirects < max_HTTP_redirects
4662 && !yaz_matchstr(sru_method, "get")
4663 && (location = z_HTTP_header_lookup(hres->headers, "Location")))
4665 const char *base_tmp;
4666 int host_change = 0;
4667 location = yaz_check_location(in, wrbuf_cstr(cur_host),
4668 location, &host_change);
4670 session_connect_base(location, &base_tmp);
4674 if (send_SRW_redirect(location) == 2)
4677 printf("Redirect failed\n");
4680 http_response(gdu->u.HTTP_Response);
4683 if (one_response_only)
4685 if (conn && !cs_more(conn))
4688 #if HAVE_GETTIMEOFDAY
4692 printf("S/U S/U=%ld/%ld %ld/%ld",
4693 (long) tv_start.tv_sec,
4694 (long) tv_start.tv_usec,
4695 (long) tv_end.tv_sec,
4696 (long) tv_end.tv_usec);
4698 printf("Elapsed: %.6f\n",
4699 (double) tv_end.tv_usec / 1e6 + tv_end.tv_sec -
4700 ((double) tv_start.tv_usec / 1e6 + tv_start.tv_sec));
4706 static int cmd_cclparse(const char* arg)
4709 struct ccl_rpn_node *rpn=NULL;
4712 rpn = ccl_find_str(bibset, arg, &error, &pos);
4716 int ioff = 3+strlen(last_cmd)+1+pos;
4717 printf("%*s^ - ", ioff, " ");
4718 printf("%s\n", ccl_err_msg(error));
4724 ccl_pr_tree(rpn, stdout);
4728 ccl_rpn_delete(rpn);
4735 static int cmd_set_otherinfo(const char* args)
4737 char oidstr[101], otherinfoString[101];
4741 sscan_res = sscanf(args, "%d %100[^ ] %100s",
4742 &otherinfoNo, oidstr, otherinfoString);
4744 if (sscan_res > 0 && otherinfoNo >= maxOtherInfosSupported)
4746 printf("Error otherinfo index too large (%d>=%d)\n",
4747 otherinfoNo,maxOtherInfosSupported);
4754 /* reset this otherinfo */
4755 extraOtherInfos[otherinfoNo].oid[0] = -1;
4756 xfree(extraOtherInfos[otherinfoNo].value);
4757 extraOtherInfos[otherinfoNo].value = 0;
4762 printf("Error in set_otherinfo command \n");
4767 NMEM oid_tmp = nmem_create();
4768 const Odr_oid *oid =
4769 yaz_string_to_oid_nmem(yaz_oid_std(),
4770 CLASS_GENERAL, oidstr, oid_tmp);
4771 oid_oidcpy(extraOtherInfos[otherinfoNo].oid, oid);
4773 xfree(extraOtherInfos[otherinfoNo].value);
4774 extraOtherInfos[otherinfoNo].value = xstrdup(otherinfoString);
4776 nmem_destroy(oid_tmp);
4782 static int cmd_sleep(const char* args )
4784 int sec = atoi(args);
4792 printf("Done sleeping %d seconds\n", sec);
4797 static int cmd_list_otherinfo(const char* args)
4804 if (i >= maxOtherInfosSupported)
4806 printf("Error otherinfo index to large (%d>%d)\n",i,maxOtherInfosSupported);
4809 if (extraOtherInfos[i].value)
4811 char name_oid[OID_STR_MAX];
4814 yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4816 printf(" otherinfo %d %s %s\n",
4817 i, name ? name : "null",
4818 extraOtherInfos[i].value);
4824 for (i = 0; i < maxOtherInfosSupported; ++i)
4826 if (extraOtherInfos[i].value)
4828 char name_oid[OID_STR_MAX];
4831 yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4833 printf(" otherinfo %d %s %s\n",
4834 i, name ? name : "null",
4835 extraOtherInfos[i].value);
4842 static int cmd_list_all(const char* args)
4846 /* connection options */
4848 printf("Connected to : %s\n", wrbuf_cstr(cur_host));
4849 else if (cur_host && wrbuf_len(cur_host))
4850 printf("Not connected to : %s\n", wrbuf_cstr(cur_host));
4852 printf("Not connected : \n");
4853 if (yazProxy) printf("using proxy : %s\n",yazProxy);
4855 printf("auto_reconnect : %s\n",auto_reconnect?"on":"off");
4856 printf("auto_wait : %s\n",auto_wait?"on":"off");
4859 printf("Authentication : none\n");
4862 switch (auth->which)
4864 case Z_IdAuthentication_idPass:
4865 printf("Authentication : IdPass\n");
4866 printf(" Login User : %s\n",auth->u.idPass->userId?auth->u.idPass->userId:"");
4867 printf(" Login Group : %s\n",auth->u.idPass->groupId?auth->u.idPass->groupId:"");
4868 printf(" Password : %s\n",auth->u.idPass->password?auth->u.idPass->password:"");
4870 case Z_IdAuthentication_open:
4871 printf("Authentication : psOpen\n");
4872 printf(" Open string : %s\n",auth->u.open);
4875 printf("Authentication : Unknown\n");
4878 if (negotiationCharset)
4879 printf("Neg. Character set : `%s'\n", negotiationCharset);
4883 for (i = 0; i<num_databaseNames; i++) printf("%s ",databaseNames[i]);
4887 printf("CCL file : %s\n",ccl_fields);
4888 printf("CQL file : %s\n",cql_fields);
4889 printf("Query type : %s\n",query_type_as_string(queryType));
4891 printf("Named Result Sets : %s\n",setnumber==-1?"off":"on");
4893 /* piggy back options */
4894 printf("ssub/lslb/mspn : " ODR_INT_PRINTF "/" ODR_INT_PRINTF "/"
4895 ODR_INT_PRINTF "\n",
4896 smallSetUpperBound, largeSetLowerBound, mediumSetPresentNumber);
4898 /* print present related options */
4899 if (recordsyntax_size > 0)
4901 printf("Format : %s\n", recordsyntax_list[0]);
4903 printf("Schema : %s\n",record_schema ? record_schema : "not set");
4904 printf("Elements : %s\n",elementSetNames?elementSetNames->u.generic:"");
4906 /* loging options */
4907 printf("APDU log : %s\n",apdu_file?"on":"off");
4908 printf("Record log : %s\n",marc_file?"on":"off");
4911 printf("Other Info: \n");
4912 cmd_list_otherinfo("");
4917 static int cmd_clear_otherinfo(const char* args)
4919 if (strlen(args) > 0)
4921 int otherinfoNo = atoi(args);
4922 if (otherinfoNo >= maxOtherInfosSupported)
4924 printf("Error otherinfo index too large (%d>=%d)\n",
4925 otherinfoNo, maxOtherInfosSupported);
4928 if (extraOtherInfos[otherinfoNo].value)
4930 /* only clear if set. */
4931 extraOtherInfos[otherinfoNo].oid[0] = -1;
4932 xfree(extraOtherInfos[otherinfoNo].value);
4933 extraOtherInfos[otherinfoNo].value = 0;
4939 for (i = 0; i < maxOtherInfosSupported; ++i)
4941 if (extraOtherInfos[i].value)
4943 extraOtherInfos[i].oid[0] = -1;
4944 xfree(extraOtherInfos[i].value);
4945 extraOtherInfos[i].value = 0;
4952 static int cmd_wait_response(const char *arg)
4955 int wait_for = atoi(arg);
4959 for (i = 0 ; i < wait_for; ++i )
4960 wait_and_handle_response(1);
4964 static int cmd_help(const char *line);
4966 typedef char *(*completerFunctionType)(const char *text, int state);
4970 int (*fun)(const char *arg);
4972 completerFunctionType rl_completerfunction;
4973 int complete_filenames;
4974 const char **local_tabcompletes;
4976 {"open", cmd_open, "('tcp'|'ssl')':<host>[':'<port>][/<db>]",NULL,0,NULL},
4977 {"quit", cmd_quit, "",NULL,0,NULL},
4978 {"find", cmd_find, "<query>",NULL,0,NULL},
4979 {"facets", cmd_facets, "<query>",NULL,0,NULL},
4980 {"delete", cmd_delete, "<setname>",NULL,0,NULL},
4981 {"base", cmd_base, "<base-name>",NULL,0,NULL},
4982 {"show", cmd_show, "<rec#>['+'<#recs>['+'<setname>]]",NULL,0,NULL},
4983 {"setscan", cmd_setscan, "<term>",NULL,0,NULL},
4984 {"scan", cmd_scan, "<term>",NULL,0,NULL},
4985 {"scanstep", cmd_scanstep, "<size>",NULL,0,NULL},
4986 {"scanpos", cmd_scanpos, "<size>",NULL,0,NULL},
4987 {"scansize", cmd_scansize, "<size>",NULL,0,NULL},
4988 {"sort", cmd_sort, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4989 {"sort+", cmd_sort_newset, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4990 {"authentication", cmd_authentication, "<acctstring>",NULL,0,NULL},
4991 {"lslb", cmd_lslb, "<largeSetLowerBound>",NULL,0,NULL},
4992 {"ssub", cmd_ssub, "<smallSetUpperBound>",NULL,0,NULL},
4993 {"mspn", cmd_mspn, "<mediumSetPresentNumber>",NULL,0,NULL},
4994 {"status", cmd_status, "",NULL,0,NULL},
4995 {"setnames", cmd_setnames, "",NULL,0,NULL},
4996 {"cancel", cmd_cancel, "",NULL,0,NULL},
4997 {"cancel_find", cmd_cancel_find, "<query>",NULL,0,NULL},
4998 {"format", cmd_format, "<recordsyntax>",complete_format,0,NULL},
4999 {"schema", cmd_schema, "<schema>",complete_schema,0,NULL},
5000 {"elements", cmd_elements, "<elementSetName>",NULL,0,NULL},
5001 {"close", cmd_close, "",NULL,0,NULL},
5002 {"querytype", cmd_querytype, "<type>",complete_querytype,0,NULL},
5003 {"refid", cmd_refid, "<id>",NULL,0,NULL},
5004 {"itemorder", cmd_itemorder, "ill|item|xml <itemno>",NULL,0,NULL},
5005 {"update", cmd_update, "<action> <recid> [<doc>]",NULL,0,NULL},
5006 {"update0", cmd_update0, "<action> <recid> [<doc>]",NULL,0,NULL},
5007 {"xmles", cmd_xmles, "<OID> <doc>",NULL,0,NULL},
5008 {"packagename", cmd_packagename, "<packagename>",NULL,0,NULL},
5009 {"proxy", cmd_proxy, "[('tcp'|'ssl')]<host>[':'<port>]",NULL,0,NULL},
5010 {"charset", cmd_charset, "<nego_charset> <output_charset>",NULL,0,NULL},
5011 {"negcharset", cmd_negcharset, "<nego_charset>",NULL,0,NULL},
5012 {"displaycharset", cmd_displaycharset, "<output_charset>",NULL,0,NULL},
5013 {"marccharset", cmd_marccharset, "<charset_name>",NULL,0,NULL},
5014 {"querycharset", cmd_querycharset, "<charset_name>",NULL,0,NULL},
5015 {"lang", cmd_lang, "<language_code>",NULL,0,NULL},
5016 {"source", cmd_source_echo, "<filename>",NULL,1,NULL},
5017 {".", cmd_source_echo, "<filename>",NULL,1,NULL},
5018 {"!", cmd_subshell, "Subshell command",NULL,1,NULL},
5019 {"set_apdufile", cmd_set_apdufile, "<filename>",NULL,1,NULL},
5020 {"set_berfile", cmd_set_berfile, "<filename>",NULL,1,NULL},
5021 {"set_marcdump", cmd_set_marcdump," <filename>",NULL,1,NULL},
5022 {"set_cclfile", cmd_set_cclfile," <filename>",NULL,1,NULL},
5023 {"set_cqlfile", cmd_set_cqlfile," <filename>",NULL,1,NULL},
5024 {"set_auto_reconnect", cmd_set_auto_reconnect," on|off",complete_auto_reconnect,1,NULL},
5025 {"set_auto_wait", cmd_set_auto_wait," on|off",complete_auto_reconnect,1,NULL},
5026 {"set_otherinfo", cmd_set_otherinfo,"<otherinfoinddex> <oid> <string>",NULL,0,NULL},
5027 {"sleep", cmd_sleep,"<seconds>",NULL,0,NULL},
5028 {"register_oid", cmd_register_oid,"<name> <class> <oid>",NULL,0,NULL},
5029 {"push_command", cmd_push_command,"<command>",command_generator,0,NULL},
5030 {"register_tab", cmd_register_tab,"<commandname> <tab>",command_generator,0,NULL},
5031 {"cclparse", cmd_cclparse,"<ccl find command>",NULL,0,NULL},
5032 {"list_otherinfo",cmd_list_otherinfo,"[otherinfoinddex]",NULL,0,NULL},
5033 {"list_all",cmd_list_all,"",NULL,0,NULL},
5034 {"clear_otherinfo",cmd_clear_otherinfo,"",NULL,0,NULL},
5035 {"wait_response",cmd_wait_response,"<number>",NULL,0,NULL},
5036 /* Server Admin Functions */
5037 {"adm-reindex", cmd_adm_reindex, "<database-name>",NULL,0,NULL},
5038 {"adm-truncate", cmd_adm_truncate, "('database'|'index')<object-name>",NULL,0,NULL},
5039 {"adm-create", cmd_adm_create, "",NULL,0,NULL},
5040 {"adm-drop", cmd_adm_drop, "('database'|'index')<object-name>",NULL,0,NULL},
5041 {"adm-import", cmd_adm_import, "<record-type> <dir> <pattern>",NULL,0,NULL},
5042 {"adm-refresh", cmd_adm_refresh, "",NULL,0,NULL},
5043 {"adm-commit", cmd_adm_commit, "",NULL,0,NULL},
5044 {"adm-shutdown", cmd_adm_shutdown, "",NULL,0,NULL},
5045 {"adm-startup", cmd_adm_startup, "",NULL,0,NULL},
5046 {"explain", cmd_explain, "", NULL, 0, NULL},
5047 {"options", cmd_options, "", NULL, 0, NULL},
5048 {"zversion", cmd_zversion, "", NULL, 0, NULL},
5049 {"help", cmd_help, "", NULL,0,NULL},
5050 {"init", cmd_init, "", NULL,0,NULL},
5051 {"sru", cmd_sru, "<method> <version>", NULL,0,NULL},
5052 {"url", cmd_url, "<url>", NULL,0,NULL},
5053 {"exit", cmd_quit, "",NULL,0,NULL},
5057 static int cmd_help(const char *line)
5063 sscanf(line, "%20s", topic);
5066 printf("Commands:\n");
5067 for (i = 0; cmd_array[i].cmd; i++)
5068 if (*topic == 0 || strcmp(topic, cmd_array[i].cmd) == 0)
5069 printf(" %s %s\n", cmd_array[i].cmd, cmd_array[i].ad);
5070 if (!strcmp(topic, "find"))
5073 printf(" \"term\" Simple Term\n");
5074 printf(" @attr [attset] type=value op Attribute\n");
5075 printf(" @and opl opr And\n");
5076 printf(" @or opl opr Or\n");
5077 printf(" @not opl opr And-Not\n");
5078 printf(" @set set Result set\n");
5079 printf(" @prox exl dist ord rel uc ut Proximity. Use help prox\n");
5081 printf("Bib-1 attribute types\n");
5083 printf("4=Title 7=ISBN 8=ISSN 30=Date 62=Abstract 1003=Author 1016=Any\n");
5084 printf("2=Relation: ");
5085 printf("1< 2<= 3= 4>= 5> 6!= 102=Relevance\n");
5086 printf("3=Position: ");
5087 printf("1=First in Field 2=First in subfield 3=Any position\n");
5088 printf("4=Structure: ");
5089 printf("1=Phrase 2=Word 3=Key 4=Year 5=Date 6=WordList\n");
5090 printf("5=Truncation: ");
5091 printf("1=Right 2=Left 3=L&R 100=No 101=# 102=Re-1 103=Re-2\n");
5092 printf("6=Completeness:");
5093 printf("1=Incomplete subfield 2=Complete subfield 3=Complete field\n");
5095 if (!strcmp(topic, "prox"))
5097 printf("Proximity:\n");
5098 printf(" @prox exl dist ord rel uc ut\n");
5099 printf(" exl: exclude flag . 0=include, 1=exclude.\n");
5100 printf(" dist: distance integer.\n");
5101 printf(" ord: order flag. 0=unordered, 1=ordered.\n");
5102 printf(" rel: relation integer. 1< 2<= 3= 4>= 5> 6!= .\n");
5103 printf(" uc: unit class. k=known, p=private.\n");
5104 printf(" ut: unit type. 1=character, 2=word, 3=sentence,\n");
5105 printf(" 4=paragraph, 5=section, 6=chapter, 7=document,\n");
5106 printf(" 8=element, 9=subelement, 10=elementType, 11=byte.\n");
5107 printf("\nExamples:\n");
5108 printf(" Search for a and b in-order at most 3 words apart:\n");
5109 printf(" @prox 0 3 1 2 k 2 a b\n");
5110 printf(" Search for any order of a and b next to each other:\n");
5111 printf(" @prox 0 1 0 3 k 2 a b\n");
5116 static int cmd_register_tab(const char* arg)
5118 #if HAVE_READLINE_READLINE_H
5119 char command[101], tabargument[101];
5122 const char** tabslist;
5124 if (sscanf(arg, "%100s %100s", command, tabargument) < 1)
5129 /* locate the amdn in the list */
5130 for (i = 0; cmd_array[i].cmd; i++)
5132 if (!strncmp(cmd_array[i].cmd, command, strlen(command)))
5136 if (!cmd_array[i].cmd)
5138 fprintf(stderr,"Unknown command %s\n",command);
5143 if (!cmd_array[i].local_tabcompletes)
5144 cmd_array[i].local_tabcompletes = (const char **) calloc(1,sizeof(char**));
5148 tabslist = cmd_array[i].local_tabcompletes;
5149 for (; tabslist && *tabslist; tabslist++)
5152 cmd_array[i].local_tabcompletes = (const char **)
5153 realloc(cmd_array[i].local_tabcompletes,
5154 (num_of_tabs+2)*sizeof(char**));
5155 tabslist = cmd_array[i].local_tabcompletes;
5156 tabslist[num_of_tabs] = strdup(tabargument);
5157 tabslist[num_of_tabs+1] = NULL;
5162 static void process_cmd_line(char* line)
5165 char word[32], arg[10240];
5167 #if HAVE_GETTIMEOFDAY
5168 gettimeofday(&tv_start, 0);
5171 if ((res = sscanf(line, "%31s %10239[^;]", word, arg)) <= 0)
5173 strcpy(word, last_cmd);
5178 strcpy(last_cmd, word);
5180 /* removed tailing spaces from the arg command */
5183 char* lastnonspace=NULL;
5187 if (!yaz_isspace(*p))
5191 *(++lastnonspace) = 0;
5194 for (i = 0; cmd_array[i].cmd; i++)
5195 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
5197 res = (*cmd_array[i].fun)(arg);
5201 if (!cmd_array[i].cmd) /* dump our help-screen */
5203 printf("Unknown command: %s.\n", word);
5204 printf("Type 'help' for list of commands\n");
5211 if (res >= 2 && auto_wait)
5212 wait_and_handle_response(0);
5220 static char *command_generator(const char *text, int state)
5222 #if HAVE_READLINE_READLINE_H
5226 for (; cmd_array[idx].cmd; ++idx)
5228 if (!strncmp(cmd_array[idx].cmd, text, strlen(text)))
5230 ++idx; /* skip this entry on the next run */
5231 return strdup(cmd_array[idx-1].cmd);
5238 #if HAVE_READLINE_READLINE_H
5239 static const char** default_completer_list = NULL;
5241 static char* default_completer(const char* text, int state)
5243 return complete_from_list(default_completer_list, text, state);
5247 #if HAVE_READLINE_READLINE_H
5250 This function only known how to complete on the first word
5252 static char **readline_completer(char *text, int start, int end)
5254 completerFunctionType completerToUse;
5258 #if HAVE_READLINE_RL_COMPLETION_MATCHES
5259 char** res = rl_completion_matches(text, command_generator);
5261 char** res = completion_matches(text,
5262 (CPFunction*)command_generator);
5264 rl_attempted_completion_over = 1;
5269 char arg[10240],word[32];
5271 if ((res = sscanf(rl_line_buffer, "%31s %10239[^;]", word, arg)) <= 0)
5273 rl_attempted_completion_over = 1;
5277 for (i = 0; cmd_array[i].cmd; i++)
5278 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
5281 if (!cmd_array[i].cmd)
5284 default_completer_list = cmd_array[i].local_tabcompletes;
5286 completerToUse = cmd_array[i].rl_completerfunction;
5287 if (!completerToUse)
5288 { /* if command completer is not defined use the default completer */
5289 completerToUse = default_completer;
5293 #ifdef HAVE_READLINE_RL_COMPLETION_MATCHES
5295 rl_completion_matches(text, completerToUse);
5298 completion_matches(text, (CPFunction*)completerToUse);
5300 if (!cmd_array[i].complete_filenames)
5301 rl_attempted_completion_over = 1;
5306 if (!cmd_array[i].complete_filenames)
5307 rl_attempted_completion_over = 1;
5315 static void ctrl_c_handler(int x)
5321 static void client(void)
5328 signal(SIGINT, ctrl_c_handler);
5331 #if HAVE_GETTIMEOFDAY
5332 gettimeofday(&tv_start, 0);
5337 char *line_in = NULL;
5338 #if HAVE_READLINE_READLINE_H
5341 line_in=readline(C_PROMPT);
5347 #if HAVE_READLINE_HISTORY_H
5349 add_history(line_in);
5351 strncpy(line, line_in, sizeof(line)-1);
5360 if (!fgets(line, sizeof(line)-1, stdin))
5362 if ((end_p = strchr(line, '\n')))
5366 file_history_add_line(file_history, line);
5367 process_cmd_line(line);
5371 static void show_version(void)
5373 char vstr[20], sha1_str[41];
5375 yaz_version(vstr, sha1_str);
5376 printf("YAZ version: %s %s\n", YAZ_VERSION, YAZ_VERSION_SHA1);
5377 if (strcmp(sha1_str, YAZ_VERSION_SHA1))
5378 printf("YAZ DLL/SO: %s %s\n", vstr, sha1_str);
5382 int main(int argc, char **argv)
5385 char *open_command = 0;
5386 char *auth_command = 0;
5388 const char *rc_file = 0;
5392 if (!setlocale(LC_CTYPE, ""))
5393 fprintf(stderr, "setlocale failed\n");
5397 codeset = nl_langinfo(CODESET);
5401 outputCharset = xstrdup(codeset);
5403 yaz_enable_panic_backtrace(prog);
5405 ODR_MASK_SET(&z3950_options, Z_Options_search);
5406 ODR_MASK_SET(&z3950_options, Z_Options_present);
5407 ODR_MASK_SET(&z3950_options, Z_Options_namedResultSets);
5408 ODR_MASK_SET(&z3950_options, Z_Options_triggerResourceCtrl);
5409 ODR_MASK_SET(&z3950_options, Z_Options_scan);
5410 ODR_MASK_SET(&z3950_options, Z_Options_sort);
5411 ODR_MASK_SET(&z3950_options, Z_Options_extendedServices);
5412 ODR_MASK_SET(&z3950_options, Z_Options_delSet);
5414 nmem_auth = nmem_create();
5416 while ((ret = options("k:c:q:a:b:m:v:p:u:t:Vxd:f:", argv, argc, &arg)) != -2)
5423 open_command = (char *) xmalloc(strlen(arg)+6);
5424 strcpy(open_command, "open ");
5425 strcat(open_command, arg);
5429 fprintf(stderr, "%s: Specify at most one server address\n",
5435 if (!strcmp(arg, "-"))
5438 apdu_file=fopen(arg, "a");
5441 if (!strcmp(arg, "-"))
5444 ber_file=fopen(arg, "a");
5447 strncpy(ccl_fields, arg, sizeof(ccl_fields)-1);
5448 ccl_fields[sizeof(ccl_fields)-1] = '\0';
5451 dump_file_prefix = arg;
5457 kilobytes = atoi(arg);
5460 if (!(marc_file = fopen(arg, "a")))
5467 yazProxy = xstrdup(arg);
5470 strncpy(cql_fields, arg, sizeof(cql_fields)-1);
5471 cql_fields[sizeof(cql_fields)-1] = '\0';
5474 outputCharset = xstrdup(arg);
5479 auth_command = (char *) xmalloc(strlen(arg)+6);
5480 strcpy(auth_command, "auth ");
5481 strcat(auth_command, arg);
5485 yaz_log_init(yaz_log_mask_str(arg), "", 0);
5494 fprintf(stderr, "Usage: %s "
5514 initialize(rc_file);
5517 #ifdef HAVE_GETTIMEOFDAY
5518 gettimeofday(&tv_start, 0);
5520 process_cmd_line(auth_command);
5521 #if HAVE_READLINE_HISTORY_H
5522 add_history(auth_command);
5524 xfree(auth_command);
5528 #ifdef HAVE_GETTIMEOFDAY
5529 gettimeofday(&tv_start, 0);
5531 process_cmd_line(open_command);
5532 #if HAVE_READLINE_HISTORY_H
5533 add_history(open_command);
5535 xfree(open_command);
5544 * c-file-style: "Stroustrup"
5545 * indent-tabs-mode: nil
5547 * vim: shiftwidth=4 tabstop=8 expandtab