1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2008 Index Data
3 * See the file LICENSE for details.
6 * \brief yaz-client program
18 #include <sys/types.h>
36 #if HAVE_OPENSSL_SSL_H
37 #include <openssl/bio.h>
38 #include <openssl/crypto.h>
39 #include <openssl/x509.h>
40 #include <openssl/pem.h>
41 #include <openssl/ssl.h>
42 #include <openssl/err.h>
49 #define S_ISREG(x) (x & _S_IFREG)
50 #define S_ISDIR(x) (x & _S_IFDIR)
53 #include <yaz/yaz-util.h>
55 #include <yaz/comstack.h>
57 #include <yaz/oid_db.h>
59 #include <yaz/proto.h>
60 #include <yaz/marcdisp.h>
61 #include <yaz/diagbib1.h>
62 #include <yaz/otherinfo.h>
63 #include <yaz/charneg.h>
64 #include <yaz/query-charset.h>
66 #include <yaz/pquery.h>
67 #include <yaz/sortspec.h>
71 #include <yaz/yaz-ccl.h>
75 #if HAVE_READLINE_READLINE_H
76 #include <readline/readline.h>
78 #if HAVE_READLINE_HISTORY_H
79 #include <readline/history.h>
84 #include "tabcomplete.h"
87 #define C_PROMPT "Z> "
89 static file_history_t file_history = 0;
91 static char sru_method[10] = "soap";
92 static char sru_version[10] = "1.2";
93 static char *codeset = 0; /* character set for output */
94 static int hex_dump = 0;
95 static char *dump_file_prefix = 0;
96 static ODR out, in, print; /* encoding and decoding streams */
98 static ODR srw_sr_odr_out = 0;
99 static Z_SRW_PDU *srw_sr = 0;
101 static FILE *apdu_file = 0;
102 static FILE *ber_file = 0;
103 static COMSTACK conn = 0; /* our z-association */
104 static Z_IdAuthentication *auth = 0; /* our current auth definition */
105 char *databaseNames[128];
106 int num_databaseNames = 0;
107 static Z_External *record_last = 0;
108 static int setnumber = -1; /* current result set number */
109 static int smallSetUpperBound = 0;
110 static int largeSetLowerBound = 1;
111 static int mediumSetPresentNumber = 0;
112 static Z_ElementSetNames *elementSetNames = 0;
113 static int setno = 1; /* current set offset */
114 static enum oid_proto protocol = PROTO_Z3950; /* current app protocol */
115 #define RECORDSYNTAX_MAX 20
116 static char *recordsyntax_list[RECORDSYNTAX_MAX];
117 static int recordsyntax_size = 0;
119 static char *record_schema = 0;
120 static int sent_close = 0;
121 static NMEM session_mem = NULL; /* memory handle for init-response */
122 static Z_InitResponse *session_initResponse = 0; /* session parameters */
123 static char last_scan_line[512] = "0";
124 static char last_scan_query[512] = "0";
125 static char ccl_fields[512] = "default.bib";
126 /* ### How can I set this path to use wherever YAZ is installed? */
127 static char cql_fields[512] = "/usr/local/share/yaz/etc/pqf.properties";
128 static char *esPackageName = 0;
129 static char *yazProxy = 0;
130 static int kilobytes = 1024;
131 static char *negotiationCharset = 0;
132 static int negotiationCharsetRecords = 1;
133 static int negotiationCharsetVersion = 3;
134 static char *outputCharset = 0;
135 static char *marcCharset = 0;
136 static char *queryCharset = 0;
137 static char* yazLang = 0;
139 static char last_cmd[32] = "?";
140 static FILE *marc_file = 0;
141 static char *refid = NULL;
142 static char *last_open_command = NULL;
143 static int auto_reconnect = 0;
144 static int auto_wait = 1;
145 static Odr_bitmask z3950_options;
146 static int z3950_version = 3;
147 static int scan_stepSize = 0;
148 static int scan_position = 1;
149 static int scan_size = 20;
150 static char cur_host[200];
151 static int last_hit_count = 0;
161 static QueryType queryType = QueryType_Prefix;
163 static CCL_bibset bibset; /* CCL bibset handle */
164 static cql_transform_t cqltrans = 0; /* CQL context-set handle */
166 #if HAVE_READLINE_COMPLETION_OVER
169 /* readline doesn't have this var. Define it ourselves. */
170 int rl_attempted_completion_over = 0;
173 #define maxOtherInfosSupported 10
175 Odr_oid oid[OID_SIZE];
177 } extraOtherInfos[maxOtherInfosSupported];
179 void process_cmd_line(char* line);
180 #if HAVE_READLINE_READLINE_H
181 char **readline_completer(char *text, int start, int end);
183 static char *command_generator(const char *text, int state);
184 int cmd_register_tab(const char* arg);
185 int cmd_querycharset(const char *arg);
187 static void close_session(void);
189 ODR getODROutputStream(void)
194 const char* query_type_as_string(QueryType q)
197 case QueryType_Prefix: return "prefix (RPN sent to server)";
198 case QueryType_CCL: return "CCL (CCL sent to server) ";
199 case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
200 case QueryType_CQL: return "CQL (CQL sent to server)";
201 case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
203 return "unknown Query type internal yaz-client error";
207 static void do_hex_dump(const char* buf, int len)
212 for (i = 0; i < len ; i = i+16 )
215 for(x=0 ; i+x<len && x<16; ++x)
217 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
222 if (dump_file_prefix)
225 if (++no < 1000 && strlen(dump_file_prefix) < 500)
229 sprintf(fname, "%s.%03d.raw", dump_file_prefix, no);
230 of = fopen(fname, "wb");
232 fwrite(buf, 1, len, of);
239 void add_otherInfos(Z_APDU *a)
241 Z_OtherInformation **oi;
245 for(i=0; i<maxOtherInfosSupported; ++i)
247 if (oid_oidlen(extraOtherInfos[i].oid) > 0)
248 yaz_oi_set_string_oid(oi, out, extraOtherInfos[i].oid,
249 1, extraOtherInfos[i].value);
253 int send_apdu(Z_APDU *a)
262 z_APDU(print, &a, 0, 0);
265 if (!z_APDU(out, &a, 0, 0))
267 odr_perror(out, "Encoding APDU");
271 buf = odr_getbuf(out, &len, 0);
273 odr_dumpBER(ber_file, buf, len);
274 /* printf ("sending APDU of size %d\n", len); */
275 do_hex_dump(buf, len);
276 if (cs_put(conn, buf, len) < 0)
278 fprintf(stderr, "cs_put: %s", cs_errmsg(cs_errno(conn)));
282 odr_reset(out); /* release the APDU structure */
286 static void print_stringn(const unsigned char *buf, size_t len)
289 for (i = 0; i<len; i++)
290 if ((buf[i] <= 126 && buf[i] >= 32) || strchr("\n\r\t\f", buf[i]))
291 printf("%c", buf[i]);
293 printf("\\X%02X", buf[i]);
296 static void print_refid(Z_ReferenceId *id)
300 printf("Reference Id: ");
301 print_stringn(id->buf, id->len);
306 static Z_ReferenceId *set_refid(ODR out)
311 id = (Z_ReferenceId *) odr_malloc(out, sizeof(*id));
312 id->size = id->len = strlen(refid);
313 id->buf = (unsigned char *) odr_malloc(out, id->len);
314 memcpy(id->buf, refid, id->len);
318 /* INIT SERVICE ------------------------------- */
320 static void send_initRequest(const char* type_and_host)
322 Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
323 Z_InitRequest *req = apdu->u.initRequest;
326 req->options = &z3950_options;
328 ODR_MASK_ZERO(req->protocolVersion);
329 for (i = 0; i<z3950_version; i++)
330 ODR_MASK_SET(req->protocolVersion, i);
332 *req->maximumRecordSize = 1024*kilobytes;
333 *req->preferredMessageSize = 1024*kilobytes;
335 req->idAuthentication = auth;
337 req->referenceId = set_refid(out);
339 if (yazProxy && type_and_host)
341 yaz_oi_set_string_oid(&req->otherInfo, out, yaz_oid_userinfo_proxy,
345 if (negotiationCharset || yazLang) {
346 Z_OtherInformation **p;
347 Z_OtherInformationUnit *p0;
349 yaz_oi_APDU(apdu, &p);
351 if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
353 ODR_MASK_SET(req->options, Z_Options_negotiationModel);
355 p0->which = Z_OtherInfo_externallyDefinedInfo;
356 p0->information.externallyDefinedInfo =
357 yaz_set_proposal_charneg_list(out, ",",
360 negotiationCharsetRecords);
363 else if (ODR_MASK_GET(req->options, Z_Options_negotiationModel))
365 Z_OtherInformation **p;
366 Z_OtherInformationUnit *p0;
368 yaz_oi_APDU(apdu, &p);
370 if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
372 p0->which = Z_OtherInfo_externallyDefinedInfo;
373 p0->information.externallyDefinedInfo =
374 yaz_set_proposal_charneg(out, 0, 0, 0, 0, 0);
379 printf("Sent initrequest.\n");
383 /* These two are used only from process_initResponse() */
384 static void render_initUserInfo(Z_OtherInformation *ui1);
385 static void render_diag(Z_DiagnosticFormat *diag);
387 static void pr_opt(const char *opt, void *clientData)
392 static int process_initResponse(Z_InitResponse *res)
395 /* save session parameters for later use */
396 session_mem = odr_extract_mem(in);
397 session_initResponse = res;
399 for (ver = 0; ver < 8; ver++)
400 if (!ODR_MASK_GET(res->protocolVersion, ver))
404 printf("Connection rejected by v%d target.\n", ver);
406 printf("Connection accepted by v%d target.\n", ver);
407 if (res->implementationId)
408 printf("ID : %s\n", res->implementationId);
409 if (res->implementationName)
410 printf("Name : %s\n", res->implementationName);
411 if (res->implementationVersion)
412 printf("Version: %s\n", res->implementationVersion);
413 if (res->userInformationField)
415 Z_External *uif = res->userInformationField;
416 if (uif->which == Z_External_userInfo1) {
417 render_initUserInfo(uif->u.userInfo1);
419 printf("UserInformationfield:\n");
420 if (!z_External(print, (Z_External**)&uif, 0, 0))
422 odr_perror(print, "Printing userinfo\n");
425 if (uif->which == Z_External_octet) {
426 printf("Guessing visiblestring:\n");
427 printf("'%.*s'\n", uif->u.octet_aligned->len,
428 uif->u.octet_aligned->buf);
430 else if (uif->which == Z_External_single)
432 Odr_any *sat = uif->u.single_ASN1_type;
433 if (!oid_oidcmp(uif->direct_reference,
434 yaz_oid_userinfo_oclc_userinfo))
436 Z_OCLC_UserInformation *oclc_ui;
437 ODR decode = odr_createmem(ODR_DECODE);
438 odr_setbuf(decode, (char *) sat->buf, sat->len, 0);
439 if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
440 printf("Bad OCLC UserInformation:\n");
442 printf("OCLC UserInformation:\n");
443 if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
444 printf("Bad OCLC UserInformation spec\n");
449 /* Peek at any private Init-diagnostic APDUs */
450 printf("### NAUGHTY: External is '%.*s'\n",
458 yaz_init_opt_decode(res->options, pr_opt, 0);
461 if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
464 if (ODR_MASK_GET(res->options, Z_Options_negotiationModel)) {
466 Z_CharSetandLanguageNegotiation *p =
467 yaz_get_charneg_record(res->otherInfo);
471 char *charset=NULL, *lang=NULL;
474 yaz_get_response_charneg(session_mem, p, &charset, &lang,
477 printf("Accepted character set : %s\n", charset ? charset:"none");
478 printf("Accepted code language : %s\n", lang ? lang:"none");
479 printf("Accepted records in ...: %d\n", selected );
481 if (outputCharset && charset)
483 printf("Converting between %s and %s\n",
484 outputCharset, charset);
485 odr_set_charset(out, charset, outputCharset);
486 odr_set_charset(in, outputCharset, charset);
487 cmd_querycharset(charset);
491 odr_set_charset(out, 0, 0);
492 odr_set_charset(in, 0, 0);
501 static void render_initUserInfo(Z_OtherInformation *ui1) {
503 printf("Init response contains %d otherInfo unit%s:\n",
504 ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
506 for (i = 0; i < ui1->num_elements; i++) {
507 Z_OtherInformationUnit *unit = ui1->list[i];
508 printf(" %d: otherInfo unit contains ", i+1);
509 if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
510 unit->information.externallyDefinedInfo &&
511 unit->information.externallyDefinedInfo->which ==
513 render_diag(unit->information.externallyDefinedInfo->u.diag1);
515 else if (unit->which != Z_OtherInfo_externallyDefinedInfo)
517 printf("unsupported otherInfo unit->which = %d\n", unit->which);
521 printf("unsupported otherInfo unit external %d\n",
522 unit->information.externallyDefinedInfo ?
523 unit->information.externallyDefinedInfo->which : -2);
529 /* ### should this share code with display_diagrecs()? */
530 static void render_diag(Z_DiagnosticFormat *diag) {
533 printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
534 for (i = 0; i < diag->num; i++) {
535 Z_DiagnosticFormat_s *ds = diag->elements[i];
536 printf(" %d: ", i+1);
538 case Z_DiagnosticFormat_s_defaultDiagRec: {
539 Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
540 /* ### should check `dd->diagnosticSetId' */
541 printf("code=%d (%s)", *dd->condition,
542 diagbib1_str(*dd->condition));
543 /* Both types of addinfo are the same, so use type-pun */
544 if (dd->u.v2Addinfo != 0)
545 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
548 case Z_DiagnosticFormat_s_explicitDiagnostic:
549 printf("Explicit diagnostic (not supported)");
552 printf("Unrecognised diagnostic type %d", ds->which);
556 if (ds->message != 0)
557 printf(", message='%s'", ds->message);
563 static int set_base(const char *arg)
568 for (i = 0; i<num_databaseNames; i++)
569 xfree(databaseNames[i]);
570 num_databaseNames = 0;
574 if (!(cp = strchr(arg, ' ')))
575 cp = arg + strlen(arg);
578 databaseNames[num_databaseNames] = (char *)xmalloc(1 + cp - arg);
579 memcpy(databaseNames[num_databaseNames], arg, cp - arg);
580 databaseNames[num_databaseNames][cp - arg] = '\0';
582 for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
591 if (num_databaseNames == 0)
593 num_databaseNames = 1;
594 databaseNames[0] = xstrdup("");
599 static int parse_cmd_doc(const char **arg, ODR out, char **buf, int *len)
602 while (**arg && strchr(" \t\n\r\f", **arg))
608 else if ((*arg)[0] == '<')
613 const char *arg_start = ++(*arg);
615 while (**arg != '\0' && **arg != ' ')
618 fname = odr_strdupn(out, arg_start, *arg - arg_start);
620 inf = fopen(fname, "rb");
623 printf("Couldn't open %s\n", fname);
626 if (fseek(inf, 0L, SEEK_END) == -1)
628 printf("Couldn't seek in %s\n", fname);
633 if (fseek(inf, 0L, SEEK_SET) == -1)
635 printf("Couldn't seek in %s\n", fname);
640 *buf = (char *) odr_malloc(out, fsize+1);
641 (*buf)[fsize] = '\0';
642 if (fread(*buf, 1, fsize, inf) != fsize)
644 printf("Unable to read %s\n", fname);
650 else if ((*arg)[0] == '\"' && (sep=strchr(*arg+1, '"')))
654 *buf = odr_strdupn(out, *arg, *len);
659 const char *arg_start = *arg;
661 while (**arg != '\0' && **arg != ' ')
664 *len = *arg - arg_start;
665 *buf = odr_strdupn(out, arg_start, *len);
670 static int cmd_base(const char *arg)
674 printf("Usage: base <database> <database> ...\n");
677 return set_base(arg);
680 void cmd_open_remember_last_open_command(const char* arg, char* new_open_command)
682 if(last_open_command != arg)
684 if(last_open_command) xfree(last_open_command);
685 last_open_command = xstrdup(new_open_command);
689 int session_connect(const char *arg)
692 char type_and_host[101];
693 const char *basep = 0;
694 #if HAVE_OPENSSL_SSL_H
704 nmem_destroy(session_mem);
706 session_initResponse = 0;
708 cs_get_host_args(arg, &basep);
710 strncpy(type_and_host, arg, sizeof(type_and_host)-1);
711 type_and_host[sizeof(type_and_host)-1] = '\0';
713 cmd_open_remember_last_open_command(arg, type_and_host);
716 conn = cs_create_host(yazProxy, 1, &add);
718 conn = cs_create_host(arg, 1, &add);
721 printf("Could not resolve address %s\n", arg);
726 if (conn->protocol == PROTO_HTTP)
728 printf("SRW/HTTP not enabled in this YAZ\n");
734 protocol = conn->protocol;
735 if (conn->protocol == PROTO_HTTP)
739 printf("Connecting...");
741 if (cs_connect(conn, add) < 0)
743 printf("error = %s\n", cs_strerror(conn));
749 #if HAVE_OPENSSL_SSL_H
750 if ((ssl = (SSL *) cs_get_ssl(conn)))
752 X509 *server_cert = SSL_get_peer_certificate (ssl);
758 BIO *bio = BIO_new(BIO_s_mem());
760 /* get PEM buffer in memory */
761 PEM_write_bio_X509(bio, server_cert);
762 pem_len = BIO_get_mem_data(bio, &pem_buf);
763 fwrite(pem_buf, pem_len, 1, stdout);
765 /* print all info on screen .. */
766 X509_print_fp(stdout, server_cert);
769 X509_free (server_cert);
775 if (protocol == PROTO_Z3950)
777 send_initRequest(type_and_host);
783 int cmd_open(const char *arg)
788 strncpy(cur_host, arg, sizeof(cur_host)-1);
789 cur_host[sizeof(cur_host)-1] = 0;
791 r = session_connect(cur_host);
792 if (conn && conn->protocol == PROTO_HTTP)
793 queryType = QueryType_CQL;
797 void try_reconnect(void)
801 if(!( auto_reconnect && last_open_command) ) return ;
803 open_command = (char *) xmalloc(strlen(last_open_command)+6);
804 strcpy(open_command, "open ");
806 strcat(open_command, last_open_command);
808 process_cmd_line(open_command);
813 int cmd_authentication(const char *arg)
815 static Z_IdAuthentication au;
816 static char user[40], group[40], pass[40];
817 static Z_IdPass idPass;
822 printf("Auth field set to null\n");
826 r = sscanf(arg, "%39s %39s %39s", user, group, pass);
829 printf("Authentication set to null\n");
835 if (!strcmp(user, "-")) {
836 au.which = Z_IdAuthentication_anonymous;
837 printf("Authentication set to Anonymous\n");
839 au.which = Z_IdAuthentication_open;
841 printf("Authentication set to Open (%s)\n", user);
847 au.which = Z_IdAuthentication_idPass;
848 au.u.idPass = &idPass;
849 idPass.groupId = NULL;
850 idPass.userId = !strcmp(user, "-") ? 0 : user;
851 idPass.password = !strcmp(group, "-") ? 0 : group;
852 printf("Authentication set to User (%s), Pass (%s)\n", user, group);
857 au.which = Z_IdAuthentication_idPass;
858 au.u.idPass = &idPass;
859 idPass.groupId = group;
860 idPass.userId = user;
861 idPass.password = pass;
862 printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
868 /* SEARCH SERVICE ------------------------------ */
869 static void display_record(Z_External *r);
871 static void print_record(const unsigned char *buf, size_t len)
874 print_stringn(buf, len);
875 /* add newline if not already added ... */
876 if (i <= 0 || buf[i-1] != '\n')
880 static void display_record(Z_External *r)
882 const Odr_oid *oid = r->direct_reference;
886 * Tell the user what we got.
891 char oid_name_buf[OID_STR_MAX];
893 = yaz_oid_to_string_buf(oid, &oclass, oid_name_buf);
894 printf("Record type: ");
896 printf("%s\n", oid_name);
898 /* Check if this is a known, ASN.1 type tucked away in an octet string */
899 if (r->which == Z_External_octet)
901 Z_ext_typeent *type = z_ext_getentbyref(r->direct_reference);
907 * Call the given decoder to process the record.
909 odr_setbuf(in, (char*)r->u.octet_aligned->buf,
910 r->u.octet_aligned->len, 0);
911 if (!(*type->fun)(in, &rr, 0, 0))
913 odr_perror(in, "Decoding constructed record.");
914 fprintf(stdout, "[Near %ld]\n", (long) odr_offset(in));
915 fprintf(stdout, "Packet dump:\n---------\n");
916 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
917 r->u.octet_aligned->len);
918 fprintf(stdout, "---------\n");
920 /* note just ignores the error ant print the bytes form the octet_aligned later */
923 * Note: we throw away the original, BER-encoded record here.
924 * Do something else with it if you want to keep it.
926 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
927 r->which = type->what;
931 if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_soif))
933 print_record((const unsigned char *) r->u.octet_aligned->buf,
934 r->u.octet_aligned->len);
936 fwrite(r->u.octet_aligned->buf, 1, r->u.octet_aligned->len, marc_file);
938 else if (oid && r->which == Z_External_octet)
940 const char *octet_buf = (char*)r->u.octet_aligned->buf;
941 if (oid && (!oid_oidcmp(oid, yaz_oid_recsyn_xml)
942 || !oid_oidcmp(oid, yaz_oid_recsyn_xml)
943 || !oid_oidcmp(oid, yaz_oid_recsyn_html)))
945 print_record((const unsigned char *) octet_buf,
946 r->u.octet_aligned->len);
948 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_postscript))
950 int size = r->u.octet_aligned->len;
953 print_record((const unsigned char *) octet_buf, size);
957 if (oid && yaz_oid_is_iso2709(oid))
962 yaz_marc_t mt = yaz_marc_create();
963 const char *from = 0;
965 if (marcCharset && !strcmp(marcCharset, "auto"))
967 if (!oid_oidcmp(oid, yaz_oid_recsyn_usmarc))
969 if (octet_buf[9] == 'a')
977 else if (marcCharset)
979 if (outputCharset && from)
981 cd = yaz_iconv_open(outputCharset, from);
982 printf("convert from %s to %s", from,
985 printf(" unsupported\n");
988 yaz_marc_iconv(mt, cd);
993 if (yaz_marc_decode_buf(mt, octet_buf, r->u.octet_aligned->len,
996 fwrite(result, rlen, 1, stdout);
1000 printf("bad MARC. Dumping as it is:\n");
1001 print_record((const unsigned char*) octet_buf,
1002 r->u.octet_aligned->len);
1004 yaz_marc_destroy(mt);
1006 yaz_iconv_close(cd);
1010 print_record((const unsigned char*) octet_buf,
1011 r->u.octet_aligned->len);
1015 fwrite(octet_buf, 1, r->u.octet_aligned->len, marc_file);
1017 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_sutrs))
1019 if (r->which != Z_External_sutrs)
1021 printf("Expecting single SUTRS type for SUTRS.\n");
1024 print_record(r->u.sutrs->buf, r->u.sutrs->len);
1026 fwrite(r->u.sutrs->buf, 1, r->u.sutrs->len, marc_file);
1028 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_grs_1))
1031 if (r->which != Z_External_grs1)
1033 printf("Expecting single GRS type for GRS.\n");
1037 yaz_display_grs1(w, r->u.grs1, 0);
1038 puts(wrbuf_cstr(w));
1041 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_opac))
1044 if (r->u.opac->bibliographicRecord)
1045 display_record(r->u.opac->bibliographicRecord);
1046 for (i = 0; i<r->u.opac->num_holdingsData; i++)
1048 Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
1049 if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
1051 printf("MARC holdings %d\n", i);
1052 display_record(h->u.marcHoldingsRecord);
1054 else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
1058 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
1060 printf("Data holdings %d\n", i);
1061 if (data->typeOfRecord)
1062 printf("typeOfRecord: %s\n", data->typeOfRecord);
1063 if (data->encodingLevel)
1064 printf("encodingLevel: %s\n", data->encodingLevel);
1065 if (data->receiptAcqStatus)
1066 printf("receiptAcqStatus: %s\n", data->receiptAcqStatus);
1067 if (data->generalRetention)
1068 printf("generalRetention: %s\n", data->generalRetention);
1069 if (data->completeness)
1070 printf("completeness: %s\n", data->completeness);
1071 if (data->dateOfReport)
1072 printf("dateOfReport: %s\n", data->dateOfReport);
1074 printf("nucCode: %s\n", data->nucCode);
1075 if (data->localLocation)
1076 printf("localLocation: %s\n", data->localLocation);
1077 if (data->shelvingLocation)
1078 printf("shelvingLocation: %s\n", data->shelvingLocation);
1079 if (data->callNumber)
1080 printf("callNumber: %s\n", data->callNumber);
1081 if (data->shelvingData)
1082 printf("shelvingData: %s\n", data->shelvingData);
1083 if (data->copyNumber)
1084 printf("copyNumber: %s\n", data->copyNumber);
1085 if (data->publicNote)
1086 printf("publicNote: %s\n", data->publicNote);
1087 if (data->reproductionNote)
1088 printf("reproductionNote: %s\n", data->reproductionNote);
1089 if (data->termsUseRepro)
1090 printf("termsUseRepro: %s\n", data->termsUseRepro);
1091 if (data->enumAndChron)
1092 printf("enumAndChron: %s\n", data->enumAndChron);
1093 for (j = 0; j<data->num_volumes; j++)
1095 printf("volume %d\n", j);
1096 if (data->volumes[j]->enumeration)
1097 printf(" enumeration: %s\n",
1098 data->volumes[j]->enumeration);
1099 if (data->volumes[j]->chronology)
1100 printf(" chronology: %s\n",
1101 data->volumes[j]->chronology);
1102 if (data->volumes[j]->enumAndChron)
1103 printf(" enumAndChron: %s\n",
1104 data->volumes[j]->enumAndChron);
1106 for (j = 0; j<data->num_circulationData; j++)
1108 printf("circulation %d\n", j);
1109 if (data->circulationData[j]->availableNow)
1110 printf(" availableNow: %d\n",
1111 *data->circulationData[j]->availableNow);
1112 if (data->circulationData[j]->availablityDate)
1113 printf(" availabiltyDate: %s\n",
1114 data->circulationData[j]->availablityDate);
1115 if (data->circulationData[j]->availableThru)
1116 printf(" availableThru: %s\n",
1117 data->circulationData[j]->availableThru);
1118 if (data->circulationData[j]->restrictions)
1119 printf(" restrictions: %s\n",
1120 data->circulationData[j]->restrictions);
1121 if (data->circulationData[j]->itemId)
1122 printf(" itemId: %s\n",
1123 data->circulationData[j]->itemId);
1124 if (data->circulationData[j]->renewable)
1125 printf(" renewable: %d\n",
1126 *data->circulationData[j]->renewable);
1127 if (data->circulationData[j]->onHold)
1128 printf(" onHold: %d\n",
1129 *data->circulationData[j]->onHold);
1130 if (data->circulationData[j]->enumAndChron)
1131 printf(" enumAndChron: %s\n",
1132 data->circulationData[j]->enumAndChron);
1133 if (data->circulationData[j]->midspine)
1134 printf(" midspine: %s\n",
1135 data->circulationData[j]->midspine);
1136 if (data->circulationData[j]->temporaryLocation)
1137 printf(" temporaryLocation: %s\n",
1138 data->circulationData[j]->temporaryLocation);
1145 printf("Unknown record representation.\n");
1146 if (!z_External(print, &r, 0, 0))
1148 odr_perror(print, "Printing external");
1154 static void display_diagrecs(Z_DiagRec **pp, int num)
1157 Z_DefaultDiagFormat *r;
1159 printf("Diagnostic message(s) from database:\n");
1160 for (i = 0; i<num; i++)
1162 Z_DiagRec *p = pp[i];
1163 if (p->which != Z_DiagRec_defaultFormat)
1165 printf("Diagnostic record not in default format.\n");
1169 r = p->u.defaultFormat;
1171 if (!r->diagnosticSetId)
1172 printf("Missing diagset\n");
1176 char diag_name_buf[OID_STR_MAX];
1177 const char *diag_name = 0;
1178 diag_name = yaz_oid_to_string_buf
1179 (r->diagnosticSetId, &oclass, diag_name_buf);
1180 if (oid_oidcmp(r->diagnosticSetId, yaz_oid_diagset_bib_1))
1181 printf("Unknown diagset: %s\n", diag_name);
1183 printf(" [%d] %s", *r->condition, diagbib1_str(*r->condition));
1186 case Z_DefaultDiagFormat_v2Addinfo:
1187 printf(" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1189 case Z_DefaultDiagFormat_v3Addinfo:
1190 printf(" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1197 static void display_nameplusrecord(Z_NamePlusRecord *p)
1199 if (p->databaseName)
1200 printf("[%s]", p->databaseName);
1201 if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1202 display_diagrecs(&p->u.surrogateDiagnostic, 1);
1203 else if (p->which == Z_NamePlusRecord_databaseRecord)
1204 display_record(p->u.databaseRecord);
1207 static void display_records(Z_Records *p)
1211 if (p->which == Z_Records_NSD)
1213 Z_DiagRec dr, *dr_p = &dr;
1214 dr.which = Z_DiagRec_defaultFormat;
1215 dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1216 display_diagrecs(&dr_p, 1);
1218 else if (p->which == Z_Records_multipleNSD)
1219 display_diagrecs(p->u.multipleNonSurDiagnostics->diagRecs,
1220 p->u.multipleNonSurDiagnostics->num_diagRecs);
1223 printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1224 for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1225 display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1229 static int send_deleteResultSetRequest(const char *arg)
1234 Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1235 Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1237 req->referenceId = set_refid(out);
1239 req->num_resultSetList =
1240 sscanf(arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1241 names[0], names[1], names[2], names[3],
1242 names[4], names[5], names[6], names[7]);
1244 req->deleteFunction = (int *)
1245 odr_malloc(out, sizeof(*req->deleteFunction));
1246 if (req->num_resultSetList > 0)
1248 *req->deleteFunction = Z_DeleteResultSetRequest_list;
1249 req->resultSetList = (char **)
1250 odr_malloc(out, sizeof(*req->resultSetList)*
1251 req->num_resultSetList);
1252 for (i = 0; i<req->num_resultSetList; i++)
1253 req->resultSetList[i] = names[i];
1257 *req->deleteFunction = Z_DeleteResultSetRequest_all;
1258 req->resultSetList = 0;
1262 printf("Sent deleteResultSetRequest.\n");
1267 static int send_srw(Z_SRW_PDU *sr)
1269 const char *charset = negotiationCharset;
1270 const char *host_port = cur_host;
1274 path = (char *) odr_malloc(out, 2+strlen(databaseNames[0]));
1276 strcpy(path+1, databaseNames[0]);
1278 gdu = z_get_HTTP_Request_host_path(out, host_port, path);
1280 if (!yaz_matchstr(sru_method, "get"))
1282 yaz_sru_get_encode(gdu->u.HTTP_Request, sr, out, charset);
1284 else if (!yaz_matchstr(sru_method, "post"))
1286 yaz_sru_post_encode(gdu->u.HTTP_Request, sr, out, charset);
1288 else if (!yaz_matchstr(sru_method, "soap"))
1290 yaz_sru_soap_encode(gdu->u.HTTP_Request, sr, out, charset);
1293 if (z_GDU(out, &gdu, 0, 0))
1301 if (!z_GDU(print, &gdu, 0, 0))
1302 printf("Failed to print outgoing SRU package\n");
1305 buf_out = odr_getbuf(out, &len_out, 0);
1307 /* we don't odr_reset(out), since we may need the buffer again */
1309 do_hex_dump(buf_out, len_out);
1311 r = cs_put(conn, buf_out, len_out);
1321 static char *encode_SRW_term(ODR o, const char *q)
1323 const char *in_charset = "ISO-8859-1";
1324 WRBUF w = wrbuf_alloc();
1328 in_charset = outputCharset;
1329 cd = yaz_iconv_open("UTF-8", in_charset);
1333 return odr_strdup(o, q);
1335 wrbuf_iconv_write(w, cd, q, strlen(q));
1337 res = odr_strdup(o, wrbuf_cstr(w));
1339 res = odr_strdup(o, q);
1340 yaz_iconv_close(cd);
1346 static int send_SRW_scanRequest(const char *arg, int pos, int num)
1350 /* regular requestse .. */
1351 sr = yaz_srw_get_pdu(out, Z_SRW_scan_request, sru_version);
1356 sr->u.scan_request->query_type = Z_SRW_query_type_cql;
1357 sr->u.scan_request->scanClause.cql = encode_SRW_term(out, arg);
1359 case QueryType_Prefix:
1360 sr->u.scan_request->query_type = Z_SRW_query_type_pqf;
1361 sr->u.scan_request->scanClause.pqf = encode_SRW_term(out, arg);
1364 printf("Only CQL and PQF supported in SRW\n");
1367 sr->u.scan_request->responsePosition = odr_intdup(out, pos);
1368 sr->u.scan_request->maximumTerms = odr_intdup(out, num);
1369 return send_srw(sr);
1372 static int send_SRW_searchRequest(const char *arg)
1378 assert(srw_sr_odr_out == 0);
1379 srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1381 odr_reset(srw_sr_odr_out);
1385 /* save this for later .. when fetching individual records */
1386 srw_sr = yaz_srw_get_pdu(srw_sr_odr_out, Z_SRW_searchRetrieve_request,
1389 /* regular request .. */
1390 sr = yaz_srw_get_pdu(out, Z_SRW_searchRetrieve_request, sru_version);
1395 srw_sr->u.request->query_type = Z_SRW_query_type_cql;
1396 srw_sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1398 sr->u.request->query_type = Z_SRW_query_type_cql;
1399 sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1401 case QueryType_Prefix:
1402 srw_sr->u.request->query_type = Z_SRW_query_type_pqf;
1403 srw_sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1405 sr->u.request->query_type = Z_SRW_query_type_pqf;
1406 sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1409 printf("Only CQL and PQF supported in SRW\n");
1412 sr->u.request->maximumRecords = odr_intdup(out, 0);
1415 sr->u.request->recordSchema = record_schema;
1416 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
1417 sr->u.request->recordPacking = "xml";
1418 return send_srw(sr);
1422 static void query_charset_convert(Z_RPNQuery *q)
1424 if (queryCharset && outputCharset)
1426 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
1429 printf("Conversion from %s to %s unsupported\n",
1430 outputCharset, queryCharset);
1433 yaz_query_charset_convert_rpnquery(q, out, cd);
1434 yaz_iconv_close(cd);
1438 static int send_searchRequest(const char *arg)
1440 Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1441 Z_SearchRequest *req = apdu->u.searchRequest;
1443 struct ccl_rpn_node *rpn = NULL;
1445 char setstring[100];
1446 Z_RPNQuery *RPNquery;
1448 YAZ_PQF_Parser pqf_parser;
1450 QueryType myQueryType = queryType;
1453 if (myQueryType == QueryType_CCL2RPN)
1455 rpn = ccl_find_str(bibset, arg, &error, &pos);
1458 printf("CCL ERROR: %s\n", ccl_err_msg(error));
1461 } else if (myQueryType == QueryType_CQL2RPN) {
1462 /* ### All this code should be wrapped in a utility function */
1464 struct cql_node *node;
1465 const char *addinfo;
1466 if (cqltrans == 0) {
1467 printf("Can't use CQL: no translation file. Try set_cqlfile\n");
1470 parser = cql_parser_create();
1471 if ((error = cql_parser_string(parser, arg)) != 0) {
1472 printf("Can't parse CQL: must be a syntax error\n");
1475 node = cql_parser_result(parser);
1476 if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1477 sizeof pqfbuf)) != 0) {
1478 error = cql_transform_error(cqltrans, &addinfo);
1479 printf("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1480 cql_strerror(error), addinfo);
1484 myQueryType = QueryType_Prefix;
1487 req->referenceId = set_refid(out);
1488 if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1490 static unsigned char big[2100];
1491 static Odr_oct bigo;
1493 /* send a very big referenceid to test transport stack etc. */
1494 memset(big, 'A', 2100);
1495 bigo.len = bigo.size = 2100;
1497 req->referenceId = &bigo;
1502 sprintf(setstring, "%d", ++setnumber);
1503 req->resultSetName = setstring;
1505 *req->smallSetUpperBound = smallSetUpperBound;
1506 *req->largeSetLowerBound = largeSetLowerBound;
1507 *req->mediumSetPresentNumber = mediumSetPresentNumber;
1508 if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1509 mediumSetPresentNumber > 0))
1511 if (recordsyntax_size)
1512 req->preferredRecordSyntax =
1513 yaz_string_to_oid_odr(yaz_oid_std(),
1514 CLASS_RECSYN, recordsyntax_list[0], out);
1516 req->smallSetElementSetNames =
1517 req->mediumSetElementSetNames = elementSetNames;
1519 req->num_databaseNames = num_databaseNames;
1520 req->databaseNames = databaseNames;
1522 req->query = &query;
1524 switch (myQueryType)
1526 case QueryType_Prefix:
1527 query.which = Z_Query_type_1;
1528 pqf_parser = yaz_pqf_create();
1529 RPNquery = yaz_pqf_parse(pqf_parser, out, arg);
1532 const char *pqf_msg;
1534 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
1536 printf("%*s^\n", ioff+4, "");
1537 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1539 yaz_pqf_destroy(pqf_parser);
1542 yaz_pqf_destroy(pqf_parser);
1543 query_charset_convert(RPNquery);
1544 query.u.type_1 = RPNquery;
1547 query.which = Z_Query_type_2;
1548 query.u.type_2 = &ccl_query;
1549 ccl_query.buf = (unsigned char*) arg;
1550 ccl_query.len = strlen(arg);
1552 case QueryType_CCL2RPN:
1553 query.which = Z_Query_type_1;
1554 RPNquery = ccl_rpn_query(out, rpn);
1557 printf("Couldn't convert from CCL to RPN\n");
1560 query_charset_convert(RPNquery);
1561 query.u.type_1 = RPNquery;
1562 ccl_rpn_delete(rpn);
1565 query.which = Z_Query_type_104;
1566 ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1567 ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1568 ext->indirect_reference = 0;
1569 ext->descriptor = 0;
1570 ext->which = Z_External_CQL;
1571 ext->u.cql = odr_strdup(out, arg);
1572 query.u.type_104 = ext;
1575 printf("Unsupported query type\n");
1578 if (send_apdu(apdu))
1579 printf("Sent searchRequest.\n");
1584 /* display Query Expression as part of searchResult-1 */
1585 static void display_queryExpression(const char *lead, Z_QueryExpression *qe)
1589 printf(" %s=", lead);
1590 if (qe->which == Z_QueryExpression_term)
1592 if (qe->u.term->queryTerm)
1594 Z_Term *term = qe->u.term->queryTerm;
1595 switch (term->which)
1597 case Z_Term_general:
1598 printf("%.*s", term->u.general->len, term->u.general->buf);
1600 case Z_Term_characterString:
1601 printf("%s", term->u.characterString);
1603 case Z_Term_numeric:
1604 printf("%d", *term->u.numeric);
1614 /* see if we can find USR:SearchResult-1 */
1615 static void display_searchResult(Z_OtherInformation *o)
1620 for (i = 0; i < o->num_elements; i++)
1622 if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1624 Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1626 if (ext->which == Z_External_searchResult1)
1629 Z_SearchInfoReport *sr = ext->u.searchResult1;
1630 printf("SearchResult-1:");
1631 for (j = 0; j < sr->num; j++)
1635 if (!sr->elements[j]->subqueryExpression)
1637 display_queryExpression("term",
1638 sr->elements[j]->subqueryExpression);
1639 display_queryExpression("interpretation",
1640 sr->elements[j]->subqueryInterpretation);
1641 display_queryExpression("recommendation",
1642 sr->elements[j]->subqueryRecommendation);
1643 if (sr->elements[j]->subqueryCount)
1644 printf(" cnt=%d", *sr->elements[j]->subqueryCount);
1645 if (sr->elements[j]->subqueryId)
1646 printf(" id=%s ", sr->elements[j]->subqueryId);
1654 static int process_searchResponse(Z_SearchResponse *res)
1656 printf("Received SearchResponse.\n");
1657 print_refid(res->referenceId);
1658 if (*res->searchStatus)
1659 printf("Search was a success.\n");
1661 printf("Search was a bloomin' failure.\n");
1662 printf("Number of hits: %d", *res->resultCount);
1663 last_hit_count = *res->resultCount;
1665 printf(", setno %d", setnumber);
1667 if (res->resultSetStatus)
1669 printf("Result Set Status: ");
1670 switch(*res->resultSetStatus)
1672 case Z_SearchResponse_subset:
1673 printf("subset"); break;
1674 case Z_SearchResponse_interim:
1675 printf("interim"); break;
1676 case Z_SearchResponse_none:
1677 printf("none"); break;
1678 case Z_SearchResponse_estimate:
1679 printf("estimate"); break;
1681 printf("%d", *res->resultSetStatus);
1685 display_searchResult(res->additionalSearchInfo);
1686 printf("records returned: %d\n",
1687 *res->numberOfRecordsReturned);
1688 setno += *res->numberOfRecordsReturned;
1690 display_records(res->records);
1694 static void print_level(int iLevel)
1697 for (i = 0; i < iLevel * 4; i++)
1701 static void print_int(int iLevel, const char *pTag, int *pInt)
1705 print_level(iLevel);
1706 printf("%s: %d\n", pTag, *pInt);
1710 static void print_string(int iLevel, const char *pTag, const char *pString)
1712 if (pString != NULL)
1714 print_level(iLevel);
1715 printf("%s: %s\n", pTag, pString);
1719 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1723 Odr_oid *pInt = pOid;
1725 print_level(iLevel);
1726 printf("%s:", pTag);
1727 for (; *pInt != -1; pInt++)
1728 printf(" %d", *pInt);
1733 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1735 if (referenceId != NULL)
1739 print_level(iLevel);
1740 printf("Ref Id (%d, %d): ", referenceId->len, referenceId->size);
1741 for (i = 0; i < referenceId->len; i++)
1742 printf("%c", referenceId->buf[i]);
1747 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1749 if (pStringNumeric != NULL)
1751 switch (pStringNumeric->which)
1753 case Z_StringOrNumeric_string:
1754 print_string(iLevel, pTag, pStringNumeric->u.string);
1757 case Z_StringOrNumeric_numeric:
1758 print_int(iLevel, pTag, pStringNumeric->u.numeric);
1762 print_level(iLevel);
1763 printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1769 static void print_universe_report_duplicate(
1771 Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1773 if (pUniverseReportDuplicate != NULL)
1775 print_level(iLevel);
1776 printf("Universe Report Duplicate: \n");
1778 print_string_or_numeric(iLevel, "Hit No",
1779 pUniverseReportDuplicate->hitno);
1783 static void print_universe_report_hits(
1785 Z_UniverseReportHits *pUniverseReportHits)
1787 if (pUniverseReportHits != NULL)
1789 print_level(iLevel);
1790 printf("Universe Report Hits: \n");
1792 print_string_or_numeric(iLevel, "Database",
1793 pUniverseReportHits->database);
1794 print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1798 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1800 if (pUniverseReport != NULL)
1802 print_level(iLevel);
1803 printf("Universe Report: \n");
1805 print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1806 switch (pUniverseReport->which)
1808 case Z_UniverseReport_databaseHits:
1809 print_universe_report_hits(iLevel,
1810 pUniverseReport->u.databaseHits);
1813 case Z_UniverseReport_duplicate:
1814 print_universe_report_duplicate(iLevel,
1815 pUniverseReport->u.duplicate);
1819 print_level(iLevel);
1820 printf("Type: %d\n", pUniverseReport->which);
1826 static void print_external(int iLevel, Z_External *pExternal)
1828 if (pExternal != NULL)
1830 print_level(iLevel);
1831 printf("External: \n");
1833 print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
1834 print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
1835 print_string(iLevel, "Descriptor", pExternal->descriptor);
1836 switch (pExternal->which)
1838 case Z_External_universeReport:
1839 print_universe_report(iLevel, pExternal->u.universeReport);
1843 print_level(iLevel);
1844 printf("Type: %d\n", pExternal->which);
1850 static int process_resourceControlRequest(Z_ResourceControlRequest *req)
1852 printf("Received ResourceControlRequest.\n");
1853 print_referenceId(1, req->referenceId);
1854 print_int(1, "Suspended Flag", req->suspendedFlag);
1855 print_int(1, "Partial Results Available", req->partialResultsAvailable);
1856 print_int(1, "Response Required", req->responseRequired);
1857 print_int(1, "Triggered Request Flag", req->triggeredRequestFlag);
1858 print_external(1, req->resourceReport);
1862 void process_ESResponse(Z_ExtendedServicesResponse *res)
1865 switch (*res->operationStatus)
1867 case Z_ExtendedServicesResponse_done:
1870 case Z_ExtendedServicesResponse_accepted:
1871 printf("accepted\n");
1873 case Z_ExtendedServicesResponse_failure:
1874 printf("failure\n");
1875 display_diagrecs(res->diagnostics, res->num_diagnostics);
1878 printf("unknown\n");
1880 if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
1881 (res->num_diagnostics != 0) ) {
1882 display_diagrecs(res->diagnostics, res->num_diagnostics);
1884 print_refid (res->referenceId);
1885 if (res->taskPackage &&
1886 res->taskPackage->which == Z_External_extendedService)
1888 Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
1889 Odr_oct *id = taskPackage->targetReference;
1890 Z_External *ext = taskPackage->taskSpecificParameters;
1894 printf("Target Reference: ");
1895 print_stringn (id->buf, id->len);
1898 if (ext->which == Z_External_update)
1900 Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
1901 if (utp && utp->targetPart)
1903 Z_IUTargetPart *targetPart = utp->targetPart;
1906 for (i = 0; i<targetPart->num_taskPackageRecords; i++)
1909 Z_IUTaskPackageRecordStructure *tpr =
1910 targetPart->taskPackageRecords[i];
1911 printf("task package record %d\n", i+1);
1912 if (tpr->which == Z_IUTaskPackageRecordStructure_record)
1914 display_record (tpr->u.record);
1918 printf("other type\n");
1923 if (ext->which == Z_External_itemOrder)
1925 Z_IOTaskPackage *otp = ext->u.itemOrder->u.taskPackage;
1927 if (otp && otp->targetPart)
1929 if (otp->targetPart->itemRequest)
1931 Z_External *ext = otp->targetPart->itemRequest;
1932 if (ext->which == Z_External_octet)
1934 Odr_oct *doc = ext->u.octet_aligned;
1935 printf("Got itemRequest doc %.*s\n",
1936 doc->len, doc->buf);
1939 else if (otp->targetPart->statusOrErrorReport)
1941 Z_External *ext = otp->targetPart->statusOrErrorReport;
1942 if (ext->which == Z_External_octet)
1944 Odr_oct *doc = ext->u.octet_aligned;
1945 printf("Got Status or Error Report doc %.*s\n",
1946 doc->len, doc->buf);
1952 if (res->taskPackage && res->taskPackage->which == Z_External_octet)
1954 Odr_oct *doc = res->taskPackage->u.octet_aligned;
1955 printf("%.*s\n", doc->len, doc->buf);
1959 const char *get_ill_element(void *clientData, const char *element)
1964 static Z_External *create_external_itemRequest(void)
1966 struct ill_get_ctl ctl;
1967 ILL_ItemRequest *req;
1969 int item_request_size = 0;
1970 char *item_request_buf = 0;
1974 ctl.f = get_ill_element;
1976 req = ill_get_ItemRequest(&ctl, "ill", 0);
1978 printf("ill_get_ItemRequest failed\n");
1980 if (!ill_ItemRequest(out, &req, 0, 0))
1984 ill_ItemRequest(print, &req, 0, 0);
1987 item_request_buf = odr_getbuf (out, &item_request_size, 0);
1988 if (item_request_buf)
1989 odr_setbuf (out, item_request_buf, item_request_size, 1);
1990 printf("Couldn't encode ItemRequest, size %d\n", item_request_size);
1995 r = (Z_External *) odr_malloc(out, sizeof(*r));
1996 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
1997 r->indirect_reference = 0;
1999 r->which = Z_External_single;
2001 r->u.single_ASN1_type = (Odr_oct *)
2002 odr_malloc(out, sizeof(*r->u.single_ASN1_type));
2003 r->u.single_ASN1_type->buf = (unsigned char *)
2004 odr_malloc(out, item_request_size);
2005 r->u.single_ASN1_type->len = item_request_size;
2006 r->u.single_ASN1_type->size = item_request_size;
2007 memcpy(r->u.single_ASN1_type->buf, item_request_buf,
2010 do_hex_dump(item_request_buf,item_request_size);
2015 static Z_External *create_external_ILL_APDU(int which)
2017 struct ill_get_ctl ctl;
2020 int ill_request_size = 0;
2021 char *ill_request_buf = 0;
2025 ctl.f = get_ill_element;
2027 ill_apdu = ill_get_APDU(&ctl, "ill", 0);
2029 if (!ill_APDU (out, &ill_apdu, 0, 0))
2033 printf("-------------------\n");
2034 ill_APDU(print, &ill_apdu, 0, 0);
2036 printf("-------------------\n");
2038 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2039 if (ill_request_buf)
2040 odr_setbuf (out, ill_request_buf, ill_request_size, 1);
2041 printf("Couldn't encode ILL-Request, size %d\n", ill_request_size);
2046 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2048 r = (Z_External *) odr_malloc(out, sizeof(*r));
2049 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2050 r->indirect_reference = 0;
2052 r->which = Z_External_single;
2054 r->u.single_ASN1_type = (Odr_oct *)
2055 odr_malloc(out, sizeof(*r->u.single_ASN1_type));
2056 r->u.single_ASN1_type->buf = (unsigned char *)
2057 odr_malloc(out, ill_request_size);
2058 r->u.single_ASN1_type->len = ill_request_size;
2059 r->u.single_ASN1_type->size = ill_request_size;
2060 memcpy(r->u.single_ASN1_type->buf, ill_request_buf, ill_request_size);
2061 /* printf("len = %d\n", ill_request_size); */
2062 /* do_hex_dump(ill_request_buf,ill_request_size); */
2063 /* printf("--- end of extenal\n"); */
2070 static Z_External *create_ItemOrderExternal(const char *type, int itemno,
2071 const char *xml_buf,
2074 Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
2075 r->direct_reference = odr_oiddup(out, yaz_oid_extserv_item_order);
2076 r->indirect_reference = 0;
2079 r->which = Z_External_itemOrder;
2081 r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
2082 memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
2083 r->u.itemOrder->which=Z_IOItemOrder_esRequest;
2085 r->u.itemOrder->u.esRequest = (Z_IORequest *)
2086 odr_malloc(out,sizeof(Z_IORequest));
2087 memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
2089 r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
2090 odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
2091 memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
2092 r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
2093 odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
2094 memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
2096 r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
2097 r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
2098 r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
2100 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
2101 (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
2102 memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
2103 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
2105 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
2106 (int *) odr_malloc(out, sizeof(int));
2107 *r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item = itemno;
2109 if (!strcmp (type, "item") || !strcmp(type, "2"))
2111 printf("using item-request\n");
2112 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2113 create_external_itemRequest();
2115 else if (!strcmp(type, "ill") || !strcmp(type, "1"))
2117 printf("using ILL-request\n");
2118 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2119 create_external_ILL_APDU(ILL_APDU_ILL_Request);
2121 else if (!strcmp(type, "xml") || !strcmp(type, "3"))
2123 printf("using XML ILL-request\n");
2127 printf("no docoument added\n");
2128 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2132 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2133 z_ext_record_oid(out, yaz_oid_recsyn_xml, xml_buf, xml_len);
2137 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2142 static int send_itemorder(const char *type, int itemno,
2143 const char *xml_buf, int xml_len)
2145 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2146 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2148 req->referenceId = set_refid (out);
2150 req->packageType = odr_oiddup(out, yaz_oid_extserv_item_order);
2151 req->packageName = esPackageName;
2153 req->taskSpecificParameters = create_ItemOrderExternal(type, itemno,
2159 static int only_z3950(void)
2163 printf("Not connected yet\n");
2166 if (protocol == PROTO_HTTP)
2168 printf("Not supported by SRW\n");
2174 static int cmd_update_common(const char *arg, int version);
2176 static int cmd_update(const char *arg)
2178 return cmd_update_common(arg, 1);
2181 static int cmd_update0(const char *arg)
2183 return cmd_update_common(arg, 0);
2186 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2187 char *rec_buf, int rec_len);
2189 static int cmd_update_SRW(int action_no, const char *recid,
2190 char *rec_buf, int rec_len);
2192 static int cmd_update_common(const char *arg, int version)
2198 const char *recid = 0;
2204 if (parse_cmd_doc(&arg, out, &action_buf, &action_len) == 0)
2206 printf("Use: update action recid [fname]\n");
2207 printf(" where action is one of insert,replace,delete.update\n");
2208 printf(" recid is some record ID. Use none for no ID\n");
2209 printf(" fname is file of record to be updated\n");
2213 if (parse_cmd_doc(&arg, out, &recid_buf, &recid_len) == 0)
2215 printf("Missing recid\n");
2219 if (!strcmp(action_buf, "insert"))
2220 action_no = Z_IUOriginPartToKeep_recordInsert;
2221 else if (!strcmp(action_buf, "replace"))
2222 action_no = Z_IUOriginPartToKeep_recordReplace;
2223 else if (!strcmp(action_buf, "delete"))
2224 action_no = Z_IUOriginPartToKeep_recordDelete;
2225 else if (!strcmp(action_buf, "update"))
2226 action_no = Z_IUOriginPartToKeep_specialUpdate;
2229 printf("Bad action: %s\n", action_buf);
2230 printf("Possible values: insert, replace, delete, update\n");
2234 if (strcmp(recid_buf, "none")) /* none means no record ID */
2238 if (parse_cmd_doc(&arg, out, &rec_buf, &rec_len) == 0)
2242 if (protocol == PROTO_HTTP)
2243 return cmd_update_SRW(action_no, recid_buf, rec_buf, rec_len);
2245 return cmd_update_Z3950(version, action_no, recid_buf, rec_buf, rec_len);
2249 static int cmd_update_SRW(int action_no, const char *recid,
2250 char *rec_buf, int rec_len)
2253 session_connect(cur_host);
2258 Z_SRW_PDU *srw = yaz_srw_get(out, Z_SRW_update_request);
2259 Z_SRW_updateRequest *sr = srw->u.update_request;
2263 case Z_IUOriginPartToKeep_recordInsert:
2264 sr->operation = "info:srw/action/1/create";
2266 case Z_IUOriginPartToKeep_recordReplace:
2267 sr->operation = "info:srw/action/1/replace";
2269 case Z_IUOriginPartToKeep_recordDelete:
2270 sr->operation = "info:srw/action/1/delete";
2275 sr->record = yaz_srw_get_record(out);
2276 sr->record->recordData_buf = rec_buf;
2277 sr->record->recordData_len = rec_len;
2278 sr->record->recordSchema = record_schema;
2281 sr->recordId = odr_strdup(out, recid);
2282 return send_srw(srw);
2287 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2288 char *rec_buf, int rec_len)
2290 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
2291 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2293 Z_External *record_this = 0;
2295 record_this = z_ext_record_oid(out, yaz_oid_recsyn_xml,
2301 printf("No last record (update ignored)\n");
2304 record_this = record_last;
2307 req->packageType = odr_oiddup(out, (version == 0 ?
2308 yaz_oid_extserv_database_update_first_version :
2309 yaz_oid_extserv_database_update));
2311 req->packageName = esPackageName;
2313 req->referenceId = set_refid (out);
2315 r = req->taskSpecificParameters = (Z_External *)
2316 odr_malloc(out, sizeof(*r));
2317 r->direct_reference = req->packageType;
2318 r->indirect_reference = 0;
2322 Z_IU0OriginPartToKeep *toKeep;
2323 Z_IU0SuppliedRecords *notToKeep;
2325 r->which = Z_External_update0;
2326 r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2327 r->u.update0->which = Z_IUUpdate_esRequest;
2328 r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2329 odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2330 toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2331 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2333 toKeep->databaseName = databaseNames[0];
2337 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2339 record_schema, out);
2341 toKeep->elementSetName = 0;
2343 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2344 *toKeep->action = action_no;
2346 notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2347 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2349 notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2350 odr_malloc(out, sizeof(*notToKeep->elements));
2351 notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2352 odr_malloc(out, sizeof(**notToKeep->elements));
2353 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2356 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2357 odr_malloc(out, sizeof(Odr_oct));
2358 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2359 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2360 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2363 notToKeep->elements[0]->u.opaque = 0;
2364 notToKeep->elements[0]->supplementalId = 0;
2365 notToKeep->elements[0]->correlationInfo = 0;
2366 notToKeep->elements[0]->record = record_this;
2370 Z_IUOriginPartToKeep *toKeep;
2371 Z_IUSuppliedRecords *notToKeep;
2373 r->which = Z_External_update;
2374 r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2375 r->u.update->which = Z_IUUpdate_esRequest;
2376 r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2377 odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2378 toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2379 odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2381 toKeep->databaseName = databaseNames[0];
2385 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2387 record_schema, out);
2389 toKeep->elementSetName = 0;
2390 toKeep->actionQualifier = 0;
2391 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2392 *toKeep->action = action_no;
2394 notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2395 odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2397 notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2398 odr_malloc(out, sizeof(*notToKeep->elements));
2399 notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2400 odr_malloc(out, sizeof(**notToKeep->elements));
2401 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2404 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2405 odr_malloc(out, sizeof(Odr_oct));
2406 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2407 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2408 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2411 notToKeep->elements[0]->u.opaque = 0;
2412 notToKeep->elements[0]->supplementalId = 0;
2413 notToKeep->elements[0]->correlationInfo = 0;
2414 notToKeep->elements[0]->record = record_this;
2422 static int cmd_xmles(const char *arg)
2432 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2433 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2436 Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
2438 req->referenceId = set_refid (out);
2439 req->taskSpecificParameters = ext;
2440 ext->indirect_reference = 0;
2441 ext->descriptor = 0;
2442 ext->which = Z_External_octet;
2443 ext->u.single_ASN1_type = (Odr_oct *) odr_malloc(out, sizeof(Odr_oct));
2444 sscanf(arg, "%50s%n", oid_str, &noread);
2447 printf("Missing OID for xmles\n");
2451 if (parse_cmd_doc(&arg, out, &asn_buf,
2452 &ext->u.single_ASN1_type->len) == 0)
2455 ext->u.single_ASN1_type->buf = (unsigned char *) asn_buf;
2457 oid = yaz_string_to_oid_odr(yaz_oid_std(),
2458 CLASS_EXTSERV, oid_str, out);
2461 printf("Bad OID: %s\n", oid_str);
2465 req->packageType = oid;
2467 ext->direct_reference = oid;
2475 static int cmd_itemorder(const char *arg)
2485 if (sscanf(arg, "%10s %d%n", type, &itemno, &no_read) < 2)
2488 parse_cmd_doc(&arg, out, &xml_buf, &xml_len);
2491 send_itemorder(type, itemno, xml_buf, xml_len);
2495 static void show_opt(const char *arg, void *clientData)
2500 static int cmd_zversion(const char *arg)
2503 z3950_version = atoi(arg);
2505 printf("version is %d\n", z3950_version);
2509 static int cmd_options(const char *arg)
2515 r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2517 printf("Unknown option(s) near %s\n", arg+pos);
2521 yaz_init_opt_decode(&z3950_options, show_opt, 0);
2527 static int cmd_explain(const char *arg)
2529 if (protocol != PROTO_HTTP)
2533 session_connect(cur_host);
2540 /* save this for later .. when fetching individual records */
2541 sr = yaz_srw_get(out, Z_SRW_explain_request);
2542 if (recordsyntax_size == 1
2543 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2544 sr->u.explain_request->recordPacking = "xml";
2552 static int cmd_init(const char *arg)
2556 strncpy(cur_host, arg, sizeof(cur_host)-1);
2557 cur_host[sizeof(cur_host)-1] = 0;
2561 send_initRequest(cur_host);
2565 static int cmd_sru(const char *arg)
2569 printf("SRU method is: %s\n", sru_method);
2570 printf("SRU version is: %s\n", sru_version);
2575 r = sscanf(arg, "%9s %9s", sru_method, sru_version);
2578 if (!yaz_matchstr(sru_method, "post"))
2580 else if (!yaz_matchstr(sru_method, "get"))
2582 else if (!yaz_matchstr(sru_method, "soap"))
2586 strcpy(sru_method, "soap");
2587 printf("Unknown SRU method: %s\n", arg);
2588 printf("Specify one of POST, GET, SOAP\n");
2595 static int cmd_find(const char *arg)
2599 printf("Find what?\n");
2602 if (protocol == PROTO_HTTP)
2606 session_connect(cur_host);
2609 if (!send_SRW_searchRequest(arg))
2622 printf("Not connected yet\n");
2626 if (!send_searchRequest(arg))
2632 static int cmd_delete(const char *arg)
2636 if (!send_deleteResultSetRequest(arg))
2641 static int cmd_ssub(const char *arg)
2643 if (!(smallSetUpperBound = atoi(arg)))
2648 static int cmd_lslb(const char *arg)
2650 if (!(largeSetLowerBound = atoi(arg)))
2655 static int cmd_mspn(const char *arg)
2657 if (!(mediumSetPresentNumber = atoi(arg)))
2662 static int cmd_status(const char *arg)
2664 printf("smallSetUpperBound: %d\n", smallSetUpperBound);
2665 printf("largeSetLowerBound: %d\n", largeSetLowerBound);
2666 printf("mediumSetPresentNumber: %d\n", mediumSetPresentNumber);
2670 static int cmd_setnames(const char *arg)
2672 if (*arg == '1') /* enable ? */
2674 else if (*arg == '0') /* disable ? */
2676 else if (setnumber < 0) /* no args, toggle .. */
2682 printf("Set numbering enabled.\n");
2684 printf("Set numbering disabled.\n");
2688 /* PRESENT SERVICE ----------------------------- */
2690 static void parse_show_args(const char *arg_c, char *setstring,
2691 int *start, int *number)
2696 strncpy(arg, arg_c, sizeof(arg)-1);
2697 arg[sizeof(arg)-1] = '\0';
2699 if ((p = strchr(arg, '+')))
2701 *number = atoi(p + 1);
2706 if (!strcmp(arg, "all"))
2708 *number = last_hit_count;
2714 if (p && (p=strchr(p+1, '+')))
2715 strcpy(setstring, p+1);
2716 else if (setnumber >= 0)
2717 sprintf(setstring, "%d", setnumber);
2722 static int send_presentRequest(const char *arg)
2724 Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
2725 Z_PresentRequest *req = apdu->u.presentRequest;
2726 Z_RecordComposition compo;
2728 char setstring[100];
2730 req->referenceId = set_refid(out);
2732 parse_show_args(arg, setstring, &setno, &nos);
2734 req->resultSetId = setstring;
2736 req->resultSetStartPoint = &setno;
2737 req->numberOfRecordsRequested = &nos;
2739 if (recordsyntax_size)
2740 req->preferredRecordSyntax =
2741 yaz_string_to_oid_odr(yaz_oid_std(),
2742 CLASS_RECSYN, recordsyntax_list[0], out);
2744 if (record_schema || recordsyntax_size >= 2)
2746 req->recordComposition = &compo;
2747 compo.which = Z_RecordComp_complex;
2748 compo.u.complex = (Z_CompSpec *)
2749 odr_malloc(out, sizeof(*compo.u.complex));
2750 compo.u.complex->selectAlternativeSyntax = (bool_t *)
2751 odr_malloc(out, sizeof(bool_t));
2752 *compo.u.complex->selectAlternativeSyntax = 0;
2754 compo.u.complex->generic = (Z_Specification *)
2755 odr_malloc(out, sizeof(*compo.u.complex->generic));
2757 compo.u.complex->generic->which = Z_Schema_oid;
2759 compo.u.complex->generic->schema.oid = 0;
2762 compo.u.complex->generic->schema.oid =
2763 yaz_string_to_oid_odr(yaz_oid_std(),
2764 CLASS_SCHEMA, record_schema, out);
2766 if (!compo.u.complex->generic->schema.oid)
2768 /* OID wasn't a schema! Try record syntax instead. */
2769 compo.u.complex->generic->schema.oid = (Odr_oid *)
2770 yaz_string_to_oid_odr(yaz_oid_std(),
2771 CLASS_RECSYN, record_schema, out);
2774 if (!elementSetNames)
2775 compo.u.complex->generic->elementSpec = 0;
2778 compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
2779 odr_malloc(out, sizeof(Z_ElementSpec));
2780 compo.u.complex->generic->elementSpec->which =
2781 Z_ElementSpec_elementSetName;
2782 compo.u.complex->generic->elementSpec->u.elementSetName =
2783 elementSetNames->u.generic;
2785 compo.u.complex->num_dbSpecific = 0;
2786 compo.u.complex->dbSpecific = 0;
2788 compo.u.complex->num_recordSyntax = 0;
2789 compo.u.complex->recordSyntax = 0;
2790 if (recordsyntax_size >= 2)
2793 compo.u.complex->num_recordSyntax = recordsyntax_size;
2794 compo.u.complex->recordSyntax = (Odr_oid **)
2795 odr_malloc(out, recordsyntax_size * sizeof(Odr_oid*));
2796 for (i = 0; i < recordsyntax_size; i++)
2797 compo.u.complex->recordSyntax[i] =
2798 yaz_string_to_oid_odr(yaz_oid_std(),
2799 CLASS_RECSYN, recordsyntax_list[i], out);
2802 else if (elementSetNames)
2804 req->recordComposition = &compo;
2805 compo.which = Z_RecordComp_simple;
2806 compo.u.simple = elementSetNames;
2809 printf("Sent presentRequest (%d+%d).\n", setno, nos);
2814 static int send_SRW_presentRequest(const char *arg)
2816 char setstring[100];
2818 Z_SRW_PDU *sr = srw_sr;
2822 parse_show_args(arg, setstring, &setno, &nos);
2823 sr->u.request->startRecord = odr_intdup(out, setno);
2824 sr->u.request->maximumRecords = odr_intdup(out, nos);
2826 sr->u.request->recordSchema = record_schema;
2827 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2828 sr->u.request->recordPacking = "xml";
2829 return send_srw(sr);
2833 static void close_session(void)
2845 void process_close(Z_Close *req)
2847 Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
2848 Z_Close *res = apdu->u.close;
2850 static char *reasons[] =
2855 "cost limit reached",
2857 "security violation",
2864 printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
2865 req->diagnosticInformation ? req->diagnosticInformation : "NULL");
2870 *res->closeReason = Z_Close_finished;
2872 printf("Sent response.\n");
2877 static int cmd_show(const char *arg)
2879 if (protocol == PROTO_HTTP)
2883 session_connect(cur_host);
2886 if (!send_SRW_presentRequest(arg))
2896 printf("Not connected yet\n");
2899 if (!send_presentRequest(arg))
2905 void exit_client(int code)
2907 file_history_save(file_history);
2908 file_history_destroy(&file_history);
2912 int cmd_quit(const char *arg)
2914 printf("See you later, alligator.\n");
2920 int cmd_cancel(const char *arg)
2922 Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
2923 Z_TriggerResourceControlRequest *req =
2924 apdu->u.triggerResourceControlRequest;
2929 sscanf(arg, "%15s", command);
2933 if (session_initResponse &&
2934 !ODR_MASK_GET(session_initResponse->options,
2935 Z_Options_triggerResourceCtrl))
2937 printf("Target doesn't support cancel (trigger resource ctrl)\n");
2940 *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
2941 req->resultSetWanted = &rfalse;
2942 req->referenceId = set_refid(out);
2945 printf("Sent cancel request\n");
2946 if (!strcmp(command, "wait"))
2952 int cmd_cancel_find(const char *arg) {
2956 return cmd_cancel("");
2961 int send_scanrequest(const char *set, const char *query,
2962 int pp, int num, const char *term)
2964 Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
2965 Z_ScanRequest *req = apdu->u.scanRequest;
2969 if (queryType == QueryType_CCL2RPN)
2972 struct ccl_rpn_node *rpn;
2974 rpn = ccl_find_str(bibset, query, &error, &pos);
2977 printf("CCL ERROR: %s\n", ccl_err_msg(error));
2981 yaz_string_to_oid_odr(yaz_oid_std(),
2982 CLASS_ATTSET, "Bib-1", out);
2983 if (!(req->termListAndStartPoint = ccl_scan_query(out, rpn)))
2985 printf("Couldn't convert CCL to Scan term\n");
2988 ccl_rpn_delete(rpn);
2992 YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
2994 if (!(req->termListAndStartPoint =
2995 yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
2997 const char *pqf_msg;
2999 int code = yaz_pqf_error(pqf_parser, &pqf_msg, &off);
3001 printf("%*s^\n", ioff+7, "");
3002 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
3003 yaz_pqf_destroy(pqf_parser);
3006 yaz_pqf_destroy(pqf_parser);
3008 if (queryCharset && outputCharset)
3010 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
3013 printf("Conversion from %s to %s unsupported\n",
3014 outputCharset, queryCharset);
3017 yaz_query_charset_convert_apt(req->termListAndStartPoint, out, cd);
3018 yaz_iconv_close(cd);
3022 if (req->termListAndStartPoint->term &&
3023 req->termListAndStartPoint->term->which == Z_Term_general &&
3024 req->termListAndStartPoint->term->u.general)
3026 req->termListAndStartPoint->term->u.general->buf =
3027 (unsigned char *) odr_strdup(out, term);
3028 req->termListAndStartPoint->term->u.general->len =
3029 req->termListAndStartPoint->term->u.general->size =
3033 req->referenceId = set_refid(out);
3034 req->num_databaseNames = num_databaseNames;
3035 req->databaseNames = databaseNames;
3036 req->numberOfTermsRequested = #
3037 req->preferredPositionInResponse = &pp;
3038 req->stepSize = odr_intdup(out, scan_stepSize);
3041 yaz_oi_set_string_oid(&req->otherInfo, out,
3042 yaz_oid_userinfo_scan_set, 1, set);
3048 int send_sortrequest(const char *arg, int newset)
3050 Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
3051 Z_SortRequest *req = apdu->u.sortRequest;
3052 Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
3053 odr_malloc(out, sizeof(*sksl));
3059 sprintf(setstring, "%d", setnumber);
3061 sprintf(setstring, "default");
3063 req->referenceId = set_refid(out);
3065 req->num_inputResultSetNames = 1;
3066 req->inputResultSetNames = (Z_InternationalString **)
3067 odr_malloc(out, sizeof(*req->inputResultSetNames));
3068 req->inputResultSetNames[0] = odr_strdup(out, setstring);
3070 if (newset && setnumber >= 0)
3071 sprintf(setstring, "%d", ++setnumber);
3073 req->sortedResultSetName = odr_strdup(out, setstring);
3075 req->sortSequence = yaz_sort_spec(out, arg);
3076 if (!req->sortSequence)
3078 printf("Missing sort specifications\n");
3085 void display_term(Z_TermInfo *t)
3088 printf("%s", t->displayTerm);
3089 else if (t->term->which == Z_Term_general)
3090 printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
3092 printf("Term (not general)");
3093 if (t->term->which == Z_Term_general)
3094 sprintf(last_scan_line, "%.*s", t->term->u.general->len,
3095 t->term->u.general->buf);
3097 if (t->globalOccurrences)
3098 printf(" (%d)\n", *t->globalOccurrences);
3103 void process_scanResponse(Z_ScanResponse *res)
3106 Z_Entry **entries = NULL;
3107 int num_entries = 0;
3109 printf("Received ScanResponse\n");
3110 print_refid(res->referenceId);
3111 printf("%d entries", *res->numberOfEntriesReturned);
3112 if (res->positionOfTerm)
3113 printf(", position=%d", *res->positionOfTerm);
3115 if (*res->scanStatus != Z_Scan_success)
3116 printf("Scan returned code %d\n", *res->scanStatus);
3119 if ((entries = res->entries->entries))
3120 num_entries = res->entries->num_entries;
3121 for (i = 0; i < num_entries; i++)
3123 int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
3124 if (entries[i]->which == Z_Entry_termInfo)
3126 printf("%c ", i + 1 == pos_term ? '*' : ' ');
3127 display_term(entries[i]->u.termInfo);
3130 display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
3132 if (res->entries->nonsurrogateDiagnostics)
3133 display_diagrecs(res->entries->nonsurrogateDiagnostics,
3134 res->entries->num_nonsurrogateDiagnostics);
3137 void process_sortResponse(Z_SortResponse *res)
3139 printf("Received SortResponse: status=");
3140 switch (*res->sortStatus)
3142 case Z_SortResponse_success:
3143 printf("success"); break;
3144 case Z_SortResponse_partial_1:
3145 printf("partial"); break;
3146 case Z_SortResponse_failure:
3147 printf("failure"); break;
3149 printf("unknown (%d)", *res->sortStatus);
3152 print_refid (res->referenceId);
3153 if (res->diagnostics)
3154 display_diagrecs(res->diagnostics,
3155 res->num_diagnostics);
3158 void process_deleteResultSetResponse(Z_DeleteResultSetResponse *res)
3160 printf("Got deleteResultSetResponse status=%d\n",
3161 *res->deleteOperationStatus);
3162 if (res->deleteListStatuses)
3165 for (i = 0; i < res->deleteListStatuses->num; i++)
3167 printf("%s status=%d\n", res->deleteListStatuses->elements[i]->id,
3168 *res->deleteListStatuses->elements[i]->status);
3173 int cmd_sort_generic(const char *arg, int newset)
3177 if (session_initResponse &&
3178 !ODR_MASK_GET(session_initResponse->options, Z_Options_sort))
3180 printf("Target doesn't support sort\n");
3185 if (send_sortrequest(arg, newset) < 0)
3192 int cmd_sort(const char *arg)
3194 return cmd_sort_generic(arg, 0);
3197 int cmd_sort_newset(const char *arg)
3199 return cmd_sort_generic(arg, 1);
3202 int cmd_scanstep(const char *arg)
3204 scan_stepSize = atoi(arg);
3208 int cmd_scanpos(const char *arg)
3210 int r = sscanf(arg, "%d", &scan_position);
3216 int cmd_scansize(const char *arg)
3218 int r = sscanf(arg, "%d", &scan_size);
3224 static int cmd_scan_common(const char *set, const char *arg)
3226 if (protocol == PROTO_HTTP)
3230 session_connect(cur_host);
3235 if (send_SRW_scanRequest(arg, scan_position, scan_size) < 0)
3240 if (send_SRW_scanRequest(last_scan_line, 1, scan_size) < 0)
3255 printf("Session not initialized yet\n");
3259 if (session_initResponse &&
3260 !ODR_MASK_GET(session_initResponse->options, Z_Options_scan))
3262 printf("Target doesn't support scan\n");
3267 strcpy(last_scan_query, arg);
3268 if (send_scanrequest(set, arg,
3269 scan_position, scan_size, 0) < 0)
3274 if (send_scanrequest(set, last_scan_query,
3275 1, scan_size, last_scan_line) < 0)
3282 int cmd_scan(const char *arg)
3284 return cmd_scan_common(0, arg);
3287 int cmd_setscan(const char *arg)
3289 char setstring[100];
3291 if (sscanf(arg, "%99s%n", setstring, &nor) < 1)
3293 printf("missing set for setscan\n");
3296 return cmd_scan_common(setstring, arg + nor);
3299 int cmd_schema(const char *arg)
3301 xfree(record_schema);
3304 record_schema = xstrdup(arg);
3308 int cmd_format(const char *arg)
3310 const char *cp = arg;
3317 printf("Usage: format <recordsyntax>\n");
3320 for (i = 0; i < recordsyntax_size; i++)
3322 xfree(recordsyntax_list[i]);
3323 recordsyntax_list[i] = 0;
3326 while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3327 && idx < RECORDSYNTAX_MAX)
3329 if (!strcmp(form_str, "none"))
3331 recordsyntax_list[idx] = xstrdup(form_str);
3335 recordsyntax_size = idx;
3339 int cmd_elements(const char *arg)
3341 static Z_ElementSetNames esn;
3342 static char what[100];
3346 elementSetNames = 0;
3350 esn.which = Z_ElementSetNames_generic;
3351 esn.u.generic = what;
3352 elementSetNames = &esn;
3356 int cmd_querytype(const char *arg)
3358 if (!strcmp(arg, "ccl"))
3359 queryType = QueryType_CCL;
3360 else if (!strcmp(arg, "prefix") || !strcmp(arg, "rpn"))
3361 queryType = QueryType_Prefix;
3362 else if (!strcmp(arg, "ccl2rpn") || !strcmp(arg, "cclrpn"))
3363 queryType = QueryType_CCL2RPN;
3364 else if (!strcmp(arg, "cql"))
3365 queryType = QueryType_CQL;
3366 else if (!strcmp(arg, "cql2rpn") || !strcmp(arg, "cqlrpn"))
3367 queryType = QueryType_CQL2RPN;
3370 printf("Querytype must be one of:\n");
3371 printf(" prefix - Prefix query\n");
3372 printf(" ccl - CCL query\n");
3373 printf(" ccl2rpn - CCL query converted to RPN\n");
3374 printf(" cql - CQL\n");
3375 printf(" cql2rpn - CQL query converted to RPN\n");
3381 int cmd_refid(const char *arg)
3386 refid = xstrdup(arg);
3390 int cmd_close(const char *arg)
3396 apdu = zget_APDU(out, Z_APDU_close);
3397 req = apdu->u.close;
3398 *req->closeReason = Z_Close_finished;
3400 printf("Sent close request.\n");
3405 int cmd_packagename(const char* arg)
3407 xfree(esPackageName);
3408 esPackageName = NULL;
3410 esPackageName = xstrdup(arg);
3414 int cmd_proxy(const char* arg)
3419 yazProxy = xstrdup(arg);
3423 int cmd_marccharset(const char *arg)
3428 if (sscanf(arg, "%29s", l1) < 1)
3430 printf("MARC character set is `%s'\n",
3431 marcCharset ? marcCharset: "none");
3436 if (strcmp(l1, "-") && strcmp(l1, "none"))
3437 marcCharset = xstrdup(l1);
3441 int cmd_querycharset(const char *arg)
3446 if (sscanf(arg, "%29s", l1) < 1)
3448 printf("Query character set is `%s'\n",
3449 queryCharset ? queryCharset: "none");
3452 xfree(queryCharset);
3454 if (strcmp(l1, "-") && strcmp(l1, "none"))
3455 queryCharset = xstrdup(l1);
3459 int cmd_displaycharset(const char *arg)
3464 if (sscanf(arg, "%29s", l1) < 1)
3466 printf("Display character set is `%s'\n",
3467 outputCharset ? outputCharset: "none");
3471 xfree(outputCharset);
3473 if (!strcmp(l1, "auto") && codeset)
3477 printf("Display character set: %s\n", codeset);
3478 outputCharset = xstrdup(codeset);
3481 printf("No codeset found on this system\n");
3483 else if (strcmp(l1, "-") && strcmp(l1, "none"))
3484 outputCharset = xstrdup(l1);
3489 int cmd_negcharset(const char *arg)
3494 if (sscanf(arg, "%29s %d %d", l1, &negotiationCharsetRecords,
3495 &negotiationCharsetVersion) < 1)
3497 printf("Negotiation character set `%s'\n",
3498 negotiationCharset ? negotiationCharset: "none");
3499 if (negotiationCharset)
3501 printf("Records in charset %s\n", negotiationCharsetRecords ?
3503 printf("Charneg version %d\n", negotiationCharsetVersion);
3508 xfree(negotiationCharset);
3509 negotiationCharset = NULL;
3510 if (*l1 && strcmp(l1, "-") && strcmp(l1, "none"))
3512 negotiationCharset = xstrdup(l1);
3513 printf("Character set negotiation : %s\n", negotiationCharset);
3519 int cmd_charset(const char* arg)
3521 char l1[30], l2[30], l3[30], l4[30];
3523 *l1 = *l2 = *l3 = *l4 = '\0';
3524 if (sscanf(arg, "%29s %29s %29s %29s", l1, l2, l3, l4) < 1)
3527 cmd_displaycharset("");
3528 cmd_marccharset("");
3529 cmd_querycharset("");
3535 cmd_displaycharset(l2);
3537 cmd_marccharset(l3);
3539 cmd_querycharset(l4);
3544 int cmd_lang(const char* arg)
3547 printf("Current language is `%s'\n", yazLang ? yazLang : "none");
3553 yazLang = xstrdup(arg);
3557 int cmd_source(const char* arg, int echo )
3559 /* first should open the file and read one line at a time.. */
3561 char line[102400], *cp;
3564 fprintf(stderr,"Error in source command use a filename\n");
3568 includeFile = fopen(arg, "r");
3571 fprintf(stderr,"Unable to open file %s for reading\n",arg);
3575 while(!feof(includeFile)) {
3576 memset(line,0,sizeof(line));
3577 fgets(line,sizeof(line),includeFile);
3579 if(strlen(line) < 2) continue;
3580 if(line[0] == '#') continue;
3582 if ((cp = strrchr(line, '\n')))
3586 printf( "processing line: %s\n",line );
3588 process_cmd_line(line);
3591 if(fclose(includeFile)<0) {
3592 perror("unable to close include file");
3598 int cmd_source_echo(const char* arg)
3604 int cmd_source_noecho(const char* arg)
3611 int cmd_subshell(const char* args)
3616 system(getenv("SHELL"));
3622 int cmd_set_berfile(const char *arg)
3624 if (ber_file && ber_file != stdout && ber_file != stderr)
3626 if (!strcmp(arg, ""))
3628 else if (!strcmp(arg, "-"))
3631 ber_file = fopen(arg, "a");
3635 int cmd_set_apdufile(const char *arg)
3637 if(apdu_file && apdu_file != stderr && apdu_file != stderr)
3639 if (!strcmp(arg, ""))
3641 else if (!strcmp(arg, "-"))
3645 apdu_file = fopen(arg, "a");
3647 perror("unable to open apdu log file");
3650 odr_setprint(print, apdu_file);
3654 int cmd_set_cclfile(const char* arg)
3658 bibset = ccl_qual_mk();
3659 inf = fopen(arg, "r");
3661 perror("unable to open CCL file");
3664 ccl_qual_file(bibset, inf);
3667 strcpy(ccl_fields,arg);
3671 int cmd_set_cqlfile(const char* arg)
3673 cql_transform_t newcqltrans;
3675 if ((newcqltrans = cql_transform_open_fname(arg)) == 0) {
3676 perror("unable to open CQL file");
3680 cql_transform_close(cqltrans);
3682 cqltrans = newcqltrans;
3683 strcpy(cql_fields, arg);
3687 int cmd_set_auto_reconnect(const char* arg)
3689 if(strlen(arg)==0) {
3690 auto_reconnect = ! auto_reconnect;
3691 } else if(strcmp(arg,"on")==0) {
3693 } else if(strcmp(arg,"off")==0) {
3696 printf("Error use on or off\n");
3701 printf("Set auto reconnect enabled.\n");
3703 printf("Set auto reconnect disabled.\n");
3709 int cmd_set_auto_wait(const char* arg)
3711 if(strlen(arg)==0) {
3712 auto_wait = ! auto_wait;
3713 } else if(strcmp(arg,"on")==0) {
3715 } else if(strcmp(arg,"off")==0) {
3718 printf("Error use on or off\n");
3723 printf("Set auto wait enabled.\n");
3725 printf("Set auto wait disabled.\n");
3730 int cmd_set_marcdump(const char* arg)
3732 if(marc_file && marc_file != stderr) { /* don't close stdout*/
3736 if (!strcmp(arg, ""))
3738 else if (!strcmp(arg, "-"))
3742 marc_file = fopen(arg, "a");
3744 perror("unable to open marc log file");
3750 this command takes 3 arge {name class oid}
3752 int cmd_register_oid(const char* args) {
3757 {"appctx",CLASS_APPCTX},
3758 {"absyn",CLASS_ABSYN},
3759 {"attset",CLASS_ATTSET},
3760 {"transyn",CLASS_TRANSYN},
3761 {"diagset",CLASS_DIAGSET},
3762 {"recsyn",CLASS_RECSYN},
3763 {"resform",CLASS_RESFORM},
3764 {"accform",CLASS_ACCFORM},
3765 {"extserv",CLASS_EXTSERV},
3766 {"userinfo",CLASS_USERINFO},
3767 {"elemspec",CLASS_ELEMSPEC},
3768 {"varset",CLASS_VARSET},
3769 {"schema",CLASS_SCHEMA},
3770 {"tagset",CLASS_TAGSET},
3771 {"general",CLASS_GENERAL},
3772 {0,(enum oid_class) 0}
3774 char oname_str[101], oclass_str[101], oid_str[101];
3776 oid_class oidclass = CLASS_GENERAL;
3777 Odr_oid oid[OID_SIZE];
3779 if (sscanf(args, "%100[^ ] %100[^ ] %100s",
3780 oname_str,oclass_str, oid_str) < 1) {
3781 printf("Error in register command \n");
3785 for (i = 0; oid_classes[i].className; i++) {
3786 if (!strcmp(oid_classes[i].className, oclass_str))
3788 oidclass=oid_classes[i].oclass;
3793 if(!(oid_classes[i].className)) {
3794 printf("Unknown oid class %s\n",oclass_str);
3798 oid_dotstring_to_oid(oid_str, oid);
3800 if (yaz_oid_add(yaz_oid_std(), oidclass, oname_str, oid))
3802 printf("oid %s already exists, registration failed\n",
3808 int cmd_push_command(const char* arg)
3810 #if HAVE_READLINE_HISTORY_H
3814 fprintf(stderr,"Not compiled with the readline/history module\n");
3819 void source_rc_file(const char *rc_file)
3821 /* If rc_file != NULL, source that. Else
3822 Look for .yazclientrc and read it if it exists.
3823 If it does not exist, read $HOME/.yazclientrc instead */
3824 struct stat statbuf;
3828 if (stat(rc_file, &statbuf) == 0)
3829 cmd_source(rc_file, 0);
3832 fprintf(stderr, "yaz_client: cannot source '%s'\n", rc_file);
3839 strcpy(fname, ".yazclientrc");
3840 if (stat(fname, &statbuf)==0)
3842 cmd_source(fname, 0);
3846 const char* homedir = getenv("HOME");
3849 sprintf(fname, "%.800s/%s", homedir, ".yazclientrc");
3850 if (stat(fname, &statbuf)==0)
3851 cmd_source(fname, 0);
3857 void add_to_readline_history(void *client_data, const char *line)
3859 #if HAVE_READLINE_HISTORY_H
3865 static void initialize(const char *rc_file)
3870 if (!(out = odr_createmem(ODR_ENCODE)) ||
3871 !(in = odr_createmem(ODR_DECODE)) ||
3872 !(print = odr_createmem(ODR_PRINT)))
3874 fprintf(stderr, "failed to allocate ODR streams\n");
3878 setvbuf(stdout, 0, _IONBF, 0);
3880 odr_setprint(print, apdu_file);
3882 bibset = ccl_qual_mk();
3883 inf = fopen(ccl_fields, "r");
3886 ccl_qual_file(bibset, inf);
3890 cqltrans = cql_transform_open_fname(cql_fields);
3891 /* If this fails, no problem: we detect cqltrans == 0 later */
3893 #if HAVE_READLINE_READLINE_H
3894 rl_attempted_completion_function =
3895 (char **(*)(const char *, int, int)) readline_completer;
3897 for(i = 0; i < maxOtherInfosSupported; ++i) {
3898 extraOtherInfos[i].oid[0] = -1;
3899 extraOtherInfos[i].value = 0;
3902 cmd_format("usmarc");
3904 source_rc_file(rc_file);
3906 file_history = file_history_new();
3907 file_history_load(file_history);
3908 file_history_trav(file_history, 0, add_to_readline_history);
3912 #if HAVE_GETTIMEOFDAY
3913 struct timeval tv_start;
3917 static void handle_srw_record(Z_SRW_record *rec)
3919 if (rec->recordPosition)
3921 printf("pos=%d", *rec->recordPosition);
3922 setno = *rec->recordPosition + 1;
3924 if (rec->recordSchema)
3925 printf(" schema=%s", rec->recordSchema);
3927 if (rec->recordData_buf && rec->recordData_len)
3929 fwrite(rec->recordData_buf, 1, rec->recordData_len, stdout);
3931 fwrite(rec->recordData_buf, 1, rec->recordData_len, marc_file);
3938 static void handle_srw_explain_response(Z_SRW_explainResponse *res)
3940 handle_srw_record(&res->record);
3943 static void handle_srw_response(Z_SRW_searchRetrieveResponse *res)
3947 printf("Received SRW SearchRetrieve Response\n");
3949 for (i = 0; i<res->num_diagnostics; i++)
3951 if (res->diagnostics[i].uri)
3952 printf("SRW diagnostic %s\n",
3953 res->diagnostics[i].uri);
3955 printf("SRW diagnostic missing or could not be decoded\n");
3956 if (res->diagnostics[i].message)
3957 printf("Message: %s\n", res->diagnostics[i].message);
3958 if (res->diagnostics[i].details)
3959 printf("Details: %s\n", res->diagnostics[i].details);
3961 if (res->numberOfRecords)
3962 printf("Number of hits: %d\n", *res->numberOfRecords);
3963 for (i = 0; i<res->num_records; i++)
3964 handle_srw_record(res->records + i);
3967 static void handle_srw_scan_term(Z_SRW_scanTerm *term)
3969 if (term->displayTerm)
3970 printf("%s:", term->displayTerm);
3971 else if (term->value)
3972 printf("%s:", term->value);
3974 printf("No value:");
3975 if (term->numberOfRecords)
3976 printf(" %d", *term->numberOfRecords);
3977 if (term->whereInList)
3978 printf(" %s", term->whereInList);
3979 if (term->value && term->displayTerm)
3980 printf(" %s", term->value);
3982 strcpy(last_scan_line, term->value);
3986 static void handle_srw_scan_response(Z_SRW_scanResponse *res)
3990 printf("Received SRW Scan Response\n");
3992 for (i = 0; i<res->num_diagnostics; i++)
3994 if (res->diagnostics[i].uri)
3995 printf("SRW diagnostic %s\n",
3996 res->diagnostics[i].uri);
3998 printf("SRW diagnostic missing or could not be decoded\n");
3999 if (res->diagnostics[i].message)
4000 printf("Message: %s\n", res->diagnostics[i].message);
4001 if (res->diagnostics[i].details)
4002 printf("Details: %s\n", res->diagnostics[i].details);
4005 for (i = 0; i<res->num_terms; i++)
4006 handle_srw_scan_term(res->terms + i);
4009 static void http_response(Z_HTTP_Response *hres)
4012 const char *connection_head = z_HTTP_header_lookup(hres->headers,
4014 if (!yaz_srw_check_content_type(hres))
4015 printf("Content type does not appear to be XML\n");
4018 Z_SOAP *soap_package = 0;
4019 ODR o = odr_createmem(ODR_DECODE);
4020 Z_SOAP_Handler soap_handlers[3] = {
4021 {YAZ_XMLNS_SRU_v1_1, 0, (Z_SOAP_fun) yaz_srw_codec},
4022 {YAZ_XMLNS_UPDATE_v0_9, 0, (Z_SOAP_fun) yaz_ucp_codec},
4025 ret = z_soap_codec(o, &soap_package,
4026 &hres->content_buf, &hres->content_len,
4028 if (!ret && soap_package->which == Z_SOAP_generic)
4030 Z_SRW_PDU *sr = (Z_SRW_PDU *) soap_package->u.generic->p;
4031 if (sr->which == Z_SRW_searchRetrieve_response)
4032 handle_srw_response(sr->u.response);
4033 else if (sr->which == Z_SRW_explain_response)
4034 handle_srw_explain_response(sr->u.explain_response);
4035 else if (sr->which == Z_SRW_scan_response)
4036 handle_srw_scan_response(sr->u.scan_response);
4037 else if (sr->which == Z_SRW_update_response)
4038 printf("Got update response. Status: %s\n",
4039 sr->u.update_response->operationStatus);
4043 else if (soap_package && (soap_package->which == Z_SOAP_fault
4044 || soap_package->which == Z_SOAP_error))
4046 printf("HTTP Error Status=%d\n", hres->code);
4047 printf("SOAP Fault code %s\n",
4048 soap_package->u.fault->fault_code);
4049 printf("SOAP Fault string %s\n",
4050 soap_package->u.fault->fault_string);
4051 if (soap_package->u.fault->details)
4052 printf("SOAP Details %s\n",
4053 soap_package->u.fault->details);
4057 printf("z_soap_codec failed. (no SOAP error)\n");
4064 if (hres->code != 200)
4066 printf("HTTP Error Status=%d\n", hres->code);
4070 printf("Decoding of SRW package failed\n");
4076 if (!strcmp(hres->version, "1.0"))
4078 /* HTTP 1.0: only if Keep-Alive we stay alive.. */
4079 if (!connection_head || strcmp(connection_head, "Keep-Alive"))
4084 /* HTTP 1.1: only if no close we stay alive .. */
4085 if (connection_head && !strcmp(connection_head, "close"))
4092 void wait_and_handle_response(int one_response_only)
4094 int reconnect_ok = 1;
4097 int netbufferlen = 0;
4098 #if HAVE_GETTIMEOFDAY
4100 struct timeval tv_end;
4106 res = cs_get(conn, &netbuffer, &netbufferlen);
4107 if (reconnect_ok && res <= 0 && protocol == PROTO_HTTP)
4111 session_connect(cur_host);
4118 buf_out = odr_getbuf(out, &len_out, 0);
4120 do_hex_dump(buf_out, len_out);
4122 cs_put(conn, buf_out, len_out);
4130 printf("Target closed connection\n");
4134 #if HAVE_GETTIMEOFDAY
4135 if (got_tv_end == 0)
4136 gettimeofday(&tv_end, 0); /* count first one only */
4140 odr_reset(in); /* release APDU from last round */
4142 do_hex_dump(netbuffer, res);
4143 odr_setbuf(in, netbuffer, res, 0);
4145 if (!z_GDU(in, &gdu, 0, 0))
4147 FILE *f = ber_file ? ber_file : stdout;
4148 odr_perror(in, "Decoding incoming APDU");
4149 fprintf(f, "[Near %ld]\n", (long) odr_offset(in));
4150 fprintf(f, "Packet dump:\n---------\n");
4151 odr_dumpBER(f, netbuffer, res);
4152 fprintf(f, "---------\n");
4155 z_GDU(print, &gdu, 0, 0);
4158 if (conn && cs_more(conn))
4163 odr_dumpBER(ber_file, netbuffer, res);
4164 if (apdu_file && !z_GDU(print, &gdu, 0, 0))
4166 odr_perror(print, "Failed to print incoming APDU");
4170 if (gdu->which == Z_GDU_Z3950)
4172 Z_APDU *apdu = gdu->u.z3950;
4175 case Z_APDU_initResponse:
4176 process_initResponse(apdu->u.initResponse);
4178 case Z_APDU_searchResponse:
4179 process_searchResponse(apdu->u.searchResponse);
4181 case Z_APDU_scanResponse:
4182 process_scanResponse(apdu->u.scanResponse);
4184 case Z_APDU_presentResponse:
4185 print_refid(apdu->u.presentResponse->referenceId);
4187 *apdu->u.presentResponse->numberOfRecordsReturned;
4188 if (apdu->u.presentResponse->records)
4189 display_records(apdu->u.presentResponse->records);
4191 printf("No records.\n");
4192 printf("nextResultSetPosition = %d\n",
4193 *apdu->u.presentResponse->nextResultSetPosition);
4195 case Z_APDU_sortResponse:
4196 process_sortResponse(apdu->u.sortResponse);
4198 case Z_APDU_extendedServicesResponse:
4199 printf("Got extended services response\n");
4200 process_ESResponse(apdu->u.extendedServicesResponse);
4203 printf("Target has closed the association.\n");
4204 process_close(apdu->u.close);
4206 case Z_APDU_resourceControlRequest:
4207 process_resourceControlRequest
4208 (apdu->u.resourceControlRequest);
4210 case Z_APDU_deleteResultSetResponse:
4211 process_deleteResultSetResponse(apdu->u.
4212 deleteResultSetResponse);
4215 printf("Received unknown APDU type (%d).\n",
4221 else if (gdu->which == Z_GDU_HTTP_Response)
4223 http_response(gdu->u.HTTP_Response);
4226 if (one_response_only)
4228 if (conn && !cs_more(conn))
4231 #if HAVE_GETTIMEOFDAY
4235 printf("S/U S/U=%ld/%ld %ld/%ld",
4236 (long) tv_start.tv_sec,
4237 (long) tv_start.tv_usec,
4238 (long) tv_end.tv_sec,
4239 (long) tv_end.tv_usec);
4241 printf("Elapsed: %.6f\n",
4242 (double) tv_end.tv_usec / 1e6 + tv_end.tv_sec -
4243 ((double) tv_start.tv_usec / 1e6 + tv_start.tv_sec));
4250 int cmd_cclparse(const char* arg)
4253 struct ccl_rpn_node *rpn=NULL;
4256 rpn = ccl_find_str(bibset, arg, &error, &pos);
4259 int ioff = 3+strlen(last_cmd)+1+pos;
4260 printf("%*s^ - ", ioff, " ");
4261 printf("%s\n", ccl_err_msg(error));
4267 ccl_pr_tree(rpn, stdout);
4271 ccl_rpn_delete(rpn);
4279 int cmd_set_otherinfo(const char* args)
4281 char oidstr[101], otherinfoString[101];
4285 sscan_res = sscanf(args, "%d %100[^ ] %100s",
4286 &otherinfoNo, oidstr, otherinfoString);
4288 if (sscan_res > 0 && otherinfoNo >= maxOtherInfosSupported) {
4289 printf("Error otherinfo index too large (%d>=%d)\n",
4290 otherinfoNo,maxOtherInfosSupported);
4297 /* reset this otherinfo */
4298 extraOtherInfos[otherinfoNo].oid[0] = -1;
4299 xfree(extraOtherInfos[otherinfoNo].value);
4300 extraOtherInfos[otherinfoNo].value = 0;
4303 if (sscan_res != 3) {
4304 printf("Error in set_otherinfo command \n");
4309 NMEM oid_tmp = nmem_create();
4310 const Odr_oid *oid =
4311 yaz_string_to_oid_nmem(yaz_oid_std(),
4312 CLASS_GENERAL, oidstr, oid_tmp);
4313 oid_oidcpy(extraOtherInfos[otherinfoNo].oid, oid);
4315 xfree(extraOtherInfos[otherinfoNo].value);
4316 extraOtherInfos[otherinfoNo].value = xstrdup(otherinfoString);
4318 nmem_destroy(oid_tmp);
4324 int cmd_sleep(const char* args )
4333 printf("Done sleeping %d seconds\n", sec);
4338 int cmd_list_otherinfo(const char* args)
4345 if (i >= maxOtherInfosSupported)
4347 printf("Error otherinfo index to large (%d>%d)\n",i,maxOtherInfosSupported);
4350 if (extraOtherInfos[i].value)
4352 char name_oid[OID_STR_MAX];
4355 yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4357 printf(" otherinfo %d %s %s\n",
4358 i, name ? name : "null",
4359 extraOtherInfos[i].value);
4365 for(i = 0; i < maxOtherInfosSupported; ++i)
4367 if (extraOtherInfos[i].value)
4369 char name_oid[OID_STR_MAX];
4372 yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4374 printf(" otherinfo %d %s %s\n",
4375 i, name ? name : "null",
4376 extraOtherInfos[i].value);
4384 int cmd_list_all(const char* args) {
4387 /* connection options */
4389 printf("Connected to : %s\n",last_open_command);
4391 if(last_open_command)
4392 printf("Not connected to : %s\n",last_open_command);
4394 printf("Not connected : \n");
4397 if(yazProxy) printf("using proxy : %s\n",yazProxy);
4399 printf("auto_reconnect : %s\n",auto_reconnect?"on":"off");
4400 printf("auto_wait : %s\n",auto_wait?"on":"off");
4403 printf("Authentication : none\n");
4405 switch(auth->which) {
4406 case Z_IdAuthentication_idPass:
4407 printf("Authentication : IdPass\n");
4408 printf(" Login User : %s\n",auth->u.idPass->userId?auth->u.idPass->userId:"");
4409 printf(" Login Group : %s\n",auth->u.idPass->groupId?auth->u.idPass->groupId:"");
4410 printf(" Password : %s\n",auth->u.idPass->password?auth->u.idPass->password:"");
4412 case Z_IdAuthentication_open:
4413 printf("Authentication : psOpen\n");
4414 printf(" Open string : %s\n",auth->u.open);
4417 printf("Authentication : Unknown\n");
4420 if (negotiationCharset)
4421 printf("Neg. Character set : `%s'\n", negotiationCharset);
4425 for (i = 0; i<num_databaseNames; i++) printf("%s ",databaseNames[i]);
4429 printf("CCL file : %s\n",ccl_fields);
4430 printf("CQL file : %s\n",cql_fields);
4431 printf("Query type : %s\n",query_type_as_string(queryType));
4433 printf("Named Result Sets : %s\n",setnumber==-1?"off":"on");
4435 /* piggy back options */
4436 printf("ssub/lslb/mspn : %d/%d/%d\n",smallSetUpperBound,largeSetLowerBound,mediumSetPresentNumber);
4438 /* print present related options */
4439 if (recordsyntax_size > 0)
4441 printf("Format : %s\n", recordsyntax_list[0]);
4443 printf("Schema : %s\n",record_schema ? record_schema : "not set");
4444 printf("Elements : %s\n",elementSetNames?elementSetNames->u.generic:"");
4446 /* loging options */
4447 printf("APDU log : %s\n",apdu_file?"on":"off");
4448 printf("Record log : %s\n",marc_file?"on":"off");
4451 printf("Other Info: \n");
4452 cmd_list_otherinfo("");
4457 int cmd_clear_otherinfo(const char* args)
4459 if(strlen(args)>0) {
4460 int otherinfoNo = atoi(args);
4461 if (otherinfoNo >= maxOtherInfosSupported) {
4462 printf("Error otherinfo index too large (%d>=%d)\n",
4463 otherinfoNo, maxOtherInfosSupported);
4466 if (extraOtherInfos[otherinfoNo].value)
4468 /* only clear if set. */
4469 extraOtherInfos[otherinfoNo].oid[0] = -1;
4470 xfree(extraOtherInfos[otherinfoNo].value);
4471 extraOtherInfos[otherinfoNo].value = 0;
4475 for(i = 0; i < maxOtherInfosSupported; ++i)
4477 if (extraOtherInfos[i].value)
4479 extraOtherInfos[i].oid[0] = -1;
4480 xfree(extraOtherInfos[i].value);
4481 extraOtherInfos[i].value = 0;
4488 int cmd_wait_response(const char *arg)
4490 int wait_for = atoi(arg);
4492 if( wait_for < 1 ) {
4496 for( i=0 ; i < wait_for ; ++i ) {
4497 wait_and_handle_response(1);
4502 static int cmd_help(const char *line);
4504 typedef char *(*completerFunctionType)(const char *text, int state);
4508 int (*fun)(const char *arg);
4510 completerFunctionType rl_completerfunction;
4511 int complete_filenames;
4512 const char **local_tabcompletes;
4514 {"open", cmd_open, "('tcp'|'ssl')':<host>[':'<port>][/<db>]",NULL,0,NULL},
4515 {"quit", cmd_quit, "",NULL,0,NULL},
4516 {"find", cmd_find, "<query>",NULL,0,NULL},
4517 {"delete", cmd_delete, "<setname>",NULL,0,NULL},
4518 {"base", cmd_base, "<base-name>",NULL,0,NULL},
4519 {"show", cmd_show, "<rec#>['+'<#recs>['+'<setname>]]",NULL,0,NULL},
4520 {"setscan", cmd_setscan, "<term>",NULL,0,NULL},
4521 {"scan", cmd_scan, "<term>",NULL,0,NULL},
4522 {"scanstep", cmd_scanstep, "<size>",NULL,0,NULL},
4523 {"scanpos", cmd_scanpos, "<size>",NULL,0,NULL},
4524 {"scansize", cmd_scansize, "<size>",NULL,0,NULL},
4525 {"sort", cmd_sort, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4526 {"sort+", cmd_sort_newset, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4527 {"authentication", cmd_authentication, "<acctstring>",NULL,0,NULL},
4528 {"lslb", cmd_lslb, "<largeSetLowerBound>",NULL,0,NULL},
4529 {"ssub", cmd_ssub, "<smallSetUpperBound>",NULL,0,NULL},
4530 {"mspn", cmd_mspn, "<mediumSetPresentNumber>",NULL,0,NULL},
4531 {"status", cmd_status, "",NULL,0,NULL},
4532 {"setnames", cmd_setnames, "",NULL,0,NULL},
4533 {"cancel", cmd_cancel, "",NULL,0,NULL},
4534 {"cancel_find", cmd_cancel_find, "<query>",NULL,0,NULL},
4535 {"format", cmd_format, "<recordsyntax>",complete_format,0,NULL},
4536 {"schema", cmd_schema, "<schema>",complete_schema,0,NULL},
4537 {"elements", cmd_elements, "<elementSetName>",NULL,0,NULL},
4538 {"close", cmd_close, "",NULL,0,NULL},
4539 {"querytype", cmd_querytype, "<type>",complete_querytype,0,NULL},
4540 {"refid", cmd_refid, "<id>",NULL,0,NULL},
4541 {"itemorder", cmd_itemorder, "ill|item|xml <itemno>",NULL,0,NULL},
4542 {"update", cmd_update, "<action> <recid> [<doc>]",NULL,0,NULL},
4543 {"update0", cmd_update0, "<action> <recid> [<doc>]",NULL,0,NULL},
4544 {"xmles", cmd_xmles, "<OID> <doc>",NULL,0,NULL},
4545 {"packagename", cmd_packagename, "<packagename>",NULL,0,NULL},
4546 {"proxy", cmd_proxy, "[('tcp'|'ssl')]<host>[':'<port>]",NULL,0,NULL},
4547 {"charset", cmd_charset, "<nego_charset> <output_charset>",NULL,0,NULL},
4548 {"negcharset", cmd_negcharset, "<nego_charset>",NULL,0,NULL},
4549 {"displaycharset", cmd_displaycharset, "<output_charset>",NULL,0,NULL},
4550 {"marccharset", cmd_marccharset, "<charset_name>",NULL,0,NULL},
4551 {"querycharset", cmd_querycharset, "<charset_name>",NULL,0,NULL},
4552 {"lang", cmd_lang, "<language_code>",NULL,0,NULL},
4553 {"source", cmd_source_echo, "<filename>",NULL,1,NULL},
4554 {".", cmd_source_echo, "<filename>",NULL,1,NULL},
4555 {"!", cmd_subshell, "Subshell command",NULL,1,NULL},
4556 {"set_apdufile", cmd_set_apdufile, "<filename>",NULL,1,NULL},
4557 {"set_berfile", cmd_set_berfile, "<filename>",NULL,1,NULL},
4558 {"set_marcdump", cmd_set_marcdump," <filename>",NULL,1,NULL},
4559 {"set_cclfile", cmd_set_cclfile," <filename>",NULL,1,NULL},
4560 {"set_cqlfile", cmd_set_cqlfile," <filename>",NULL,1,NULL},
4561 {"set_auto_reconnect", cmd_set_auto_reconnect," on|off",complete_auto_reconnect,1,NULL},
4562 {"set_auto_wait", cmd_set_auto_wait," on|off",complete_auto_reconnect,1,NULL},
4563 {"set_otherinfo", cmd_set_otherinfo,"<otherinfoinddex> <oid> <string>",NULL,0,NULL},
4564 {"sleep", cmd_sleep,"<seconds>",NULL,0,NULL},
4565 {"register_oid", cmd_register_oid,"<name> <class> <oid>",NULL,0,NULL},
4566 {"push_command", cmd_push_command,"<command>",command_generator,0,NULL},
4567 {"register_tab", cmd_register_tab,"<commandname> <tab>",command_generator,0,NULL},
4568 {"cclparse", cmd_cclparse,"<ccl find command>",NULL,0,NULL},
4569 {"list_otherinfo",cmd_list_otherinfo,"[otherinfoinddex]",NULL,0,NULL},
4570 {"list_all",cmd_list_all,"",NULL,0,NULL},
4571 {"clear_otherinfo",cmd_clear_otherinfo,"",NULL,0,NULL},
4572 {"wait_response",cmd_wait_response,"<number>",NULL,0,NULL},
4573 /* Server Admin Functions */
4574 {"adm-reindex", cmd_adm_reindex, "<database-name>",NULL,0,NULL},
4575 {"adm-truncate", cmd_adm_truncate, "('database'|'index')<object-name>",NULL,0,NULL},
4576 {"adm-create", cmd_adm_create, "",NULL,0,NULL},
4577 {"adm-drop", cmd_adm_drop, "('database'|'index')<object-name>",NULL,0,NULL},
4578 {"adm-import", cmd_adm_import, "<record-type> <dir> <pattern>",NULL,0,NULL},
4579 {"adm-refresh", cmd_adm_refresh, "",NULL,0,NULL},
4580 {"adm-commit", cmd_adm_commit, "",NULL,0,NULL},
4581 {"adm-shutdown", cmd_adm_shutdown, "",NULL,0,NULL},
4582 {"adm-startup", cmd_adm_startup, "",NULL,0,NULL},
4583 {"explain", cmd_explain, "", NULL, 0, NULL},
4584 {"options", cmd_options, "", NULL, 0, NULL},
4585 {"zversion", cmd_zversion, "", NULL, 0, NULL},
4586 {"help", cmd_help, "", NULL,0,NULL},
4587 {"init", cmd_init, "", NULL,0,NULL},
4588 {"sru", cmd_sru, "<method> <version>", NULL,0,NULL},
4589 {"exit", cmd_quit, "",NULL,0,NULL},
4593 static int cmd_help(const char *line)
4599 sscanf(line, "%20s", topic);
4602 printf("Commands:\n");
4603 for (i = 0; cmd_array[i].cmd; i++)
4604 if (*topic == 0 || strcmp(topic, cmd_array[i].cmd) == 0)
4605 printf(" %s %s\n", cmd_array[i].cmd, cmd_array[i].ad);
4606 if (!strcmp(topic, "find"))
4609 printf(" \"term\" Simple Term\n");
4610 printf(" @attr [attset] type=value op Attribute\n");
4611 printf(" @and opl opr And\n");
4612 printf(" @or opl opr Or\n");
4613 printf(" @not opl opr And-Not\n");
4614 printf(" @set set Result set\n");
4615 printf(" @prox exl dist ord rel uc ut Proximity. Use help prox\n");
4617 printf("Bib-1 attribute types\n");
4619 printf("4=Title 7=ISBN 8=ISSN 30=Date 62=Abstract 1003=Author 1016=Any\n");
4620 printf("2=Relation: ");
4621 printf("1< 2<= 3= 4>= 5> 6!= 102=Relevance\n");
4622 printf("3=Position: ");
4623 printf("1=First in Field 2=First in subfield 3=Any position\n");
4624 printf("4=Structure: ");
4625 printf("1=Phrase 2=Word 3=Key 4=Year 5=Date 6=WordList\n");
4626 printf("5=Truncation: ");
4627 printf("1=Right 2=Left 3=L&R 100=No 101=# 102=Re-1 103=Re-2\n");
4628 printf("6=Completeness:");
4629 printf("1=Incomplete subfield 2=Complete subfield 3=Complete field\n");
4631 if (!strcmp(topic, "prox"))
4633 printf("Proximity:\n");
4634 printf(" @prox exl dist ord rel uc ut\n");
4635 printf(" exl: exclude flag . 0=include, 1=exclude.\n");
4636 printf(" dist: distance integer.\n");
4637 printf(" ord: order flag. 0=unordered, 1=ordered.\n");
4638 printf(" rel: relation integer. 1< 2<= 3= 4>= 5> 6!= .\n");
4639 printf(" uc: unit class. k=known, p=private.\n");
4640 printf(" ut: unit type. 1=character, 2=word, 3=sentence,\n");
4641 printf(" 4=paragraph, 5=section, 6=chapter, 7=document,\n");
4642 printf(" 8=element, 9=subelement, 10=elementType, 11=byte.\n");
4643 printf("\nExamples:\n");
4644 printf(" Search for a and b in-order at most 3 words apart:\n");
4645 printf(" @prox 0 3 1 2 k 2 a b\n");
4646 printf(" Search for any order of a and b next to each other:\n");
4647 printf(" @prox 0 1 0 3 k 2 a b\n");
4652 int cmd_register_tab(const char* arg)
4654 #if HAVE_READLINE_READLINE_H
4655 char command[101], tabargument[101];
4658 const char** tabslist;
4660 if (sscanf(arg, "%100s %100s", command, tabargument) < 1) {
4664 /* locate the amdn in the list */
4665 for (i = 0; cmd_array[i].cmd; i++) {
4666 if (!strncmp(cmd_array[i].cmd, command, strlen(command))) {
4671 if (!cmd_array[i].cmd) {
4672 fprintf(stderr,"Unknown command %s\n",command);
4677 if (!cmd_array[i].local_tabcompletes)
4678 cmd_array[i].local_tabcompletes = (const char **) calloc(1,sizeof(char**));
4682 tabslist = cmd_array[i].local_tabcompletes;
4683 for(; tabslist && *tabslist; tabslist++) {
4687 cmd_array[i].local_tabcompletes = (const char **)
4688 realloc(cmd_array[i].local_tabcompletes,
4689 (num_of_tabs+2)*sizeof(char**));
4690 tabslist = cmd_array[i].local_tabcompletes;
4691 tabslist[num_of_tabs] = strdup(tabargument);
4692 tabslist[num_of_tabs+1] = NULL;
4698 void process_cmd_line(char* line)
4701 char word[32], arg[10240];
4703 #if HAVE_GETTIMEOFDAY
4704 gettimeofday(&tv_start, 0);
4707 if ((res = sscanf(line, "%31s %10239[^;]", word, arg)) <= 0)
4709 strcpy(word, last_cmd);
4714 strcpy(last_cmd, word);
4716 /* removed tailing spaces from the arg command */
4719 char* lastnonspace=NULL;
4722 if(!isspace(*(unsigned char *) p)) {
4727 *(++lastnonspace) = 0;
4730 for (i = 0; cmd_array[i].cmd; i++)
4731 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
4733 res = (*cmd_array[i].fun)(arg);
4737 if (!cmd_array[i].cmd) /* dump our help-screen */
4739 printf("Unknown command: %s.\n", word);
4740 printf("Type 'help' for list of commands\n");
4744 if(apdu_file) fflush(apdu_file);
4746 if (res >= 2 && auto_wait)
4747 wait_and_handle_response(0);
4755 static char *command_generator(const char *text, int state)
4757 #if HAVE_READLINE_READLINE_H
4762 for( ; cmd_array[idx].cmd; ++idx) {
4763 if (!strncmp(cmd_array[idx].cmd, text, strlen(text))) {
4764 ++idx; /* skip this entry on the next run */
4765 return strdup(cmd_array[idx-1].cmd);
4772 #if HAVE_READLINE_READLINE_H
4773 static const char** default_completer_list = NULL;
4775 static char* default_completer(const char* text, int state)
4777 return complete_from_list(default_completer_list, text, state);
4781 #if HAVE_READLINE_READLINE_H
4784 This function only known how to complete on the first word
4786 char **readline_completer(char *text, int start, int end)
4788 completerFunctionType completerToUse;
4791 #if HAVE_READLINE_RL_COMPLETION_MATCHES
4792 char** res = rl_completion_matches(text, command_generator);
4794 char** res = completion_matches(text,
4795 (CPFunction*)command_generator);
4797 rl_attempted_completion_over = 1;
4800 char arg[10240],word[32];
4802 if ((res = sscanf(rl_line_buffer, "%31s %10239[^;]", word, arg)) <= 0) {
4803 rl_attempted_completion_over = 1;
4807 for (i = 0; cmd_array[i].cmd; i++)
4808 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
4811 if(!cmd_array[i].cmd)
4814 default_completer_list = cmd_array[i].local_tabcompletes;
4816 completerToUse = cmd_array[i].rl_completerfunction;
4817 if (!completerToUse)
4818 { /* if command completer is not defined use the default completer */
4819 completerToUse = default_completer;
4821 if (completerToUse) {
4822 #ifdef HAVE_READLINE_RL_COMPLETION_MATCHES
4824 rl_completion_matches(text, completerToUse);
4827 completion_matches(text, (CPFunction*)completerToUse);
4829 if (!cmd_array[i].complete_filenames)
4830 rl_attempted_completion_over = 1;
4833 if (!cmd_array[i].complete_filenames)
4834 rl_attempted_completion_over = 1;
4842 void ctrl_c_handler(int x)
4848 static void client(void)
4855 signal(SIGINT, ctrl_c_handler);
4858 #if HAVE_GETTIMEOFDAY
4859 gettimeofday(&tv_start, 0);
4864 char *line_in = NULL;
4865 #if HAVE_READLINE_READLINE_H
4868 line_in=readline(C_PROMPT);
4871 #if HAVE_READLINE_HISTORY_H
4873 add_history(line_in);
4875 strncpy(line, line_in, sizeof(line)-1);
4884 if (!fgets(line, sizeof(line)-1, stdin))
4886 if ((end_p = strchr(line, '\n')))
4890 file_history_add_line(file_history, line);
4891 process_cmd_line(line);
4895 static void show_version(void)
4899 yaz_version(vstr, 0);
4900 printf("YAZ version: %s\n", YAZ_VERSION);
4901 if (strcmp(vstr, YAZ_VERSION))
4902 printf("YAZ DLL/SO: %s\n", vstr);
4906 int main(int argc, char **argv)
4909 char *open_command = 0;
4910 char *auth_command = 0;
4912 const char *rc_file = 0;
4916 if (!setlocale(LC_CTYPE, ""))
4917 fprintf(stderr, "setlocale failed\n");
4921 codeset = nl_langinfo(CODESET);
4925 outputCharset = xstrdup(codeset);
4927 ODR_MASK_SET(&z3950_options, Z_Options_search);
4928 ODR_MASK_SET(&z3950_options, Z_Options_present);
4929 ODR_MASK_SET(&z3950_options, Z_Options_namedResultSets);
4930 ODR_MASK_SET(&z3950_options, Z_Options_triggerResourceCtrl);
4931 ODR_MASK_SET(&z3950_options, Z_Options_scan);
4932 ODR_MASK_SET(&z3950_options, Z_Options_sort);
4933 ODR_MASK_SET(&z3950_options, Z_Options_extendedServices);
4934 ODR_MASK_SET(&z3950_options, Z_Options_delSet);
4935 ODR_MASK_SET(&z3950_options, Z_Options_negotiationModel);
4937 while ((ret = options("k:c:q:a:b:m:v:p:u:t:Vxd:f:", argv, argc, &arg)) != -2)
4944 open_command = (char *) xmalloc(strlen(arg)+6);
4945 strcpy(open_command, "open ");
4946 strcat(open_command, arg);
4950 fprintf(stderr, "%s: Specify at most one server address\n",
4956 if (!strcmp(arg, "-"))
4959 apdu_file=fopen(arg, "a");
4962 if (!strcmp(arg, "-"))
4965 ber_file=fopen(arg, "a");
4968 strncpy(ccl_fields, arg, sizeof(ccl_fields)-1);
4969 ccl_fields[sizeof(ccl_fields)-1] = '\0';
4972 dump_file_prefix = arg;
4978 kilobytes = atoi(arg);
4981 if (!(marc_file = fopen(arg, "a")))
4988 yazProxy = xstrdup(arg);
4991 strncpy(cql_fields, arg, sizeof(cql_fields)-1);
4992 cql_fields[sizeof(cql_fields)-1] = '\0';
4995 outputCharset = xstrdup(arg);
5000 auth_command = (char *) xmalloc(strlen(arg)+6);
5001 strcpy(auth_command, "auth ");
5002 strcat(auth_command, arg);
5006 yaz_log_init(yaz_log_mask_str(arg), "", 0);
5015 fprintf(stderr, "Usage: %s "
5035 initialize(rc_file);
5038 #ifdef HAVE_GETTIMEOFDAY
5039 gettimeofday(&tv_start, 0);
5041 process_cmd_line(auth_command);
5042 #if HAVE_READLINE_HISTORY_H
5043 add_history(auth_command);
5045 xfree(auth_command);
5049 #ifdef HAVE_GETTIMEOFDAY
5050 gettimeofday(&tv_start, 0);
5052 process_cmd_line(open_command);
5053 #if HAVE_READLINE_HISTORY_H
5054 add_history(open_command);
5056 xfree(open_command);
5065 * indent-tabs-mode: nil
5067 * vim: shiftwidth=4 tabstop=8 expandtab