1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2009 Index Data
3 * See the file LICENSE for details.
6 * \brief yaz-client program
18 #include <sys/types.h>
40 #define S_ISREG(x) (x & _S_IFREG)
41 #define S_ISDIR(x) (x & _S_IFDIR)
44 #include <yaz/yaz-util.h>
46 #include <yaz/comstack.h>
48 #include <yaz/oid_db.h>
50 #include <yaz/proto.h>
51 #include <yaz/marcdisp.h>
52 #include <yaz/diagbib1.h>
53 #include <yaz/otherinfo.h>
54 #include <yaz/charneg.h>
55 #include <yaz/query-charset.h>
57 #include <yaz/pquery.h>
58 #include <yaz/sortspec.h>
62 #include <yaz/yaz-ccl.h>
66 #if HAVE_READLINE_READLINE_H
67 #include <readline/readline.h>
69 #if HAVE_READLINE_HISTORY_H
70 #include <readline/history.h>
75 #include "tabcomplete.h"
78 #define C_PROMPT "Z> "
80 static file_history_t file_history = 0;
82 static char sru_method[10] = "soap";
83 static char sru_version[10] = "1.2";
84 static char *codeset = 0; /* character set for output */
85 static int hex_dump = 0;
86 static char *dump_file_prefix = 0;
87 static ODR out, in, print; /* encoding and decoding streams */
89 static ODR srw_sr_odr_out = 0;
90 static Z_SRW_PDU *srw_sr = 0;
92 static FILE *apdu_file = 0;
93 static FILE *ber_file = 0;
94 static COMSTACK conn = 0; /* our z-association */
95 static Z_IdAuthentication *auth = 0; /* our current auth definition */
96 char *databaseNames[128];
97 int num_databaseNames = 0;
98 static Z_External *record_last = 0;
99 static int setnumber = -1; /* current result set number */
100 static int smallSetUpperBound = 0;
101 static int largeSetLowerBound = 1;
102 static int mediumSetPresentNumber = 0;
103 static Z_ElementSetNames *elementSetNames = 0;
104 static int setno = 1; /* current set offset */
105 static enum oid_proto protocol = PROTO_Z3950; /* current app protocol */
106 #define RECORDSYNTAX_MAX 20
107 static char *recordsyntax_list[RECORDSYNTAX_MAX];
108 static int recordsyntax_size = 0;
110 static char *record_schema = 0;
111 static int sent_close = 0;
112 static NMEM session_mem = NULL; /* memory handle for init-response */
113 static Z_InitResponse *session_initResponse = 0; /* session parameters */
114 static char last_scan_line[512] = "0";
115 static char last_scan_query[512] = "0";
116 static char ccl_fields[512] = "default.bib";
117 /* ### How can I set this path to use wherever YAZ is installed? */
118 static char cql_fields[512] = "/usr/local/share/yaz/etc/pqf.properties";
119 static char *esPackageName = 0;
120 static char *yazProxy = 0;
121 static int kilobytes = 1024;
122 static char *negotiationCharset = 0;
123 static int negotiationCharsetRecords = 1;
124 static int negotiationCharsetVersion = 3;
125 static char *outputCharset = 0;
126 static char *marcCharset = 0;
127 static char *queryCharset = 0;
128 static char* yazLang = 0;
130 static char last_cmd[32] = "?";
131 static FILE *marc_file = 0;
132 static char *refid = NULL;
133 static char *last_open_command = NULL;
134 static int auto_reconnect = 0;
135 static int auto_wait = 1;
136 static Odr_bitmask z3950_options;
137 static int z3950_version = 3;
138 static int scan_stepSize = 0;
139 static int scan_position = 1;
140 static int scan_size = 20;
141 static char cur_host[200];
142 static int last_hit_count = 0;
152 static QueryType queryType = QueryType_Prefix;
154 static CCL_bibset bibset; /* CCL bibset handle */
155 static cql_transform_t cqltrans = 0; /* CQL context-set handle */
157 #if HAVE_READLINE_COMPLETION_OVER
160 /* readline doesn't have this var. Define it ourselves. */
161 int rl_attempted_completion_over = 0;
164 #define maxOtherInfosSupported 10
166 Odr_oid oid[OID_SIZE];
168 } extraOtherInfos[maxOtherInfosSupported];
170 void process_cmd_line(char* line);
171 #if HAVE_READLINE_READLINE_H
172 char **readline_completer(char *text, int start, int end);
174 static char *command_generator(const char *text, int state);
175 int cmd_register_tab(const char* arg);
176 int cmd_querycharset(const char *arg);
178 static void close_session(void);
180 static void marc_file_write(const char *buf, size_t sz);
182 ODR getODROutputStream(void)
187 const char* query_type_as_string(QueryType q)
190 case QueryType_Prefix: return "prefix (RPN sent to server)";
191 case QueryType_CCL: return "CCL (CCL sent to server) ";
192 case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
193 case QueryType_CQL: return "CQL (CQL sent to server)";
194 case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
196 return "unknown Query type internal yaz-client error";
200 static void do_hex_dump(const char* buf, size_t len)
206 for (i = 0; i < len ; i = i+16 )
209 for(x=0 ; i+x<len && x<16; ++x)
211 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
216 if (dump_file_prefix)
219 if (++no < 1000 && strlen(dump_file_prefix) < 500)
223 sprintf(fname, "%s.%03d.raw", dump_file_prefix, no);
224 of = fopen(fname, "wb");
226 if (fwrite(buf, 1, len, of) != len)
228 printf("write failed for %s", fname);
232 printf("close failed for %s", fname);
238 void add_otherInfos(Z_APDU *a)
240 Z_OtherInformation **oi;
244 for(i=0; i<maxOtherInfosSupported; ++i)
246 if (oid_oidlen(extraOtherInfos[i].oid) > 0)
247 yaz_oi_set_string_oid(oi, out, extraOtherInfos[i].oid,
248 1, extraOtherInfos[i].value);
252 int send_apdu(Z_APDU *a)
261 z_APDU(print, &a, 0, 0);
264 if (!z_APDU(out, &a, 0, 0))
266 odr_perror(out, "Encoding APDU");
270 buf = odr_getbuf(out, &len, 0);
272 odr_dumpBER(ber_file, buf, len);
273 /* printf ("sending APDU of size %d\n", len); */
274 do_hex_dump(buf, len);
275 if (cs_put(conn, buf, len) < 0)
277 fprintf(stderr, "cs_put: %s", cs_errmsg(cs_errno(conn)));
281 odr_reset(out); /* release the APDU structure */
285 static void print_stringn(const unsigned char *buf, size_t len)
288 for (i = 0; i<len; i++)
289 if ((buf[i] <= 126 && buf[i] >= 32) || strchr("\n\r\t\f", buf[i]))
290 printf("%c", buf[i]);
292 printf("\\X%02X", buf[i]);
295 static void print_refid(Z_ReferenceId *id)
299 printf("Reference Id: ");
300 print_stringn(id->buf, id->len);
305 static Z_ReferenceId *set_refid(ODR out)
310 id = (Z_ReferenceId *) odr_malloc(out, sizeof(*id));
311 id->size = id->len = strlen(refid);
312 id->buf = (unsigned char *) odr_malloc(out, id->len);
313 memcpy(id->buf, refid, id->len);
317 /* INIT SERVICE ------------------------------- */
319 static void send_initRequest(const char* type_and_host)
321 Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
322 Z_InitRequest *req = apdu->u.initRequest;
325 req->options = &z3950_options;
327 ODR_MASK_ZERO(req->protocolVersion);
328 for (i = 0; i<z3950_version; i++)
329 ODR_MASK_SET(req->protocolVersion, i);
331 *req->maximumRecordSize = 1024*kilobytes;
332 *req->preferredMessageSize = 1024*kilobytes;
334 req->idAuthentication = auth;
336 req->referenceId = set_refid(out);
338 if (yazProxy && type_and_host)
340 yaz_oi_set_string_oid(&req->otherInfo, out, yaz_oid_userinfo_proxy,
344 if (negotiationCharset || yazLang) {
345 Z_OtherInformation **p;
346 Z_OtherInformationUnit *p0;
348 yaz_oi_APDU(apdu, &p);
350 if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
352 ODR_MASK_SET(req->options, Z_Options_negotiationModel);
354 p0->which = Z_OtherInfo_externallyDefinedInfo;
355 p0->information.externallyDefinedInfo =
356 yaz_set_proposal_charneg_list(out, ",",
359 negotiationCharsetRecords);
363 printf("Sent initrequest.\n");
367 /* These two are used only from process_initResponse() */
368 static void render_initUserInfo(Z_OtherInformation *ui1);
369 static void render_diag(Z_DiagnosticFormat *diag);
371 static void pr_opt(const char *opt, void *clientData)
376 static int process_initResponse(Z_InitResponse *res)
379 /* save session parameters for later use */
380 session_mem = odr_extract_mem(in);
381 session_initResponse = res;
383 for (ver = 0; ver < 8; ver++)
384 if (!ODR_MASK_GET(res->protocolVersion, ver))
388 printf("Connection rejected by v%d target.\n", ver);
390 printf("Connection accepted by v%d target.\n", ver);
391 if (res->implementationId)
392 printf("ID : %s\n", res->implementationId);
393 if (res->implementationName)
394 printf("Name : %s\n", res->implementationName);
395 if (res->implementationVersion)
396 printf("Version: %s\n", res->implementationVersion);
397 if (res->userInformationField)
399 Z_External *uif = res->userInformationField;
400 if (uif->which == Z_External_userInfo1) {
401 render_initUserInfo(uif->u.userInfo1);
403 printf("UserInformationfield:\n");
404 if (!z_External(print, (Z_External**)&uif, 0, 0))
406 odr_perror(print, "Printing userinfo\n");
409 if (uif->which == Z_External_octet) {
410 printf("Guessing visiblestring:\n");
411 printf("'%.*s'\n", uif->u.octet_aligned->len,
412 uif->u.octet_aligned->buf);
414 else if (uif->which == Z_External_single)
416 Odr_any *sat = uif->u.single_ASN1_type;
417 if (!oid_oidcmp(uif->direct_reference,
418 yaz_oid_userinfo_oclc_userinfo))
420 Z_OCLC_UserInformation *oclc_ui;
421 ODR decode = odr_createmem(ODR_DECODE);
422 odr_setbuf(decode, (char *) sat->buf, sat->len, 0);
423 if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
424 printf("Bad OCLC UserInformation:\n");
426 printf("OCLC UserInformation:\n");
427 if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
428 printf("Bad OCLC UserInformation spec\n");
433 /* Peek at any private Init-diagnostic APDUs */
434 printf("### NAUGHTY: External is '%.*s'\n",
442 yaz_init_opt_decode(res->options, pr_opt, 0);
445 if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
448 if (ODR_MASK_GET(res->options, Z_Options_negotiationModel)) {
450 Z_CharSetandLanguageNegotiation *p =
451 yaz_get_charneg_record(res->otherInfo);
455 char *charset=NULL, *lang=NULL;
458 yaz_get_response_charneg(session_mem, p, &charset, &lang,
461 printf("Accepted character set : %s\n", charset ? charset:"none");
462 printf("Accepted code language : %s\n", lang ? lang:"none");
463 printf("Accepted records in ...: %d\n", selected );
465 if (outputCharset && charset)
467 printf("Converting between %s and %s\n",
468 outputCharset, charset);
469 odr_set_charset(out, charset, outputCharset);
470 odr_set_charset(in, outputCharset, charset);
471 cmd_querycharset(charset);
475 odr_set_charset(out, 0, 0);
476 odr_set_charset(in, 0, 0);
485 static void render_initUserInfo(Z_OtherInformation *ui1) {
487 printf("Init response contains %d otherInfo unit%s:\n",
488 ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
490 for (i = 0; i < ui1->num_elements; i++) {
491 Z_OtherInformationUnit *unit = ui1->list[i];
492 printf(" %d: otherInfo unit contains ", i+1);
493 if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
494 unit->information.externallyDefinedInfo &&
495 unit->information.externallyDefinedInfo->which ==
497 render_diag(unit->information.externallyDefinedInfo->u.diag1);
499 else if (unit->which != Z_OtherInfo_externallyDefinedInfo)
501 printf("unsupported otherInfo unit->which = %d\n", unit->which);
505 printf("unsupported otherInfo unit external %d\n",
506 unit->information.externallyDefinedInfo ?
507 unit->information.externallyDefinedInfo->which : -2);
513 /* ### should this share code with display_diagrecs()? */
514 static void render_diag(Z_DiagnosticFormat *diag) {
517 printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
518 for (i = 0; i < diag->num; i++) {
519 Z_DiagnosticFormat_s *ds = diag->elements[i];
520 printf(" %d: ", i+1);
522 case Z_DiagnosticFormat_s_defaultDiagRec: {
523 Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
524 /* ### should check `dd->diagnosticSetId' */
525 printf("code=%d (%s)", *dd->condition,
526 diagbib1_str(*dd->condition));
527 /* Both types of addinfo are the same, so use type-pun */
528 if (dd->u.v2Addinfo != 0)
529 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
532 case Z_DiagnosticFormat_s_explicitDiagnostic:
533 printf("Explicit diagnostic (not supported)");
536 printf("Unrecognised diagnostic type %d", ds->which);
540 if (ds->message != 0)
541 printf(", message='%s'", ds->message);
547 static int set_base(const char *arg)
552 for (i = 0; i<num_databaseNames; i++)
553 xfree(databaseNames[i]);
554 num_databaseNames = 0;
558 if (!(cp = strchr(arg, ' ')))
559 cp = arg + strlen(arg);
562 databaseNames[num_databaseNames] = (char *)xmalloc(1 + cp - arg);
563 memcpy(databaseNames[num_databaseNames], arg, cp - arg);
564 databaseNames[num_databaseNames][cp - arg] = '\0';
566 for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
575 if (num_databaseNames == 0)
577 num_databaseNames = 1;
578 databaseNames[0] = xstrdup("");
583 static int parse_cmd_doc(const char **arg, ODR out, char **buf, int *len)
586 while (**arg && strchr(" \t\n\r\f", **arg))
592 else if ((*arg)[0] == '<')
597 const char *arg_start = ++(*arg);
599 while (**arg != '\0' && **arg != ' ')
602 fname = odr_strdupn(out, arg_start, *arg - arg_start);
604 inf = fopen(fname, "rb");
607 printf("Couldn't open %s\n", fname);
610 if (fseek(inf, 0L, SEEK_END) == -1)
612 printf("Couldn't seek in %s\n", fname);
617 if (fseek(inf, 0L, SEEK_SET) == -1)
619 printf("Couldn't seek in %s\n", fname);
624 *buf = (char *) odr_malloc(out, fsize+1);
625 (*buf)[fsize] = '\0';
626 if (fread(*buf, 1, fsize, inf) != fsize)
628 printf("Unable to read %s\n", fname);
634 else if ((*arg)[0] == '\"' && (sep=strchr(*arg+1, '"')))
638 *buf = odr_strdupn(out, *arg, *len);
643 const char *arg_start = *arg;
645 while (**arg != '\0' && **arg != ' ')
648 *len = *arg - arg_start;
649 *buf = odr_strdupn(out, arg_start, *len);
654 static int cmd_base(const char *arg)
658 printf("Usage: base <database> <database> ...\n");
661 return set_base(arg);
664 void cmd_open_remember_last_open_command(const char* arg, char* new_open_command)
666 if(last_open_command != arg)
668 if(last_open_command) xfree(last_open_command);
669 last_open_command = xstrdup(new_open_command);
673 int session_connect(const char *arg)
676 char type_and_host[101];
677 const char *basep = 0;
685 nmem_destroy(session_mem);
687 session_initResponse = 0;
689 cs_get_host_args(arg, &basep);
691 strncpy(type_and_host, arg, sizeof(type_and_host)-1);
692 type_and_host[sizeof(type_and_host)-1] = '\0';
694 cmd_open_remember_last_open_command(arg, type_and_host);
697 conn = cs_create_host(yazProxy, 1, &add);
699 conn = cs_create_host(arg, 1, &add);
702 printf("Could not resolve address %s\n", arg);
707 if (conn->protocol == PROTO_HTTP)
709 printf("SRW/HTTP not enabled in this YAZ\n");
715 protocol = conn->protocol;
716 if (conn->protocol == PROTO_HTTP)
720 printf("Connecting...");
722 if (cs_connect(conn, add) < 0)
724 printf("error = %s\n", cs_strerror(conn));
730 cs_print_session_info(conn);
733 if (protocol == PROTO_Z3950)
735 send_initRequest(type_and_host);
741 int cmd_open(const char *arg)
746 strncpy(cur_host, arg, sizeof(cur_host)-1);
747 cur_host[sizeof(cur_host)-1] = 0;
749 r = session_connect(cur_host);
750 if (conn && conn->protocol == PROTO_HTTP)
751 queryType = QueryType_CQL;
755 void try_reconnect(void)
759 if(!( auto_reconnect && last_open_command) ) return ;
761 open_command = (char *) xmalloc(strlen(last_open_command)+6);
762 strcpy(open_command, "open ");
764 strcat(open_command, last_open_command);
766 process_cmd_line(open_command);
771 int cmd_authentication(const char *arg)
773 static Z_IdAuthentication au;
774 static char user[40], group[40], pass[40];
775 static Z_IdPass idPass;
780 printf("Auth field set to null\n");
784 r = sscanf(arg, "%39s %39s %39s", user, group, pass);
787 printf("Authentication set to null\n");
793 if (!strcmp(user, "-")) {
794 au.which = Z_IdAuthentication_anonymous;
795 printf("Authentication set to Anonymous\n");
797 au.which = Z_IdAuthentication_open;
799 printf("Authentication set to Open (%s)\n", user);
805 au.which = Z_IdAuthentication_idPass;
806 au.u.idPass = &idPass;
807 idPass.groupId = NULL;
808 idPass.userId = !strcmp(user, "-") ? 0 : user;
809 idPass.password = !strcmp(group, "-") ? 0 : group;
810 printf("Authentication set to User (%s), Pass (%s)\n", user, group);
815 au.which = Z_IdAuthentication_idPass;
816 au.u.idPass = &idPass;
817 idPass.groupId = group;
818 idPass.userId = user;
819 idPass.password = pass;
820 printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
826 /* SEARCH SERVICE ------------------------------ */
827 static void display_record(Z_External *r);
829 static void print_record(const unsigned char *buf, size_t len)
832 print_stringn(buf, len);
833 /* add newline if not already added ... */
834 if (i <= 0 || buf[i-1] != '\n')
838 static void display_record(Z_External *r)
840 const Odr_oid *oid = r->direct_reference;
844 * Tell the user what we got.
849 char oid_name_buf[OID_STR_MAX];
851 = yaz_oid_to_string_buf(oid, &oclass, oid_name_buf);
852 printf("Record type: ");
854 printf("%s\n", oid_name);
856 /* Check if this is a known, ASN.1 type tucked away in an octet string */
857 if (r->which == Z_External_octet)
859 Z_ext_typeent *type = z_ext_getentbyref(r->direct_reference);
865 * Call the given decoder to process the record.
867 odr_setbuf(in, (char*)r->u.octet_aligned->buf,
868 r->u.octet_aligned->len, 0);
869 if (!(*type->fun)(in, &rr, 0, 0))
871 odr_perror(in, "Decoding constructed record.");
872 fprintf(stdout, "[Near %ld]\n", (long) odr_offset(in));
873 fprintf(stdout, "Packet dump:\n---------\n");
874 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
875 r->u.octet_aligned->len);
876 fprintf(stdout, "---------\n");
878 /* note just ignores the error ant print the bytes form the octet_aligned later */
881 * Note: we throw away the original, BER-encoded record here.
882 * Do something else with it if you want to keep it.
884 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
885 r->which = type->what;
889 if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_soif))
891 print_record((const unsigned char *) r->u.octet_aligned->buf,
892 r->u.octet_aligned->len);
893 marc_file_write((const char *) r->u.octet_aligned->buf,
894 r->u.octet_aligned->len);
896 else if (oid && r->which == Z_External_octet)
898 const char *octet_buf = (char*)r->u.octet_aligned->buf;
899 if (oid && (!oid_oidcmp(oid, yaz_oid_recsyn_xml)
900 || !oid_oidcmp(oid, yaz_oid_recsyn_xml)
901 || !oid_oidcmp(oid, yaz_oid_recsyn_html)))
903 print_record((const unsigned char *) octet_buf,
904 r->u.octet_aligned->len);
906 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_postscript))
908 int size = r->u.octet_aligned->len;
911 print_record((const unsigned char *) octet_buf, size);
915 if (oid && yaz_oid_is_iso2709(oid))
920 yaz_marc_t mt = yaz_marc_create();
921 const char *from = 0;
923 if (marcCharset && !strcmp(marcCharset, "auto"))
925 if (!oid_oidcmp(oid, yaz_oid_recsyn_usmarc))
927 if (octet_buf[9] == 'a')
935 else if (marcCharset)
937 if (outputCharset && from)
939 cd = yaz_iconv_open(outputCharset, from);
940 printf("convert from %s to %s", from,
943 printf(" unsupported\n");
946 yaz_marc_iconv(mt, cd);
951 if (yaz_marc_decode_buf(mt, octet_buf, r->u.octet_aligned->len,
954 if (fwrite(result, rlen, 1, stdout) != 1)
956 printf("write to stdout failed\n");
961 printf("bad MARC. Dumping as it is:\n");
962 print_record((const unsigned char*) octet_buf,
963 r->u.octet_aligned->len);
965 yaz_marc_destroy(mt);
971 print_record((const unsigned char*) octet_buf,
972 r->u.octet_aligned->len);
975 marc_file_write(octet_buf, r->u.octet_aligned->len);
977 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_sutrs))
979 if (r->which != Z_External_sutrs)
981 printf("Expecting single SUTRS type for SUTRS.\n");
984 print_record(r->u.sutrs->buf, r->u.sutrs->len);
985 marc_file_write((const char *) r->u.sutrs->buf, r->u.sutrs->len);
987 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_grs_1))
990 if (r->which != Z_External_grs1)
992 printf("Expecting single GRS type for GRS.\n");
996 yaz_display_grs1(w, r->u.grs1, 0);
1000 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_opac))
1003 if (r->u.opac->bibliographicRecord)
1004 display_record(r->u.opac->bibliographicRecord);
1005 for (i = 0; i<r->u.opac->num_holdingsData; i++)
1007 Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
1008 if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
1010 printf("MARC holdings %d\n", i);
1011 display_record(h->u.marcHoldingsRecord);
1013 else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
1017 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
1019 printf("Data holdings %d\n", i);
1020 if (data->typeOfRecord)
1021 printf("typeOfRecord: %s\n", data->typeOfRecord);
1022 if (data->encodingLevel)
1023 printf("encodingLevel: %s\n", data->encodingLevel);
1024 if (data->receiptAcqStatus)
1025 printf("receiptAcqStatus: %s\n", data->receiptAcqStatus);
1026 if (data->generalRetention)
1027 printf("generalRetention: %s\n", data->generalRetention);
1028 if (data->completeness)
1029 printf("completeness: %s\n", data->completeness);
1030 if (data->dateOfReport)
1031 printf("dateOfReport: %s\n", data->dateOfReport);
1033 printf("nucCode: %s\n", data->nucCode);
1034 if (data->localLocation)
1035 printf("localLocation: %s\n", data->localLocation);
1036 if (data->shelvingLocation)
1037 printf("shelvingLocation: %s\n", data->shelvingLocation);
1038 if (data->callNumber)
1039 printf("callNumber: %s\n", data->callNumber);
1040 if (data->shelvingData)
1041 printf("shelvingData: %s\n", data->shelvingData);
1042 if (data->copyNumber)
1043 printf("copyNumber: %s\n", data->copyNumber);
1044 if (data->publicNote)
1045 printf("publicNote: %s\n", data->publicNote);
1046 if (data->reproductionNote)
1047 printf("reproductionNote: %s\n", data->reproductionNote);
1048 if (data->termsUseRepro)
1049 printf("termsUseRepro: %s\n", data->termsUseRepro);
1050 if (data->enumAndChron)
1051 printf("enumAndChron: %s\n", data->enumAndChron);
1052 for (j = 0; j<data->num_volumes; j++)
1054 printf("volume %d\n", j);
1055 if (data->volumes[j]->enumeration)
1056 printf(" enumeration: %s\n",
1057 data->volumes[j]->enumeration);
1058 if (data->volumes[j]->chronology)
1059 printf(" chronology: %s\n",
1060 data->volumes[j]->chronology);
1061 if (data->volumes[j]->enumAndChron)
1062 printf(" enumAndChron: %s\n",
1063 data->volumes[j]->enumAndChron);
1065 for (j = 0; j<data->num_circulationData; j++)
1067 printf("circulation %d\n", j);
1068 if (data->circulationData[j]->availableNow)
1069 printf(" availableNow: %d\n",
1070 *data->circulationData[j]->availableNow);
1071 if (data->circulationData[j]->availablityDate)
1072 printf(" availabiltyDate: %s\n",
1073 data->circulationData[j]->availablityDate);
1074 if (data->circulationData[j]->availableThru)
1075 printf(" availableThru: %s\n",
1076 data->circulationData[j]->availableThru);
1077 if (data->circulationData[j]->restrictions)
1078 printf(" restrictions: %s\n",
1079 data->circulationData[j]->restrictions);
1080 if (data->circulationData[j]->itemId)
1081 printf(" itemId: %s\n",
1082 data->circulationData[j]->itemId);
1083 if (data->circulationData[j]->renewable)
1084 printf(" renewable: %d\n",
1085 *data->circulationData[j]->renewable);
1086 if (data->circulationData[j]->onHold)
1087 printf(" onHold: %d\n",
1088 *data->circulationData[j]->onHold);
1089 if (data->circulationData[j]->enumAndChron)
1090 printf(" enumAndChron: %s\n",
1091 data->circulationData[j]->enumAndChron);
1092 if (data->circulationData[j]->midspine)
1093 printf(" midspine: %s\n",
1094 data->circulationData[j]->midspine);
1095 if (data->circulationData[j]->temporaryLocation)
1096 printf(" temporaryLocation: %s\n",
1097 data->circulationData[j]->temporaryLocation);
1104 printf("Unknown record representation.\n");
1105 if (!z_External(print, &r, 0, 0))
1107 odr_perror(print, "Printing external");
1113 static void display_diagrecs(Z_DiagRec **pp, int num)
1116 Z_DefaultDiagFormat *r;
1118 printf("Diagnostic message(s) from database:\n");
1119 for (i = 0; i<num; i++)
1121 Z_DiagRec *p = pp[i];
1122 if (p->which != Z_DiagRec_defaultFormat)
1124 printf("Diagnostic record not in default format.\n");
1128 r = p->u.defaultFormat;
1130 if (!r->diagnosticSetId)
1131 printf("Missing diagset\n");
1135 char diag_name_buf[OID_STR_MAX];
1136 const char *diag_name = 0;
1137 diag_name = yaz_oid_to_string_buf
1138 (r->diagnosticSetId, &oclass, diag_name_buf);
1139 if (oid_oidcmp(r->diagnosticSetId, yaz_oid_diagset_bib_1))
1140 printf("Unknown diagset: %s\n", diag_name);
1142 printf(" [%d] %s", *r->condition, diagbib1_str(*r->condition));
1145 case Z_DefaultDiagFormat_v2Addinfo:
1146 printf(" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1148 case Z_DefaultDiagFormat_v3Addinfo:
1149 printf(" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1156 static void display_nameplusrecord(Z_NamePlusRecord *p)
1158 if (p->databaseName)
1159 printf("[%s]", p->databaseName);
1160 if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1161 display_diagrecs(&p->u.surrogateDiagnostic, 1);
1162 else if (p->which == Z_NamePlusRecord_databaseRecord)
1163 display_record(p->u.databaseRecord);
1166 static void display_records(Z_Records *p)
1170 if (p->which == Z_Records_NSD)
1172 Z_DiagRec dr, *dr_p = &dr;
1173 dr.which = Z_DiagRec_defaultFormat;
1174 dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1175 display_diagrecs(&dr_p, 1);
1177 else if (p->which == Z_Records_multipleNSD)
1178 display_diagrecs(p->u.multipleNonSurDiagnostics->diagRecs,
1179 p->u.multipleNonSurDiagnostics->num_diagRecs);
1182 printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1183 for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1184 display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1188 static int send_deleteResultSetRequest(const char *arg)
1193 Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1194 Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1196 req->referenceId = set_refid(out);
1198 req->num_resultSetList =
1199 sscanf(arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1200 names[0], names[1], names[2], names[3],
1201 names[4], names[5], names[6], names[7]);
1203 req->deleteFunction = (int *)
1204 odr_malloc(out, sizeof(*req->deleteFunction));
1205 if (req->num_resultSetList > 0)
1207 *req->deleteFunction = Z_DeleteResultSetRequest_list;
1208 req->resultSetList = (char **)
1209 odr_malloc(out, sizeof(*req->resultSetList)*
1210 req->num_resultSetList);
1211 for (i = 0; i<req->num_resultSetList; i++)
1212 req->resultSetList[i] = names[i];
1216 *req->deleteFunction = Z_DeleteResultSetRequest_all;
1217 req->resultSetList = 0;
1221 printf("Sent deleteResultSetRequest.\n");
1226 static int send_srw(Z_SRW_PDU *sr)
1228 const char *charset = negotiationCharset;
1229 const char *host_port = cur_host;
1233 path = (char *) odr_malloc(out, 2+strlen(databaseNames[0]));
1235 strcpy(path+1, databaseNames[0]);
1237 gdu = z_get_HTTP_Request_host_path(out, host_port, path);
1239 if (!yaz_matchstr(sru_method, "get"))
1241 yaz_sru_get_encode(gdu->u.HTTP_Request, sr, out, charset);
1243 else if (!yaz_matchstr(sru_method, "post"))
1245 yaz_sru_post_encode(gdu->u.HTTP_Request, sr, out, charset);
1247 else if (!yaz_matchstr(sru_method, "soap"))
1249 yaz_sru_soap_encode(gdu->u.HTTP_Request, sr, out, charset);
1252 if (z_GDU(out, &gdu, 0, 0))
1260 if (!z_GDU(print, &gdu, 0, 0))
1261 printf("Failed to print outgoing SRU package\n");
1264 buf_out = odr_getbuf(out, &len_out, 0);
1266 /* we don't odr_reset(out), since we may need the buffer again */
1268 do_hex_dump(buf_out, len_out);
1270 r = cs_put(conn, buf_out, len_out);
1280 static char *encode_SRW_term(ODR o, const char *q)
1282 const char *in_charset = "ISO-8859-1";
1283 WRBUF w = wrbuf_alloc();
1287 in_charset = outputCharset;
1288 cd = yaz_iconv_open("UTF-8", in_charset);
1292 return odr_strdup(o, q);
1294 wrbuf_iconv_write(w, cd, q, strlen(q));
1296 res = odr_strdup(o, wrbuf_cstr(w));
1298 res = odr_strdup(o, q);
1299 yaz_iconv_close(cd);
1305 static int send_SRW_scanRequest(const char *arg, int pos, int num)
1309 /* regular requestse .. */
1310 sr = yaz_srw_get_pdu(out, Z_SRW_scan_request, sru_version);
1315 sr->u.scan_request->query_type = Z_SRW_query_type_cql;
1316 sr->u.scan_request->scanClause.cql = encode_SRW_term(out, arg);
1318 case QueryType_Prefix:
1319 sr->u.scan_request->query_type = Z_SRW_query_type_pqf;
1320 sr->u.scan_request->scanClause.pqf = encode_SRW_term(out, arg);
1323 printf("Only CQL and PQF supported in SRW\n");
1326 sr->u.scan_request->responsePosition = odr_intdup(out, pos);
1327 sr->u.scan_request->maximumTerms = odr_intdup(out, num);
1328 return send_srw(sr);
1331 static int send_SRW_searchRequest(const char *arg)
1337 assert(srw_sr_odr_out == 0);
1338 srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1340 odr_reset(srw_sr_odr_out);
1344 /* save this for later .. when fetching individual records */
1345 srw_sr = yaz_srw_get_pdu(srw_sr_odr_out, Z_SRW_searchRetrieve_request,
1348 /* regular request .. */
1349 sr = yaz_srw_get_pdu(out, Z_SRW_searchRetrieve_request, sru_version);
1354 srw_sr->u.request->query_type = Z_SRW_query_type_cql;
1355 srw_sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1357 sr->u.request->query_type = Z_SRW_query_type_cql;
1358 sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1360 case QueryType_Prefix:
1361 srw_sr->u.request->query_type = Z_SRW_query_type_pqf;
1362 srw_sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1364 sr->u.request->query_type = Z_SRW_query_type_pqf;
1365 sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1368 printf("Only CQL and PQF supported in SRW\n");
1371 sr->u.request->maximumRecords = odr_intdup(out, 0);
1374 sr->u.request->recordSchema = record_schema;
1375 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
1376 sr->u.request->recordPacking = "xml";
1377 return send_srw(sr);
1381 static void query_charset_convert(Z_RPNQuery *q)
1383 if (queryCharset && outputCharset)
1385 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
1388 printf("Conversion from %s to %s unsupported\n",
1389 outputCharset, queryCharset);
1392 yaz_query_charset_convert_rpnquery(q, out, cd);
1393 yaz_iconv_close(cd);
1397 static int send_searchRequest(const char *arg)
1399 Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1400 Z_SearchRequest *req = apdu->u.searchRequest;
1402 struct ccl_rpn_node *rpn = NULL;
1404 char setstring[100];
1405 Z_RPNQuery *RPNquery;
1407 YAZ_PQF_Parser pqf_parser;
1409 QueryType myQueryType = queryType;
1412 if (myQueryType == QueryType_CCL2RPN)
1414 rpn = ccl_find_str(bibset, arg, &error, &pos);
1417 printf("CCL ERROR: %s\n", ccl_err_msg(error));
1420 } else if (myQueryType == QueryType_CQL2RPN) {
1421 /* ### All this code should be wrapped in a utility function */
1423 struct cql_node *node;
1424 const char *addinfo;
1425 if (cqltrans == 0) {
1426 printf("Can't use CQL: no translation file. Try set_cqlfile\n");
1429 parser = cql_parser_create();
1430 if ((error = cql_parser_string(parser, arg)) != 0) {
1431 printf("Can't parse CQL: must be a syntax error\n");
1434 node = cql_parser_result(parser);
1435 if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1436 sizeof pqfbuf)) != 0) {
1437 error = cql_transform_error(cqltrans, &addinfo);
1438 printf("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1439 cql_strerror(error), addinfo);
1443 myQueryType = QueryType_Prefix;
1446 req->referenceId = set_refid(out);
1447 if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1449 static unsigned char big[2100];
1450 static Odr_oct bigo;
1452 /* send a very big referenceid to test transport stack etc. */
1453 memset(big, 'A', 2100);
1454 bigo.len = bigo.size = 2100;
1456 req->referenceId = &bigo;
1461 sprintf(setstring, "%d", ++setnumber);
1462 req->resultSetName = setstring;
1464 *req->smallSetUpperBound = smallSetUpperBound;
1465 *req->largeSetLowerBound = largeSetLowerBound;
1466 *req->mediumSetPresentNumber = mediumSetPresentNumber;
1467 if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1468 mediumSetPresentNumber > 0))
1470 if (recordsyntax_size)
1471 req->preferredRecordSyntax =
1472 yaz_string_to_oid_odr(yaz_oid_std(),
1473 CLASS_RECSYN, recordsyntax_list[0], out);
1475 req->smallSetElementSetNames =
1476 req->mediumSetElementSetNames = elementSetNames;
1478 req->num_databaseNames = num_databaseNames;
1479 req->databaseNames = databaseNames;
1481 req->query = &query;
1483 switch (myQueryType)
1485 case QueryType_Prefix:
1486 query.which = Z_Query_type_1;
1487 pqf_parser = yaz_pqf_create();
1488 RPNquery = yaz_pqf_parse(pqf_parser, out, arg);
1491 const char *pqf_msg;
1493 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
1495 printf("%*s^\n", ioff+4, "");
1496 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1498 yaz_pqf_destroy(pqf_parser);
1501 yaz_pqf_destroy(pqf_parser);
1502 query_charset_convert(RPNquery);
1503 query.u.type_1 = RPNquery;
1506 query.which = Z_Query_type_2;
1507 query.u.type_2 = &ccl_query;
1508 ccl_query.buf = (unsigned char*) arg;
1509 ccl_query.len = strlen(arg);
1511 case QueryType_CCL2RPN:
1512 query.which = Z_Query_type_1;
1513 RPNquery = ccl_rpn_query(out, rpn);
1516 printf("Couldn't convert from CCL to RPN\n");
1519 query_charset_convert(RPNquery);
1520 query.u.type_1 = RPNquery;
1521 ccl_rpn_delete(rpn);
1524 query.which = Z_Query_type_104;
1525 ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1526 ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1527 ext->indirect_reference = 0;
1528 ext->descriptor = 0;
1529 ext->which = Z_External_CQL;
1530 ext->u.cql = odr_strdup(out, arg);
1531 query.u.type_104 = ext;
1534 printf("Unsupported query type\n");
1537 if (send_apdu(apdu))
1538 printf("Sent searchRequest.\n");
1543 /* display Query Expression as part of searchResult-1 */
1544 static void display_queryExpression(const char *lead, Z_QueryExpression *qe)
1548 printf(" %s=", lead);
1549 if (qe->which == Z_QueryExpression_term)
1551 if (qe->u.term->queryTerm)
1553 Z_Term *term = qe->u.term->queryTerm;
1554 switch (term->which)
1556 case Z_Term_general:
1557 printf("%.*s", term->u.general->len, term->u.general->buf);
1559 case Z_Term_characterString:
1560 printf("%s", term->u.characterString);
1562 case Z_Term_numeric:
1563 printf("%d", *term->u.numeric);
1573 /* see if we can find USR:SearchResult-1 */
1574 static void display_searchResult(Z_OtherInformation *o)
1579 for (i = 0; i < o->num_elements; i++)
1581 if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1583 Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1585 if (ext->which == Z_External_searchResult1)
1588 Z_SearchInfoReport *sr = ext->u.searchResult1;
1589 printf("SearchResult-1:");
1590 for (j = 0; j < sr->num; j++)
1594 if (!sr->elements[j]->subqueryExpression)
1596 display_queryExpression("term",
1597 sr->elements[j]->subqueryExpression);
1598 display_queryExpression("interpretation",
1599 sr->elements[j]->subqueryInterpretation);
1600 display_queryExpression("recommendation",
1601 sr->elements[j]->subqueryRecommendation);
1602 if (sr->elements[j]->subqueryCount)
1603 printf(" cnt=%d", *sr->elements[j]->subqueryCount);
1604 if (sr->elements[j]->subqueryId)
1605 printf(" id=%s ", sr->elements[j]->subqueryId);
1613 static int process_searchResponse(Z_SearchResponse *res)
1615 printf("Received SearchResponse.\n");
1616 print_refid(res->referenceId);
1617 if (*res->searchStatus)
1618 printf("Search was a success.\n");
1620 printf("Search was a bloomin' failure.\n");
1621 printf("Number of hits: %d", *res->resultCount);
1622 last_hit_count = *res->resultCount;
1624 printf(", setno %d", setnumber);
1626 if (res->resultSetStatus)
1628 printf("Result Set Status: ");
1629 switch(*res->resultSetStatus)
1631 case Z_SearchResponse_subset:
1632 printf("subset"); break;
1633 case Z_SearchResponse_interim:
1634 printf("interim"); break;
1635 case Z_SearchResponse_none:
1636 printf("none"); break;
1637 case Z_SearchResponse_estimate:
1638 printf("estimate"); break;
1640 printf("%d", *res->resultSetStatus);
1644 display_searchResult(res->additionalSearchInfo);
1645 printf("records returned: %d\n",
1646 *res->numberOfRecordsReturned);
1647 setno += *res->numberOfRecordsReturned;
1649 display_records(res->records);
1653 static void print_level(int iLevel)
1656 for (i = 0; i < iLevel * 4; i++)
1660 static void print_int(int iLevel, const char *pTag, int *pInt)
1664 print_level(iLevel);
1665 printf("%s: %d\n", pTag, *pInt);
1669 static void print_string(int iLevel, const char *pTag, const char *pString)
1671 if (pString != NULL)
1673 print_level(iLevel);
1674 printf("%s: %s\n", pTag, pString);
1678 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1682 Odr_oid *pInt = pOid;
1684 print_level(iLevel);
1685 printf("%s:", pTag);
1686 for (; *pInt != -1; pInt++)
1687 printf(" %d", *pInt);
1692 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1694 if (referenceId != NULL)
1698 print_level(iLevel);
1699 printf("Ref Id (%d, %d): ", referenceId->len, referenceId->size);
1700 for (i = 0; i < referenceId->len; i++)
1701 printf("%c", referenceId->buf[i]);
1706 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1708 if (pStringNumeric != NULL)
1710 switch (pStringNumeric->which)
1712 case Z_StringOrNumeric_string:
1713 print_string(iLevel, pTag, pStringNumeric->u.string);
1716 case Z_StringOrNumeric_numeric:
1717 print_int(iLevel, pTag, pStringNumeric->u.numeric);
1721 print_level(iLevel);
1722 printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1728 static void print_universe_report_duplicate(
1730 Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1732 if (pUniverseReportDuplicate != NULL)
1734 print_level(iLevel);
1735 printf("Universe Report Duplicate: \n");
1737 print_string_or_numeric(iLevel, "Hit No",
1738 pUniverseReportDuplicate->hitno);
1742 static void print_universe_report_hits(
1744 Z_UniverseReportHits *pUniverseReportHits)
1746 if (pUniverseReportHits != NULL)
1748 print_level(iLevel);
1749 printf("Universe Report Hits: \n");
1751 print_string_or_numeric(iLevel, "Database",
1752 pUniverseReportHits->database);
1753 print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1757 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1759 if (pUniverseReport != NULL)
1761 print_level(iLevel);
1762 printf("Universe Report: \n");
1764 print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1765 switch (pUniverseReport->which)
1767 case Z_UniverseReport_databaseHits:
1768 print_universe_report_hits(iLevel,
1769 pUniverseReport->u.databaseHits);
1772 case Z_UniverseReport_duplicate:
1773 print_universe_report_duplicate(iLevel,
1774 pUniverseReport->u.duplicate);
1778 print_level(iLevel);
1779 printf("Type: %d\n", pUniverseReport->which);
1785 static void print_external(int iLevel, Z_External *pExternal)
1787 if (pExternal != NULL)
1789 print_level(iLevel);
1790 printf("External: \n");
1792 print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
1793 print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
1794 print_string(iLevel, "Descriptor", pExternal->descriptor);
1795 switch (pExternal->which)
1797 case Z_External_universeReport:
1798 print_universe_report(iLevel, pExternal->u.universeReport);
1802 print_level(iLevel);
1803 printf("Type: %d\n", pExternal->which);
1809 static int process_resourceControlRequest(Z_ResourceControlRequest *req)
1811 printf("Received ResourceControlRequest.\n");
1812 print_referenceId(1, req->referenceId);
1813 print_int(1, "Suspended Flag", req->suspendedFlag);
1814 print_int(1, "Partial Results Available", req->partialResultsAvailable);
1815 print_int(1, "Response Required", req->responseRequired);
1816 print_int(1, "Triggered Request Flag", req->triggeredRequestFlag);
1817 print_external(1, req->resourceReport);
1821 void process_ESResponse(Z_ExtendedServicesResponse *res)
1824 switch (*res->operationStatus)
1826 case Z_ExtendedServicesResponse_done:
1829 case Z_ExtendedServicesResponse_accepted:
1830 printf("accepted\n");
1832 case Z_ExtendedServicesResponse_failure:
1833 printf("failure\n");
1834 display_diagrecs(res->diagnostics, res->num_diagnostics);
1837 printf("unknown\n");
1839 if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
1840 (res->num_diagnostics != 0) ) {
1841 display_diagrecs(res->diagnostics, res->num_diagnostics);
1843 print_refid (res->referenceId);
1844 if (res->taskPackage &&
1845 res->taskPackage->which == Z_External_extendedService)
1847 Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
1848 Odr_oct *id = taskPackage->targetReference;
1849 Z_External *ext = taskPackage->taskSpecificParameters;
1853 printf("Target Reference: ");
1854 print_stringn (id->buf, id->len);
1857 if (ext->which == Z_External_update)
1859 Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
1860 if (utp && utp->targetPart)
1862 Z_IUTargetPart *targetPart = utp->targetPart;
1865 for (i = 0; i<targetPart->num_taskPackageRecords; i++)
1868 Z_IUTaskPackageRecordStructure *tpr =
1869 targetPart->taskPackageRecords[i];
1870 printf("task package record %d\n", i+1);
1871 if (tpr->which == Z_IUTaskPackageRecordStructure_record)
1873 display_record (tpr->u.record);
1877 printf("other type\n");
1882 if (ext->which == Z_External_itemOrder)
1884 Z_IOTaskPackage *otp = ext->u.itemOrder->u.taskPackage;
1886 if (otp && otp->targetPart)
1888 if (otp->targetPart->itemRequest)
1890 Z_External *ext = otp->targetPart->itemRequest;
1891 if (ext->which == Z_External_octet)
1893 Odr_oct *doc = ext->u.octet_aligned;
1894 printf("Got itemRequest doc %.*s\n",
1895 doc->len, doc->buf);
1898 else if (otp->targetPart->statusOrErrorReport)
1900 Z_External *ext = otp->targetPart->statusOrErrorReport;
1901 if (ext->which == Z_External_octet)
1903 Odr_oct *doc = ext->u.octet_aligned;
1904 printf("Got Status or Error Report doc %.*s\n",
1905 doc->len, doc->buf);
1911 if (res->taskPackage && res->taskPackage->which == Z_External_octet)
1913 Odr_oct *doc = res->taskPackage->u.octet_aligned;
1914 printf("%.*s\n", doc->len, doc->buf);
1918 const char *get_ill_element(void *clientData, const char *element)
1923 static Z_External *create_external_itemRequest(void)
1925 struct ill_get_ctl ctl;
1926 ILL_ItemRequest *req;
1928 int item_request_size = 0;
1929 char *item_request_buf = 0;
1933 ctl.f = get_ill_element;
1935 req = ill_get_ItemRequest(&ctl, "ill", 0);
1937 printf("ill_get_ItemRequest failed\n");
1939 if (!ill_ItemRequest(out, &req, 0, 0))
1943 ill_ItemRequest(print, &req, 0, 0);
1946 item_request_buf = odr_getbuf (out, &item_request_size, 0);
1947 if (item_request_buf)
1948 odr_setbuf (out, item_request_buf, item_request_size, 1);
1949 printf("Couldn't encode ItemRequest, size %d\n", item_request_size);
1954 r = (Z_External *) odr_malloc(out, sizeof(*r));
1955 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
1956 r->indirect_reference = 0;
1958 r->which = Z_External_single;
1960 r->u.single_ASN1_type = (Odr_oct *)
1961 odr_malloc(out, sizeof(*r->u.single_ASN1_type));
1962 r->u.single_ASN1_type->buf = (unsigned char *)
1963 odr_malloc(out, item_request_size);
1964 r->u.single_ASN1_type->len = item_request_size;
1965 r->u.single_ASN1_type->size = item_request_size;
1966 memcpy(r->u.single_ASN1_type->buf, item_request_buf,
1969 do_hex_dump(item_request_buf,item_request_size);
1974 static Z_External *create_external_ILL_APDU(int which)
1976 struct ill_get_ctl ctl;
1979 int ill_request_size = 0;
1980 char *ill_request_buf = 0;
1984 ctl.f = get_ill_element;
1986 ill_apdu = ill_get_APDU(&ctl, "ill", 0);
1988 if (!ill_APDU (out, &ill_apdu, 0, 0))
1992 printf("-------------------\n");
1993 ill_APDU(print, &ill_apdu, 0, 0);
1995 printf("-------------------\n");
1997 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
1998 if (ill_request_buf)
1999 odr_setbuf (out, ill_request_buf, ill_request_size, 1);
2000 printf("Couldn't encode ILL-Request, size %d\n", ill_request_size);
2005 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2007 r = (Z_External *) odr_malloc(out, sizeof(*r));
2008 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2009 r->indirect_reference = 0;
2011 r->which = Z_External_single;
2013 r->u.single_ASN1_type = (Odr_oct *)
2014 odr_malloc(out, sizeof(*r->u.single_ASN1_type));
2015 r->u.single_ASN1_type->buf = (unsigned char *)
2016 odr_malloc(out, ill_request_size);
2017 r->u.single_ASN1_type->len = ill_request_size;
2018 r->u.single_ASN1_type->size = ill_request_size;
2019 memcpy(r->u.single_ASN1_type->buf, ill_request_buf, ill_request_size);
2020 /* printf("len = %d\n", ill_request_size); */
2021 /* do_hex_dump(ill_request_buf,ill_request_size); */
2022 /* printf("--- end of extenal\n"); */
2029 static Z_External *create_ItemOrderExternal(const char *type, int itemno,
2030 const char *xml_buf,
2033 Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
2034 r->direct_reference = odr_oiddup(out, yaz_oid_extserv_item_order);
2035 r->indirect_reference = 0;
2038 r->which = Z_External_itemOrder;
2040 r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
2041 memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
2042 r->u.itemOrder->which=Z_IOItemOrder_esRequest;
2044 r->u.itemOrder->u.esRequest = (Z_IORequest *)
2045 odr_malloc(out,sizeof(Z_IORequest));
2046 memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
2048 r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
2049 odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
2050 memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
2051 r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
2052 odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
2053 memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
2055 r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
2056 r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
2057 r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
2059 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
2060 (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
2061 memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
2062 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
2064 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
2065 (int *) odr_malloc(out, sizeof(int));
2066 *r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item = itemno;
2068 if (!strcmp (type, "item") || !strcmp(type, "2"))
2070 printf("using item-request\n");
2071 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2072 create_external_itemRequest();
2074 else if (!strcmp(type, "ill") || !strcmp(type, "1"))
2076 printf("using ILL-request\n");
2077 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2078 create_external_ILL_APDU(ILL_APDU_ILL_Request);
2080 else if (!strcmp(type, "xml") || !strcmp(type, "3"))
2082 printf("using XML ILL-request\n");
2086 printf("no docoument added\n");
2087 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2091 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2092 z_ext_record_oid(out, yaz_oid_recsyn_xml, xml_buf, xml_len);
2096 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2101 static int send_itemorder(const char *type, int itemno,
2102 const char *xml_buf, int xml_len)
2104 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2105 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2107 req->referenceId = set_refid (out);
2109 req->packageType = odr_oiddup(out, yaz_oid_extserv_item_order);
2110 req->packageName = esPackageName;
2112 req->taskSpecificParameters = create_ItemOrderExternal(type, itemno,
2118 static int only_z3950(void)
2122 printf("Not connected yet\n");
2125 if (protocol == PROTO_HTTP)
2127 printf("Not supported by SRW\n");
2133 static int cmd_update_common(const char *arg, int version);
2135 static int cmd_update(const char *arg)
2137 return cmd_update_common(arg, 1);
2140 static int cmd_update0(const char *arg)
2142 return cmd_update_common(arg, 0);
2145 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2146 char *rec_buf, int rec_len);
2149 static int cmd_update_SRW(int action_no, const char *recid,
2150 char *rec_buf, int rec_len);
2153 static int cmd_update_common(const char *arg, int version)
2159 const char *recid = 0;
2165 if (parse_cmd_doc(&arg, out, &action_buf, &action_len) == 0)
2167 printf("Use: update action recid [fname]\n");
2168 printf(" where action is one of insert,replace,delete.update\n");
2169 printf(" recid is some record ID. Use none for no ID\n");
2170 printf(" fname is file of record to be updated\n");
2174 if (parse_cmd_doc(&arg, out, &recid_buf, &recid_len) == 0)
2176 printf("Missing recid\n");
2180 if (!strcmp(action_buf, "insert"))
2181 action_no = Z_IUOriginPartToKeep_recordInsert;
2182 else if (!strcmp(action_buf, "replace"))
2183 action_no = Z_IUOriginPartToKeep_recordReplace;
2184 else if (!strcmp(action_buf, "delete"))
2185 action_no = Z_IUOriginPartToKeep_recordDelete;
2186 else if (!strcmp(action_buf, "update"))
2187 action_no = Z_IUOriginPartToKeep_specialUpdate;
2190 printf("Bad action: %s\n", action_buf);
2191 printf("Possible values: insert, replace, delete, update\n");
2195 if (strcmp(recid_buf, "none")) /* none means no record ID */
2199 if (parse_cmd_doc(&arg, out, &rec_buf, &rec_len) == 0)
2203 if (protocol == PROTO_HTTP)
2204 return cmd_update_SRW(action_no, recid_buf, rec_buf, rec_len);
2206 return cmd_update_Z3950(version, action_no, recid_buf, rec_buf, rec_len);
2210 static int cmd_update_SRW(int action_no, const char *recid,
2211 char *rec_buf, int rec_len)
2214 session_connect(cur_host);
2219 Z_SRW_PDU *srw = yaz_srw_get(out, Z_SRW_update_request);
2220 Z_SRW_updateRequest *sr = srw->u.update_request;
2224 case Z_IUOriginPartToKeep_recordInsert:
2225 sr->operation = "info:srw/action/1/create";
2227 case Z_IUOriginPartToKeep_recordReplace:
2228 sr->operation = "info:srw/action/1/replace";
2230 case Z_IUOriginPartToKeep_recordDelete:
2231 sr->operation = "info:srw/action/1/delete";
2236 sr->record = yaz_srw_get_record(out);
2237 sr->record->recordData_buf = rec_buf;
2238 sr->record->recordData_len = rec_len;
2239 sr->record->recordSchema = record_schema;
2242 sr->recordId = odr_strdup(out, recid);
2243 return send_srw(srw);
2248 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2249 char *rec_buf, int rec_len)
2251 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
2252 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2254 Z_External *record_this = 0;
2256 record_this = z_ext_record_oid(out, yaz_oid_recsyn_xml,
2262 printf("No last record (update ignored)\n");
2265 record_this = record_last;
2268 req->packageType = odr_oiddup(out, (version == 0 ?
2269 yaz_oid_extserv_database_update_first_version :
2270 yaz_oid_extserv_database_update));
2272 req->packageName = esPackageName;
2274 req->referenceId = set_refid (out);
2276 r = req->taskSpecificParameters = (Z_External *)
2277 odr_malloc(out, sizeof(*r));
2278 r->direct_reference = req->packageType;
2279 r->indirect_reference = 0;
2283 Z_IU0OriginPartToKeep *toKeep;
2284 Z_IU0SuppliedRecords *notToKeep;
2286 r->which = Z_External_update0;
2287 r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2288 r->u.update0->which = Z_IUUpdate_esRequest;
2289 r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2290 odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2291 toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2292 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2294 toKeep->databaseName = databaseNames[0];
2298 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2300 record_schema, out);
2302 toKeep->elementSetName = 0;
2304 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2305 *toKeep->action = action_no;
2307 notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2308 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2310 notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2311 odr_malloc(out, sizeof(*notToKeep->elements));
2312 notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2313 odr_malloc(out, sizeof(**notToKeep->elements));
2314 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2317 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2318 odr_malloc(out, sizeof(Odr_oct));
2319 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2320 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2321 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2324 notToKeep->elements[0]->u.opaque = 0;
2325 notToKeep->elements[0]->supplementalId = 0;
2326 notToKeep->elements[0]->correlationInfo = 0;
2327 notToKeep->elements[0]->record = record_this;
2331 Z_IUOriginPartToKeep *toKeep;
2332 Z_IUSuppliedRecords *notToKeep;
2334 r->which = Z_External_update;
2335 r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2336 r->u.update->which = Z_IUUpdate_esRequest;
2337 r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2338 odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2339 toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2340 odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2342 toKeep->databaseName = databaseNames[0];
2346 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2348 record_schema, out);
2350 toKeep->elementSetName = 0;
2351 toKeep->actionQualifier = 0;
2352 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2353 *toKeep->action = action_no;
2355 notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2356 odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2358 notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2359 odr_malloc(out, sizeof(*notToKeep->elements));
2360 notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2361 odr_malloc(out, sizeof(**notToKeep->elements));
2362 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2365 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2366 odr_malloc(out, sizeof(Odr_oct));
2367 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2368 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2369 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2372 notToKeep->elements[0]->u.opaque = 0;
2373 notToKeep->elements[0]->supplementalId = 0;
2374 notToKeep->elements[0]->correlationInfo = 0;
2375 notToKeep->elements[0]->record = record_this;
2383 static int cmd_xmles(const char *arg)
2393 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2394 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2397 Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
2399 req->referenceId = set_refid (out);
2400 req->taskSpecificParameters = ext;
2401 ext->indirect_reference = 0;
2402 ext->descriptor = 0;
2403 ext->which = Z_External_octet;
2404 ext->u.single_ASN1_type = (Odr_oct *) odr_malloc(out, sizeof(Odr_oct));
2405 sscanf(arg, "%50s%n", oid_str, &noread);
2408 printf("Missing OID for xmles\n");
2412 if (parse_cmd_doc(&arg, out, &asn_buf,
2413 &ext->u.single_ASN1_type->len) == 0)
2416 ext->u.single_ASN1_type->buf = (unsigned char *) asn_buf;
2418 oid = yaz_string_to_oid_odr(yaz_oid_std(),
2419 CLASS_EXTSERV, oid_str, out);
2422 printf("Bad OID: %s\n", oid_str);
2426 req->packageType = oid;
2428 ext->direct_reference = oid;
2436 static int cmd_itemorder(const char *arg)
2446 if (sscanf(arg, "%10s %d%n", type, &itemno, &no_read) < 2)
2449 parse_cmd_doc(&arg, out, &xml_buf, &xml_len);
2452 send_itemorder(type, itemno, xml_buf, xml_len);
2456 static void show_opt(const char *arg, void *clientData)
2461 static int cmd_zversion(const char *arg)
2464 z3950_version = atoi(arg);
2466 printf("version is %d\n", z3950_version);
2470 static int cmd_options(const char *arg)
2476 r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2478 printf("Unknown option(s) near %s\n", arg+pos);
2482 yaz_init_opt_decode(&z3950_options, show_opt, 0);
2488 static int cmd_explain(const char *arg)
2490 if (protocol != PROTO_HTTP)
2494 session_connect(cur_host);
2501 /* save this for later .. when fetching individual records */
2502 sr = yaz_srw_get(out, Z_SRW_explain_request);
2503 if (recordsyntax_size == 1
2504 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2505 sr->u.explain_request->recordPacking = "xml";
2513 static int cmd_init(const char *arg)
2517 strncpy(cur_host, arg, sizeof(cur_host)-1);
2518 cur_host[sizeof(cur_host)-1] = 0;
2522 send_initRequest(cur_host);
2526 static int cmd_sru(const char *arg)
2530 printf("SRU method is: %s\n", sru_method);
2531 printf("SRU version is: %s\n", sru_version);
2536 r = sscanf(arg, "%9s %9s", sru_method, sru_version);
2539 if (!yaz_matchstr(sru_method, "post"))
2541 else if (!yaz_matchstr(sru_method, "get"))
2543 else if (!yaz_matchstr(sru_method, "soap"))
2547 strcpy(sru_method, "soap");
2548 printf("Unknown SRU method: %s\n", arg);
2549 printf("Specify one of POST, GET, SOAP\n");
2556 static int cmd_find(const char *arg)
2560 printf("Find what?\n");
2563 if (protocol == PROTO_HTTP)
2567 session_connect(cur_host);
2570 if (!send_SRW_searchRequest(arg))
2583 printf("Not connected yet\n");
2587 if (!send_searchRequest(arg))
2593 static int cmd_delete(const char *arg)
2597 if (!send_deleteResultSetRequest(arg))
2602 static int cmd_ssub(const char *arg)
2604 if (!(smallSetUpperBound = atoi(arg)))
2609 static int cmd_lslb(const char *arg)
2611 if (!(largeSetLowerBound = atoi(arg)))
2616 static int cmd_mspn(const char *arg)
2618 if (!(mediumSetPresentNumber = atoi(arg)))
2623 static int cmd_status(const char *arg)
2625 printf("smallSetUpperBound: %d\n", smallSetUpperBound);
2626 printf("largeSetLowerBound: %d\n", largeSetLowerBound);
2627 printf("mediumSetPresentNumber: %d\n", mediumSetPresentNumber);
2631 static int cmd_setnames(const char *arg)
2633 if (*arg == '1') /* enable ? */
2635 else if (*arg == '0') /* disable ? */
2637 else if (setnumber < 0) /* no args, toggle .. */
2643 printf("Set numbering enabled.\n");
2645 printf("Set numbering disabled.\n");
2649 /* PRESENT SERVICE ----------------------------- */
2651 static void parse_show_args(const char *arg_c, char *setstring,
2652 int *start, int *number)
2657 strncpy(arg, arg_c, sizeof(arg)-1);
2658 arg[sizeof(arg)-1] = '\0';
2660 if ((p = strchr(arg, '+')))
2662 *number = atoi(p + 1);
2667 if (!strcmp(arg, "all"))
2669 *number = last_hit_count;
2675 if (p && (p=strchr(p+1, '+')))
2676 strcpy(setstring, p+1);
2677 else if (setnumber >= 0)
2678 sprintf(setstring, "%d", setnumber);
2683 static int send_presentRequest(const char *arg)
2685 Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
2686 Z_PresentRequest *req = apdu->u.presentRequest;
2687 Z_RecordComposition compo;
2689 char setstring[100];
2691 req->referenceId = set_refid(out);
2693 parse_show_args(arg, setstring, &setno, &nos);
2695 req->resultSetId = setstring;
2697 req->resultSetStartPoint = &setno;
2698 req->numberOfRecordsRequested = &nos;
2700 if (recordsyntax_size)
2701 req->preferredRecordSyntax =
2702 yaz_string_to_oid_odr(yaz_oid_std(),
2703 CLASS_RECSYN, recordsyntax_list[0], out);
2705 if (record_schema || recordsyntax_size >= 2)
2707 req->recordComposition = &compo;
2708 compo.which = Z_RecordComp_complex;
2709 compo.u.complex = (Z_CompSpec *)
2710 odr_malloc(out, sizeof(*compo.u.complex));
2711 compo.u.complex->selectAlternativeSyntax = (bool_t *)
2712 odr_malloc(out, sizeof(bool_t));
2713 *compo.u.complex->selectAlternativeSyntax = 0;
2715 compo.u.complex->generic = (Z_Specification *)
2716 odr_malloc(out, sizeof(*compo.u.complex->generic));
2718 compo.u.complex->generic->which = Z_Schema_oid;
2720 compo.u.complex->generic->schema.oid = 0;
2723 compo.u.complex->generic->schema.oid =
2724 yaz_string_to_oid_odr(yaz_oid_std(),
2725 CLASS_SCHEMA, record_schema, out);
2727 if (!compo.u.complex->generic->schema.oid)
2729 /* OID wasn't a schema! Try record syntax instead. */
2730 compo.u.complex->generic->schema.oid = (Odr_oid *)
2731 yaz_string_to_oid_odr(yaz_oid_std(),
2732 CLASS_RECSYN, record_schema, out);
2735 if (!elementSetNames)
2736 compo.u.complex->generic->elementSpec = 0;
2739 compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
2740 odr_malloc(out, sizeof(Z_ElementSpec));
2741 compo.u.complex->generic->elementSpec->which =
2742 Z_ElementSpec_elementSetName;
2743 compo.u.complex->generic->elementSpec->u.elementSetName =
2744 elementSetNames->u.generic;
2746 compo.u.complex->num_dbSpecific = 0;
2747 compo.u.complex->dbSpecific = 0;
2749 compo.u.complex->num_recordSyntax = 0;
2750 compo.u.complex->recordSyntax = 0;
2751 if (recordsyntax_size >= 2)
2754 compo.u.complex->num_recordSyntax = recordsyntax_size;
2755 compo.u.complex->recordSyntax = (Odr_oid **)
2756 odr_malloc(out, recordsyntax_size * sizeof(Odr_oid*));
2757 for (i = 0; i < recordsyntax_size; i++)
2758 compo.u.complex->recordSyntax[i] =
2759 yaz_string_to_oid_odr(yaz_oid_std(),
2760 CLASS_RECSYN, recordsyntax_list[i], out);
2763 else if (elementSetNames)
2765 req->recordComposition = &compo;
2766 compo.which = Z_RecordComp_simple;
2767 compo.u.simple = elementSetNames;
2770 printf("Sent presentRequest (%d+%d).\n", setno, nos);
2775 static int send_SRW_presentRequest(const char *arg)
2777 char setstring[100];
2779 Z_SRW_PDU *sr = srw_sr;
2783 parse_show_args(arg, setstring, &setno, &nos);
2784 sr->u.request->startRecord = odr_intdup(out, setno);
2785 sr->u.request->maximumRecords = odr_intdup(out, nos);
2787 sr->u.request->recordSchema = record_schema;
2788 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2789 sr->u.request->recordPacking = "xml";
2790 return send_srw(sr);
2794 static void close_session(void)
2806 void process_close(Z_Close *req)
2808 Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
2809 Z_Close *res = apdu->u.close;
2811 static char *reasons[] =
2816 "cost limit reached",
2818 "security violation",
2825 printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
2826 req->diagnosticInformation ? req->diagnosticInformation : "NULL");
2831 *res->closeReason = Z_Close_finished;
2833 printf("Sent response.\n");
2838 static int cmd_show(const char *arg)
2840 if (protocol == PROTO_HTTP)
2844 session_connect(cur_host);
2847 if (!send_SRW_presentRequest(arg))
2857 printf("Not connected yet\n");
2860 if (!send_presentRequest(arg))
2866 void exit_client(int code)
2868 file_history_save(file_history);
2869 file_history_destroy(&file_history);
2873 int cmd_quit(const char *arg)
2875 printf("See you later, alligator.\n");
2881 int cmd_cancel(const char *arg)
2883 Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
2884 Z_TriggerResourceControlRequest *req =
2885 apdu->u.triggerResourceControlRequest;
2890 sscanf(arg, "%15s", command);
2894 if (session_initResponse &&
2895 !ODR_MASK_GET(session_initResponse->options,
2896 Z_Options_triggerResourceCtrl))
2898 printf("Target doesn't support cancel (trigger resource ctrl)\n");
2901 *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
2902 req->resultSetWanted = &rfalse;
2903 req->referenceId = set_refid(out);
2906 printf("Sent cancel request\n");
2907 if (!strcmp(command, "wait"))
2913 int cmd_cancel_find(const char *arg) {
2917 return cmd_cancel("");
2922 int send_scanrequest(const char *set, const char *query,
2923 int pp, int num, const char *term)
2925 Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
2926 Z_ScanRequest *req = apdu->u.scanRequest;
2930 if (queryType == QueryType_CCL2RPN)
2933 struct ccl_rpn_node *rpn;
2935 rpn = ccl_find_str(bibset, query, &error, &pos);
2938 printf("CCL ERROR: %s\n", ccl_err_msg(error));
2942 yaz_string_to_oid_odr(yaz_oid_std(),
2943 CLASS_ATTSET, "Bib-1", out);
2944 if (!(req->termListAndStartPoint = ccl_scan_query(out, rpn)))
2946 printf("Couldn't convert CCL to Scan term\n");
2949 ccl_rpn_delete(rpn);
2953 YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
2955 if (!(req->termListAndStartPoint =
2956 yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
2958 const char *pqf_msg;
2960 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
2962 printf("%*s^\n", ioff+7, "");
2963 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
2964 yaz_pqf_destroy(pqf_parser);
2967 yaz_pqf_destroy(pqf_parser);
2969 if (queryCharset && outputCharset)
2971 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
2974 printf("Conversion from %s to %s unsupported\n",
2975 outputCharset, queryCharset);
2978 yaz_query_charset_convert_apt(req->termListAndStartPoint, out, cd);
2979 yaz_iconv_close(cd);
2983 if (req->termListAndStartPoint->term &&
2984 req->termListAndStartPoint->term->which == Z_Term_general &&
2985 req->termListAndStartPoint->term->u.general)
2987 req->termListAndStartPoint->term->u.general->buf =
2988 (unsigned char *) odr_strdup(out, term);
2989 req->termListAndStartPoint->term->u.general->len =
2990 req->termListAndStartPoint->term->u.general->size =
2994 req->referenceId = set_refid(out);
2995 req->num_databaseNames = num_databaseNames;
2996 req->databaseNames = databaseNames;
2997 req->numberOfTermsRequested = #
2998 req->preferredPositionInResponse = &pp;
2999 req->stepSize = odr_intdup(out, scan_stepSize);
3002 yaz_oi_set_string_oid(&req->otherInfo, out,
3003 yaz_oid_userinfo_scan_set, 1, set);
3009 int send_sortrequest(const char *arg, int newset)
3011 Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
3012 Z_SortRequest *req = apdu->u.sortRequest;
3013 Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
3014 odr_malloc(out, sizeof(*sksl));
3020 sprintf(setstring, "%d", setnumber);
3022 sprintf(setstring, "default");
3024 req->referenceId = set_refid(out);
3026 req->num_inputResultSetNames = 1;
3027 req->inputResultSetNames = (Z_InternationalString **)
3028 odr_malloc(out, sizeof(*req->inputResultSetNames));
3029 req->inputResultSetNames[0] = odr_strdup(out, setstring);
3031 if (newset && setnumber >= 0)
3032 sprintf(setstring, "%d", ++setnumber);
3034 req->sortedResultSetName = odr_strdup(out, setstring);
3036 req->sortSequence = yaz_sort_spec(out, arg);
3037 if (!req->sortSequence)
3039 printf("Missing sort specifications\n");
3046 void display_term(Z_TermInfo *t)
3049 printf("%s", t->displayTerm);
3050 else if (t->term->which == Z_Term_general)
3051 printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
3053 printf("Term (not general)");
3054 if (t->term->which == Z_Term_general)
3055 sprintf(last_scan_line, "%.*s", t->term->u.general->len,
3056 t->term->u.general->buf);
3058 if (t->globalOccurrences)
3059 printf(" (%d)\n", *t->globalOccurrences);
3064 void process_scanResponse(Z_ScanResponse *res)
3067 Z_Entry **entries = NULL;
3068 int num_entries = 0;
3070 printf("Received ScanResponse\n");
3071 print_refid(res->referenceId);
3072 printf("%d entries", *res->numberOfEntriesReturned);
3073 if (res->positionOfTerm)
3074 printf(", position=%d", *res->positionOfTerm);
3076 if (*res->scanStatus != Z_Scan_success)
3077 printf("Scan returned code %d\n", *res->scanStatus);
3080 if ((entries = res->entries->entries))
3081 num_entries = res->entries->num_entries;
3082 for (i = 0; i < num_entries; i++)
3084 int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
3085 if (entries[i]->which == Z_Entry_termInfo)
3087 printf("%c ", i + 1 == pos_term ? '*' : ' ');
3088 display_term(entries[i]->u.termInfo);
3091 display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
3093 if (res->entries->nonsurrogateDiagnostics)
3094 display_diagrecs(res->entries->nonsurrogateDiagnostics,
3095 res->entries->num_nonsurrogateDiagnostics);
3098 void process_sortResponse(Z_SortResponse *res)
3100 printf("Received SortResponse: status=");
3101 switch (*res->sortStatus)
3103 case Z_SortResponse_success:
3104 printf("success"); break;
3105 case Z_SortResponse_partial_1:
3106 printf("partial"); break;
3107 case Z_SortResponse_failure:
3108 printf("failure"); break;
3110 printf("unknown (%d)", *res->sortStatus);
3113 print_refid (res->referenceId);
3114 if (res->diagnostics)
3115 display_diagrecs(res->diagnostics,
3116 res->num_diagnostics);
3119 void process_deleteResultSetResponse(Z_DeleteResultSetResponse *res)
3121 printf("Got deleteResultSetResponse status=%d\n",
3122 *res->deleteOperationStatus);
3123 if (res->deleteListStatuses)
3126 for (i = 0; i < res->deleteListStatuses->num; i++)
3128 printf("%s status=%d\n", res->deleteListStatuses->elements[i]->id,
3129 *res->deleteListStatuses->elements[i]->status);
3134 int cmd_sort_generic(const char *arg, int newset)
3138 if (session_initResponse &&
3139 !ODR_MASK_GET(session_initResponse->options, Z_Options_sort))
3141 printf("Target doesn't support sort\n");
3146 if (send_sortrequest(arg, newset) < 0)
3153 int cmd_sort(const char *arg)
3155 return cmd_sort_generic(arg, 0);
3158 int cmd_sort_newset(const char *arg)
3160 return cmd_sort_generic(arg, 1);
3163 int cmd_scanstep(const char *arg)
3165 scan_stepSize = atoi(arg);
3169 int cmd_scanpos(const char *arg)
3171 int r = sscanf(arg, "%d", &scan_position);
3177 int cmd_scansize(const char *arg)
3179 int r = sscanf(arg, "%d", &scan_size);
3185 static int cmd_scan_common(const char *set, const char *arg)
3187 if (protocol == PROTO_HTTP)
3191 session_connect(cur_host);
3196 if (send_SRW_scanRequest(arg, scan_position, scan_size) < 0)
3201 if (send_SRW_scanRequest(last_scan_line, 1, scan_size) < 0)
3216 printf("Session not initialized yet\n");
3220 if (session_initResponse &&
3221 !ODR_MASK_GET(session_initResponse->options, Z_Options_scan))
3223 printf("Target doesn't support scan\n");
3228 strcpy(last_scan_query, arg);
3229 if (send_scanrequest(set, arg,
3230 scan_position, scan_size, 0) < 0)
3235 if (send_scanrequest(set, last_scan_query,
3236 1, scan_size, last_scan_line) < 0)
3243 int cmd_scan(const char *arg)
3245 return cmd_scan_common(0, arg);
3248 int cmd_setscan(const char *arg)
3250 char setstring[100];
3252 if (sscanf(arg, "%99s%n", setstring, &nor) < 1)
3254 printf("missing set for setscan\n");
3257 return cmd_scan_common(setstring, arg + nor);
3260 int cmd_schema(const char *arg)
3262 xfree(record_schema);
3265 record_schema = xstrdup(arg);
3269 int cmd_format(const char *arg)
3271 const char *cp = arg;
3278 printf("Usage: format <recordsyntax>\n");
3281 while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3282 && idx < RECORDSYNTAX_MAX)
3284 if (strcmp(form_str, "none") &&
3285 !yaz_string_to_oid_odr(yaz_oid_std(), CLASS_RECSYN, form_str, out))
3287 printf("Bad format: %s\n", form_str);
3292 for (i = 0; i < recordsyntax_size; i++)
3294 xfree(recordsyntax_list[i]);
3295 recordsyntax_list[i] = 0;
3299 while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3300 && idx < RECORDSYNTAX_MAX)
3302 if (!strcmp(form_str, "none"))
3304 recordsyntax_list[idx] = xstrdup(form_str);
3308 recordsyntax_size = idx;
3312 int cmd_elements(const char *arg)
3314 static Z_ElementSetNames esn;
3315 static char what[100];
3319 elementSetNames = 0;
3323 esn.which = Z_ElementSetNames_generic;
3324 esn.u.generic = what;
3325 elementSetNames = &esn;
3329 int cmd_querytype(const char *arg)
3331 if (!strcmp(arg, "ccl"))
3332 queryType = QueryType_CCL;
3333 else if (!strcmp(arg, "prefix") || !strcmp(arg, "rpn"))
3334 queryType = QueryType_Prefix;
3335 else if (!strcmp(arg, "ccl2rpn") || !strcmp(arg, "cclrpn"))
3336 queryType = QueryType_CCL2RPN;
3337 else if (!strcmp(arg, "cql"))
3338 queryType = QueryType_CQL;
3339 else if (!strcmp(arg, "cql2rpn") || !strcmp(arg, "cqlrpn"))
3340 queryType = QueryType_CQL2RPN;
3343 printf("Querytype must be one of:\n");
3344 printf(" prefix - Prefix query\n");
3345 printf(" ccl - CCL query\n");
3346 printf(" ccl2rpn - CCL query converted to RPN\n");
3347 printf(" cql - CQL\n");
3348 printf(" cql2rpn - CQL query converted to RPN\n");
3354 int cmd_refid(const char *arg)
3359 refid = xstrdup(arg);
3363 int cmd_close(const char *arg)
3369 apdu = zget_APDU(out, Z_APDU_close);
3370 req = apdu->u.close;
3371 *req->closeReason = Z_Close_finished;
3373 printf("Sent close request.\n");
3378 int cmd_packagename(const char* arg)
3380 xfree(esPackageName);
3381 esPackageName = NULL;
3383 esPackageName = xstrdup(arg);
3387 int cmd_proxy(const char* arg)
3392 yazProxy = xstrdup(arg);
3396 int cmd_marccharset(const char *arg)
3401 if (sscanf(arg, "%29s", l1) < 1)
3403 printf("MARC character set is `%s'\n",
3404 marcCharset ? marcCharset: "none");
3409 if (strcmp(l1, "-") && strcmp(l1, "none"))
3410 marcCharset = xstrdup(l1);
3414 int cmd_querycharset(const char *arg)
3419 if (sscanf(arg, "%29s", l1) < 1)
3421 printf("Query character set is `%s'\n",
3422 queryCharset ? queryCharset: "none");
3425 xfree(queryCharset);
3427 if (strcmp(l1, "-") && strcmp(l1, "none"))
3428 queryCharset = xstrdup(l1);
3432 int cmd_displaycharset(const char *arg)
3437 if (sscanf(arg, "%29s", l1) < 1)
3439 printf("Display character set is `%s'\n",
3440 outputCharset ? outputCharset: "none");
3444 xfree(outputCharset);
3446 if (!strcmp(l1, "auto") && codeset)
3450 printf("Display character set: %s\n", codeset);
3451 outputCharset = xstrdup(codeset);
3454 printf("No codeset found on this system\n");
3456 else if (strcmp(l1, "-") && strcmp(l1, "none"))
3457 outputCharset = xstrdup(l1);
3462 int cmd_negcharset(const char *arg)
3467 if (sscanf(arg, "%29s %d %d", l1, &negotiationCharsetRecords,
3468 &negotiationCharsetVersion) < 1)
3470 printf("Negotiation character set `%s'\n",
3471 negotiationCharset ? negotiationCharset: "none");
3472 if (negotiationCharset)
3474 printf("Records in charset %s\n", negotiationCharsetRecords ?
3476 printf("Charneg version %d\n", negotiationCharsetVersion);
3481 xfree(negotiationCharset);
3482 negotiationCharset = NULL;
3483 if (*l1 && strcmp(l1, "-") && strcmp(l1, "none"))
3485 negotiationCharset = xstrdup(l1);
3486 printf("Character set negotiation : %s\n", negotiationCharset);
3492 int cmd_charset(const char* arg)
3494 char l1[30], l2[30], l3[30], l4[30];
3496 *l1 = *l2 = *l3 = *l4 = '\0';
3497 if (sscanf(arg, "%29s %29s %29s %29s", l1, l2, l3, l4) < 1)
3500 cmd_displaycharset("");
3501 cmd_marccharset("");
3502 cmd_querycharset("");
3508 cmd_displaycharset(l2);
3510 cmd_marccharset(l3);
3512 cmd_querycharset(l4);
3517 int cmd_lang(const char* arg)
3520 printf("Current language is `%s'\n", yazLang ? yazLang : "none");
3526 yazLang = xstrdup(arg);
3530 int cmd_source(const char* arg, int echo )
3532 /* first should open the file and read one line at a time.. */
3534 char line[102400], *cp;
3536 if (strlen(arg) < 1)
3538 fprintf(stderr, "Error in source command use a filename\n");
3542 includeFile = fopen(arg, "r");
3546 fprintf(stderr, "Unable to open file %s for reading\n",arg);
3550 while (!feof(includeFile)) {
3551 memset(line, 0, sizeof(line));
3552 if (!fgets(line, sizeof(line), includeFile))
3558 if (strlen(line) < 2) continue;
3559 if (line[0] == '#') continue;
3561 if ((cp = strrchr(line, '\n')))
3565 printf("processing line: %s\n", line);
3566 process_cmd_line(line);
3569 if (fclose(includeFile))
3571 perror("unable to close include file");
3577 int cmd_source_echo(const char* arg)
3583 int cmd_source_noecho(const char* arg)
3590 int cmd_subshell(const char* args)
3592 int ret = system(strlen(args) ? args : getenv("SHELL"));
3596 printf("Exit %d\n", ret);
3601 int cmd_set_berfile(const char *arg)
3603 if (ber_file && ber_file != stdout && ber_file != stderr)
3605 if (!strcmp(arg, ""))
3607 else if (!strcmp(arg, "-"))
3610 ber_file = fopen(arg, "a");
3614 int cmd_set_apdufile(const char *arg)
3616 if(apdu_file && apdu_file != stderr && apdu_file != stderr)
3618 if (!strcmp(arg, ""))
3620 else if (!strcmp(arg, "-"))
3624 apdu_file = fopen(arg, "a");
3626 perror("unable to open apdu log file");
3629 odr_setprint(print, apdu_file);
3633 int cmd_set_cclfile(const char* arg)
3637 bibset = ccl_qual_mk();
3638 inf = fopen(arg, "r");
3640 perror("unable to open CCL file");
3643 ccl_qual_file(bibset, inf);
3646 strcpy(ccl_fields,arg);
3650 int cmd_set_cqlfile(const char* arg)
3652 cql_transform_t newcqltrans;
3654 if ((newcqltrans = cql_transform_open_fname(arg)) == 0) {
3655 perror("unable to open CQL file");
3659 cql_transform_close(cqltrans);
3661 cqltrans = newcqltrans;
3662 strcpy(cql_fields, arg);
3666 int cmd_set_auto_reconnect(const char* arg)
3668 if(strlen(arg)==0) {
3669 auto_reconnect = ! auto_reconnect;
3670 } else if(strcmp(arg,"on")==0) {
3672 } else if(strcmp(arg,"off")==0) {
3675 printf("Error use on or off\n");
3680 printf("Set auto reconnect enabled.\n");
3682 printf("Set auto reconnect disabled.\n");
3688 int cmd_set_auto_wait(const char* arg)
3690 if(strlen(arg)==0) {
3691 auto_wait = ! auto_wait;
3692 } else if(strcmp(arg,"on")==0) {
3694 } else if(strcmp(arg,"off")==0) {
3697 printf("Error use on or off\n");
3702 printf("Set auto wait enabled.\n");
3704 printf("Set auto wait disabled.\n");
3709 int cmd_set_marcdump(const char* arg)
3711 if(marc_file && marc_file != stderr) { /* don't close stdout*/
3715 if (!strcmp(arg, ""))
3717 else if (!strcmp(arg, "-"))
3721 marc_file = fopen(arg, "a");
3723 perror("unable to open marc log file");
3728 static void marc_file_write(const char *buf, size_t sz)
3732 if (fwrite(buf, 1, sz, marc_file) != sz)
3734 perror("marcfile write");
3739 this command takes 3 arge {name class oid}
3741 int cmd_register_oid(const char* args) {
3746 {"appctx",CLASS_APPCTX},
3747 {"absyn",CLASS_ABSYN},
3748 {"attset",CLASS_ATTSET},
3749 {"transyn",CLASS_TRANSYN},
3750 {"diagset",CLASS_DIAGSET},
3751 {"recsyn",CLASS_RECSYN},
3752 {"resform",CLASS_RESFORM},
3753 {"accform",CLASS_ACCFORM},
3754 {"extserv",CLASS_EXTSERV},
3755 {"userinfo",CLASS_USERINFO},
3756 {"elemspec",CLASS_ELEMSPEC},
3757 {"varset",CLASS_VARSET},
3758 {"schema",CLASS_SCHEMA},
3759 {"tagset",CLASS_TAGSET},
3760 {"general",CLASS_GENERAL},
3761 {0,(enum oid_class) 0}
3763 char oname_str[101], oclass_str[101], oid_str[101];
3765 oid_class oidclass = CLASS_GENERAL;
3766 Odr_oid oid[OID_SIZE];
3768 if (sscanf(args, "%100[^ ] %100[^ ] %100s",
3769 oname_str,oclass_str, oid_str) < 1) {
3770 printf("Error in register command \n");
3774 for (i = 0; oid_classes[i].className; i++) {
3775 if (!strcmp(oid_classes[i].className, oclass_str))
3777 oidclass=oid_classes[i].oclass;
3782 if(!(oid_classes[i].className)) {
3783 printf("Unknown oid class %s\n",oclass_str);
3787 oid_dotstring_to_oid(oid_str, oid);
3789 if (yaz_oid_add(yaz_oid_std(), oidclass, oname_str, oid))
3791 printf("oid %s already exists, registration failed\n",
3797 int cmd_push_command(const char* arg)
3799 #if HAVE_READLINE_HISTORY_H
3803 fprintf(stderr,"Not compiled with the readline/history module\n");
3808 void source_rc_file(const char *rc_file)
3810 /* If rc_file != NULL, source that. Else
3811 Look for .yazclientrc and read it if it exists.
3812 If it does not exist, read $HOME/.yazclientrc instead */
3813 struct stat statbuf;
3817 if (stat(rc_file, &statbuf) == 0)
3818 cmd_source(rc_file, 0);
3821 fprintf(stderr, "yaz_client: cannot source '%s'\n", rc_file);
3828 strcpy(fname, ".yazclientrc");
3829 if (stat(fname, &statbuf)==0)
3831 cmd_source(fname, 0);
3835 const char* homedir = getenv("HOME");
3838 sprintf(fname, "%.800s/%s", homedir, ".yazclientrc");
3839 if (stat(fname, &statbuf)==0)
3840 cmd_source(fname, 0);
3846 void add_to_readline_history(void *client_data, const char *line)
3848 #if HAVE_READLINE_HISTORY_H
3854 static void initialize(const char *rc_file)
3859 if (!(out = odr_createmem(ODR_ENCODE)) ||
3860 !(in = odr_createmem(ODR_DECODE)) ||
3861 !(print = odr_createmem(ODR_PRINT)))
3863 fprintf(stderr, "failed to allocate ODR streams\n");
3867 setvbuf(stdout, 0, _IONBF, 0);
3869 odr_setprint(print, apdu_file);
3871 bibset = ccl_qual_mk();
3872 inf = fopen(ccl_fields, "r");
3875 ccl_qual_file(bibset, inf);
3879 cqltrans = cql_transform_open_fname(cql_fields);
3880 /* If this fails, no problem: we detect cqltrans == 0 later */
3882 #if HAVE_READLINE_READLINE_H
3883 rl_attempted_completion_function =
3884 (char **(*)(const char *, int, int)) readline_completer;
3886 for(i = 0; i < maxOtherInfosSupported; ++i) {
3887 extraOtherInfos[i].oid[0] = -1;
3888 extraOtherInfos[i].value = 0;
3891 cmd_format("usmarc");
3893 source_rc_file(rc_file);
3895 file_history = file_history_new();
3896 file_history_load(file_history);
3897 file_history_trav(file_history, 0, add_to_readline_history);
3901 #if HAVE_GETTIMEOFDAY
3902 struct timeval tv_start;
3906 static void handle_srw_record(Z_SRW_record *rec)
3908 if (rec->recordPosition)
3910 printf("pos=%d", *rec->recordPosition);
3911 setno = *rec->recordPosition + 1;
3913 if (rec->recordSchema)
3914 printf(" schema=%s", rec->recordSchema);
3916 if (rec->recordData_buf && rec->recordData_len)
3918 if (fwrite(rec->recordData_buf, 1, rec->recordData_len, stdout) !=
3919 (size_t) (rec->recordData_len))
3921 printf("write to stdout failed\n");
3923 printf("%.*s", rec->recordData_len, rec->recordData_buf);
3924 marc_file_write(rec->recordData_buf, rec->recordData_len);
3931 static void handle_srw_explain_response(Z_SRW_explainResponse *res)
3933 handle_srw_record(&res->record);
3936 static void handle_srw_response(Z_SRW_searchRetrieveResponse *res)
3940 printf("Received SRW SearchRetrieve Response\n");
3942 for (i = 0; i<res->num_diagnostics; i++)
3944 if (res->diagnostics[i].uri)
3945 printf("SRW diagnostic %s\n",
3946 res->diagnostics[i].uri);
3948 printf("SRW diagnostic missing or could not be decoded\n");
3949 if (res->diagnostics[i].message)
3950 printf("Message: %s\n", res->diagnostics[i].message);
3951 if (res->diagnostics[i].details)
3952 printf("Details: %s\n", res->diagnostics[i].details);
3954 if (res->numberOfRecords)
3955 printf("Number of hits: %d\n", *res->numberOfRecords);
3956 for (i = 0; i<res->num_records; i++)
3957 handle_srw_record(res->records + i);
3960 static void handle_srw_scan_term(Z_SRW_scanTerm *term)
3962 if (term->displayTerm)
3963 printf("%s:", term->displayTerm);
3964 else if (term->value)
3965 printf("%s:", term->value);
3967 printf("No value:");
3968 if (term->numberOfRecords)
3969 printf(" %d", *term->numberOfRecords);
3970 if (term->whereInList)
3971 printf(" %s", term->whereInList);
3972 if (term->value && term->displayTerm)
3973 printf(" %s", term->value);
3975 strcpy(last_scan_line, term->value);
3979 static void handle_srw_scan_response(Z_SRW_scanResponse *res)
3983 printf("Received SRW Scan Response\n");
3985 for (i = 0; i<res->num_diagnostics; i++)
3987 if (res->diagnostics[i].uri)
3988 printf("SRW diagnostic %s\n",
3989 res->diagnostics[i].uri);
3991 printf("SRW diagnostic missing or could not be decoded\n");
3992 if (res->diagnostics[i].message)
3993 printf("Message: %s\n", res->diagnostics[i].message);
3994 if (res->diagnostics[i].details)
3995 printf("Details: %s\n", res->diagnostics[i].details);
3998 for (i = 0; i<res->num_terms; i++)
3999 handle_srw_scan_term(res->terms + i);
4002 static void http_response(Z_HTTP_Response *hres)
4005 const char *connection_head = z_HTTP_header_lookup(hres->headers,
4007 if (!yaz_srw_check_content_type(hres))
4008 printf("Content type does not appear to be XML\n");
4011 Z_SOAP *soap_package = 0;
4012 ODR o = odr_createmem(ODR_DECODE);
4013 Z_SOAP_Handler soap_handlers[3] = {
4014 {YAZ_XMLNS_SRU_v1_1, 0, (Z_SOAP_fun) yaz_srw_codec},
4015 {YAZ_XMLNS_UPDATE_v0_9, 0, (Z_SOAP_fun) yaz_ucp_codec},
4018 ret = z_soap_codec(o, &soap_package,
4019 &hres->content_buf, &hres->content_len,
4021 if (!ret && soap_package->which == Z_SOAP_generic)
4023 Z_SRW_PDU *sr = (Z_SRW_PDU *) soap_package->u.generic->p;
4024 if (sr->which == Z_SRW_searchRetrieve_response)
4025 handle_srw_response(sr->u.response);
4026 else if (sr->which == Z_SRW_explain_response)
4027 handle_srw_explain_response(sr->u.explain_response);
4028 else if (sr->which == Z_SRW_scan_response)
4029 handle_srw_scan_response(sr->u.scan_response);
4030 else if (sr->which == Z_SRW_update_response)
4031 printf("Got update response. Status: %s\n",
4032 sr->u.update_response->operationStatus);
4036 else if (soap_package && (soap_package->which == Z_SOAP_fault
4037 || soap_package->which == Z_SOAP_error))
4039 printf("HTTP Error Status=%d\n", hres->code);
4040 printf("SOAP Fault code %s\n",
4041 soap_package->u.fault->fault_code);
4042 printf("SOAP Fault string %s\n",
4043 soap_package->u.fault->fault_string);
4044 if (soap_package->u.fault->details)
4045 printf("SOAP Details %s\n",
4046 soap_package->u.fault->details);
4050 printf("z_soap_codec failed. (no SOAP error)\n");
4057 if (hres->code != 200)
4059 printf("HTTP Error Status=%d\n", hres->code);
4063 printf("Decoding of SRW package failed\n");
4069 if (!strcmp(hres->version, "1.0"))
4071 /* HTTP 1.0: only if Keep-Alive we stay alive.. */
4072 if (!connection_head || strcmp(connection_head, "Keep-Alive"))
4077 /* HTTP 1.1: only if no close we stay alive .. */
4078 if (connection_head && !strcmp(connection_head, "close"))
4085 void wait_and_handle_response(int one_response_only)
4087 int reconnect_ok = 1;
4090 int netbufferlen = 0;
4091 #if HAVE_GETTIMEOFDAY
4093 struct timeval tv_end;
4099 res = cs_get(conn, &netbuffer, &netbufferlen);
4100 if (reconnect_ok && res <= 0 && protocol == PROTO_HTTP)
4104 session_connect(cur_host);
4111 buf_out = odr_getbuf(out, &len_out, 0);
4113 do_hex_dump(buf_out, len_out);
4115 cs_put(conn, buf_out, len_out);
4123 printf("Target closed connection\n");
4127 #if HAVE_GETTIMEOFDAY
4128 if (got_tv_end == 0)
4129 gettimeofday(&tv_end, 0); /* count first one only */
4133 odr_reset(in); /* release APDU from last round */
4135 do_hex_dump(netbuffer, res);
4136 odr_setbuf(in, netbuffer, res, 0);
4138 if (!z_GDU(in, &gdu, 0, 0))
4140 FILE *f = ber_file ? ber_file : stdout;
4141 odr_perror(in, "Decoding incoming APDU");
4142 fprintf(f, "[Near %ld]\n", (long) odr_offset(in));
4143 fprintf(f, "Packet dump:\n---------\n");
4144 odr_dumpBER(f, netbuffer, res);
4145 fprintf(f, "---------\n");
4148 z_GDU(print, &gdu, 0, 0);
4151 if (conn && cs_more(conn))
4156 odr_dumpBER(ber_file, netbuffer, res);
4157 if (apdu_file && !z_GDU(print, &gdu, 0, 0))
4159 odr_perror(print, "Failed to print incoming APDU");
4163 if (gdu->which == Z_GDU_Z3950)
4165 Z_APDU *apdu = gdu->u.z3950;
4168 case Z_APDU_initResponse:
4169 process_initResponse(apdu->u.initResponse);
4171 case Z_APDU_searchResponse:
4172 process_searchResponse(apdu->u.searchResponse);
4174 case Z_APDU_scanResponse:
4175 process_scanResponse(apdu->u.scanResponse);
4177 case Z_APDU_presentResponse:
4178 print_refid(apdu->u.presentResponse->referenceId);
4180 *apdu->u.presentResponse->numberOfRecordsReturned;
4181 if (apdu->u.presentResponse->records)
4182 display_records(apdu->u.presentResponse->records);
4184 printf("No records.\n");
4185 printf("nextResultSetPosition = %d\n",
4186 *apdu->u.presentResponse->nextResultSetPosition);
4188 case Z_APDU_sortResponse:
4189 process_sortResponse(apdu->u.sortResponse);
4191 case Z_APDU_extendedServicesResponse:
4192 printf("Got extended services response\n");
4193 process_ESResponse(apdu->u.extendedServicesResponse);
4196 printf("Target has closed the association.\n");
4197 process_close(apdu->u.close);
4199 case Z_APDU_resourceControlRequest:
4200 process_resourceControlRequest
4201 (apdu->u.resourceControlRequest);
4203 case Z_APDU_deleteResultSetResponse:
4204 process_deleteResultSetResponse(apdu->u.
4205 deleteResultSetResponse);
4208 printf("Received unknown APDU type (%d).\n",
4214 else if (gdu->which == Z_GDU_HTTP_Response)
4216 http_response(gdu->u.HTTP_Response);
4219 if (one_response_only)
4221 if (conn && !cs_more(conn))
4224 #if HAVE_GETTIMEOFDAY
4228 printf("S/U S/U=%ld/%ld %ld/%ld",
4229 (long) tv_start.tv_sec,
4230 (long) tv_start.tv_usec,
4231 (long) tv_end.tv_sec,
4232 (long) tv_end.tv_usec);
4234 printf("Elapsed: %.6f\n",
4235 (double) tv_end.tv_usec / 1e6 + tv_end.tv_sec -
4236 ((double) tv_start.tv_usec / 1e6 + tv_start.tv_sec));
4243 int cmd_cclparse(const char* arg)
4246 struct ccl_rpn_node *rpn=NULL;
4249 rpn = ccl_find_str(bibset, arg, &error, &pos);
4252 int ioff = 3+strlen(last_cmd)+1+pos;
4253 printf("%*s^ - ", ioff, " ");
4254 printf("%s\n", ccl_err_msg(error));
4260 ccl_pr_tree(rpn, stdout);
4264 ccl_rpn_delete(rpn);
4272 int cmd_set_otherinfo(const char* args)
4274 char oidstr[101], otherinfoString[101];
4278 sscan_res = sscanf(args, "%d %100[^ ] %100s",
4279 &otherinfoNo, oidstr, otherinfoString);
4281 if (sscan_res > 0 && otherinfoNo >= maxOtherInfosSupported) {
4282 printf("Error otherinfo index too large (%d>=%d)\n",
4283 otherinfoNo,maxOtherInfosSupported);
4290 /* reset this otherinfo */
4291 extraOtherInfos[otherinfoNo].oid[0] = -1;
4292 xfree(extraOtherInfos[otherinfoNo].value);
4293 extraOtherInfos[otherinfoNo].value = 0;
4296 if (sscan_res != 3) {
4297 printf("Error in set_otherinfo command \n");
4302 NMEM oid_tmp = nmem_create();
4303 const Odr_oid *oid =
4304 yaz_string_to_oid_nmem(yaz_oid_std(),
4305 CLASS_GENERAL, oidstr, oid_tmp);
4306 oid_oidcpy(extraOtherInfos[otherinfoNo].oid, oid);
4308 xfree(extraOtherInfos[otherinfoNo].value);
4309 extraOtherInfos[otherinfoNo].value = xstrdup(otherinfoString);
4311 nmem_destroy(oid_tmp);
4317 int cmd_sleep(const char* args )
4326 printf("Done sleeping %d seconds\n", sec);
4331 int cmd_list_otherinfo(const char* args)
4338 if (i >= maxOtherInfosSupported)
4340 printf("Error otherinfo index to large (%d>%d)\n",i,maxOtherInfosSupported);
4343 if (extraOtherInfos[i].value)
4345 char name_oid[OID_STR_MAX];
4348 yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4350 printf(" otherinfo %d %s %s\n",
4351 i, name ? name : "null",
4352 extraOtherInfos[i].value);
4358 for(i = 0; i < maxOtherInfosSupported; ++i)
4360 if (extraOtherInfos[i].value)
4362 char name_oid[OID_STR_MAX];
4365 yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4367 printf(" otherinfo %d %s %s\n",
4368 i, name ? name : "null",
4369 extraOtherInfos[i].value);
4377 int cmd_list_all(const char* args) {
4380 /* connection options */
4382 printf("Connected to : %s\n",last_open_command);
4384 if(last_open_command)
4385 printf("Not connected to : %s\n",last_open_command);
4387 printf("Not connected : \n");
4390 if(yazProxy) printf("using proxy : %s\n",yazProxy);
4392 printf("auto_reconnect : %s\n",auto_reconnect?"on":"off");
4393 printf("auto_wait : %s\n",auto_wait?"on":"off");
4396 printf("Authentication : none\n");
4398 switch(auth->which) {
4399 case Z_IdAuthentication_idPass:
4400 printf("Authentication : IdPass\n");
4401 printf(" Login User : %s\n",auth->u.idPass->userId?auth->u.idPass->userId:"");
4402 printf(" Login Group : %s\n",auth->u.idPass->groupId?auth->u.idPass->groupId:"");
4403 printf(" Password : %s\n",auth->u.idPass->password?auth->u.idPass->password:"");
4405 case Z_IdAuthentication_open:
4406 printf("Authentication : psOpen\n");
4407 printf(" Open string : %s\n",auth->u.open);
4410 printf("Authentication : Unknown\n");
4413 if (negotiationCharset)
4414 printf("Neg. Character set : `%s'\n", negotiationCharset);
4418 for (i = 0; i<num_databaseNames; i++) printf("%s ",databaseNames[i]);
4422 printf("CCL file : %s\n",ccl_fields);
4423 printf("CQL file : %s\n",cql_fields);
4424 printf("Query type : %s\n",query_type_as_string(queryType));
4426 printf("Named Result Sets : %s\n",setnumber==-1?"off":"on");
4428 /* piggy back options */
4429 printf("ssub/lslb/mspn : %d/%d/%d\n",smallSetUpperBound,largeSetLowerBound,mediumSetPresentNumber);
4431 /* print present related options */
4432 if (recordsyntax_size > 0)
4434 printf("Format : %s\n", recordsyntax_list[0]);
4436 printf("Schema : %s\n",record_schema ? record_schema : "not set");
4437 printf("Elements : %s\n",elementSetNames?elementSetNames->u.generic:"");
4439 /* loging options */
4440 printf("APDU log : %s\n",apdu_file?"on":"off");
4441 printf("Record log : %s\n",marc_file?"on":"off");
4444 printf("Other Info: \n");
4445 cmd_list_otherinfo("");
4450 int cmd_clear_otherinfo(const char* args)
4452 if(strlen(args)>0) {
4453 int otherinfoNo = atoi(args);
4454 if (otherinfoNo >= maxOtherInfosSupported) {
4455 printf("Error otherinfo index too large (%d>=%d)\n",
4456 otherinfoNo, maxOtherInfosSupported);
4459 if (extraOtherInfos[otherinfoNo].value)
4461 /* only clear if set. */
4462 extraOtherInfos[otherinfoNo].oid[0] = -1;
4463 xfree(extraOtherInfos[otherinfoNo].value);
4464 extraOtherInfos[otherinfoNo].value = 0;
4468 for(i = 0; i < maxOtherInfosSupported; ++i)
4470 if (extraOtherInfos[i].value)
4472 extraOtherInfos[i].oid[0] = -1;
4473 xfree(extraOtherInfos[i].value);
4474 extraOtherInfos[i].value = 0;
4481 int cmd_wait_response(const char *arg)
4483 int wait_for = atoi(arg);
4485 if( wait_for < 1 ) {
4489 for( i=0 ; i < wait_for ; ++i ) {
4490 wait_and_handle_response(1);
4495 static int cmd_help(const char *line);
4497 typedef char *(*completerFunctionType)(const char *text, int state);
4501 int (*fun)(const char *arg);
4503 completerFunctionType rl_completerfunction;
4504 int complete_filenames;
4505 const char **local_tabcompletes;
4507 {"open", cmd_open, "('tcp'|'ssl')':<host>[':'<port>][/<db>]",NULL,0,NULL},
4508 {"quit", cmd_quit, "",NULL,0,NULL},
4509 {"find", cmd_find, "<query>",NULL,0,NULL},
4510 {"delete", cmd_delete, "<setname>",NULL,0,NULL},
4511 {"base", cmd_base, "<base-name>",NULL,0,NULL},
4512 {"show", cmd_show, "<rec#>['+'<#recs>['+'<setname>]]",NULL,0,NULL},
4513 {"setscan", cmd_setscan, "<term>",NULL,0,NULL},
4514 {"scan", cmd_scan, "<term>",NULL,0,NULL},
4515 {"scanstep", cmd_scanstep, "<size>",NULL,0,NULL},
4516 {"scanpos", cmd_scanpos, "<size>",NULL,0,NULL},
4517 {"scansize", cmd_scansize, "<size>",NULL,0,NULL},
4518 {"sort", cmd_sort, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4519 {"sort+", cmd_sort_newset, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4520 {"authentication", cmd_authentication, "<acctstring>",NULL,0,NULL},
4521 {"lslb", cmd_lslb, "<largeSetLowerBound>",NULL,0,NULL},
4522 {"ssub", cmd_ssub, "<smallSetUpperBound>",NULL,0,NULL},
4523 {"mspn", cmd_mspn, "<mediumSetPresentNumber>",NULL,0,NULL},
4524 {"status", cmd_status, "",NULL,0,NULL},
4525 {"setnames", cmd_setnames, "",NULL,0,NULL},
4526 {"cancel", cmd_cancel, "",NULL,0,NULL},
4527 {"cancel_find", cmd_cancel_find, "<query>",NULL,0,NULL},
4528 {"format", cmd_format, "<recordsyntax>",complete_format,0,NULL},
4529 {"schema", cmd_schema, "<schema>",complete_schema,0,NULL},
4530 {"elements", cmd_elements, "<elementSetName>",NULL,0,NULL},
4531 {"close", cmd_close, "",NULL,0,NULL},
4532 {"querytype", cmd_querytype, "<type>",complete_querytype,0,NULL},
4533 {"refid", cmd_refid, "<id>",NULL,0,NULL},
4534 {"itemorder", cmd_itemorder, "ill|item|xml <itemno>",NULL,0,NULL},
4535 {"update", cmd_update, "<action> <recid> [<doc>]",NULL,0,NULL},
4536 {"update0", cmd_update0, "<action> <recid> [<doc>]",NULL,0,NULL},
4537 {"xmles", cmd_xmles, "<OID> <doc>",NULL,0,NULL},
4538 {"packagename", cmd_packagename, "<packagename>",NULL,0,NULL},
4539 {"proxy", cmd_proxy, "[('tcp'|'ssl')]<host>[':'<port>]",NULL,0,NULL},
4540 {"charset", cmd_charset, "<nego_charset> <output_charset>",NULL,0,NULL},
4541 {"negcharset", cmd_negcharset, "<nego_charset>",NULL,0,NULL},
4542 {"displaycharset", cmd_displaycharset, "<output_charset>",NULL,0,NULL},
4543 {"marccharset", cmd_marccharset, "<charset_name>",NULL,0,NULL},
4544 {"querycharset", cmd_querycharset, "<charset_name>",NULL,0,NULL},
4545 {"lang", cmd_lang, "<language_code>",NULL,0,NULL},
4546 {"source", cmd_source_echo, "<filename>",NULL,1,NULL},
4547 {".", cmd_source_echo, "<filename>",NULL,1,NULL},
4548 {"!", cmd_subshell, "Subshell command",NULL,1,NULL},
4549 {"set_apdufile", cmd_set_apdufile, "<filename>",NULL,1,NULL},
4550 {"set_berfile", cmd_set_berfile, "<filename>",NULL,1,NULL},
4551 {"set_marcdump", cmd_set_marcdump," <filename>",NULL,1,NULL},
4552 {"set_cclfile", cmd_set_cclfile," <filename>",NULL,1,NULL},
4553 {"set_cqlfile", cmd_set_cqlfile," <filename>",NULL,1,NULL},
4554 {"set_auto_reconnect", cmd_set_auto_reconnect," on|off",complete_auto_reconnect,1,NULL},
4555 {"set_auto_wait", cmd_set_auto_wait," on|off",complete_auto_reconnect,1,NULL},
4556 {"set_otherinfo", cmd_set_otherinfo,"<otherinfoinddex> <oid> <string>",NULL,0,NULL},
4557 {"sleep", cmd_sleep,"<seconds>",NULL,0,NULL},
4558 {"register_oid", cmd_register_oid,"<name> <class> <oid>",NULL,0,NULL},
4559 {"push_command", cmd_push_command,"<command>",command_generator,0,NULL},
4560 {"register_tab", cmd_register_tab,"<commandname> <tab>",command_generator,0,NULL},
4561 {"cclparse", cmd_cclparse,"<ccl find command>",NULL,0,NULL},
4562 {"list_otherinfo",cmd_list_otherinfo,"[otherinfoinddex]",NULL,0,NULL},
4563 {"list_all",cmd_list_all,"",NULL,0,NULL},
4564 {"clear_otherinfo",cmd_clear_otherinfo,"",NULL,0,NULL},
4565 {"wait_response",cmd_wait_response,"<number>",NULL,0,NULL},
4566 /* Server Admin Functions */
4567 {"adm-reindex", cmd_adm_reindex, "<database-name>",NULL,0,NULL},
4568 {"adm-truncate", cmd_adm_truncate, "('database'|'index')<object-name>",NULL,0,NULL},
4569 {"adm-create", cmd_adm_create, "",NULL,0,NULL},
4570 {"adm-drop", cmd_adm_drop, "('database'|'index')<object-name>",NULL,0,NULL},
4571 {"adm-import", cmd_adm_import, "<record-type> <dir> <pattern>",NULL,0,NULL},
4572 {"adm-refresh", cmd_adm_refresh, "",NULL,0,NULL},
4573 {"adm-commit", cmd_adm_commit, "",NULL,0,NULL},
4574 {"adm-shutdown", cmd_adm_shutdown, "",NULL,0,NULL},
4575 {"adm-startup", cmd_adm_startup, "",NULL,0,NULL},
4576 {"explain", cmd_explain, "", NULL, 0, NULL},
4577 {"options", cmd_options, "", NULL, 0, NULL},
4578 {"zversion", cmd_zversion, "", NULL, 0, NULL},
4579 {"help", cmd_help, "", NULL,0,NULL},
4580 {"init", cmd_init, "", NULL,0,NULL},
4581 {"sru", cmd_sru, "<method> <version>", NULL,0,NULL},
4582 {"exit", cmd_quit, "",NULL,0,NULL},
4586 static int cmd_help(const char *line)
4592 sscanf(line, "%20s", topic);
4595 printf("Commands:\n");
4596 for (i = 0; cmd_array[i].cmd; i++)
4597 if (*topic == 0 || strcmp(topic, cmd_array[i].cmd) == 0)
4598 printf(" %s %s\n", cmd_array[i].cmd, cmd_array[i].ad);
4599 if (!strcmp(topic, "find"))
4602 printf(" \"term\" Simple Term\n");
4603 printf(" @attr [attset] type=value op Attribute\n");
4604 printf(" @and opl opr And\n");
4605 printf(" @or opl opr Or\n");
4606 printf(" @not opl opr And-Not\n");
4607 printf(" @set set Result set\n");
4608 printf(" @prox exl dist ord rel uc ut Proximity. Use help prox\n");
4610 printf("Bib-1 attribute types\n");
4612 printf("4=Title 7=ISBN 8=ISSN 30=Date 62=Abstract 1003=Author 1016=Any\n");
4613 printf("2=Relation: ");
4614 printf("1< 2<= 3= 4>= 5> 6!= 102=Relevance\n");
4615 printf("3=Position: ");
4616 printf("1=First in Field 2=First in subfield 3=Any position\n");
4617 printf("4=Structure: ");
4618 printf("1=Phrase 2=Word 3=Key 4=Year 5=Date 6=WordList\n");
4619 printf("5=Truncation: ");
4620 printf("1=Right 2=Left 3=L&R 100=No 101=# 102=Re-1 103=Re-2\n");
4621 printf("6=Completeness:");
4622 printf("1=Incomplete subfield 2=Complete subfield 3=Complete field\n");
4624 if (!strcmp(topic, "prox"))
4626 printf("Proximity:\n");
4627 printf(" @prox exl dist ord rel uc ut\n");
4628 printf(" exl: exclude flag . 0=include, 1=exclude.\n");
4629 printf(" dist: distance integer.\n");
4630 printf(" ord: order flag. 0=unordered, 1=ordered.\n");
4631 printf(" rel: relation integer. 1< 2<= 3= 4>= 5> 6!= .\n");
4632 printf(" uc: unit class. k=known, p=private.\n");
4633 printf(" ut: unit type. 1=character, 2=word, 3=sentence,\n");
4634 printf(" 4=paragraph, 5=section, 6=chapter, 7=document,\n");
4635 printf(" 8=element, 9=subelement, 10=elementType, 11=byte.\n");
4636 printf("\nExamples:\n");
4637 printf(" Search for a and b in-order at most 3 words apart:\n");
4638 printf(" @prox 0 3 1 2 k 2 a b\n");
4639 printf(" Search for any order of a and b next to each other:\n");
4640 printf(" @prox 0 1 0 3 k 2 a b\n");
4645 int cmd_register_tab(const char* arg)
4647 #if HAVE_READLINE_READLINE_H
4648 char command[101], tabargument[101];
4651 const char** tabslist;
4653 if (sscanf(arg, "%100s %100s", command, tabargument) < 1) {
4657 /* locate the amdn in the list */
4658 for (i = 0; cmd_array[i].cmd; i++) {
4659 if (!strncmp(cmd_array[i].cmd, command, strlen(command))) {
4664 if (!cmd_array[i].cmd) {
4665 fprintf(stderr,"Unknown command %s\n",command);
4670 if (!cmd_array[i].local_tabcompletes)
4671 cmd_array[i].local_tabcompletes = (const char **) calloc(1,sizeof(char**));
4675 tabslist = cmd_array[i].local_tabcompletes;
4676 for(; tabslist && *tabslist; tabslist++) {
4680 cmd_array[i].local_tabcompletes = (const char **)
4681 realloc(cmd_array[i].local_tabcompletes,
4682 (num_of_tabs+2)*sizeof(char**));
4683 tabslist = cmd_array[i].local_tabcompletes;
4684 tabslist[num_of_tabs] = strdup(tabargument);
4685 tabslist[num_of_tabs+1] = NULL;
4691 void process_cmd_line(char* line)
4694 char word[32], arg[10240];
4696 #if HAVE_GETTIMEOFDAY
4697 gettimeofday(&tv_start, 0);
4700 if ((res = sscanf(line, "%31s %10239[^;]", word, arg)) <= 0)
4702 strcpy(word, last_cmd);
4707 strcpy(last_cmd, word);
4709 /* removed tailing spaces from the arg command */
4712 char* lastnonspace=NULL;
4715 if(!isspace(*(unsigned char *) p)) {
4720 *(++lastnonspace) = 0;
4723 for (i = 0; cmd_array[i].cmd; i++)
4724 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
4726 res = (*cmd_array[i].fun)(arg);
4730 if (!cmd_array[i].cmd) /* dump our help-screen */
4732 printf("Unknown command: %s.\n", word);
4733 printf("Type 'help' for list of commands\n");
4737 if(apdu_file) fflush(apdu_file);
4739 if (res >= 2 && auto_wait)
4740 wait_and_handle_response(0);
4748 static char *command_generator(const char *text, int state)
4750 #if HAVE_READLINE_READLINE_H
4755 for( ; cmd_array[idx].cmd; ++idx) {
4756 if (!strncmp(cmd_array[idx].cmd, text, strlen(text))) {
4757 ++idx; /* skip this entry on the next run */
4758 return strdup(cmd_array[idx-1].cmd);
4765 #if HAVE_READLINE_READLINE_H
4766 static const char** default_completer_list = NULL;
4768 static char* default_completer(const char* text, int state)
4770 return complete_from_list(default_completer_list, text, state);
4774 #if HAVE_READLINE_READLINE_H
4777 This function only known how to complete on the first word
4779 char **readline_completer(char *text, int start, int end)
4781 completerFunctionType completerToUse;
4784 #if HAVE_READLINE_RL_COMPLETION_MATCHES
4785 char** res = rl_completion_matches(text, command_generator);
4787 char** res = completion_matches(text,
4788 (CPFunction*)command_generator);
4790 rl_attempted_completion_over = 1;
4793 char arg[10240],word[32];
4795 if ((res = sscanf(rl_line_buffer, "%31s %10239[^;]", word, arg)) <= 0) {
4796 rl_attempted_completion_over = 1;
4800 for (i = 0; cmd_array[i].cmd; i++)
4801 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
4804 if(!cmd_array[i].cmd)
4807 default_completer_list = cmd_array[i].local_tabcompletes;
4809 completerToUse = cmd_array[i].rl_completerfunction;
4810 if (!completerToUse)
4811 { /* if command completer is not defined use the default completer */
4812 completerToUse = default_completer;
4814 if (completerToUse) {
4815 #ifdef HAVE_READLINE_RL_COMPLETION_MATCHES
4817 rl_completion_matches(text, completerToUse);
4820 completion_matches(text, (CPFunction*)completerToUse);
4822 if (!cmd_array[i].complete_filenames)
4823 rl_attempted_completion_over = 1;
4826 if (!cmd_array[i].complete_filenames)
4827 rl_attempted_completion_over = 1;
4835 void ctrl_c_handler(int x)
4841 static void client(void)
4848 signal(SIGINT, ctrl_c_handler);
4851 #if HAVE_GETTIMEOFDAY
4852 gettimeofday(&tv_start, 0);
4857 char *line_in = NULL;
4858 #if HAVE_READLINE_READLINE_H
4861 line_in=readline(C_PROMPT);
4864 #if HAVE_READLINE_HISTORY_H
4866 add_history(line_in);
4868 strncpy(line, line_in, sizeof(line)-1);
4877 if (!fgets(line, sizeof(line)-1, stdin))
4879 if ((end_p = strchr(line, '\n')))
4883 file_history_add_line(file_history, line);
4884 process_cmd_line(line);
4888 static void show_version(void)
4890 char vstr[20], sha1_str[41];
4892 yaz_version(vstr, sha1_str);
4893 printf("YAZ version: %s %s\n", YAZ_VERSION, YAZ_VERSION_SHA1);
4894 if (strcmp(sha1_str, YAZ_VERSION_SHA1))
4895 printf("YAZ DLL/SO: %s %s\n", vstr, sha1_str);
4899 int main(int argc, char **argv)
4902 char *open_command = 0;
4903 char *auth_command = 0;
4905 const char *rc_file = 0;
4909 if (!setlocale(LC_CTYPE, ""))
4910 fprintf(stderr, "setlocale failed\n");
4914 codeset = nl_langinfo(CODESET);
4918 outputCharset = xstrdup(codeset);
4920 ODR_MASK_SET(&z3950_options, Z_Options_search);
4921 ODR_MASK_SET(&z3950_options, Z_Options_present);
4922 ODR_MASK_SET(&z3950_options, Z_Options_namedResultSets);
4923 ODR_MASK_SET(&z3950_options, Z_Options_triggerResourceCtrl);
4924 ODR_MASK_SET(&z3950_options, Z_Options_scan);
4925 ODR_MASK_SET(&z3950_options, Z_Options_sort);
4926 ODR_MASK_SET(&z3950_options, Z_Options_extendedServices);
4927 ODR_MASK_SET(&z3950_options, Z_Options_delSet);
4929 while ((ret = options("k:c:q:a:b:m:v:p:u:t:Vxd:f:", argv, argc, &arg)) != -2)
4936 open_command = (char *) xmalloc(strlen(arg)+6);
4937 strcpy(open_command, "open ");
4938 strcat(open_command, arg);
4942 fprintf(stderr, "%s: Specify at most one server address\n",
4948 if (!strcmp(arg, "-"))
4951 apdu_file=fopen(arg, "a");
4954 if (!strcmp(arg, "-"))
4957 ber_file=fopen(arg, "a");
4960 strncpy(ccl_fields, arg, sizeof(ccl_fields)-1);
4961 ccl_fields[sizeof(ccl_fields)-1] = '\0';
4964 dump_file_prefix = arg;
4970 kilobytes = atoi(arg);
4973 if (!(marc_file = fopen(arg, "a")))
4980 yazProxy = xstrdup(arg);
4983 strncpy(cql_fields, arg, sizeof(cql_fields)-1);
4984 cql_fields[sizeof(cql_fields)-1] = '\0';
4987 outputCharset = xstrdup(arg);
4992 auth_command = (char *) xmalloc(strlen(arg)+6);
4993 strcpy(auth_command, "auth ");
4994 strcat(auth_command, arg);
4998 yaz_log_init(yaz_log_mask_str(arg), "", 0);
5007 fprintf(stderr, "Usage: %s "
5027 initialize(rc_file);
5030 #ifdef HAVE_GETTIMEOFDAY
5031 gettimeofday(&tv_start, 0);
5033 process_cmd_line(auth_command);
5034 #if HAVE_READLINE_HISTORY_H
5035 add_history(auth_command);
5037 xfree(auth_command);
5041 #ifdef HAVE_GETTIMEOFDAY
5042 gettimeofday(&tv_start, 0);
5044 process_cmd_line(open_command);
5045 #if HAVE_READLINE_HISTORY_H
5046 add_history(open_command);
5048 xfree(open_command);
5057 * indent-tabs-mode: nil
5059 * vim: shiftwidth=4 tabstop=8 expandtab