2 * Copyright (C) 1995-2007, Index Data ApS
3 * See the file LICENSE for details.
5 * $Id: client.c,v 1.356 2007-12-27 13:27:40 adam Exp $
8 * \brief yaz-client program
20 #include <sys/types.h>
38 #if HAVE_OPENSSL_SSL_H
39 #include <openssl/bio.h>
40 #include <openssl/crypto.h>
41 #include <openssl/x509.h>
42 #include <openssl/pem.h>
43 #include <openssl/ssl.h>
44 #include <openssl/err.h>
51 #define S_ISREG(x) (x & _S_IFREG)
52 #define S_ISDIR(x) (x & _S_IFDIR)
55 #include <yaz/yaz-util.h>
57 #include <yaz/comstack.h>
59 #include <yaz/oid_db.h>
61 #include <yaz/proto.h>
62 #include <yaz/marcdisp.h>
63 #include <yaz/diagbib1.h>
64 #include <yaz/otherinfo.h>
65 #include <yaz/charneg.h>
66 #include <yaz/query-charset.h>
68 #include <yaz/pquery.h>
69 #include <yaz/sortspec.h>
73 #include <yaz/yaz-ccl.h>
77 #if HAVE_READLINE_READLINE_H
78 #include <readline/readline.h>
80 #if HAVE_READLINE_HISTORY_H
81 #include <readline/history.h>
86 #include "tabcomplete.h"
89 #define C_PROMPT "Z> "
91 static file_history_t file_history = 0;
93 static char sru_method[10] = "soap";
94 static char sru_version[10] = "1.2";
95 static char *codeset = 0; /* character set for output */
96 static int hex_dump = 0;
97 static char *dump_file_prefix = 0;
98 static ODR out, in, print; /* encoding and decoding streams */
100 static ODR srw_sr_odr_out = 0;
101 static Z_SRW_PDU *srw_sr = 0;
103 static FILE *apdu_file = 0;
104 static FILE *ber_file = 0;
105 static COMSTACK conn = 0; /* our z-association */
106 static Z_IdAuthentication *auth = 0; /* our current auth definition */
107 char *databaseNames[128];
108 int num_databaseNames = 0;
109 static Z_External *record_last = 0;
110 static int setnumber = -1; /* current result set number */
111 static int smallSetUpperBound = 0;
112 static int largeSetLowerBound = 1;
113 static int mediumSetPresentNumber = 0;
114 static Z_ElementSetNames *elementSetNames = 0;
115 static int setno = 1; /* current set offset */
116 static enum oid_proto protocol = PROTO_Z3950; /* current app protocol */
117 #define RECORDSYNTAX_MAX 20
118 static char *recordsyntax_list[RECORDSYNTAX_MAX];
119 static int recordsyntax_size = 0;
121 static char *record_schema = 0;
122 static int sent_close = 0;
123 static NMEM session_mem = NULL; /* memory handle for init-response */
124 static Z_InitResponse *session_initResponse = 0; /* session parameters */
125 static char last_scan_line[512] = "0";
126 static char last_scan_query[512] = "0";
127 static char ccl_fields[512] = "default.bib";
128 /* ### How can I set this path to use wherever YAZ is installed? */
129 static char cql_fields[512] = "/usr/local/share/yaz/etc/pqf.properties";
130 static char *esPackageName = 0;
131 static char *yazProxy = 0;
132 static int kilobytes = 1024;
133 static char *negotiationCharset = 0;
134 static int negotiationCharsetRecords = 1;
135 static int negotiationCharsetVersion = 3;
136 static char *outputCharset = 0;
137 static char *marcCharset = 0;
138 static char *queryCharset = 0;
139 static char* yazLang = 0;
141 static char last_cmd[32] = "?";
142 static FILE *marc_file = 0;
143 static char *refid = NULL;
144 static char *last_open_command = NULL;
145 static int auto_reconnect = 0;
146 static int auto_wait = 1;
147 static Odr_bitmask z3950_options;
148 static int z3950_version = 3;
149 static int scan_stepSize = 0;
150 static int scan_position = 1;
151 static int scan_size = 20;
152 static char cur_host[200];
153 static int last_hit_count = 0;
163 static QueryType queryType = QueryType_Prefix;
165 static CCL_bibset bibset; /* CCL bibset handle */
166 static cql_transform_t cqltrans = 0; /* CQL context-set handle */
168 #if HAVE_READLINE_COMPLETION_OVER
171 /* readline doesn't have this var. Define it ourselves. */
172 int rl_attempted_completion_over = 0;
175 #define maxOtherInfosSupported 10
177 Odr_oid oid[OID_SIZE];
179 } extraOtherInfos[maxOtherInfosSupported];
181 void process_cmd_line(char* line);
182 #if HAVE_READLINE_READLINE_H
183 char **readline_completer(char *text, int start, int end);
185 static char *command_generator(const char *text, int state);
186 int cmd_register_tab(const char* arg);
187 int cmd_querycharset(const char *arg);
189 static void close_session (void);
191 ODR getODROutputStream(void)
196 const char* query_type_as_string(QueryType q)
199 case QueryType_Prefix: return "prefix (RPN sent to server)";
200 case QueryType_CCL: return "CCL (CCL sent to server) ";
201 case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
202 case QueryType_CQL: return "CQL (CQL sent to server)";
203 case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
205 return "unknown Query type internal yaz-client error";
209 static void do_hex_dump(const char* buf, int len)
214 for( i=0; i<len ; i=i+16 )
217 for(x=0 ; i+x<len && x<16; ++x)
219 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
224 if (dump_file_prefix)
227 if (++no < 1000 && strlen(dump_file_prefix) < 500)
231 sprintf (fname, "%s.%03d.raw", dump_file_prefix, no);
232 of = fopen(fname, "wb");
234 fwrite (buf, 1, len, of);
241 void add_otherInfos(Z_APDU *a)
243 Z_OtherInformation **oi;
247 for(i=0; i<maxOtherInfosSupported; ++i)
249 if (oid_oidlen(extraOtherInfos[i].oid) > 0)
250 yaz_oi_set_string_oid(oi, out, extraOtherInfos[i].oid,
251 1, extraOtherInfos[i].value);
255 int send_apdu(Z_APDU *a)
264 z_APDU(print, &a, 0, 0);
267 if (!z_APDU(out, &a, 0, 0))
269 odr_perror(out, "Encoding APDU");
273 buf = odr_getbuf(out, &len, 0);
275 odr_dumpBER(ber_file, buf, len);
276 /* printf ("sending APDU of size %d\n", len); */
277 do_hex_dump(buf, len);
278 if (cs_put(conn, buf, len) < 0)
280 fprintf(stderr, "cs_put: %s", cs_errmsg(cs_errno(conn)));
284 odr_reset(out); /* release the APDU structure */
288 static void print_stringn(const unsigned char *buf, size_t len)
291 for (i = 0; i<len; i++)
292 if ((buf[i] <= 126 && buf[i] >= 32) || strchr ("\n\r\t\f", buf[i]))
293 printf ("%c", buf[i]);
295 printf ("\\X%02X", buf[i]);
298 static void print_refid (Z_ReferenceId *id)
302 printf ("Reference Id: ");
303 print_stringn (id->buf, id->len);
308 static Z_ReferenceId *set_refid (ODR out)
313 id = (Z_ReferenceId *) odr_malloc (out, sizeof(*id));
314 id->size = id->len = strlen(refid);
315 id->buf = (unsigned char *) odr_malloc (out, id->len);
316 memcpy (id->buf, refid, id->len);
320 /* INIT SERVICE ------------------------------- */
322 static void send_initRequest(const char* type_and_host)
324 Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
325 Z_InitRequest *req = apdu->u.initRequest;
328 req->options = &z3950_options;
330 ODR_MASK_ZERO(req->protocolVersion);
331 for (i = 0; i<z3950_version; i++)
332 ODR_MASK_SET(req->protocolVersion, i);
334 *req->maximumRecordSize = 1024*kilobytes;
335 *req->preferredMessageSize = 1024*kilobytes;
337 req->idAuthentication = auth;
339 req->referenceId = set_refid (out);
341 if (yazProxy && type_and_host)
343 yaz_oi_set_string_oid(&req->otherInfo, out, yaz_oid_userinfo_proxy,
347 if (negotiationCharset || yazLang) {
348 Z_OtherInformation **p;
349 Z_OtherInformationUnit *p0;
351 yaz_oi_APDU(apdu, &p);
353 if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
355 ODR_MASK_SET(req->options, Z_Options_negotiationModel);
357 p0->which = Z_OtherInfo_externallyDefinedInfo;
358 p0->information.externallyDefinedInfo =
359 yaz_set_proposal_charneg_list(out, ",",
362 negotiationCharsetRecords);
365 else if (ODR_MASK_GET(req->options, Z_Options_negotiationModel))
367 Z_OtherInformation **p;
368 Z_OtherInformationUnit *p0;
370 yaz_oi_APDU(apdu, &p);
372 if ((p0=yaz_oi_update(p, out, NULL, 0, 0)))
374 p0->which = Z_OtherInfo_externallyDefinedInfo;
375 p0->information.externallyDefinedInfo =
376 yaz_set_proposal_charneg(out, 0, 0, 0, 0, 0);
381 printf("Sent initrequest.\n");
385 /* These two are used only from process_initResponse() */
386 static void render_initUserInfo(Z_OtherInformation *ui1);
387 static void render_diag(Z_DiagnosticFormat *diag);
389 static void pr_opt(const char *opt, void *clientData)
394 static int process_initResponse(Z_InitResponse *res)
397 /* save session parameters for later use */
398 session_mem = odr_extract_mem(in);
399 session_initResponse = res;
401 for (ver = 0; ver < 8; ver++)
402 if (!ODR_MASK_GET(res->protocolVersion, ver))
406 printf("Connection rejected by v%d target.\n", ver);
408 printf("Connection accepted by v%d target.\n", ver);
409 if (res->implementationId)
410 printf("ID : %s\n", res->implementationId);
411 if (res->implementationName)
412 printf("Name : %s\n", res->implementationName);
413 if (res->implementationVersion)
414 printf("Version: %s\n", res->implementationVersion);
415 if (res->userInformationField)
417 Z_External *uif = res->userInformationField;
418 if (uif->which == Z_External_userInfo1) {
419 render_initUserInfo(uif->u.userInfo1);
421 printf("UserInformationfield:\n");
422 if (!z_External(print, (Z_External**)&uif, 0, 0))
424 odr_perror(print, "Printing userinfo\n");
427 if (uif->which == Z_External_octet) {
428 printf("Guessing visiblestring:\n");
429 printf("'%.*s'\n", uif->u.octet_aligned->len,
430 uif->u.octet_aligned->buf);
432 else if (uif->which == Z_External_single)
434 Odr_any *sat = uif->u.single_ASN1_type;
435 if (!oid_oidcmp(uif->direct_reference,
436 yaz_oid_userinfo_oclc_userinfo))
438 Z_OCLC_UserInformation *oclc_ui;
439 ODR decode = odr_createmem(ODR_DECODE);
440 odr_setbuf(decode, (char *) sat->buf, sat->len, 0);
441 if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
442 printf ("Bad OCLC UserInformation:\n");
444 printf ("OCLC UserInformation:\n");
445 if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
446 printf ("Bad OCLC UserInformation spec\n");
451 /* Peek at any private Init-diagnostic APDUs */
452 printf("### NAUGHTY: External is '%.*s'\n",
460 yaz_init_opt_decode(res->options, pr_opt, 0);
463 if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
466 if (ODR_MASK_GET(res->options, Z_Options_negotiationModel)) {
468 Z_CharSetandLanguageNegotiation *p =
469 yaz_get_charneg_record(res->otherInfo);
473 char *charset=NULL, *lang=NULL;
476 yaz_get_response_charneg(session_mem, p, &charset, &lang,
479 printf("Accepted character set : %s\n", charset ? charset:"none");
480 printf("Accepted code language : %s\n", lang ? lang:"none");
481 printf("Accepted records in ...: %d\n", selected );
483 if (outputCharset && charset)
485 printf("Converting between %s and %s\n",
486 outputCharset, charset);
487 odr_set_charset(out, charset, outputCharset);
488 odr_set_charset(in, outputCharset, charset);
489 cmd_querycharset(charset);
493 odr_set_charset(out, 0, 0);
494 odr_set_charset(in, 0, 0);
503 static void render_initUserInfo(Z_OtherInformation *ui1) {
505 printf("Init response contains %d otherInfo unit%s:\n",
506 ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
508 for (i = 0; i < ui1->num_elements; i++) {
509 Z_OtherInformationUnit *unit = ui1->list[i];
510 printf(" %d: otherInfo unit contains ", i+1);
511 if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
512 unit->information.externallyDefinedInfo &&
513 unit->information.externallyDefinedInfo->which ==
515 render_diag(unit->information.externallyDefinedInfo->u.diag1);
517 else if (unit->which != Z_OtherInfo_externallyDefinedInfo)
519 printf("unsupported otherInfo unit->which = %d\n", unit->which);
523 printf("unsupported otherInfo unit external %d\n",
524 unit->information.externallyDefinedInfo ?
525 unit->information.externallyDefinedInfo->which : -2);
531 /* ### should this share code with display_diagrecs()? */
532 static void render_diag(Z_DiagnosticFormat *diag) {
535 printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
536 for (i = 0; i < diag->num; i++) {
537 Z_DiagnosticFormat_s *ds = diag->elements[i];
538 printf(" %d: ", i+1);
540 case Z_DiagnosticFormat_s_defaultDiagRec: {
541 Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
542 /* ### should check `dd->diagnosticSetId' */
543 printf("code=%d (%s)", *dd->condition,
544 diagbib1_str(*dd->condition));
545 /* Both types of addinfo are the same, so use type-pun */
546 if (dd->u.v2Addinfo != 0)
547 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
550 case Z_DiagnosticFormat_s_explicitDiagnostic:
551 printf("Explicit diagnostic (not supported)");
554 printf("Unrecognised diagnostic type %d", ds->which);
558 if (ds->message != 0)
559 printf(", message='%s'", ds->message);
565 static int set_base(const char *arg)
570 for (i = 0; i<num_databaseNames; i++)
571 xfree (databaseNames[i]);
572 num_databaseNames = 0;
576 if (!(cp = strchr(arg, ' ')))
577 cp = arg + strlen(arg);
580 databaseNames[num_databaseNames] = (char *)xmalloc (1 + cp - arg);
581 memcpy (databaseNames[num_databaseNames], arg, cp - arg);
582 databaseNames[num_databaseNames][cp - arg] = '\0';
584 for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
593 if (num_databaseNames == 0)
595 num_databaseNames = 1;
596 databaseNames[0] = xstrdup("");
601 static int parse_cmd_doc(const char **arg, ODR out, char **buf, int *len)
604 while (**arg && strchr(" \t\n\r\f", **arg))
610 else if ((*arg)[0] == '<')
615 const char *arg_start = ++(*arg);
617 while (**arg != '\0' && **arg != ' ')
620 fname = odr_strdupn(out, arg_start, *arg - arg_start);
622 inf = fopen(fname, "rb");
625 printf("Couldn't open %s\n", fname);
628 if (fseek(inf, 0L, SEEK_END) == -1)
630 printf("Couldn't seek in %s\n", fname);
635 if (fseek(inf, 0L, SEEK_SET) == -1)
637 printf("Couldn't seek in %s\n", fname);
642 *buf = (char *) odr_malloc(out, fsize+1);
643 (*buf)[fsize] = '\0';
644 if (fread(*buf, 1, fsize, inf) != fsize)
646 printf("Unable to read %s\n", fname);
652 else if ((*arg)[0] == '\"' && (sep=strchr(*arg+1, '"')))
656 *buf = odr_strdupn(out, *arg, *len);
661 const char *arg_start = *arg;
663 while (**arg != '\0' && **arg != ' ')
666 *len = *arg - arg_start;
667 *buf = odr_strdupn(out, arg_start, *len);
672 static int cmd_base(const char *arg)
676 printf("Usage: base <database> <database> ...\n");
679 return set_base(arg);
682 void cmd_open_remember_last_open_command(const char* arg, char* new_open_command)
684 if(last_open_command != arg)
686 if(last_open_command) xfree(last_open_command);
687 last_open_command = xstrdup(new_open_command);
691 int session_connect(const char *arg)
694 char type_and_host[101];
695 const char *basep = 0;
696 #if HAVE_OPENSSL_SSL_H
706 nmem_destroy (session_mem);
708 session_initResponse = 0;
710 cs_get_host_args(arg, &basep);
712 strncpy(type_and_host, arg, sizeof(type_and_host)-1);
713 type_and_host[sizeof(type_and_host)-1] = '\0';
715 cmd_open_remember_last_open_command(arg, type_and_host);
718 conn = cs_create_host(yazProxy, 1, &add);
720 conn = cs_create_host(arg, 1, &add);
723 printf ("Could not resolve address %s\n", arg);
728 if (conn->protocol == PROTO_HTTP)
730 printf ("SRW/HTTP not enabled in this YAZ\n");
736 protocol = conn->protocol;
737 if (conn->protocol == PROTO_HTTP)
741 printf("Connecting...");
743 if (cs_connect(conn, add) < 0)
745 printf ("error = %s\n", cs_strerror(conn));
751 #if HAVE_OPENSSL_SSL_H
752 if ((ssl = (SSL *) cs_get_ssl(conn)))
754 X509 *server_cert = SSL_get_peer_certificate (ssl);
760 BIO *bio = BIO_new(BIO_s_mem());
762 /* get PEM buffer in memory */
763 PEM_write_bio_X509(bio, server_cert);
764 pem_len = BIO_get_mem_data(bio, &pem_buf);
765 fwrite(pem_buf, pem_len, 1, stdout);
767 /* print all info on screen .. */
768 X509_print_fp(stdout, server_cert);
771 X509_free (server_cert);
777 if (protocol == PROTO_Z3950)
779 send_initRequest(type_and_host);
785 int cmd_open(const char *arg)
790 strncpy (cur_host, arg, sizeof(cur_host)-1);
791 cur_host[sizeof(cur_host)-1] = 0;
793 r = session_connect(cur_host);
794 if (conn && conn->protocol == PROTO_HTTP)
795 queryType = QueryType_CQL;
799 void try_reconnect(void)
803 if(!( auto_reconnect && last_open_command) ) return ;
805 open_command = (char *) xmalloc (strlen(last_open_command)+6);
806 strcpy (open_command, "open ");
808 strcat (open_command, last_open_command);
810 process_cmd_line(open_command);
815 int cmd_authentication(const char *arg)
817 static Z_IdAuthentication au;
818 static char user[40], group[40], pass[40];
819 static Z_IdPass idPass;
824 printf("Auth field set to null\n");
828 r = sscanf (arg, "%39s %39s %39s", user, group, pass);
831 printf("Authentication set to null\n");
837 if (!strcmp(user, "-")) {
838 au.which = Z_IdAuthentication_anonymous;
839 printf("Authentication set to Anonymous\n");
841 au.which = Z_IdAuthentication_open;
843 printf("Authentication set to Open (%s)\n", user);
849 au.which = Z_IdAuthentication_idPass;
850 au.u.idPass = &idPass;
851 idPass.groupId = NULL;
852 idPass.userId = !strcmp(user, "-") ? 0 : user;
853 idPass.password = !strcmp(group, "-") ? 0 : group;
854 printf("Authentication set to User (%s), Pass (%s)\n", user, group);
859 au.which = Z_IdAuthentication_idPass;
860 au.u.idPass = &idPass;
861 idPass.groupId = group;
862 idPass.userId = user;
863 idPass.password = pass;
864 printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
870 /* SEARCH SERVICE ------------------------------ */
871 static void display_record(Z_External *r);
873 static void print_record(const unsigned char *buf, size_t len)
876 print_stringn (buf, len);
877 /* add newline if not already added ... */
878 if (i <= 0 || buf[i-1] != '\n')
882 static void display_record(Z_External *r)
884 const Odr_oid *oid = r->direct_reference;
888 * Tell the user what we got.
893 char oid_name_buf[OID_STR_MAX];
895 = yaz_oid_to_string_buf(oid, &oclass, oid_name_buf);
896 printf("Record type: ");
898 printf("%s\n", oid_name);
900 /* Check if this is a known, ASN.1 type tucked away in an octet string */
901 if (r->which == Z_External_octet)
903 Z_ext_typeent *type = z_ext_getentbyref(r->direct_reference);
909 * Call the given decoder to process the record.
911 odr_setbuf(in, (char*)r->u.octet_aligned->buf,
912 r->u.octet_aligned->len, 0);
913 if (!(*type->fun)(in, &rr, 0, 0))
915 odr_perror(in, "Decoding constructed record.");
916 fprintf(stdout, "[Near %ld]\n", (long) odr_offset(in));
917 fprintf(stdout, "Packet dump:\n---------\n");
918 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
919 r->u.octet_aligned->len);
920 fprintf(stdout, "---------\n");
922 /* note just ignores the error ant print the bytes form the octet_aligned later */
925 * Note: we throw away the original, BER-encoded record here.
926 * Do something else with it if you want to keep it.
928 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
929 r->which = type->what;
933 if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_soif))
935 print_record((const unsigned char *) r->u.octet_aligned->buf,
936 r->u.octet_aligned->len);
938 fwrite (r->u.octet_aligned->buf, 1, r->u.octet_aligned->len, marc_file);
940 else if (oid && r->which == Z_External_octet)
942 const char *octet_buf = (char*)r->u.octet_aligned->buf;
943 if (oid && (!oid_oidcmp(oid, yaz_oid_recsyn_xml)
944 || !oid_oidcmp(oid, yaz_oid_recsyn_xml)
945 || !oid_oidcmp(oid, yaz_oid_recsyn_html)))
947 print_record((const unsigned char *) octet_buf,
948 r->u.octet_aligned->len);
950 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_postscript))
952 int size = r->u.octet_aligned->len;
955 print_record((const unsigned char *) octet_buf, size);
959 if (oid && yaz_oid_is_iso2709(oid))
964 yaz_marc_t mt = yaz_marc_create();
965 const char *from = 0;
967 if (marcCharset && !strcmp(marcCharset, "auto"))
969 if (!oid_oidcmp(oid, yaz_oid_recsyn_usmarc))
971 if (octet_buf[9] == 'a')
979 else if (marcCharset)
981 if (outputCharset && from)
983 cd = yaz_iconv_open(outputCharset, from);
984 printf ("convert from %s to %s", from,
987 printf (" unsupported\n");
990 yaz_marc_iconv(mt, cd);
995 if (yaz_marc_decode_buf(mt, octet_buf, r->u.octet_aligned->len,
998 fwrite (result, rlen, 1, stdout);
1002 printf ("bad MARC. Dumping as it is:\n");
1003 print_record((const unsigned char*) octet_buf,
1004 r->u.octet_aligned->len);
1006 yaz_marc_destroy(mt);
1008 yaz_iconv_close(cd);
1012 print_record((const unsigned char*) octet_buf,
1013 r->u.octet_aligned->len);
1017 fwrite (octet_buf, 1, r->u.octet_aligned->len, marc_file);
1019 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_sutrs))
1021 if (r->which != Z_External_sutrs)
1023 printf("Expecting single SUTRS type for SUTRS.\n");
1026 print_record(r->u.sutrs->buf, r->u.sutrs->len);
1028 fwrite (r->u.sutrs->buf, 1, r->u.sutrs->len, marc_file);
1030 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_grs_1))
1033 if (r->which != Z_External_grs1)
1035 printf("Expecting single GRS type for GRS.\n");
1039 yaz_display_grs1(w, r->u.grs1, 0);
1040 puts (wrbuf_cstr(w));
1043 else if (oid && !oid_oidcmp(oid, yaz_oid_recsyn_opac))
1046 if (r->u.opac->bibliographicRecord)
1047 display_record(r->u.opac->bibliographicRecord);
1048 for (i = 0; i<r->u.opac->num_holdingsData; i++)
1050 Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
1051 if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
1053 printf ("MARC holdings %d\n", i);
1054 display_record(h->u.marcHoldingsRecord);
1056 else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
1060 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
1062 printf ("Data holdings %d\n", i);
1063 if (data->typeOfRecord)
1064 printf ("typeOfRecord: %s\n", data->typeOfRecord);
1065 if (data->encodingLevel)
1066 printf ("encodingLevel: %s\n", data->encodingLevel);
1067 if (data->receiptAcqStatus)
1068 printf ("receiptAcqStatus: %s\n", data->receiptAcqStatus);
1069 if (data->generalRetention)
1070 printf ("generalRetention: %s\n", data->generalRetention);
1071 if (data->completeness)
1072 printf ("completeness: %s\n", data->completeness);
1073 if (data->dateOfReport)
1074 printf ("dateOfReport: %s\n", data->dateOfReport);
1076 printf ("nucCode: %s\n", data->nucCode);
1077 if (data->localLocation)
1078 printf ("localLocation: %s\n", data->localLocation);
1079 if (data->shelvingLocation)
1080 printf ("shelvingLocation: %s\n", data->shelvingLocation);
1081 if (data->callNumber)
1082 printf ("callNumber: %s\n", data->callNumber);
1083 if (data->shelvingData)
1084 printf ("shelvingData: %s\n", data->shelvingData);
1085 if (data->copyNumber)
1086 printf ("copyNumber: %s\n", data->copyNumber);
1087 if (data->publicNote)
1088 printf ("publicNote: %s\n", data->publicNote);
1089 if (data->reproductionNote)
1090 printf ("reproductionNote: %s\n", data->reproductionNote);
1091 if (data->termsUseRepro)
1092 printf ("termsUseRepro: %s\n", data->termsUseRepro);
1093 if (data->enumAndChron)
1094 printf ("enumAndChron: %s\n", data->enumAndChron);
1095 for (j = 0; j<data->num_volumes; j++)
1097 printf ("volume %d\n", j);
1098 if (data->volumes[j]->enumeration)
1099 printf (" enumeration: %s\n",
1100 data->volumes[j]->enumeration);
1101 if (data->volumes[j]->chronology)
1102 printf (" chronology: %s\n",
1103 data->volumes[j]->chronology);
1104 if (data->volumes[j]->enumAndChron)
1105 printf (" enumAndChron: %s\n",
1106 data->volumes[j]->enumAndChron);
1108 for (j = 0; j<data->num_circulationData; j++)
1110 printf ("circulation %d\n", j);
1111 if (data->circulationData[j]->availableNow)
1112 printf (" availableNow: %d\n",
1113 *data->circulationData[j]->availableNow);
1114 if (data->circulationData[j]->availablityDate)
1115 printf (" availabiltyDate: %s\n",
1116 data->circulationData[j]->availablityDate);
1117 if (data->circulationData[j]->availableThru)
1118 printf (" availableThru: %s\n",
1119 data->circulationData[j]->availableThru);
1120 if (data->circulationData[j]->restrictions)
1121 printf (" restrictions: %s\n",
1122 data->circulationData[j]->restrictions);
1123 if (data->circulationData[j]->itemId)
1124 printf (" itemId: %s\n",
1125 data->circulationData[j]->itemId);
1126 if (data->circulationData[j]->renewable)
1127 printf (" renewable: %d\n",
1128 *data->circulationData[j]->renewable);
1129 if (data->circulationData[j]->onHold)
1130 printf (" onHold: %d\n",
1131 *data->circulationData[j]->onHold);
1132 if (data->circulationData[j]->enumAndChron)
1133 printf (" enumAndChron: %s\n",
1134 data->circulationData[j]->enumAndChron);
1135 if (data->circulationData[j]->midspine)
1136 printf (" midspine: %s\n",
1137 data->circulationData[j]->midspine);
1138 if (data->circulationData[j]->temporaryLocation)
1139 printf (" temporaryLocation: %s\n",
1140 data->circulationData[j]->temporaryLocation);
1147 printf("Unknown record representation.\n");
1148 if (!z_External(print, &r, 0, 0))
1150 odr_perror(print, "Printing external");
1156 static void display_diagrecs(Z_DiagRec **pp, int num)
1159 Z_DefaultDiagFormat *r;
1161 printf("Diagnostic message(s) from database:\n");
1162 for (i = 0; i<num; i++)
1164 Z_DiagRec *p = pp[i];
1165 if (p->which != Z_DiagRec_defaultFormat)
1167 printf("Diagnostic record not in default format.\n");
1171 r = p->u.defaultFormat;
1173 if (!r->diagnosticSetId)
1174 printf("Missing diagset\n");
1178 char diag_name_buf[OID_STR_MAX];
1179 const char *diag_name = 0;
1180 diag_name = yaz_oid_to_string_buf
1181 (r->diagnosticSetId, &oclass, diag_name_buf);
1182 if (oid_oidcmp(r->diagnosticSetId, yaz_oid_diagset_bib_1))
1183 printf("Unknown diagset: %s\n", diag_name);
1185 printf(" [%d] %s", *r->condition, diagbib1_str(*r->condition));
1188 case Z_DefaultDiagFormat_v2Addinfo:
1189 printf (" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1191 case Z_DefaultDiagFormat_v3Addinfo:
1192 printf (" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1199 static void display_nameplusrecord(Z_NamePlusRecord *p)
1201 if (p->databaseName)
1202 printf("[%s]", p->databaseName);
1203 if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1204 display_diagrecs(&p->u.surrogateDiagnostic, 1);
1205 else if (p->which == Z_NamePlusRecord_databaseRecord)
1206 display_record(p->u.databaseRecord);
1209 static void display_records(Z_Records *p)
1213 if (p->which == Z_Records_NSD)
1215 Z_DiagRec dr, *dr_p = &dr;
1216 dr.which = Z_DiagRec_defaultFormat;
1217 dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1218 display_diagrecs (&dr_p, 1);
1220 else if (p->which == Z_Records_multipleNSD)
1221 display_diagrecs (p->u.multipleNonSurDiagnostics->diagRecs,
1222 p->u.multipleNonSurDiagnostics->num_diagRecs);
1225 printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1226 for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1227 display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1231 static int send_deleteResultSetRequest(const char *arg)
1236 Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1237 Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1239 req->referenceId = set_refid (out);
1241 req->num_resultSetList =
1242 sscanf (arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1243 names[0], names[1], names[2], names[3],
1244 names[4], names[5], names[6], names[7]);
1246 req->deleteFunction = (int *)
1247 odr_malloc (out, sizeof(*req->deleteFunction));
1248 if (req->num_resultSetList > 0)
1250 *req->deleteFunction = Z_DeleteResultSetRequest_list;
1251 req->resultSetList = (char **)
1252 odr_malloc (out, sizeof(*req->resultSetList)*
1253 req->num_resultSetList);
1254 for (i = 0; i<req->num_resultSetList; i++)
1255 req->resultSetList[i] = names[i];
1259 *req->deleteFunction = Z_DeleteResultSetRequest_all;
1260 req->resultSetList = 0;
1264 printf("Sent deleteResultSetRequest.\n");
1269 static int send_srw(Z_SRW_PDU *sr)
1271 const char *charset = negotiationCharset;
1272 const char *host_port = cur_host;
1276 path = (char *) odr_malloc(out, 2+strlen(databaseNames[0]));
1278 strcpy(path+1, databaseNames[0]);
1280 gdu = z_get_HTTP_Request_host_path(out, host_port, path);
1282 if (!yaz_matchstr(sru_method, "get"))
1284 yaz_sru_get_encode(gdu->u.HTTP_Request, sr, out, charset);
1286 else if (!yaz_matchstr(sru_method, "post"))
1288 yaz_sru_post_encode(gdu->u.HTTP_Request, sr, out, charset);
1290 else if (!yaz_matchstr(sru_method, "soap"))
1292 yaz_sru_soap_encode(gdu->u.HTTP_Request, sr, out, charset);
1295 if (z_GDU(out, &gdu, 0, 0))
1303 if (!z_GDU(print, &gdu, 0, 0))
1304 printf ("Failed to print outgoing SRU package\n");
1307 buf_out = odr_getbuf(out, &len_out, 0);
1309 /* we don't odr_reset(out), since we may need the buffer again */
1311 do_hex_dump(buf_out, len_out);
1313 r = cs_put(conn, buf_out, len_out);
1323 static char *encode_SRW_term(ODR o, const char *q)
1325 const char *in_charset = "ISO-8859-1";
1326 WRBUF w = wrbuf_alloc();
1330 in_charset = outputCharset;
1331 cd = yaz_iconv_open("UTF-8", in_charset);
1335 return odr_strdup(o, q);
1337 wrbuf_iconv_write(w, cd, q, strlen(q));
1339 res = odr_strdup(o, wrbuf_cstr(w));
1341 res = odr_strdup(o, q);
1342 yaz_iconv_close(cd);
1348 static int send_SRW_scanRequest(const char *arg, int pos, int num)
1352 /* regular requestse .. */
1353 sr = yaz_srw_get_pdu(out, Z_SRW_scan_request, sru_version);
1358 sr->u.scan_request->query_type = Z_SRW_query_type_cql;
1359 sr->u.scan_request->scanClause.cql = encode_SRW_term(out, arg);
1361 case QueryType_Prefix:
1362 sr->u.scan_request->query_type = Z_SRW_query_type_pqf;
1363 sr->u.scan_request->scanClause.pqf = encode_SRW_term(out, arg);
1366 printf ("Only CQL and PQF supported in SRW\n");
1369 sr->u.scan_request->responsePosition = odr_intdup(out, pos);
1370 sr->u.scan_request->maximumTerms = odr_intdup(out, num);
1371 return send_srw(sr);
1374 static int send_SRW_searchRequest(const char *arg)
1380 assert(srw_sr_odr_out == 0);
1381 srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1383 odr_reset(srw_sr_odr_out);
1387 /* save this for later .. when fetching individual records */
1388 srw_sr = yaz_srw_get_pdu(srw_sr_odr_out, Z_SRW_searchRetrieve_request,
1391 /* regular request .. */
1392 sr = yaz_srw_get_pdu(out, Z_SRW_searchRetrieve_request, sru_version);
1397 srw_sr->u.request->query_type = Z_SRW_query_type_cql;
1398 srw_sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1400 sr->u.request->query_type = Z_SRW_query_type_cql;
1401 sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1403 case QueryType_Prefix:
1404 srw_sr->u.request->query_type = Z_SRW_query_type_pqf;
1405 srw_sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1407 sr->u.request->query_type = Z_SRW_query_type_pqf;
1408 sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1411 printf ("Only CQL and PQF supported in SRW\n");
1414 sr->u.request->maximumRecords = odr_intdup(out, 0);
1417 sr->u.request->recordSchema = record_schema;
1418 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
1419 sr->u.request->recordPacking = "xml";
1420 return send_srw(sr);
1424 static void query_charset_convert(Z_RPNQuery *q)
1426 if (queryCharset && outputCharset)
1428 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
1431 printf("Conversion from %s to %s unsupported\n",
1432 outputCharset, queryCharset);
1435 yaz_query_charset_convert_rpnquery(q, out, cd);
1436 yaz_iconv_close(cd);
1440 static int send_searchRequest(const char *arg)
1442 Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1443 Z_SearchRequest *req = apdu->u.searchRequest;
1445 struct ccl_rpn_node *rpn = NULL;
1447 char setstring[100];
1448 Z_RPNQuery *RPNquery;
1450 YAZ_PQF_Parser pqf_parser;
1452 QueryType myQueryType = queryType;
1455 if (myQueryType == QueryType_CCL2RPN)
1457 rpn = ccl_find_str(bibset, arg, &error, &pos);
1460 printf("CCL ERROR: %s\n", ccl_err_msg(error));
1463 } else if (myQueryType == QueryType_CQL2RPN) {
1464 /* ### All this code should be wrapped in a utility function */
1466 struct cql_node *node;
1467 const char *addinfo;
1468 if (cqltrans == 0) {
1469 printf("Can't use CQL: no translation file. Try set_cqlfile\n");
1472 parser = cql_parser_create();
1473 if ((error = cql_parser_string(parser, arg)) != 0) {
1474 printf("Can't parse CQL: must be a syntax error\n");
1477 node = cql_parser_result(parser);
1478 if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1479 sizeof pqfbuf)) != 0) {
1480 error = cql_transform_error(cqltrans, &addinfo);
1481 printf ("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1482 cql_strerror(error), addinfo);
1486 myQueryType = QueryType_Prefix;
1489 req->referenceId = set_refid (out);
1490 if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1492 static unsigned char big[2100];
1493 static Odr_oct bigo;
1495 /* send a very big referenceid to test transport stack etc. */
1496 memset(big, 'A', 2100);
1497 bigo.len = bigo.size = 2100;
1499 req->referenceId = &bigo;
1504 sprintf(setstring, "%d", ++setnumber);
1505 req->resultSetName = setstring;
1507 *req->smallSetUpperBound = smallSetUpperBound;
1508 *req->largeSetLowerBound = largeSetLowerBound;
1509 *req->mediumSetPresentNumber = mediumSetPresentNumber;
1510 if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1511 mediumSetPresentNumber > 0))
1513 if (recordsyntax_size)
1514 req->preferredRecordSyntax =
1515 yaz_string_to_oid_odr(yaz_oid_std(),
1516 CLASS_RECSYN, recordsyntax_list[0], out);
1518 req->smallSetElementSetNames =
1519 req->mediumSetElementSetNames = elementSetNames;
1521 req->num_databaseNames = num_databaseNames;
1522 req->databaseNames = databaseNames;
1524 req->query = &query;
1526 switch (myQueryType)
1528 case QueryType_Prefix:
1529 query.which = Z_Query_type_1;
1530 pqf_parser = yaz_pqf_create ();
1531 RPNquery = yaz_pqf_parse (pqf_parser, out, arg);
1534 const char *pqf_msg;
1536 int code = yaz_pqf_error (pqf_parser, &pqf_msg, &off);
1538 printf("%*s^\n", ioff+4, "");
1539 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1541 yaz_pqf_destroy (pqf_parser);
1544 yaz_pqf_destroy (pqf_parser);
1545 query_charset_convert(RPNquery);
1546 query.u.type_1 = RPNquery;
1549 query.which = Z_Query_type_2;
1550 query.u.type_2 = &ccl_query;
1551 ccl_query.buf = (unsigned char*) arg;
1552 ccl_query.len = strlen(arg);
1554 case QueryType_CCL2RPN:
1555 query.which = Z_Query_type_1;
1556 RPNquery = ccl_rpn_query(out, rpn);
1559 printf ("Couldn't convert from CCL to RPN\n");
1562 query_charset_convert(RPNquery);
1563 query.u.type_1 = RPNquery;
1564 ccl_rpn_delete (rpn);
1567 query.which = Z_Query_type_104;
1568 ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1569 ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1570 ext->indirect_reference = 0;
1571 ext->descriptor = 0;
1572 ext->which = Z_External_CQL;
1573 ext->u.cql = odr_strdup(out, arg);
1574 query.u.type_104 = ext;
1577 printf ("Unsupported query type\n");
1580 if (send_apdu(apdu))
1581 printf("Sent searchRequest.\n");
1586 /* display Query Expression as part of searchResult-1 */
1587 static void display_queryExpression (const char *lead, Z_QueryExpression *qe)
1591 printf(" %s=", lead);
1592 if (qe->which == Z_QueryExpression_term)
1594 if (qe->u.term->queryTerm)
1596 Z_Term *term = qe->u.term->queryTerm;
1597 switch (term->which)
1599 case Z_Term_general:
1600 printf ("%.*s", term->u.general->len, term->u.general->buf);
1602 case Z_Term_characterString:
1603 printf ("%s", term->u.characterString);
1605 case Z_Term_numeric:
1606 printf ("%d", *term->u.numeric);
1616 /* see if we can find USR:SearchResult-1 */
1617 static void display_searchResult (Z_OtherInformation *o)
1622 for (i = 0; i < o->num_elements; i++)
1624 if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1626 Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1628 if (ext->which == Z_External_searchResult1)
1631 Z_SearchInfoReport *sr = ext->u.searchResult1;
1632 printf ("SearchResult-1:");
1633 for (j = 0; j < sr->num; j++)
1637 if (!sr->elements[j]->subqueryExpression)
1639 display_queryExpression("term",
1640 sr->elements[j]->subqueryExpression);
1641 display_queryExpression("interpretation",
1642 sr->elements[j]->subqueryInterpretation);
1643 display_queryExpression("recommendation",
1644 sr->elements[j]->subqueryRecommendation);
1645 if (sr->elements[j]->subqueryCount)
1646 printf(" cnt=%d", *sr->elements[j]->subqueryCount);
1647 if (sr->elements[j]->subqueryId)
1648 printf(" id=%s ", sr->elements[j]->subqueryId);
1656 static int process_searchResponse(Z_SearchResponse *res)
1658 printf ("Received SearchResponse.\n");
1659 print_refid (res->referenceId);
1660 if (*res->searchStatus)
1661 printf("Search was a success.\n");
1663 printf("Search was a bloomin' failure.\n");
1664 printf("Number of hits: %d", *res->resultCount);
1665 last_hit_count = *res->resultCount;
1667 printf (", setno %d", setnumber);
1669 if (res->resultSetStatus)
1671 printf("Result Set Status: ");
1672 switch(*res->resultSetStatus)
1674 case Z_SearchResponse_subset:
1675 printf("subset"); break;
1676 case Z_SearchResponse_interim:
1677 printf("interim"); break;
1678 case Z_SearchResponse_none:
1679 printf("none"); break;
1680 case Z_SearchResponse_estimate:
1681 printf("estimate"); break;
1683 printf("%d", *res->resultSetStatus);
1687 display_searchResult (res->additionalSearchInfo);
1688 printf("records returned: %d\n",
1689 *res->numberOfRecordsReturned);
1690 setno += *res->numberOfRecordsReturned;
1692 display_records(res->records);
1696 static void print_level(int iLevel)
1699 for (i = 0; i < iLevel * 4; i++)
1703 static void print_int(int iLevel, const char *pTag, int *pInt)
1707 print_level(iLevel);
1708 printf("%s: %d\n", pTag, *pInt);
1712 static void print_string(int iLevel, const char *pTag, const char *pString)
1714 if (pString != NULL)
1716 print_level(iLevel);
1717 printf("%s: %s\n", pTag, pString);
1721 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1725 Odr_oid *pInt = pOid;
1727 print_level(iLevel);
1728 printf("%s:", pTag);
1729 for (; *pInt != -1; pInt++)
1730 printf(" %d", *pInt);
1735 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1737 if (referenceId != NULL)
1741 print_level(iLevel);
1742 printf("Ref Id (%d, %d): ", referenceId->len, referenceId->size);
1743 for (i = 0; i < referenceId->len; i++)
1744 printf("%c", referenceId->buf[i]);
1749 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1751 if (pStringNumeric != NULL)
1753 switch (pStringNumeric->which)
1755 case Z_StringOrNumeric_string:
1756 print_string(iLevel, pTag, pStringNumeric->u.string);
1759 case Z_StringOrNumeric_numeric:
1760 print_int(iLevel, pTag, pStringNumeric->u.numeric);
1764 print_level(iLevel);
1765 printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1771 static void print_universe_report_duplicate(
1773 Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1775 if (pUniverseReportDuplicate != NULL)
1777 print_level(iLevel);
1778 printf("Universe Report Duplicate: \n");
1780 print_string_or_numeric(iLevel, "Hit No",
1781 pUniverseReportDuplicate->hitno);
1785 static void print_universe_report_hits(
1787 Z_UniverseReportHits *pUniverseReportHits)
1789 if (pUniverseReportHits != NULL)
1791 print_level(iLevel);
1792 printf("Universe Report Hits: \n");
1794 print_string_or_numeric(iLevel, "Database",
1795 pUniverseReportHits->database);
1796 print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1800 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1802 if (pUniverseReport != NULL)
1804 print_level(iLevel);
1805 printf("Universe Report: \n");
1807 print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1808 switch (pUniverseReport->which)
1810 case Z_UniverseReport_databaseHits:
1811 print_universe_report_hits(iLevel,
1812 pUniverseReport->u.databaseHits);
1815 case Z_UniverseReport_duplicate:
1816 print_universe_report_duplicate(iLevel,
1817 pUniverseReport->u.duplicate);
1821 print_level(iLevel);
1822 printf("Type: %d\n", pUniverseReport->which);
1828 static void print_external(int iLevel, Z_External *pExternal)
1830 if (pExternal != NULL)
1832 print_level(iLevel);
1833 printf("External: \n");
1835 print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
1836 print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
1837 print_string(iLevel, "Descriptor", pExternal->descriptor);
1838 switch (pExternal->which)
1840 case Z_External_universeReport:
1841 print_universe_report(iLevel, pExternal->u.universeReport);
1845 print_level(iLevel);
1846 printf("Type: %d\n", pExternal->which);
1852 static int process_resourceControlRequest (Z_ResourceControlRequest *req)
1854 printf ("Received ResourceControlRequest.\n");
1855 print_referenceId(1, req->referenceId);
1856 print_int(1, "Suspended Flag", req->suspendedFlag);
1857 print_int(1, "Partial Results Available", req->partialResultsAvailable);
1858 print_int(1, "Response Required", req->responseRequired);
1859 print_int(1, "Triggered Request Flag", req->triggeredRequestFlag);
1860 print_external(1, req->resourceReport);
1864 void process_ESResponse(Z_ExtendedServicesResponse *res)
1867 switch (*res->operationStatus)
1869 case Z_ExtendedServicesResponse_done:
1872 case Z_ExtendedServicesResponse_accepted:
1873 printf ("accepted\n");
1875 case Z_ExtendedServicesResponse_failure:
1876 printf ("failure\n");
1877 display_diagrecs(res->diagnostics, res->num_diagnostics);
1880 printf ("unknown\n");
1882 if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
1883 (res->num_diagnostics != 0) ) {
1884 display_diagrecs(res->diagnostics, res->num_diagnostics);
1886 print_refid (res->referenceId);
1887 if (res->taskPackage &&
1888 res->taskPackage->which == Z_External_extendedService)
1890 Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
1891 Odr_oct *id = taskPackage->targetReference;
1892 Z_External *ext = taskPackage->taskSpecificParameters;
1896 printf ("Target Reference: ");
1897 print_stringn (id->buf, id->len);
1900 if (ext->which == Z_External_update)
1902 Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
1903 if (utp && utp->targetPart)
1905 Z_IUTargetPart *targetPart = utp->targetPart;
1908 for (i = 0; i<targetPart->num_taskPackageRecords; i++)
1911 Z_IUTaskPackageRecordStructure *tpr =
1912 targetPart->taskPackageRecords[i];
1913 printf ("task package record %d\n", i+1);
1914 if (tpr->which == Z_IUTaskPackageRecordStructure_record)
1916 display_record (tpr->u.record);
1920 printf ("other type\n");
1925 if (ext->which == Z_External_itemOrder)
1927 Z_IOTaskPackage *otp = ext->u.itemOrder->u.taskPackage;
1929 if (otp && otp->targetPart )
1931 if (otp->targetPart->itemRequest)
1933 Z_External *ext = otp->targetPart->itemRequest;
1934 if (ext->which == Z_External_octet)
1936 Odr_oct *doc = ext->u.octet_aligned;
1937 printf("Got itemRequest doc %.*s\n",
1938 doc->len, doc->buf);
1941 else if (otp->targetPart->statusOrErrorReport)
1943 Z_External *ext = otp->targetPart->statusOrErrorReport;
1944 if (ext->which == Z_External_octet)
1946 Odr_oct *doc = ext->u.octet_aligned;
1947 printf("Got Status or Error Report doc %.*s\n",
1948 doc->len, doc->buf);
1954 if (res->taskPackage && res->taskPackage->which == Z_External_octet)
1956 Odr_oct *doc = res->taskPackage->u.octet_aligned;
1957 printf("%.*s\n", doc->len, doc->buf);
1961 const char *get_ill_element (void *clientData, const char *element)
1966 static Z_External *create_external_itemRequest(void)
1968 struct ill_get_ctl ctl;
1969 ILL_ItemRequest *req;
1971 int item_request_size = 0;
1972 char *item_request_buf = 0;
1976 ctl.f = get_ill_element;
1978 req = ill_get_ItemRequest(&ctl, "ill", 0);
1980 printf ("ill_get_ItemRequest failed\n");
1982 if (!ill_ItemRequest (out, &req, 0, 0))
1986 ill_ItemRequest(print, &req, 0, 0);
1989 item_request_buf = odr_getbuf (out, &item_request_size, 0);
1990 if (item_request_buf)
1991 odr_setbuf (out, item_request_buf, item_request_size, 1);
1992 printf ("Couldn't encode ItemRequest, size %d\n", item_request_size);
1997 r = (Z_External *) odr_malloc (out, sizeof(*r));
1998 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
1999 r->indirect_reference = 0;
2001 r->which = Z_External_single;
2003 r->u.single_ASN1_type = (Odr_oct *)
2004 odr_malloc (out, sizeof(*r->u.single_ASN1_type));
2005 r->u.single_ASN1_type->buf = (unsigned char *)
2006 odr_malloc (out, item_request_size);
2007 r->u.single_ASN1_type->len = item_request_size;
2008 r->u.single_ASN1_type->size = item_request_size;
2009 memcpy (r->u.single_ASN1_type->buf, item_request_buf,
2012 do_hex_dump(item_request_buf,item_request_size);
2017 static Z_External *create_external_ILL_APDU(int which)
2019 struct ill_get_ctl ctl;
2022 int ill_request_size = 0;
2023 char *ill_request_buf = 0;
2027 ctl.f = get_ill_element;
2029 ill_apdu = ill_get_APDU(&ctl, "ill", 0);
2031 if (!ill_APDU (out, &ill_apdu, 0, 0))
2035 printf ("-------------------\n");
2036 ill_APDU(print, &ill_apdu, 0, 0);
2038 printf ("-------------------\n");
2040 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2041 if (ill_request_buf)
2042 odr_setbuf (out, ill_request_buf, ill_request_size, 1);
2043 printf ("Couldn't encode ILL-Request, size %d\n", ill_request_size);
2048 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
2050 r = (Z_External *) odr_malloc (out, sizeof(*r));
2051 r->direct_reference = odr_oiddup(out, yaz_oid_general_isoill_1);
2052 r->indirect_reference = 0;
2054 r->which = Z_External_single;
2056 r->u.single_ASN1_type = (Odr_oct *)
2057 odr_malloc (out, sizeof(*r->u.single_ASN1_type));
2058 r->u.single_ASN1_type->buf = (unsigned char *)
2059 odr_malloc (out, ill_request_size);
2060 r->u.single_ASN1_type->len = ill_request_size;
2061 r->u.single_ASN1_type->size = ill_request_size;
2062 memcpy (r->u.single_ASN1_type->buf, ill_request_buf, ill_request_size);
2063 /* printf ("len = %d\n", ill_request_size); */
2064 /* do_hex_dump(ill_request_buf,ill_request_size); */
2065 /* printf("--- end of extenal\n"); */
2072 static Z_External *create_ItemOrderExternal(const char *type, int itemno,
2073 const char *xml_buf,
2076 Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
2077 r->direct_reference = odr_oiddup(out, yaz_oid_extserv_item_order);
2078 r->indirect_reference = 0;
2081 r->which = Z_External_itemOrder;
2083 r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
2084 memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
2085 r->u.itemOrder->which=Z_IOItemOrder_esRequest;
2087 r->u.itemOrder->u.esRequest = (Z_IORequest *)
2088 odr_malloc(out,sizeof(Z_IORequest));
2089 memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
2091 r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
2092 odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
2093 memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
2094 r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
2095 odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
2096 memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
2098 r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
2099 r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
2100 r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
2102 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
2103 (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
2104 memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
2105 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
2107 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
2108 (int *) odr_malloc(out, sizeof(int));
2109 *r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item = itemno;
2111 if (!strcmp (type, "item") || !strcmp(type, "2"))
2113 printf ("using item-request\n");
2114 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2115 create_external_itemRequest();
2117 else if (!strcmp(type, "ill") || !strcmp(type, "1"))
2119 printf ("using ILL-request\n");
2120 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2121 create_external_ILL_APDU(ILL_APDU_ILL_Request);
2123 else if (!strcmp(type, "xml") || !strcmp(type, "3"))
2125 printf("using XML ILL-request\n");
2129 printf("no docoument added\n");
2130 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2134 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2135 z_ext_record_oid(out, yaz_oid_recsyn_xml, xml_buf, xml_len);
2139 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2144 static int send_itemorder(const char *type, int itemno,
2145 const char *xml_buf, int xml_len)
2147 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2148 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2150 req->referenceId = set_refid (out);
2152 req->packageType = odr_oiddup(out, yaz_oid_extserv_item_order);
2153 req->packageName = esPackageName;
2155 req->taskSpecificParameters = create_ItemOrderExternal(type, itemno,
2161 static int only_z3950(void)
2165 printf ("Not connected yet\n");
2168 if (protocol == PROTO_HTTP)
2170 printf ("Not supported by SRW\n");
2176 static int cmd_update_common(const char *arg, int version);
2178 static int cmd_update(const char *arg)
2180 return cmd_update_common(arg, 1);
2183 static int cmd_update0(const char *arg)
2185 return cmd_update_common(arg, 0);
2188 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2189 char *rec_buf, int rec_len);
2191 static int cmd_update_SRW(int action_no, const char *recid,
2192 char *rec_buf, int rec_len);
2194 static int cmd_update_common(const char *arg, int version)
2200 const char *recid = 0;
2206 if (parse_cmd_doc(&arg, out, &action_buf, &action_len) == 0)
2208 printf("Use: update action recid [fname]\n");
2209 printf(" where action is one of insert,replace,delete.update\n");
2210 printf(" recid is some record ID. Use none for no ID\n");
2211 printf(" fname is file of record to be updated\n");
2215 if (parse_cmd_doc(&arg, out, &recid_buf, &recid_len) == 0)
2217 printf("Missing recid\n");
2221 if (!strcmp(action_buf, "insert"))
2222 action_no = Z_IUOriginPartToKeep_recordInsert;
2223 else if (!strcmp(action_buf, "replace"))
2224 action_no = Z_IUOriginPartToKeep_recordReplace;
2225 else if (!strcmp(action_buf, "delete"))
2226 action_no = Z_IUOriginPartToKeep_recordDelete;
2227 else if (!strcmp(action_buf, "update"))
2228 action_no = Z_IUOriginPartToKeep_specialUpdate;
2231 printf ("Bad action: %s\n", action_buf);
2232 printf ("Possible values: insert, replace, delete, update\n");
2236 if (strcmp(recid_buf, "none")) /* none means no record ID */
2240 if (parse_cmd_doc(&arg, out, &rec_buf, &rec_len) == 0)
2244 if (protocol == PROTO_HTTP)
2245 return cmd_update_SRW(action_no, recid_buf, rec_buf, rec_len);
2247 return cmd_update_Z3950(version, action_no, recid_buf, rec_buf, rec_len);
2251 static int cmd_update_SRW(int action_no, const char *recid,
2252 char *rec_buf, int rec_len)
2255 session_connect(cur_host);
2260 Z_SRW_PDU *srw = yaz_srw_get(out, Z_SRW_update_request);
2261 Z_SRW_updateRequest *sr = srw->u.update_request;
2265 case Z_IUOriginPartToKeep_recordInsert:
2266 sr->operation = "info:srw/action/1/create";
2268 case Z_IUOriginPartToKeep_recordReplace:
2269 sr->operation = "info:srw/action/1/replace";
2271 case Z_IUOriginPartToKeep_recordDelete:
2272 sr->operation = "info:srw/action/1/delete";
2277 sr->record = yaz_srw_get_record(out);
2278 sr->record->recordData_buf = rec_buf;
2279 sr->record->recordData_len = rec_len;
2280 sr->record->recordSchema = record_schema;
2283 sr->recordId = odr_strdup(out, recid);
2284 return send_srw(srw);
2289 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2290 char *rec_buf, int rec_len)
2292 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
2293 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2295 Z_External *record_this = 0;
2297 record_this = z_ext_record_oid(out, yaz_oid_recsyn_xml,
2303 printf ("No last record (update ignored)\n");
2306 record_this = record_last;
2309 req->packageType = odr_oiddup(out, (version == 0 ?
2310 yaz_oid_extserv_database_update_first_version :
2311 yaz_oid_extserv_database_update));
2313 req->packageName = esPackageName;
2315 req->referenceId = set_refid (out);
2317 r = req->taskSpecificParameters = (Z_External *)
2318 odr_malloc (out, sizeof(*r));
2319 r->direct_reference = req->packageType;
2320 r->indirect_reference = 0;
2324 Z_IU0OriginPartToKeep *toKeep;
2325 Z_IU0SuppliedRecords *notToKeep;
2327 r->which = Z_External_update0;
2328 r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2329 r->u.update0->which = Z_IUUpdate_esRequest;
2330 r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2331 odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2332 toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2333 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2335 toKeep->databaseName = databaseNames[0];
2339 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2341 record_schema, out);
2343 toKeep->elementSetName = 0;
2345 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2346 *toKeep->action = action_no;
2348 notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2349 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2351 notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2352 odr_malloc(out, sizeof(*notToKeep->elements));
2353 notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2354 odr_malloc(out, sizeof(**notToKeep->elements));
2355 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2358 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2359 odr_malloc (out, sizeof(Odr_oct));
2360 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2361 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2362 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2365 notToKeep->elements[0]->u.opaque = 0;
2366 notToKeep->elements[0]->supplementalId = 0;
2367 notToKeep->elements[0]->correlationInfo = 0;
2368 notToKeep->elements[0]->record = record_this;
2372 Z_IUOriginPartToKeep *toKeep;
2373 Z_IUSuppliedRecords *notToKeep;
2375 r->which = Z_External_update;
2376 r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2377 r->u.update->which = Z_IUUpdate_esRequest;
2378 r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2379 odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2380 toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2381 odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2383 toKeep->databaseName = databaseNames[0];
2387 toKeep->schema = yaz_string_to_oid_odr(yaz_oid_std(),
2389 record_schema, out);
2391 toKeep->elementSetName = 0;
2392 toKeep->actionQualifier = 0;
2393 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2394 *toKeep->action = action_no;
2396 notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2397 odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2399 notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2400 odr_malloc(out, sizeof(*notToKeep->elements));
2401 notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2402 odr_malloc(out, sizeof(**notToKeep->elements));
2403 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2406 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2407 odr_malloc (out, sizeof(Odr_oct));
2408 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2409 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2410 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2413 notToKeep->elements[0]->u.opaque = 0;
2414 notToKeep->elements[0]->supplementalId = 0;
2415 notToKeep->elements[0]->correlationInfo = 0;
2416 notToKeep->elements[0]->record = record_this;
2424 static int cmd_xmles(const char *arg)
2434 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2435 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2438 Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
2440 req->referenceId = set_refid (out);
2441 req->taskSpecificParameters = ext;
2442 ext->indirect_reference = 0;
2443 ext->descriptor = 0;
2444 ext->which = Z_External_octet;
2445 ext->u.single_ASN1_type = (Odr_oct *) odr_malloc (out, sizeof(Odr_oct));
2446 sscanf(arg, "%50s%n", oid_str, &noread);
2449 printf("Missing OID for xmles\n");
2453 if (parse_cmd_doc(&arg, out, &asn_buf,
2454 &ext->u.single_ASN1_type->len) == 0)
2457 ext->u.single_ASN1_type->buf = (unsigned char *) asn_buf;
2459 oid = yaz_string_to_oid_odr(yaz_oid_std(),
2460 CLASS_EXTSERV, oid_str, out);
2463 printf("Bad OID: %s\n", oid_str);
2467 req->packageType = oid;
2469 ext->direct_reference = oid;
2477 static int cmd_itemorder(const char *arg)
2487 if (sscanf(arg, "%10s %d%n", type, &itemno, &no_read) < 2)
2490 parse_cmd_doc(&arg, out, &xml_buf, &xml_len);
2493 send_itemorder(type, itemno, xml_buf, xml_len);
2497 static void show_opt(const char *arg, void *clientData)
2499 printf ("%s ", arg);
2502 static int cmd_zversion(const char *arg)
2505 z3950_version = atoi(arg);
2507 printf ("version is %d\n", z3950_version);
2511 static int cmd_options(const char *arg)
2517 r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2519 printf("Unknown option(s) near %s\n", arg+pos);
2523 yaz_init_opt_decode(&z3950_options, show_opt, 0);
2529 static int cmd_explain(const char *arg)
2531 if (protocol != PROTO_HTTP)
2535 session_connect(cur_host);
2542 /* save this for later .. when fetching individual records */
2543 sr = yaz_srw_get(out, Z_SRW_explain_request);
2544 if (recordsyntax_size == 1
2545 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2546 sr->u.explain_request->recordPacking = "xml";
2554 static int cmd_init(const char *arg)
2558 strncpy (cur_host, arg, sizeof(cur_host)-1);
2559 cur_host[sizeof(cur_host)-1] = 0;
2563 send_initRequest(cur_host);
2567 static int cmd_sru(const char *arg)
2571 printf("SRU method is: %s\n", sru_method);
2572 printf("SRU version is: %s\n", sru_version);
2577 r = sscanf(arg, "%9s %9s", sru_method, sru_version);
2580 if (!yaz_matchstr(sru_method, "post"))
2582 else if (!yaz_matchstr(sru_method, "get"))
2584 else if (!yaz_matchstr(sru_method, "soap"))
2588 strcpy(sru_method, "soap");
2589 printf("Unknown SRU method: %s\n", arg);
2590 printf("Specify one of POST, GET, SOAP\n");
2597 static int cmd_find(const char *arg)
2601 printf("Find what?\n");
2604 if (protocol == PROTO_HTTP)
2608 session_connect(cur_host);
2611 if (!send_SRW_searchRequest(arg))
2624 printf("Not connected yet\n");
2628 if (!send_searchRequest(arg))
2634 static int cmd_delete(const char *arg)
2638 if (!send_deleteResultSetRequest(arg))
2643 static int cmd_ssub(const char *arg)
2645 if (!(smallSetUpperBound = atoi(arg)))
2650 static int cmd_lslb(const char *arg)
2652 if (!(largeSetLowerBound = atoi(arg)))
2657 static int cmd_mspn(const char *arg)
2659 if (!(mediumSetPresentNumber = atoi(arg)))
2664 static int cmd_status(const char *arg)
2666 printf("smallSetUpperBound: %d\n", smallSetUpperBound);
2667 printf("largeSetLowerBound: %d\n", largeSetLowerBound);
2668 printf("mediumSetPresentNumber: %d\n", mediumSetPresentNumber);
2672 static int cmd_setnames(const char *arg)
2674 if (*arg == '1') /* enable ? */
2676 else if (*arg == '0') /* disable ? */
2678 else if (setnumber < 0) /* no args, toggle .. */
2684 printf("Set numbering enabled.\n");
2686 printf("Set numbering disabled.\n");
2690 /* PRESENT SERVICE ----------------------------- */
2692 static void parse_show_args(const char *arg_c, char *setstring,
2693 int *start, int *number)
2698 strncpy(arg, arg_c, sizeof(arg)-1);
2699 arg[sizeof(arg)-1] = '\0';
2701 if ((p = strchr(arg, '+')))
2703 *number = atoi(p + 1);
2708 if (!strcmp(arg, "all"))
2710 *number = last_hit_count;
2716 if (p && (p=strchr(p+1, '+')))
2717 strcpy (setstring, p+1);
2718 else if (setnumber >= 0)
2719 sprintf(setstring, "%d", setnumber);
2724 static int send_presentRequest(const char *arg)
2726 Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
2727 Z_PresentRequest *req = apdu->u.presentRequest;
2728 Z_RecordComposition compo;
2730 char setstring[100];
2732 req->referenceId = set_refid (out);
2734 parse_show_args(arg, setstring, &setno, &nos);
2736 req->resultSetId = setstring;
2738 req->resultSetStartPoint = &setno;
2739 req->numberOfRecordsRequested = &nos;
2741 if (recordsyntax_size)
2742 req->preferredRecordSyntax =
2743 yaz_string_to_oid_odr(yaz_oid_std(),
2744 CLASS_RECSYN, recordsyntax_list[0], out);
2746 if (record_schema || recordsyntax_size >= 2)
2748 req->recordComposition = &compo;
2749 compo.which = Z_RecordComp_complex;
2750 compo.u.complex = (Z_CompSpec *)
2751 odr_malloc(out, sizeof(*compo.u.complex));
2752 compo.u.complex->selectAlternativeSyntax = (bool_t *)
2753 odr_malloc(out, sizeof(bool_t));
2754 *compo.u.complex->selectAlternativeSyntax = 0;
2756 compo.u.complex->generic = (Z_Specification *)
2757 odr_malloc(out, sizeof(*compo.u.complex->generic));
2759 compo.u.complex->generic->which = Z_Schema_oid;
2761 compo.u.complex->generic->schema.oid = 0;
2764 compo.u.complex->generic->schema.oid =
2765 yaz_string_to_oid_odr(yaz_oid_std(),
2766 CLASS_SCHEMA, record_schema, out);
2768 if (!compo.u.complex->generic->schema.oid)
2770 /* OID wasn't a schema! Try record syntax instead. */
2771 compo.u.complex->generic->schema.oid = (Odr_oid *)
2772 yaz_string_to_oid_odr(yaz_oid_std(),
2773 CLASS_RECSYN, record_schema, out);
2776 if (!elementSetNames)
2777 compo.u.complex->generic->elementSpec = 0;
2780 compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
2781 odr_malloc(out, sizeof(Z_ElementSpec));
2782 compo.u.complex->generic->elementSpec->which =
2783 Z_ElementSpec_elementSetName;
2784 compo.u.complex->generic->elementSpec->u.elementSetName =
2785 elementSetNames->u.generic;
2787 compo.u.complex->num_dbSpecific = 0;
2788 compo.u.complex->dbSpecific = 0;
2790 compo.u.complex->num_recordSyntax = 0;
2791 compo.u.complex->recordSyntax = 0;
2792 if (recordsyntax_size >= 2)
2795 compo.u.complex->num_recordSyntax = recordsyntax_size;
2796 compo.u.complex->recordSyntax = (Odr_oid **)
2797 odr_malloc(out, recordsyntax_size * sizeof(Odr_oid*));
2798 for (i = 0; i < recordsyntax_size; i++)
2799 compo.u.complex->recordSyntax[i] =
2800 yaz_string_to_oid_odr(yaz_oid_std(),
2801 CLASS_RECSYN, recordsyntax_list[i], out);
2804 else if (elementSetNames)
2806 req->recordComposition = &compo;
2807 compo.which = Z_RecordComp_simple;
2808 compo.u.simple = elementSetNames;
2811 printf("Sent presentRequest (%d+%d).\n", setno, nos);
2816 static int send_SRW_presentRequest(const char *arg)
2818 char setstring[100];
2820 Z_SRW_PDU *sr = srw_sr;
2824 parse_show_args(arg, setstring, &setno, &nos);
2825 sr->u.request->startRecord = odr_intdup(out, setno);
2826 sr->u.request->maximumRecords = odr_intdup(out, nos);
2828 sr->u.request->recordSchema = record_schema;
2829 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2830 sr->u.request->recordPacking = "xml";
2831 return send_srw(sr);
2835 static void close_session (void)
2847 void process_close(Z_Close *req)
2849 Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
2850 Z_Close *res = apdu->u.close;
2852 static char *reasons[] =
2857 "cost limit reached",
2859 "security violation",
2866 printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
2867 req->diagnosticInformation ? req->diagnosticInformation : "NULL");
2872 *res->closeReason = Z_Close_finished;
2874 printf("Sent response.\n");
2879 static int cmd_show(const char *arg)
2881 if (protocol == PROTO_HTTP)
2885 session_connect(cur_host);
2888 if (!send_SRW_presentRequest(arg))
2898 printf("Not connected yet\n");
2901 if (!send_presentRequest(arg))
2907 void exit_client(int code)
2909 file_history_save(file_history);
2910 file_history_destroy(&file_history);
2914 int cmd_quit(const char *arg)
2916 printf("See you later, alligator.\n");
2922 int cmd_cancel(const char *arg)
2924 Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
2925 Z_TriggerResourceControlRequest *req =
2926 apdu->u.triggerResourceControlRequest;
2931 sscanf(arg, "%15s", command);
2935 if (session_initResponse &&
2936 !ODR_MASK_GET(session_initResponse->options,
2937 Z_Options_triggerResourceCtrl))
2939 printf("Target doesn't support cancel (trigger resource ctrl)\n");
2942 *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
2943 req->resultSetWanted = &rfalse;
2944 req->referenceId = set_refid (out);
2947 printf("Sent cancel request\n");
2948 if (!strcmp(command, "wait"))
2954 int cmd_cancel_find(const char *arg) {
2958 return cmd_cancel("");
2963 int send_scanrequest(const char *set, const char *query,
2964 int pp, int num, const char *term)
2966 Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
2967 Z_ScanRequest *req = apdu->u.scanRequest;
2971 if (queryType == QueryType_CCL2RPN)
2974 struct ccl_rpn_node *rpn;
2976 rpn = ccl_find_str (bibset, query, &error, &pos);
2979 printf("CCL ERROR: %s\n", ccl_err_msg(error));
2983 yaz_string_to_oid_odr(yaz_oid_std(),
2984 CLASS_ATTSET, "Bib-1", out);
2985 if (!(req->termListAndStartPoint = ccl_scan_query (out, rpn)))
2987 printf("Couldn't convert CCL to Scan term\n");
2990 ccl_rpn_delete (rpn);
2994 YAZ_PQF_Parser pqf_parser = yaz_pqf_create ();
2996 if (!(req->termListAndStartPoint =
2997 yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
2999 const char *pqf_msg;
3001 int code = yaz_pqf_error (pqf_parser, &pqf_msg, &off);
3003 printf("%*s^\n", ioff+7, "");
3004 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
3005 yaz_pqf_destroy (pqf_parser);
3008 yaz_pqf_destroy (pqf_parser);
3010 if (queryCharset && outputCharset)
3012 yaz_iconv_t cd = yaz_iconv_open(queryCharset, outputCharset);
3015 printf("Conversion from %s to %s unsupported\n",
3016 outputCharset, queryCharset);
3019 yaz_query_charset_convert_apt(req->termListAndStartPoint, out, cd);
3020 yaz_iconv_close(cd);
3024 if (req->termListAndStartPoint->term &&
3025 req->termListAndStartPoint->term->which == Z_Term_general &&
3026 req->termListAndStartPoint->term->u.general)
3028 req->termListAndStartPoint->term->u.general->buf =
3029 (unsigned char *) odr_strdup(out, term);
3030 req->termListAndStartPoint->term->u.general->len =
3031 req->termListAndStartPoint->term->u.general->size =
3035 req->referenceId = set_refid (out);
3036 req->num_databaseNames = num_databaseNames;
3037 req->databaseNames = databaseNames;
3038 req->numberOfTermsRequested = #
3039 req->preferredPositionInResponse = &pp;
3040 req->stepSize = odr_intdup(out, scan_stepSize);
3043 yaz_oi_set_string_oid(&req->otherInfo, out,
3044 yaz_oid_userinfo_scan_set, 1, set);
3050 int send_sortrequest(const char *arg, int newset)
3052 Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
3053 Z_SortRequest *req = apdu->u.sortRequest;
3054 Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
3055 odr_malloc (out, sizeof(*sksl));
3061 sprintf (setstring, "%d", setnumber);
3063 sprintf (setstring, "default");
3065 req->referenceId = set_refid (out);
3067 req->num_inputResultSetNames = 1;
3068 req->inputResultSetNames = (Z_InternationalString **)
3069 odr_malloc (out, sizeof(*req->inputResultSetNames));
3070 req->inputResultSetNames[0] = odr_strdup (out, setstring);
3072 if (newset && setnumber >= 0)
3073 sprintf (setstring, "%d", ++setnumber);
3075 req->sortedResultSetName = odr_strdup (out, setstring);
3077 req->sortSequence = yaz_sort_spec (out, arg);
3078 if (!req->sortSequence)
3080 printf ("Missing sort specifications\n");
3087 void display_term(Z_TermInfo *t)
3090 printf("%s", t->displayTerm);
3091 else if (t->term->which == Z_Term_general)
3092 printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
3094 printf("Term (not general)");
3095 if (t->term->which == Z_Term_general)
3096 sprintf(last_scan_line, "%.*s", t->term->u.general->len,
3097 t->term->u.general->buf);
3099 if (t->globalOccurrences)
3100 printf (" (%d)\n", *t->globalOccurrences);
3105 void process_scanResponse(Z_ScanResponse *res)
3108 Z_Entry **entries = NULL;
3109 int num_entries = 0;
3111 printf("Received ScanResponse\n");
3112 print_refid (res->referenceId);
3113 printf("%d entries", *res->numberOfEntriesReturned);
3114 if (res->positionOfTerm)
3115 printf (", position=%d", *res->positionOfTerm);
3117 if (*res->scanStatus != Z_Scan_success)
3118 printf("Scan returned code %d\n", *res->scanStatus);
3121 if ((entries = res->entries->entries))
3122 num_entries = res->entries->num_entries;
3123 for (i = 0; i < num_entries; i++)
3125 int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
3126 if (entries[i]->which == Z_Entry_termInfo)
3128 printf("%c ", i + 1 == pos_term ? '*' : ' ');
3129 display_term(entries[i]->u.termInfo);
3132 display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
3134 if (res->entries->nonsurrogateDiagnostics)
3135 display_diagrecs (res->entries->nonsurrogateDiagnostics,
3136 res->entries->num_nonsurrogateDiagnostics);
3139 void process_sortResponse(Z_SortResponse *res)
3141 printf("Received SortResponse: status=");
3142 switch (*res->sortStatus)
3144 case Z_SortResponse_success:
3145 printf ("success"); break;
3146 case Z_SortResponse_partial_1:
3147 printf ("partial"); break;
3148 case Z_SortResponse_failure:
3149 printf ("failure"); break;
3151 printf ("unknown (%d)", *res->sortStatus);
3154 print_refid (res->referenceId);
3155 if (res->diagnostics)
3156 display_diagrecs(res->diagnostics,
3157 res->num_diagnostics);
3160 void process_deleteResultSetResponse (Z_DeleteResultSetResponse *res)
3162 printf("Got deleteResultSetResponse status=%d\n",
3163 *res->deleteOperationStatus);
3164 if (res->deleteListStatuses)
3167 for (i = 0; i < res->deleteListStatuses->num; i++)
3169 printf ("%s status=%d\n", res->deleteListStatuses->elements[i]->id,
3170 *res->deleteListStatuses->elements[i]->status);
3175 int cmd_sort_generic(const char *arg, int newset)
3179 if (session_initResponse &&
3180 !ODR_MASK_GET(session_initResponse->options, Z_Options_sort))
3182 printf("Target doesn't support sort\n");
3187 if (send_sortrequest(arg, newset) < 0)
3194 int cmd_sort(const char *arg)
3196 return cmd_sort_generic (arg, 0);
3199 int cmd_sort_newset (const char *arg)
3201 return cmd_sort_generic (arg, 1);
3204 int cmd_scanstep(const char *arg)
3206 scan_stepSize = atoi(arg);
3210 int cmd_scanpos(const char *arg)
3212 int r = sscanf(arg, "%d", &scan_position);
3218 int cmd_scansize(const char *arg)
3220 int r = sscanf(arg, "%d", &scan_size);
3226 static int cmd_scan_common(const char *set, const char *arg)
3228 if (protocol == PROTO_HTTP)
3232 session_connect(cur_host);
3237 if (send_SRW_scanRequest(arg, scan_position, scan_size) < 0)
3242 if (send_SRW_scanRequest(last_scan_line, 1, scan_size) < 0)
3257 printf("Session not initialized yet\n");
3261 if (session_initResponse &&
3262 !ODR_MASK_GET(session_initResponse->options, Z_Options_scan))
3264 printf("Target doesn't support scan\n");
3269 strcpy (last_scan_query, arg);
3270 if (send_scanrequest(set, arg,
3271 scan_position, scan_size, 0) < 0)
3276 if (send_scanrequest(set, last_scan_query,
3277 1, scan_size, last_scan_line) < 0)
3284 int cmd_scan(const char *arg)
3286 return cmd_scan_common(0, arg);
3289 int cmd_setscan(const char *arg)
3291 char setstring[100];
3293 if (sscanf(arg, "%99s%n", setstring, &nor) < 1)
3295 printf("missing set for setscan\n");
3298 return cmd_scan_common(setstring, arg + nor);
3301 int cmd_schema(const char *arg)
3303 xfree(record_schema);
3306 record_schema = xstrdup(arg);
3310 int cmd_format(const char *arg)
3312 const char *cp = arg;
3319 printf("Usage: format <recordsyntax>\n");
3322 for (i = 0; i < recordsyntax_size; i++)
3324 xfree(recordsyntax_list[i]);
3325 recordsyntax_list[i] = 0;
3328 while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3329 && idx < RECORDSYNTAX_MAX)
3331 if (!strcmp(form_str, "none"))
3333 recordsyntax_list[idx] = xstrdup(form_str);
3337 recordsyntax_size = idx;
3341 int cmd_elements(const char *arg)
3343 static Z_ElementSetNames esn;
3344 static char what[100];
3348 elementSetNames = 0;
3352 esn.which = Z_ElementSetNames_generic;
3353 esn.u.generic = what;
3354 elementSetNames = &esn;
3358 int cmd_querytype (const char *arg)
3360 if (!strcmp (arg, "ccl"))
3361 queryType = QueryType_CCL;
3362 else if (!strcmp (arg, "prefix") || !strcmp(arg, "rpn"))
3363 queryType = QueryType_Prefix;
3364 else if (!strcmp (arg, "ccl2rpn") || !strcmp (arg, "cclrpn"))
3365 queryType = QueryType_CCL2RPN;
3366 else if (!strcmp(arg, "cql"))
3367 queryType = QueryType_CQL;
3368 else if (!strcmp (arg, "cql2rpn") || !strcmp (arg, "cqlrpn"))
3369 queryType = QueryType_CQL2RPN;
3372 printf ("Querytype must be one of:\n");
3373 printf (" prefix - Prefix query\n");
3374 printf (" ccl - CCL query\n");
3375 printf (" ccl2rpn - CCL query converted to RPN\n");
3376 printf (" cql - CQL\n");
3377 printf (" cql2rpn - CQL query converted to RPN\n");
3383 int cmd_refid (const char *arg)
3388 refid = xstrdup (arg);
3392 int cmd_close(const char *arg)
3398 apdu = zget_APDU(out, Z_APDU_close);
3399 req = apdu->u.close;
3400 *req->closeReason = Z_Close_finished;
3402 printf("Sent close request.\n");
3407 int cmd_packagename(const char* arg)
3409 xfree (esPackageName);
3410 esPackageName = NULL;
3412 esPackageName = xstrdup(arg);
3416 int cmd_proxy(const char* arg)
3421 yazProxy = xstrdup (arg);
3425 int cmd_marccharset(const char *arg)
3430 if (sscanf(arg, "%29s", l1) < 1)
3432 printf("MARC character set is `%s'\n",
3433 marcCharset ? marcCharset: "none");
3436 xfree (marcCharset);
3438 if (strcmp(l1, "-") && strcmp(l1, "none"))
3439 marcCharset = xstrdup(l1);
3443 int cmd_querycharset(const char *arg)
3448 if (sscanf(arg, "%29s", l1) < 1)
3450 printf("Query character set is `%s'\n",
3451 queryCharset ? queryCharset: "none");
3454 xfree (queryCharset);
3456 if (strcmp(l1, "-") && strcmp(l1, "none"))
3457 queryCharset = xstrdup(l1);
3461 int cmd_displaycharset(const char *arg)
3466 if (sscanf(arg, "%29s", l1) < 1)
3468 printf("Display character set is `%s'\n",
3469 outputCharset ? outputCharset: "none");
3473 xfree (outputCharset);
3475 if (!strcmp(l1, "auto") && codeset)
3479 printf ("Display character set: %s\n", codeset);
3480 outputCharset = xstrdup(codeset);
3483 printf ("No codeset found on this system\n");
3485 else if (strcmp(l1, "-") && strcmp(l1, "none"))
3486 outputCharset = xstrdup(l1);
3491 int cmd_negcharset(const char *arg)
3496 if (sscanf(arg, "%29s %d %d", l1, &negotiationCharsetRecords,
3497 &negotiationCharsetVersion) < 1)
3499 printf("Negotiation character set `%s'\n",
3500 negotiationCharset ? negotiationCharset: "none");
3501 if (negotiationCharset)
3503 printf("Records in charset %s\n", negotiationCharsetRecords ?
3505 printf("Charneg version %d\n", negotiationCharsetVersion);
3510 xfree (negotiationCharset);
3511 negotiationCharset = NULL;
3512 if (*l1 && strcmp(l1, "-") && strcmp(l1, "none"))
3514 negotiationCharset = xstrdup(l1);
3515 printf ("Character set negotiation : %s\n", negotiationCharset);
3521 int cmd_charset(const char* arg)
3523 char l1[30], l2[30], l3[30], l4[30];
3525 *l1 = *l2 = *l3 = *l4 = '\0';
3526 if (sscanf(arg, "%29s %29s %29s %29s", l1, l2, l3, l4) < 1)
3529 cmd_displaycharset("");
3530 cmd_marccharset("");
3531 cmd_querycharset("");
3537 cmd_displaycharset(l2);
3539 cmd_marccharset(l3);
3541 cmd_querycharset(l4);
3546 int cmd_lang(const char* arg)
3549 printf("Current language is `%s'\n", yazLang ? yazLang : "none");
3555 yazLang = xstrdup(arg);
3559 int cmd_source(const char* arg, int echo )
3561 /* first should open the file and read one line at a time.. */
3563 char line[102400], *cp;
3566 fprintf(stderr,"Error in source command use a filename\n");
3570 includeFile = fopen (arg, "r");
3573 fprintf(stderr,"Unable to open file %s for reading\n",arg);
3577 while(!feof(includeFile)) {
3578 memset(line,0,sizeof(line));
3579 fgets(line,sizeof(line),includeFile);
3581 if(strlen(line) < 2) continue;
3582 if(line[0] == '#') continue;
3584 if ((cp = strrchr (line, '\n')))
3588 printf( "processing line: %s\n",line );
3590 process_cmd_line(line);
3593 if(fclose(includeFile)<0) {
3594 perror("unable to close include file");
3600 int cmd_source_echo(const char* arg)
3606 int cmd_source_noecho(const char* arg)
3613 int cmd_subshell(const char* args)
3618 system(getenv("SHELL"));
3624 int cmd_set_berfile(const char *arg)
3626 if (ber_file && ber_file != stdout && ber_file != stderr)
3628 if (!strcmp(arg, ""))
3630 else if (!strcmp(arg, "-"))
3633 ber_file = fopen(arg, "a");
3637 int cmd_set_apdufile(const char *arg)
3639 if(apdu_file && apdu_file != stderr && apdu_file != stderr)