2 * Copyright (c) 1995-2004, Index Data
3 * See the file LICENSE for details.
5 * $Id: client.c,v 1.250 2004-09-21 16:28:17 adam Exp $
19 #if HAVE_OPENSSL_SSL_H
20 #include <openssl/bio.h>
21 #include <openssl/crypto.h>
22 #include <openssl/x509.h>
23 #include <openssl/pem.h>
24 #include <openssl/ssl.h>
25 #include <openssl/err.h>
33 #define S_ISREG(x) (x & _S_IFREG)
34 #define S_ISDIR(x) (x & _S_IFDIR)
37 #include <yaz/yaz-util.h>
39 #include <yaz/comstack.h>
41 #include <yaz/proto.h>
42 #include <yaz/marcdisp.h>
43 #include <yaz/diagbib1.h>
44 #include <yaz/otherinfo.h>
45 #include <yaz/charneg.h>
47 #include <yaz/pquery.h>
48 #include <yaz/sortspec.h>
52 #include <yaz/yaz-ccl.h>
55 #if HAVE_READLINE_READLINE_H
56 #include <readline/readline.h>
59 #if HAVE_READLINE_HISTORY_H
60 #include <readline/history.h>
66 #include "tabcomplete.h"
68 #define C_PROMPT "Z> "
70 static char *codeset = 0; /* character set for output */
71 static int hex_dump = 0;
72 static char *dump_file_prefix = 0;
73 static ODR out, in, print; /* encoding and decoding streams */
75 static ODR srw_sr_odr_out = 0;
76 static Z_SRW_PDU *srw_sr = 0;
78 static FILE *apdu_file = 0;
79 static FILE *ber_file = 0;
80 static COMSTACK conn = 0; /* our z-association */
81 static Z_IdAuthentication *auth = 0; /* our current auth definition */
82 char *databaseNames[128];
83 int num_databaseNames = 0;
84 static Z_External *record_last = 0;
85 static int setnumber = -1; /* current result set number */
86 static int smallSetUpperBound = 0;
87 static int largeSetLowerBound = 1;
88 static int mediumSetPresentNumber = 0;
89 static Z_ElementSetNames *elementSetNames = 0;
90 static int setno = 1; /* current set offset */
91 static enum oid_proto protocol = PROTO_Z3950; /* current app protocol */
92 static enum oid_value recordsyntax = VAL_USMARC;
93 static char *record_schema = 0;
94 static int sent_close = 0;
95 static NMEM session_mem = NULL; /* memory handle for init-response */
96 static Z_InitResponse *session = 0; /* session parameters */
97 static char last_scan_line[512] = "0";
98 static char last_scan_query[512] = "0";
99 static char ccl_fields[512] = "default.bib";
100 /* ### How can I set this path to use wherever YAZ is installed? */
101 static char cql_fields[512] = "/usr/local/share/yaz/etc/pqf.properties";
102 static char *esPackageName = 0;
103 static char *yazProxy = 0;
104 static int kilobytes = 1024;
105 static char *negotiationCharset = 0;
106 static char *outputCharset = 0;
107 static char *marcCharset = 0;
108 static char* yazLang = 0;
109 static char* http_version = "1.1";
111 static char last_cmd[32] = "?";
112 static FILE *marc_file = 0;
113 static char *refid = NULL;
114 static char *last_open_command = NULL;
115 static int auto_reconnect = 0;
116 static Odr_bitmask z3950_options;
117 static int z3950_version = 3;
119 static char cur_host[200];
129 static QueryType queryType = QueryType_Prefix;
131 static CCL_bibset bibset; /* CCL bibset handle */
132 static cql_transform_t cqltrans; /* CQL context-set handle */
134 #if HAVE_READLINE_COMPLETION_OVER
137 /* readline doesn't have this var. Define it ourselves. */
138 int rl_attempted_completion_over = 0;
141 /* set this one to 1, to avoid decode of unknown MARCs */
142 #define AVOID_MARC_DECODE 1
144 #define maxOtherInfosSupported 10
148 } extraOtherInfos[maxOtherInfosSupported];
151 void process_cmd_line(char* line);
152 char ** readline_completer(char *text, int start, int end);
153 char *command_generator(const char *text, int state);
154 char** curret_global_list=NULL;
155 int cmd_register_tab(const char* arg);
157 static void close_session (void);
159 ODR getODROutputStream()
164 const char* query_type_as_string(QueryType q)
167 case QueryType_Prefix: return "prefix (RPN sent to server)";
168 case QueryType_CCL: return "CCL (CCL sent to server) ";
169 case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
170 case QueryType_CQL: return "CQL (CQL sent to server)";
171 case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
173 return "unknown Query type internal yaz-client error";
177 static void do_hex_dump(const char* buf, int len)
182 for( i=0; i<len ; i=i+16 )
185 for(x=0 ; i+x<len && x<16; ++x)
187 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
192 if (dump_file_prefix)
195 if (++no < 1000 && strlen(dump_file_prefix) < 500)
199 sprintf (fname, "%s.%03d.raw", dump_file_prefix, no);
200 of = fopen(fname, "wb");
202 fwrite (buf, 1, len, of);
209 void add_otherInfos(Z_APDU *a)
211 Z_OtherInformation **oi;
215 for(i=0; i<maxOtherInfosSupported; ++i)
217 if(extraOtherInfos[i].oidval != -1)
218 yaz_oi_set_string_oidval(oi, out, extraOtherInfos[i].oidval,
219 1, extraOtherInfos[i].value);
223 int send_apdu(Z_APDU *a)
232 z_APDU(print, &a, 0, 0);
235 if (!z_APDU(out, &a, 0, 0))
237 odr_perror(out, "Encoding APDU");
241 buf = odr_getbuf(out, &len, 0);
243 odr_dumpBER(ber_file, buf, len);
244 /* printf ("sending APDU of size %d\n", len); */
245 do_hex_dump(buf, len);
246 if (cs_put(conn, buf, len) < 0)
248 fprintf(stderr, "cs_put: %s", cs_errmsg(cs_errno(conn)));
252 odr_reset(out); /* release the APDU structure */
256 static void print_stringn(const unsigned char *buf, size_t len)
259 for (i = 0; i<len; i++)
260 if ((buf[i] <= 126 && buf[i] >= 32) || strchr ("\n\r\t\f", buf[i]))
261 printf ("%c", buf[i]);
263 printf ("\\X%02X", buf[i]);
266 static void print_refid (Z_ReferenceId *id)
270 printf ("Reference Id: ");
271 print_stringn (id->buf, id->len);
276 static Z_ReferenceId *set_refid (ODR out)
281 id = (Z_ReferenceId *) odr_malloc (out, sizeof(*id));
282 id->size = id->len = strlen(refid);
283 id->buf = (unsigned char *) odr_malloc (out, id->len);
284 memcpy (id->buf, refid, id->len);
288 /* INIT SERVICE ------------------------------- */
290 static void send_initRequest(const char* type_and_host)
292 Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
293 Z_InitRequest *req = apdu->u.initRequest;
296 req->options = &z3950_options;
298 ODR_MASK_ZERO(req->protocolVersion);
299 for (i = 0; i<z3950_version; i++)
300 ODR_MASK_SET(req->protocolVersion, i);
302 *req->maximumRecordSize = 1024*kilobytes;
303 *req->preferredMessageSize = 1024*kilobytes;
305 req->idAuthentication = auth;
307 req->referenceId = set_refid (out);
309 if (yazProxy && type_and_host)
310 yaz_oi_set_string_oidval(&req->otherInfo, out, VAL_PROXY,
313 if (negotiationCharset || yazLang) {
314 Z_OtherInformation **p;
315 Z_OtherInformationUnit *p0;
317 yaz_oi_APDU(apdu, &p);
319 if ((p0=yaz_oi_update(p, out, NULL, 0, 0))) {
320 ODR_MASK_SET(req->options, Z_Options_negotiationModel);
322 p0->which = Z_OtherInfo_externallyDefinedInfo;
323 p0->information.externallyDefinedInfo =
324 yaz_set_proposal_charneg(
326 (const char**)&negotiationCharset,
327 negotiationCharset ? 1 : 0,
328 (const char**)&yazLang, yazLang ? 1 : 0, 1);
333 printf("Sent initrequest.\n");
337 /* These two are used only from process_initResponse() */
338 static void render_initUserInfo(Z_OtherInformation *ui1);
339 static void render_diag(Z_DiagnosticFormat *diag);
341 static void pr_opt(const char *opt, void *clientData)
346 static int process_initResponse(Z_InitResponse *res)
349 /* save session parameters for later use */
350 session_mem = odr_extract_mem(in);
353 for (ver = 0; ver < 8; ver++)
354 if (!ODR_MASK_GET(res->protocolVersion, ver))
358 printf("Connection rejected by v%d target.\n", ver);
360 printf("Connection accepted by v%d target.\n", ver);
361 if (res->implementationId)
362 printf("ID : %s\n", res->implementationId);
363 if (res->implementationName)
364 printf("Name : %s\n", res->implementationName);
365 if (res->implementationVersion)
366 printf("Version: %s\n", res->implementationVersion);
367 if (res->userInformationField)
369 Z_External *uif = res->userInformationField;
370 if (uif->which == Z_External_userInfo1) {
371 render_initUserInfo(uif->u.userInfo1);
373 printf("UserInformationfield:\n");
374 if (!z_External(print, (Z_External**)&uif, 0, 0)) {
375 odr_perror(print, "Printing userinfo\n");
378 if (uif->which == Z_External_octet) {
379 printf("Guessing visiblestring:\n");
380 printf("'%s'\n", uif->u. octet_aligned->buf);
381 } else if (uif->which == Z_External_single) {
382 Odr_any *sat = uif->u.single_ASN1_type;
383 oident *oid = oid_getentbyoid(uif->direct_reference);
384 if (oid->value == VAL_OCLCUI) {
385 Z_OCLC_UserInformation *oclc_ui;
386 ODR decode = odr_createmem(ODR_DECODE);
387 odr_setbuf(decode, sat->buf, sat->len, 0);
388 if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
389 printf ("Bad OCLC UserInformation:\n");
391 printf ("OCLC UserInformation:\n");
392 if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
393 printf ("Bad OCLC UserInformation spec\n");
398 /* Peek at any private Init-diagnostic APDUs */
399 printf("### NAUGHTY: External is '%.*s'\n", sat->len, sat->buf);
406 yaz_init_opt_decode(res->options, pr_opt, 0);
409 if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
412 if (ODR_MASK_GET(res->options, Z_Options_negotiationModel)) {
414 Z_CharSetandLanguageNegotiation *p =
415 yaz_get_charneg_record(res->otherInfo);
419 char *charset=NULL, *lang=NULL;
422 yaz_get_response_charneg(session_mem, p, &charset, &lang,
425 if (outputCharset && negotiationCharset) {
426 odr_set_charset (out, charset, outputCharset);
427 odr_set_charset (in, outputCharset, charset);
430 odr_set_charset (out, 0, 0);
431 odr_set_charset (in, 0, 0);
434 printf("Accepted character set : %s\n", charset);
435 printf("Accepted code language : %s\n", lang ? lang : "none");
436 printf("Accepted records in ...: %d\n", selected );
444 static void render_initUserInfo(Z_OtherInformation *ui1) {
446 printf("Init response contains %d otherInfo unit%s:\n",
447 ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
449 for (i = 0; i < ui1->num_elements; i++) {
450 Z_OtherInformationUnit *unit = ui1->list[i];
451 printf(" %d: otherInfo unit contains ", i+1);
452 if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
453 unit->information.externallyDefinedInfo->which ==
455 render_diag(unit->information.externallyDefinedInfo->u.diag1);
457 printf("unsupported otherInfo unit type %d\n", unit->which);
463 /* ### should this share code with display_diagrecs()? */
464 static void render_diag(Z_DiagnosticFormat *diag) {
467 printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
468 for (i = 0; i < diag->num; i++) {
469 Z_DiagnosticFormat_s *ds = diag->elements[i];
470 printf(" %d: ", i+1);
472 case Z_DiagnosticFormat_s_defaultDiagRec: {
473 Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
474 /* ### should check `dd->diagnosticSetId' */
475 printf("code=%d (%s)", *dd->condition,
476 diagbib1_str(*dd->condition));
477 /* Both types of addinfo are the same, so use type-pun */
478 if (dd->u.v2Addinfo != 0)
479 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
482 case Z_DiagnosticFormat_s_explicitDiagnostic:
483 printf("Explicit diagnostic (not supported)");
486 printf("Unrecognised diagnostic type %d", ds->which);
490 if (ds->message != 0)
491 printf(", message='%s'", ds->message);
497 static int set_base(const char *arg)
502 for (i = 0; i<num_databaseNames; i++)
503 xfree (databaseNames[i]);
504 num_databaseNames = 0;
508 if (!(cp = strchr(arg, ' ')))
509 cp = arg + strlen(arg);
512 databaseNames[num_databaseNames] = (char *)xmalloc (1 + cp - arg);
513 memcpy (databaseNames[num_databaseNames], arg, cp - arg);
514 databaseNames[num_databaseNames][cp - arg] = '\0';
516 for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
525 if (num_databaseNames == 0)
527 num_databaseNames = 1;
528 databaseNames[0] = xstrdup("");
533 static int cmd_base(const char *arg)
537 printf("Usage: base <database> <database> ...\n");
540 return set_base(arg);
543 void cmd_open_remember_last_open_command(const char* arg, char* new_open_command)
545 if(last_open_command != arg)
547 if(last_open_command) xfree(last_open_command);
548 last_open_command = xstrdup(new_open_command);
552 int session_connect(const char *arg)
555 char type_and_host[101];
556 const char *basep = 0;
557 #if HAVE_OPENSSL_SSL_H
566 nmem_destroy (session_mem);
570 cs_get_host_args(arg, &basep);
572 strncpy(type_and_host, arg, sizeof(type_and_host)-1);
573 type_and_host[sizeof(type_and_host)-1] = '\0';
575 cmd_open_remember_last_open_command(arg,type_and_host);
578 conn = cs_create_host(yazProxy, 1, &add);
580 conn = cs_create_host(arg, 1, &add);
583 printf ("Couldn't create comstack\n");
587 if (conn->protocol == PROTO_HTTP)
588 queryType = QueryType_CQL;
590 if (conn->protocol == PROTO_HTTP)
592 printf ("SRW/HTTP not enabled in this YAZ\n");
598 protocol = conn->protocol;
599 if (conn->protocol == PROTO_HTTP)
603 printf("Connecting...");
605 if (cs_connect(conn, add) < 0)
607 printf ("error = %s\n", cs_strerror(conn));
608 if (conn->cerrno == CSYSERR)
611 yaz_strerror(msg, sizeof(msg));
612 printf ("%s\n", msg);
619 #if HAVE_OPENSSL_SSL_H
620 if ((ssl = (SSL *) cs_get_ssl(conn)))
622 X509 *server_cert = SSL_get_peer_certificate (ssl);
628 BIO *bio = BIO_new(BIO_s_mem());
630 /* get PEM buffer in memory */
631 PEM_write_bio_X509(bio, server_cert);
632 pem_len = BIO_get_mem_data(bio, &pem_buf);
633 fwrite(pem_buf, pem_len, 1, stdout);
635 /* print all info on screen .. */
636 X509_print_fp(stdout, server_cert);
639 X509_free (server_cert);
645 if (protocol == PROTO_Z3950)
647 send_initRequest(type_and_host);
653 int cmd_open(const char *arg)
657 strncpy (cur_host, arg, sizeof(cur_host)-1);
658 cur_host[sizeof(cur_host)-1] = 0;
660 return session_connect(cur_host);
667 if(!( auto_reconnect && last_open_command) ) return ;
669 open_command = (char *) xmalloc (strlen(last_open_command)+6);
670 strcpy (open_command, "open ");
672 strcat (open_command, last_open_command);
674 process_cmd_line(open_command);
679 int cmd_authentication(const char *arg)
681 static Z_IdAuthentication au;
682 static char user[40], group[40], pass[40];
683 static Z_IdPass idPass;
688 printf("Auth field set to null\n");
692 r = sscanf (arg, "%39s %39s %39s", user, group, pass);
695 printf("Authentication set to null\n");
701 if (!strcmp(user, "-")) {
702 au.which = Z_IdAuthentication_anonymous;
703 printf("Authentication set to Anonymous\n");
705 au.which = Z_IdAuthentication_open;
707 printf("Authentication set to Open (%s)\n", user);
713 au.which = Z_IdAuthentication_idPass;
714 au.u.idPass = &idPass;
715 idPass.groupId = NULL;
716 idPass.userId = user;
717 idPass.password = group;
718 printf("Authentication set to User (%s), Pass (%s)\n", user, group);
723 au.which = Z_IdAuthentication_idPass;
724 au.u.idPass = &idPass;
725 idPass.groupId = group;
726 idPass.userId = user;
727 idPass.password = pass;
728 printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
734 /* SEARCH SERVICE ------------------------------ */
735 static void display_record(Z_External *r);
737 static void print_record(const unsigned char *buf, size_t len)
740 print_stringn (buf, len);
741 /* add newline if not already added ... */
742 if (i <= 0 || buf[i-1] != '\n')
745 fwrite (buf, 1, len, marc_file);
748 static void display_record(Z_External *r)
750 oident *ent = oid_getentbyoid(r->direct_reference);
754 * Tell the user what we got.
756 if (r->direct_reference)
758 printf("Record type: ");
760 printf("%s\n", ent->desc);
761 else if (!odr_oid(print, &r->direct_reference, 0, 0))
763 odr_perror(print, "print oid");
767 /* Check if this is a known, ASN.1 type tucked away in an octet string */
768 if (ent && r->which == Z_External_octet)
770 Z_ext_typeent *type = z_ext_getentbyref(ent->value);
776 * Call the given decoder to process the record.
778 odr_setbuf(in, (char*)r->u.octet_aligned->buf,
779 r->u.octet_aligned->len, 0);
780 if (!(*type->fun)(in, &rr, 0, 0))
782 odr_perror(in, "Decoding constructed record.");
783 fprintf(stdout, "[Near %d]\n", odr_offset(in));
784 fprintf(stdout, "Packet dump:\n---------\n");
785 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
786 r->u.octet_aligned->len);
787 fprintf(stdout, "---------\n");
789 /* note just ignores the error ant print the bytes form the octet_aligned later */
792 * Note: we throw away the original, BER-encoded record here.
793 * Do something else with it if you want to keep it.
795 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
796 r->which = type->what;
800 if (ent && ent->value == VAL_SOIF)
801 print_record((const unsigned char *) r->u.octet_aligned->buf,
802 r->u.octet_aligned->len);
803 else if (r->which == Z_External_octet)
805 const char *octet_buf = (char*)r->u.octet_aligned->buf;
806 if (ent->oclass == CLASS_RECSYN &&
807 (ent->value == VAL_TEXT_XML ||
808 ent->value == VAL_APPLICATION_XML ||
809 ent->value == VAL_HTML))
811 print_record((const unsigned char *) octet_buf,
812 r->u.octet_aligned->len);
814 else if (ent->value == VAL_POSTSCRIPT)
816 int size = r->u.octet_aligned->len;
819 print_record((const unsigned char *) octet_buf, size);
824 #if AVOID_MARC_DECODE
825 /* primitive check for a marc OID 5.1-29 except 16 */
826 ent->oidsuffix[0] == 5 && ent->oidsuffix[1] < 30 &&
827 ent->oidsuffix[1] != 16
836 yaz_marc_t mt = yaz_marc_create();
838 if (yaz_marc_decode_buf(mt, octet_buf,r->u.octet_aligned->len,
842 if (marcCharset && !strcmp(marcCharset, "auto"))
844 if (ent->value == VAL_USMARC)
846 if (octet_buf[9] == 'a')
854 else if (marcCharset)
856 if (outputCharset && from)
858 cd = yaz_iconv_open(outputCharset, from);
859 printf ("convert from %s to %s", from,
862 printf (" unsupported\n");
867 fwrite (result, 1, rlen, stdout);
871 size_t inbytesleft = rlen;
872 const char *inp = result;
876 size_t outbytesleft = sizeof(outbuf);
880 r = yaz_iconv (cd, (char**) &inp,
882 &outp, &outbytesleft);
883 if (r == (size_t) (-1))
885 int e = yaz_iconv_error(cd);
886 if (e != YAZ_ICONV_E2BIG)
889 fwrite (outbuf, outp - outbuf, 1, stdout);
895 printf ("bad MARC. Dumping as it is:\n");
896 print_record((const unsigned char*) octet_buf,
897 r->u.octet_aligned->len);
899 yaz_marc_destroy(mt);
905 print_record((const unsigned char*) octet_buf,
906 r->u.octet_aligned->len);
910 fwrite (octet_buf, 1, r->u.octet_aligned->len, marc_file);
912 else if (ent && ent->value == VAL_SUTRS)
914 if (r->which != Z_External_sutrs)
916 printf("Expecting single SUTRS type for SUTRS.\n");
919 print_record(r->u.sutrs->buf, r->u.sutrs->len);
921 else if (ent && ent->value == VAL_GRS1)
924 if (r->which != Z_External_grs1)
926 printf("Expecting single GRS type for GRS.\n");
930 yaz_display_grs1(w, r->u.grs1, 0);
934 else if ( /* OPAC display not complete yet .. */
935 ent && ent->value == VAL_OPAC)
938 if (r->u.opac->bibliographicRecord)
939 display_record(r->u.opac->bibliographicRecord);
940 for (i = 0; i<r->u.opac->num_holdingsData; i++)
942 Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
943 if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
945 printf ("MARC holdings %d\n", i);
946 display_record(h->u.marcHoldingsRecord);
948 else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
952 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
954 printf ("Data holdings %d\n", i);
955 if (data->typeOfRecord)
956 printf ("typeOfRecord: %s\n", data->typeOfRecord);
957 if (data->encodingLevel)
958 printf ("encodingLevel: %s\n", data->encodingLevel);
959 if (data->receiptAcqStatus)
960 printf ("receiptAcqStatus: %s\n", data->receiptAcqStatus);
961 if (data->generalRetention)
962 printf ("generalRetention: %s\n", data->generalRetention);
963 if (data->completeness)
964 printf ("completeness: %s\n", data->completeness);
965 if (data->dateOfReport)
966 printf ("dateOfReport: %s\n", data->dateOfReport);
968 printf ("nucCode: %s\n", data->nucCode);
969 if (data->localLocation)
970 printf ("localLocation: %s\n", data->localLocation);
971 if (data->shelvingLocation)
972 printf ("shelvingLocation: %s\n", data->shelvingLocation);
973 if (data->callNumber)
974 printf ("callNumber: %s\n", data->callNumber);
975 if (data->shelvingData)
976 printf ("shelvingData: %s\n", data->shelvingData);
977 if (data->copyNumber)
978 printf ("copyNumber: %s\n", data->copyNumber);
979 if (data->publicNote)
980 printf ("publicNote: %s\n", data->publicNote);
981 if (data->reproductionNote)
982 printf ("reproductionNote: %s\n", data->reproductionNote);
983 if (data->termsUseRepro)
984 printf ("termsUseRepro: %s\n", data->termsUseRepro);
985 if (data->enumAndChron)
986 printf ("enumAndChron: %s\n", data->enumAndChron);
987 for (j = 0; j<data->num_volumes; j++)
989 printf ("volume %d\n", j);
990 if (data->volumes[j]->enumeration)
991 printf (" enumeration: %s\n",
992 data->volumes[j]->enumeration);
993 if (data->volumes[j]->chronology)
994 printf (" chronology: %s\n",
995 data->volumes[j]->chronology);
996 if (data->volumes[j]->enumAndChron)
997 printf (" enumAndChron: %s\n",
998 data->volumes[j]->enumAndChron);
1000 for (j = 0; j<data->num_circulationData; j++)
1002 printf ("circulation %d\n", j);
1003 if (data->circulationData[j]->availableNow)
1004 printf (" availableNow: %d\n",
1005 *data->circulationData[j]->availableNow);
1006 if (data->circulationData[j]->availablityDate)
1007 printf (" availabiltyDate: %s\n",
1008 data->circulationData[j]->availablityDate);
1009 if (data->circulationData[j]->availableThru)
1010 printf (" availableThru: %s\n",
1011 data->circulationData[j]->availableThru);
1012 if (data->circulationData[j]->restrictions)
1013 printf (" restrictions: %s\n",
1014 data->circulationData[j]->restrictions);
1015 if (data->circulationData[j]->itemId)
1016 printf (" itemId: %s\n",
1017 data->circulationData[j]->itemId);
1018 if (data->circulationData[j]->renewable)
1019 printf (" renewable: %d\n",
1020 *data->circulationData[j]->renewable);
1021 if (data->circulationData[j]->onHold)
1022 printf (" onHold: %d\n",
1023 *data->circulationData[j]->onHold);
1024 if (data->circulationData[j]->enumAndChron)
1025 printf (" enumAndChron: %s\n",
1026 data->circulationData[j]->enumAndChron);
1027 if (data->circulationData[j]->midspine)
1028 printf (" midspine: %s\n",
1029 data->circulationData[j]->midspine);
1030 if (data->circulationData[j]->temporaryLocation)
1031 printf (" temporaryLocation: %s\n",
1032 data->circulationData[j]->temporaryLocation);
1039 printf("Unknown record representation.\n");
1040 if (!z_External(print, &r, 0, 0))
1042 odr_perror(print, "Printing external");
1048 static void display_diagrecs(Z_DiagRec **pp, int num)
1052 Z_DefaultDiagFormat *r;
1054 printf("Diagnostic message(s) from database:\n");
1055 for (i = 0; i<num; i++)
1057 Z_DiagRec *p = pp[i];
1058 if (p->which != Z_DiagRec_defaultFormat)
1060 printf("Diagnostic record not in default format.\n");
1064 r = p->u.defaultFormat;
1065 if (!(ent = oid_getentbyoid(r->diagnosticSetId)) ||
1066 ent->oclass != CLASS_DIAGSET || ent->value != VAL_BIB1)
1067 printf("Missing or unknown diagset\n");
1068 printf(" [%d] %s", *r->condition, diagbib1_str(*r->condition));
1071 case Z_DefaultDiagFormat_v2Addinfo:
1072 printf (" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1074 case Z_DefaultDiagFormat_v3Addinfo:
1075 printf (" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1082 static void display_nameplusrecord(Z_NamePlusRecord *p)
1084 if (p->databaseName)
1085 printf("[%s]", p->databaseName);
1086 if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1087 display_diagrecs(&p->u.surrogateDiagnostic, 1);
1088 else if (p->which == Z_NamePlusRecord_databaseRecord)
1089 display_record(p->u.databaseRecord);
1092 static void display_records(Z_Records *p)
1096 if (p->which == Z_Records_NSD)
1098 Z_DiagRec dr, *dr_p = &dr;
1099 dr.which = Z_DiagRec_defaultFormat;
1100 dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1101 display_diagrecs (&dr_p, 1);
1103 else if (p->which == Z_Records_multipleNSD)
1104 display_diagrecs (p->u.multipleNonSurDiagnostics->diagRecs,
1105 p->u.multipleNonSurDiagnostics->num_diagRecs);
1108 printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1109 for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1110 display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1114 static int send_deleteResultSetRequest(const char *arg)
1119 Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1120 Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1122 req->referenceId = set_refid (out);
1124 req->num_resultSetList =
1125 sscanf (arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1126 names[0], names[1], names[2], names[3],
1127 names[4], names[5], names[6], names[7]);
1129 req->deleteFunction = (int *)
1130 odr_malloc (out, sizeof(*req->deleteFunction));
1131 if (req->num_resultSetList > 0)
1133 *req->deleteFunction = Z_DeleteResultSetRequest_list;
1134 req->resultSetList = (char **)
1135 odr_malloc (out, sizeof(*req->resultSetList)*
1136 req->num_resultSetList);
1137 for (i = 0; i<req->num_resultSetList; i++)
1138 req->resultSetList[i] = names[i];
1142 *req->deleteFunction = Z_DeleteResultSetRequest_all;
1143 req->resultSetList = 0;
1147 printf("Sent deleteResultSetRequest.\n");
1152 static int send_srw(Z_SRW_PDU *sr)
1154 const char *charset = negotiationCharset;
1155 const char *host_port = cur_host;
1158 Z_SOAP_Handler h[2] = {
1159 {"http://www.loc.gov/zing/srw/", 0, (Z_SOAP_fun) yaz_srw_codec},
1162 ODR o = odr_createmem(ODR_ENCODE);
1164 Z_SOAP *p = odr_malloc(o, sizeof(*p));
1167 path = odr_malloc(out, strlen(databaseNames[0])+2);
1169 strcpy(path+1, databaseNames[0]);
1171 gdu = z_get_HTTP_Request(out);
1172 gdu->u.HTTP_Request->version = http_version;
1173 gdu->u.HTTP_Request->path = odr_strdup(out, path);
1177 const char *cp0 = strstr(host_port, "://");
1178 const char *cp1 = 0;
1184 cp1 = strchr(cp0, '/');
1186 cp1 = cp0+strlen(cp0);
1190 char *h = odr_malloc(out, cp1 - cp0 + 1);
1191 memcpy (h, cp0, cp1 - cp0);
1193 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers,
1198 strcpy(ctype, "text/xml");
1199 if (charset && strlen(charset) < 20)
1201 strcat(ctype, "; charset=");
1202 strcat(ctype, charset);
1204 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers,
1205 "Content-Type", ctype);
1206 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers,
1207 "SOAPAction", "\"\"");
1208 p->which = Z_SOAP_generic;
1209 p->u.generic = odr_malloc(o, sizeof(*p->u.generic));
1210 p->u.generic->no = 0;
1211 p->u.generic->ns = 0;
1212 p->u.generic->p = sr;
1213 p->ns = "http://schemas.xmlsoap.org/soap/envelope/";
1215 ret = z_soap_codec_enc(o, &p,
1216 &gdu->u.HTTP_Request->content_buf,
1217 &gdu->u.HTTP_Request->content_len, h,
1220 if (z_GDU(out, &gdu, 0, 0))
1228 if (!z_GDU(print, &gdu, 0, 0))
1229 printf ("Failed to print outgoing APDU\n");
1232 buf_out = odr_getbuf(out, &len_out, 0);
1234 /* we don't odr_reset(out), since we may need the buffer again */
1236 do_hex_dump(buf_out, len_out);
1238 r = cs_put(conn, buf_out, len_out);
1250 static int send_SRW_searchRequest(const char *arg)
1256 assert(srw_sr_odr_out == 0);
1257 srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1259 odr_reset(srw_sr_odr_out);
1263 /* save this for later .. when fetching individual records */
1264 srw_sr = yaz_srw_get(srw_sr_odr_out, Z_SRW_searchRetrieve_request);
1266 /* regular request .. */
1267 sr = yaz_srw_get(out, Z_SRW_searchRetrieve_request);
1272 srw_sr->u.request->query_type = Z_SRW_query_type_cql;
1273 srw_sr->u.request->query.cql = odr_strdup(srw_sr_odr_out, arg);
1275 sr->u.request->query_type = Z_SRW_query_type_cql;
1276 sr->u.request->query.cql = odr_strdup(out, arg);
1278 case QueryType_Prefix:
1279 srw_sr->u.request->query_type = Z_SRW_query_type_pqf;
1280 srw_sr->u.request->query.pqf = odr_strdup(srw_sr_odr_out, arg);
1282 sr->u.request->query_type = Z_SRW_query_type_pqf;
1283 sr->u.request->query.pqf = odr_strdup(out, arg);
1286 printf ("Only CQL and PQF supported in SRW\n");
1289 sr->u.request->maximumRecords = odr_intdup(out, 0);
1292 sr->u.request->recordSchema = record_schema;
1293 if (recordsyntax == VAL_TEXT_XML)
1294 sr->u.explain_request->recordPacking = "xml";
1295 return send_srw(sr);
1299 static int send_searchRequest(const char *arg)
1301 Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1302 Z_SearchRequest *req = apdu->u.searchRequest;
1304 struct ccl_rpn_node *rpn = NULL;
1306 char setstring[100];
1307 Z_RPNQuery *RPNquery;
1309 YAZ_PQF_Parser pqf_parser;
1311 QueryType myQueryType = queryType;
1314 if (myQueryType == QueryType_CCL2RPN)
1316 rpn = ccl_find_str(bibset, arg, &error, &pos);
1319 printf("CCL ERROR: %s\n", ccl_err_msg(error));
1322 } else if (myQueryType == QueryType_CQL2RPN) {
1323 /* ### All this code should be wrapped in a utility function */
1325 struct cql_node *node;
1326 const char *addinfo;
1327 if (cqltrans == 0) {
1328 printf("Can't use CQL: no translation file. Try set_cqlfile\n");
1331 parser = cql_parser_create();
1332 if ((error = cql_parser_string(parser, arg)) != 0) {
1333 printf("Can't parse CQL: must be a syntax error\n");
1336 node = cql_parser_result(parser);
1337 if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1338 sizeof pqfbuf)) != 0) {
1339 error = cql_transform_error(cqltrans, &addinfo);
1340 printf ("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1341 cql_strerror(error), addinfo);
1345 myQueryType = QueryType_Prefix;
1348 req->referenceId = set_refid (out);
1349 if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1351 static unsigned char big[2100];
1352 static Odr_oct bigo;
1354 /* send a very big referenceid to test transport stack etc. */
1355 memset(big, 'A', 2100);
1356 bigo.len = bigo.size = 2100;
1358 req->referenceId = &bigo;
1363 sprintf(setstring, "%d", ++setnumber);
1364 req->resultSetName = setstring;
1366 *req->smallSetUpperBound = smallSetUpperBound;
1367 *req->largeSetLowerBound = largeSetLowerBound;
1368 *req->mediumSetPresentNumber = mediumSetPresentNumber;
1369 if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1370 mediumSetPresentNumber > 0))
1372 req->preferredRecordSyntax =
1373 yaz_oidval_to_z3950oid(out, CLASS_RECSYN, recordsyntax);
1375 req->smallSetElementSetNames =
1376 req->mediumSetElementSetNames = elementSetNames;
1378 req->num_databaseNames = num_databaseNames;
1379 req->databaseNames = databaseNames;
1381 req->query = &query;
1383 switch (myQueryType)
1385 case QueryType_Prefix:
1386 query.which = Z_Query_type_1;
1387 pqf_parser = yaz_pqf_create ();
1388 RPNquery = yaz_pqf_parse (pqf_parser, out, arg);
1391 const char *pqf_msg;
1393 int code = yaz_pqf_error (pqf_parser, &pqf_msg, &off);
1394 printf("%*s^\n", off+4, "");
1395 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1397 yaz_pqf_destroy (pqf_parser);
1400 yaz_pqf_destroy (pqf_parser);
1401 query.u.type_1 = RPNquery;
1404 query.which = Z_Query_type_2;
1405 query.u.type_2 = &ccl_query;
1406 ccl_query.buf = (unsigned char*) arg;
1407 ccl_query.len = strlen(arg);
1409 case QueryType_CCL2RPN:
1410 query.which = Z_Query_type_1;
1411 RPNquery = ccl_rpn_query(out, rpn);
1414 printf ("Couldn't convert from CCL to RPN\n");
1417 query.u.type_1 = RPNquery;
1418 ccl_rpn_delete (rpn);
1421 query.which = Z_Query_type_104;
1422 ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1423 ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1424 ext->indirect_reference = 0;
1425 ext->descriptor = 0;
1426 ext->which = Z_External_CQL;
1427 ext->u.cql = odr_strdup(out, arg);
1428 query.u.type_104 = ext;
1431 printf ("Unsupported query type\n");
1434 if (send_apdu(apdu))
1435 printf("Sent searchRequest.\n");
1440 /* display Query Expression as part of searchResult-1 */
1441 static void display_queryExpression (Z_QueryExpression *qe)
1445 if (qe->which == Z_QueryExpression_term)
1447 if (qe->u.term->queryTerm)
1449 Z_Term *term = qe->u.term->queryTerm;
1450 switch (term->which)
1452 case Z_Term_general:
1453 printf (" %.*s", term->u.general->len, term->u.general->buf);
1455 case Z_Term_characterString:
1456 printf (" %s", term->u.characterString);
1458 case Z_Term_numeric:
1459 printf (" %d", *term->u.numeric);
1469 /* see if we can find USR:SearchResult-1 */
1470 static void display_searchResult (Z_OtherInformation *o)
1475 for (i = 0; i < o->num_elements; i++)
1477 if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1479 Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1481 if (ext->which == Z_External_searchResult1)
1484 Z_SearchInfoReport *sr = ext->u.searchResult1;
1485 printf ("SearchResult-1:");
1486 for (j = 0; j < sr->num; j++)
1488 if (!sr->elements[j]->subqueryExpression)
1490 display_queryExpression (
1491 sr->elements[j]->subqueryExpression);
1492 display_queryExpression (
1493 sr->elements[j]->subqueryInterpretation);
1494 display_queryExpression (
1495 sr->elements[j]->subqueryRecommendation);
1496 if (sr->elements[j]->subqueryCount)
1497 printf ("(%d)", *sr->elements[j]->subqueryCount);
1505 static int process_searchResponse(Z_SearchResponse *res)
1507 printf ("Received SearchResponse.\n");
1508 print_refid (res->referenceId);
1509 if (*res->searchStatus)
1510 printf("Search was a success.\n");
1512 printf("Search was a bloomin' failure.\n");
1513 printf("Number of hits: %d", *res->resultCount);
1515 printf (", setno %d", setnumber);
1517 display_searchResult (res->additionalSearchInfo);
1518 printf("records returned: %d\n",
1519 *res->numberOfRecordsReturned);
1520 setno += *res->numberOfRecordsReturned;
1522 display_records(res->records);
1526 static void print_level(int iLevel)
1529 for (i = 0; i < iLevel * 4; i++)
1533 static void print_int(int iLevel, const char *pTag, int *pInt)
1537 print_level(iLevel);
1538 printf("%s: %d\n", pTag, *pInt);
1542 static void print_string(int iLevel, const char *pTag, const char *pString)
1544 if (pString != NULL)
1546 print_level(iLevel);
1547 printf("%s: %s\n", pTag, pString);
1551 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1557 print_level(iLevel);
1558 printf("%s:", pTag);
1559 for (; *pInt != -1; pInt++)
1560 printf(" %d", *pInt);
1565 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1567 if (referenceId != NULL)
1571 print_level(iLevel);
1572 printf("Ref Id (%d, %d): ", referenceId->len, referenceId->size);
1573 for (i = 0; i < referenceId->len; i++)
1574 printf("%c", referenceId->buf[i]);
1579 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1581 if (pStringNumeric != NULL)
1583 switch (pStringNumeric->which)
1585 case Z_StringOrNumeric_string:
1586 print_string(iLevel, pTag, pStringNumeric->u.string);
1589 case Z_StringOrNumeric_numeric:
1590 print_int(iLevel, pTag, pStringNumeric->u.numeric);
1594 print_level(iLevel);
1595 printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1601 static void print_universe_report_duplicate(
1603 Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1605 if (pUniverseReportDuplicate != NULL)
1607 print_level(iLevel);
1608 printf("Universe Report Duplicate: \n");
1610 print_string_or_numeric(iLevel, "Hit No",
1611 pUniverseReportDuplicate->hitno);
1615 static void print_universe_report_hits(
1617 Z_UniverseReportHits *pUniverseReportHits)
1619 if (pUniverseReportHits != NULL)
1621 print_level(iLevel);
1622 printf("Universe Report Hits: \n");
1624 print_string_or_numeric(iLevel, "Database",
1625 pUniverseReportHits->database);
1626 print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1630 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1632 if (pUniverseReport != NULL)
1634 print_level(iLevel);
1635 printf("Universe Report: \n");
1637 print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1638 switch (pUniverseReport->which)
1640 case Z_UniverseReport_databaseHits:
1641 print_universe_report_hits(iLevel,
1642 pUniverseReport->u.databaseHits);
1645 case Z_UniverseReport_duplicate:
1646 print_universe_report_duplicate(iLevel,
1647 pUniverseReport->u.duplicate);
1651 print_level(iLevel);
1652 printf("Type: %d\n", pUniverseReport->which);
1658 static void print_external(int iLevel, Z_External *pExternal)
1660 if (pExternal != NULL)
1662 print_level(iLevel);
1663 printf("External: \n");
1665 print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
1666 print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
1667 print_string(iLevel, "Descriptor", pExternal->descriptor);
1668 switch (pExternal->which)
1670 case Z_External_universeReport:
1671 print_universe_report(iLevel, pExternal->u.universeReport);
1675 print_level(iLevel);
1676 printf("Type: %d\n", pExternal->which);
1682 static int process_resourceControlRequest (Z_ResourceControlRequest *req)
1684 printf ("Received ResourceControlRequest.\n");
1685 print_referenceId(1, req->referenceId);
1686 print_int(1, "Suspended Flag", req->suspendedFlag);
1687 print_int(1, "Partial Results Available", req->partialResultsAvailable);
1688 print_int(1, "Response Required", req->responseRequired);
1689 print_int(1, "Triggered Request Flag", req->triggeredRequestFlag);
1690 print_external(1, req->resourceReport);
1694 void process_ESResponse(Z_ExtendedServicesResponse *res)
1697 switch (*res->operationStatus)
1699 case Z_ExtendedServicesResponse_done:
1702 case Z_ExtendedServicesResponse_accepted:
1703 printf ("accepted\n");
1705 case Z_ExtendedServicesResponse_failure:
1706 printf ("failure\n");
1707 display_diagrecs(res->diagnostics, res->num_diagnostics);
1710 printf ("unknown\n");
1712 if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
1713 (res->num_diagnostics != 0) ) {
1714 display_diagrecs(res->diagnostics, res->num_diagnostics);
1716 print_refid (res->referenceId);
1717 if (res->taskPackage &&
1718 res->taskPackage->which == Z_External_extendedService)
1720 Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
1721 Odr_oct *id = taskPackage->targetReference;
1722 Z_External *ext = taskPackage->taskSpecificParameters;
1726 printf ("Target Reference: ");
1727 print_stringn (id->buf, id->len);
1730 if (ext->which == Z_External_update)
1732 Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
1733 if (utp && utp->targetPart)
1735 Z_IUTargetPart *targetPart = utp->targetPart;
1738 for (i = 0; i<targetPart->num_taskPackageRecords; i++)
1741 Z_IUTaskPackageRecordStructure *tpr =
1742 targetPart->taskPackageRecords[i];
1743 printf ("task package record %d\n", i+1);
1744 if (tpr->which == Z_IUTaskPackageRecordStructure_record)
1746 display_record (tpr->u.record);
1750 printf ("other type\n");
1758 const char *get_ill_element (void *clientData, const char *element)
1763 static Z_External *create_external_itemRequest()
1765 struct ill_get_ctl ctl;
1766 ILL_ItemRequest *req;
1768 int item_request_size = 0;
1769 char *item_request_buf = 0;
1773 ctl.f = get_ill_element;
1775 req = ill_get_ItemRequest(&ctl, "ill", 0);
1777 printf ("ill_get_ItemRequest failed\n");
1779 if (!ill_ItemRequest (out, &req, 0, 0))
1783 ill_ItemRequest(print, &req, 0, 0);
1786 item_request_buf = odr_getbuf (out, &item_request_size, 0);
1787 if (item_request_buf)
1788 odr_setbuf (out, item_request_buf, item_request_size, 1);
1789 printf ("Couldn't encode ItemRequest, size %d\n", item_request_size);
1796 item_request_buf = odr_getbuf (out, &item_request_size, 0);
1797 oid.proto = PROTO_GENERAL;
1798 oid.oclass = CLASS_GENERAL;
1799 oid.value = VAL_ISO_ILL_1;
1801 r = (Z_External *) odr_malloc (out, sizeof(*r));
1802 r->direct_reference = odr_oiddup(out,oid_getoidbyent(&oid));
1803 r->indirect_reference = 0;
1805 r->which = Z_External_single;
1807 r->u.single_ASN1_type = (Odr_oct *)
1808 odr_malloc (out, sizeof(*r->u.single_ASN1_type));
1809 r->u.single_ASN1_type->buf = (unsigned char *)
1810 odr_malloc (out, item_request_size);
1811 r->u.single_ASN1_type->len = item_request_size;
1812 r->u.single_ASN1_type->size = item_request_size;
1813 memcpy (r->u.single_ASN1_type->buf, item_request_buf,
1816 do_hex_dump(item_request_buf,item_request_size);
1821 static Z_External *create_external_ILL_APDU(int which)
1823 struct ill_get_ctl ctl;
1826 int ill_request_size = 0;
1827 char *ill_request_buf = 0;
1831 ctl.f = get_ill_element;
1833 ill_apdu = ill_get_APDU(&ctl, "ill", 0);
1835 if (!ill_APDU (out, &ill_apdu, 0, 0))
1839 printf ("-------------------\n");
1840 ill_APDU(print, &ill_apdu, 0, 0);
1842 printf ("-------------------\n");
1844 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
1845 if (ill_request_buf)
1846 odr_setbuf (out, ill_request_buf, ill_request_size, 1);
1847 printf ("Couldn't encode ILL-Request, size %d\n", ill_request_size);
1853 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
1855 oid.proto = PROTO_GENERAL;
1856 oid.oclass = CLASS_GENERAL;
1857 oid.value = VAL_ISO_ILL_1;
1859 r = (Z_External *) odr_malloc (out, sizeof(*r));
1860 r->direct_reference = odr_oiddup(out,oid_getoidbyent(&oid));
1861 r->indirect_reference = 0;
1863 r->which = Z_External_single;
1865 r->u.single_ASN1_type = (Odr_oct *)
1866 odr_malloc (out, sizeof(*r->u.single_ASN1_type));
1867 r->u.single_ASN1_type->buf = (unsigned char *)
1868 odr_malloc (out, ill_request_size);
1869 r->u.single_ASN1_type->len = ill_request_size;
1870 r->u.single_ASN1_type->size = ill_request_size;
1871 memcpy (r->u.single_ASN1_type->buf, ill_request_buf, ill_request_size);
1872 /* printf ("len = %d\n", ill_request_size); */
1873 /* do_hex_dump(ill_request_buf,ill_request_size); */
1874 /* printf("--- end of extenal\n"); */
1881 static Z_External *create_ItemOrderExternal(const char *type, int itemno)
1883 Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
1884 oident ItemOrderRequest;
1886 ItemOrderRequest.proto = PROTO_Z3950;
1887 ItemOrderRequest.oclass = CLASS_EXTSERV;
1888 ItemOrderRequest.value = VAL_ITEMORDER;
1890 r->direct_reference = odr_oiddup(out,oid_getoidbyent(&ItemOrderRequest));
1891 r->indirect_reference = 0;
1894 r->which = Z_External_itemOrder;
1896 r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
1897 memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
1898 r->u.itemOrder->which=Z_IOItemOrder_esRequest;
1900 r->u.itemOrder->u.esRequest = (Z_IORequest *)
1901 odr_malloc(out,sizeof(Z_IORequest));
1902 memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
1904 r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
1905 odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
1906 memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
1907 r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
1908 odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
1909 memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
1911 r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
1912 r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
1913 r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
1915 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
1916 (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
1917 memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
1918 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
1920 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
1921 (int *) odr_malloc(out, sizeof(int));
1922 *r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item = itemno;
1924 if (!strcmp (type, "item") || !strcmp(type, "2"))
1926 printf ("using item-request\n");
1927 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
1928 create_external_itemRequest();
1930 else if (!strcmp(type, "ill") || !strcmp(type, "1"))
1932 printf ("using ILL-request\n");
1933 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
1934 create_external_ILL_APDU(ILL_APDU_ILL_Request);
1936 else if (!strcmp(type, "xml") || !strcmp(type, "3"))
1938 const char *xml_buf =
1940 " <type>request</type>\n"
1941 " <libraryNo>000200</libraryNo>\n"
1942 " <borrowerTicketNo> 1212 </borrowerTicketNo>\n"
1944 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
1945 z_ext_record (out, VAL_TEXT_XML, xml_buf, strlen(xml_buf));
1948 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
1953 static int send_itemorder(const char *type, int itemno)
1955 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
1956 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
1957 oident ItemOrderRequest;
1959 ItemOrderRequest.proto = PROTO_Z3950;
1960 ItemOrderRequest.oclass = CLASS_EXTSERV;
1961 ItemOrderRequest.value = VAL_ITEMORDER;
1962 req->packageType = odr_oiddup(out,oid_getoidbyent(&ItemOrderRequest));
1963 req->packageName = esPackageName;
1965 req->taskSpecificParameters = create_ItemOrderExternal(type, itemno);
1971 static int only_z3950()
1973 if (protocol == PROTO_HTTP)
1975 printf ("Not supported by SRW\n");
1981 static int cmd_update_common(const char *arg, int version);
1983 static int cmd_update(const char *arg)
1985 return cmd_update_common(arg, 1);
1988 static int cmd_update0(const char *arg)
1990 return cmd_update_common(arg, 0);
1993 static int cmd_update_common(const char *arg, int version)
1995 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
1996 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
1998 char action[20], recid[20], fname[80];
2000 Z_External *record_this = 0;
2007 sscanf (arg, "%19s %19s %79s", action, recid, fname);
2009 if (!strcmp (action, "insert"))
2010 action_no = Z_IUOriginPartToKeep_recordInsert;
2011 else if (!strcmp (action, "replace"))
2012 action_no = Z_IUOriginPartToKeep_recordReplace;
2013 else if (!strcmp (action, "delete"))
2014 action_no = Z_IUOriginPartToKeep_recordDelete;
2015 else if (!strcmp (action, "update"))
2016 action_no = Z_IUOriginPartToKeep_specialUpdate;
2019 printf ("Bad action: %s\n", action);
2020 printf ("Possible values: insert, replace, delete, update\n");
2028 stat (fname, &status);
2029 if (S_ISREG(status.st_mode) && (inf = fopen(fname, "r")))
2031 size_t len = status.st_size;
2032 char *buf = (char *) xmalloc (len);
2034 fread (buf, 1, len, inf);
2038 record_this = z_ext_record (out, VAL_TEXT_XML, buf, len);
2044 printf ("File %s doesn't exist\n", fname);
2052 printf ("No last record (update ignored)\n");
2055 record_this = record_last;
2059 yaz_oidval_to_z3950oid(out, CLASS_EXTSERV,
2060 version == 0 ? VAL_DBUPDATE0 : VAL_DBUPDATE);
2062 req->packageName = esPackageName;
2064 req->referenceId = set_refid (out);
2066 r = req->taskSpecificParameters = (Z_External *)
2067 odr_malloc (out, sizeof(*r));
2068 r->direct_reference = req->packageType;
2069 r->indirect_reference = 0;
2073 Z_IU0OriginPartToKeep *toKeep;
2074 Z_IU0SuppliedRecords *notToKeep;
2076 r->which = Z_External_update0;
2077 r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2078 r->u.update0->which = Z_IUUpdate_esRequest;
2079 r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2080 odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2081 toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2082 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2084 toKeep->databaseName = databaseNames[0];
2086 toKeep->elementSetName = 0;
2088 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2089 *toKeep->action = action_no;
2091 notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2092 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2094 notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2095 odr_malloc(out, sizeof(*notToKeep->elements));
2096 notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2097 odr_malloc(out, sizeof(**notToKeep->elements));
2098 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2101 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2102 odr_malloc (out, sizeof(Odr_oct));
2103 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2104 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2105 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2108 notToKeep->elements[0]->u.opaque = 0;
2109 notToKeep->elements[0]->supplementalId = 0;
2110 notToKeep->elements[0]->correlationInfo = 0;
2111 notToKeep->elements[0]->record = record_this;
2115 Z_IUOriginPartToKeep *toKeep;
2116 Z_IUSuppliedRecords *notToKeep;
2118 r->which = Z_External_update;
2119 r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2120 r->u.update->which = Z_IUUpdate_esRequest;
2121 r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2122 odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2123 toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2124 odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2126 toKeep->databaseName = databaseNames[0];
2128 toKeep->elementSetName = 0;
2129 toKeep->actionQualifier = 0;
2130 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2131 *toKeep->action = action_no;
2133 notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2134 odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2136 notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2137 odr_malloc(out, sizeof(*notToKeep->elements));
2138 notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2139 odr_malloc(out, sizeof(**notToKeep->elements));
2140 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2143 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2144 odr_malloc (out, sizeof(Odr_oct));
2145 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2146 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2147 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2150 notToKeep->elements[0]->u.opaque = 0;
2151 notToKeep->elements[0]->supplementalId = 0;
2152 notToKeep->elements[0]->correlationInfo = 0;
2153 notToKeep->elements[0]->record = record_this;
2161 static int cmd_itemorder(const char *arg)
2168 if (sscanf (arg, "%10s %d", type, &itemno) != 2)
2171 printf("Item order request\n");
2173 send_itemorder(type, itemno);
2177 static void show_opt(const char *arg, void *clientData)
2179 printf ("%s ", arg);
2182 static int cmd_zversion(const char *arg)
2185 z3950_version = atoi(arg);
2187 printf ("version is %d\n", z3950_version);
2191 static int cmd_options(const char *arg)
2197 r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2201 yaz_init_opt_decode(&z3950_options, show_opt, 0);
2207 static int cmd_explain(const char *arg)
2209 if (protocol != PROTO_HTTP)
2220 /* save this for later .. when fetching individual records */
2221 sr = yaz_srw_get(out, Z_SRW_explain_request);
2222 if (recordsyntax == VAL_TEXT_XML)
2223 sr->u.explain_request->recordPacking = "xml";
2231 static int cmd_init(const char *arg)
2233 if (!conn || protocol != PROTO_Z3950)
2235 send_initRequest(0);
2239 static int cmd_find(const char *arg)
2243 printf("Find what?\n");
2246 if (protocol == PROTO_HTTP)
2253 if (!send_SRW_searchRequest(arg))
2266 printf("Not connected yet\n");
2270 if (!send_searchRequest(arg))
2276 static int cmd_delete(const char *arg)
2280 printf("Not connected yet\n");
2285 if (!send_deleteResultSetRequest(arg))
2290 static int cmd_ssub(const char *arg)
2292 if (!(smallSetUpperBound = atoi(arg)))
2297 static int cmd_lslb(const char *arg)
2301 if (!(largeSetLowerBound = atoi(arg)))
2306 static int cmd_mspn(const char *arg)
2310 if (!(mediumSetPresentNumber = atoi(arg)))
2315 static int cmd_status(const char *arg)
2317 printf("smallSetUpperBound: %d\n", smallSetUpperBound);
2318 printf("largeSetLowerBound: %d\n", largeSetLowerBound);
2319 printf("mediumSetPresentNumber: %d\n", mediumSetPresentNumber);
2323 static int cmd_setnames(const char *arg)
2325 if (*arg == '1') /* enable ? */
2327 else if (*arg == '0') /* disable ? */
2329 else if (setnumber < 0) /* no args, toggle .. */
2335 printf("Set numbering enabled.\n");
2337 printf("Set numbering disabled.\n");
2341 /* PRESENT SERVICE ----------------------------- */
2343 static void parse_show_args(const char *arg_c, char *setstring,
2344 int *start, int *number)
2349 strncpy(arg, arg_c, sizeof(arg)-1);
2350 arg[sizeof(arg)-1] = '\0';
2352 if ((p = strchr(arg, '+')))
2354 *number = atoi(p + 1);
2359 if (p && (p=strchr(p+1, '+')))
2360 strcpy (setstring, p+1);
2361 else if (setnumber >= 0)
2362 sprintf(setstring, "%d", setnumber);
2367 static int send_presentRequest(const char *arg)
2369 Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
2370 Z_PresentRequest *req = apdu->u.presentRequest;
2371 Z_RecordComposition compo;
2373 char setstring[100];
2375 req->referenceId = set_refid (out);
2377 parse_show_args(arg, setstring, &setno, &nos);
2379 req->resultSetId = setstring;
2381 req->resultSetStartPoint = &setno;
2382 req->numberOfRecordsRequested = &nos;
2384 req->preferredRecordSyntax =
2385 yaz_oidval_to_z3950oid(out, CLASS_RECSYN, recordsyntax);
2389 req->recordComposition = &compo;
2390 compo.which = Z_RecordComp_complex;
2391 compo.u.complex = (Z_CompSpec *)
2392 odr_malloc(out, sizeof(*compo.u.complex));
2393 compo.u.complex->selectAlternativeSyntax = (bool_t *)
2394 odr_malloc(out, sizeof(bool_t));
2395 *compo.u.complex->selectAlternativeSyntax = 0;
2397 compo.u.complex->generic = (Z_Specification *)
2398 odr_malloc(out, sizeof(*compo.u.complex->generic));
2399 compo.u.complex->generic->which = Z_Schema_oid;
2401 compo.u.complex->generic->schema.oid =
2402 yaz_str_to_z3950oid(out, CLASS_SCHEMA, record_schema);
2404 if (!compo.u.complex->generic->schema.oid)
2406 /* OID wasn't a schema! Try record syntax instead. */
2407 compo.u.complex->generic->schema.oid = (Odr_oid *)
2408 yaz_str_to_z3950oid(out, CLASS_RECSYN, record_schema);
2410 if (!elementSetNames)
2411 compo.u.complex->generic->elementSpec = 0;
2414 compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
2415 odr_malloc(out, sizeof(Z_ElementSpec));
2416 compo.u.complex->generic->elementSpec->which =
2417 Z_ElementSpec_elementSetName;
2418 compo.u.complex->generic->elementSpec->u.elementSetName =
2419 elementSetNames->u.generic;
2421 compo.u.complex->num_dbSpecific = 0;
2422 compo.u.complex->dbSpecific = 0;
2423 compo.u.complex->num_recordSyntax = 0;
2424 compo.u.complex->recordSyntax = 0;
2426 else if (elementSetNames)
2428 req->recordComposition = &compo;
2429 compo.which = Z_RecordComp_simple;
2430 compo.u.simple = elementSetNames;
2433 printf("Sent presentRequest (%d+%d).\n", setno, nos);
2438 static int send_SRW_presentRequest(const char *arg)
2440 char setstring[100];
2442 Z_SRW_PDU *sr = srw_sr;
2446 parse_show_args(arg, setstring, &setno, &nos);
2447 sr->u.request->startRecord = odr_intdup(out, setno);
2448 sr->u.request->maximumRecords = odr_intdup(out, nos);
2450 sr->u.request->recordSchema = record_schema;
2451 if (recordsyntax == VAL_TEXT_XML)
2452 sr->u.request->recordPacking = "xml";
2453 return send_srw(sr);
2457 static void close_session (void)
2464 nmem_destroy (session_mem);
2473 void process_close(Z_Close *req)
2475 Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
2476 Z_Close *res = apdu->u.close;
2478 static char *reasons[] =
2483 "cost limit reached",
2485 "security violation",
2492 printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
2493 req->diagnosticInformation ? req->diagnosticInformation : "NULL");
2498 *res->closeReason = Z_Close_finished;
2500 printf("Sent response.\n");
2505 static int cmd_show(const char *arg)
2507 if (protocol == PROTO_HTTP)
2514 if (!send_SRW_presentRequest(arg))
2524 printf("Not connected yet\n");
2527 if (!send_presentRequest(arg))
2533 int cmd_quit(const char *arg)
2535 printf("See you later, alligator.\n");
2541 int cmd_cancel(const char *arg)
2543 Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
2544 Z_TriggerResourceControlRequest *req =
2545 apdu->u.triggerResourceControlRequest;
2550 printf("Session not initialized yet\n");
2555 if (!ODR_MASK_GET(session->options, Z_Options_triggerResourceCtrl))
2557 printf("Target doesn't support cancel (trigger resource ctrl)\n");
2560 *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
2561 req->resultSetWanted = &rfalse;
2562 req->referenceId = set_refid (out);
2565 printf("Sent cancel request\n");
2570 int cmd_cancel_find(const char *arg) {
2574 return cmd_cancel("");
2579 int send_scanrequest(const char *query, int pp, int num, const char *term)
2581 Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
2582 Z_ScanRequest *req = apdu->u.scanRequest;
2586 if (queryType == QueryType_CCL2RPN)
2589 struct ccl_rpn_node *rpn;
2591 rpn = ccl_find_str (bibset, query, &error, &pos);
2594 printf("CCL ERROR: %s\n", ccl_err_msg(error));
2598 yaz_oidval_to_z3950oid(out, CLASS_ATTSET, VAL_BIB1);
2599 if (!(req->termListAndStartPoint = ccl_scan_query (out, rpn)))
2601 printf("Couldn't convert CCL to Scan term\n");
2604 ccl_rpn_delete (rpn);
2608 YAZ_PQF_Parser pqf_parser = yaz_pqf_create ();
2610 if (!(req->termListAndStartPoint =
2611 yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
2613 const char *pqf_msg;
2615 int code = yaz_pqf_error (pqf_parser, &pqf_msg, &off);
2616 printf("%*s^\n", off+7, "");
2617 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
2618 yaz_pqf_destroy (pqf_parser);
2621 yaz_pqf_destroy (pqf_parser);
2625 if (req->termListAndStartPoint->term &&
2626 req->termListAndStartPoint->term->which == Z_Term_general &&
2627 req->termListAndStartPoint->term->u.general)
2629 req->termListAndStartPoint->term->u.general->buf =
2630 (unsigned char *) odr_strdup(out, term);
2631 req->termListAndStartPoint->term->u.general->len =
2632 req->termListAndStartPoint->term->u.general->size =
2636 req->referenceId = set_refid (out);
2637 req->num_databaseNames = num_databaseNames;
2638 req->databaseNames = databaseNames;
2639 req->numberOfTermsRequested = #
2640 req->preferredPositionInResponse = &pp;
2645 int send_sortrequest(const char *arg, int newset)
2647 Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
2648 Z_SortRequest *req = apdu->u.sortRequest;
2649 Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
2650 odr_malloc (out, sizeof(*sksl));
2656 sprintf (setstring, "%d", setnumber);
2658 sprintf (setstring, "default");
2660 req->referenceId = set_refid (out);
2662 req->num_inputResultSetNames = 1;
2663 req->inputResultSetNames = (Z_InternationalString **)
2664 odr_malloc (out, sizeof(*req->inputResultSetNames));
2665 req->inputResultSetNames[0] = odr_strdup (out, setstring);
2667 if (newset && setnumber >= 0)
2668 sprintf (setstring, "%d", ++setnumber);
2670 req->sortedResultSetName = odr_strdup (out, setstring);
2672 req->sortSequence = yaz_sort_spec (out, arg);
2673 if (!req->sortSequence)
2675 printf ("Missing sort specifications\n");
2682 void display_term(Z_TermInfo *t)
2685 printf("%s", t->displayTerm);
2686 else if (t->term->which == Z_Term_general)
2688 printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
2689 sprintf(last_scan_line, "%.*s", t->term->u.general->len,
2690 t->term->u.general->buf);
2693 printf("Term (not general)");
2694 if (t->globalOccurrences)
2695 printf (" (%d)\n", *t->globalOccurrences);
2700 void process_scanResponse(Z_ScanResponse *res)
2703 Z_Entry **entries = NULL;
2704 int num_entries = 0;
2706 printf("Received ScanResponse\n");
2707 print_refid (res->referenceId);
2708 printf("%d entries", *res->numberOfEntriesReturned);
2709 if (res->positionOfTerm)
2710 printf (", position=%d", *res->positionOfTerm);
2712 if (*res->scanStatus != Z_Scan_success)
2713 printf("Scan returned code %d\n", *res->scanStatus);
2716 if ((entries = res->entries->entries))
2717 num_entries = res->entries->num_entries;
2718 for (i = 0; i < num_entries; i++)
2720 int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
2721 if (entries[i]->which == Z_Entry_termInfo)
2723 printf("%c ", i + 1 == pos_term ? '*' : ' ');
2724 display_term(entries[i]->u.termInfo);
2727 display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
2729 if (res->entries->nonsurrogateDiagnostics)
2730 display_diagrecs (res->entries->nonsurrogateDiagnostics,
2731 res->entries->num_nonsurrogateDiagnostics);
2734 void process_sortResponse(Z_SortResponse *res)
2736 printf("Received SortResponse: status=");
2737 switch (*res->sortStatus)
2739 case Z_SortResponse_success:
2740 printf ("success"); break;
2741 case Z_SortResponse_partial_1:
2742 printf ("partial"); break;
2743 case Z_SortResponse_failure:
2744 printf ("failure"); break;
2746 printf ("unknown (%d)", *res->sortStatus);
2749 print_refid (res->referenceId);
2750 if (res->diagnostics)
2751 display_diagrecs(res->diagnostics,
2752 res->num_diagnostics);
2755 void process_deleteResultSetResponse (Z_DeleteResultSetResponse *res)
2757 printf("Got deleteResultSetResponse status=%d\n",
2758 *res->deleteOperationStatus);
2759 if (res->deleteListStatuses)
2762 for (i = 0; i < res->deleteListStatuses->num; i++)
2764 printf ("%s status=%d\n", res->deleteListStatuses->elements[i]->id,
2765 *res->deleteListStatuses->elements[i]->status);
2770 int cmd_sort_generic(const char *arg, int newset)
2774 printf("Session not initialized yet\n");
2779 if (!ODR_MASK_GET(session->options, Z_Options_sort))
2781 printf("Target doesn't support sort\n");
2786 if (send_sortrequest(arg, newset) < 0)
2793 int cmd_sort(const char *arg)
2795 return cmd_sort_generic (arg, 0);
2798 int cmd_sort_newset (const char *arg)
2800 return cmd_sort_generic (arg, 1);
2803 int cmd_scan(const char *arg)
2812 printf("Session not initialized yet\n");
2816 if (!ODR_MASK_GET(session->options, Z_Options_scan))
2818 printf("Target doesn't support scan\n");
2823 strcpy (last_scan_query, arg);
2824 if (send_scanrequest(arg, 1, 20, 0) < 0)
2829 if (send_scanrequest(last_scan_query, 1, 20, last_scan_line) < 0)
2835 int cmd_schema(const char *arg)
2837 xfree(record_schema);
2840 record_schema = xstrdup(arg);
2844 int cmd_format(const char *arg)
2849 printf("Usage: format <recordsyntax>\n");
2852 nsyntax = oid_getvalbyname (arg);
2853 if (strcmp(arg, "none") && nsyntax == VAL_NONE)
2855 printf ("unknown record syntax\n");
2858 recordsyntax = nsyntax;
2862 int cmd_elements(const char *arg)
2864 static Z_ElementSetNames esn;
2865 static char what[100];
2869 elementSetNames = 0;
2873 esn.which = Z_ElementSetNames_generic;
2874 esn.u.generic = what;
2875 elementSetNames = &esn;
2879 int cmd_attributeset(const char *arg)
2885 printf("Usage: attributeset <setname>\n");
2888 sscanf(arg, "%s", what);
2889 if (p_query_attset (what))
2891 printf("Unknown attribute set name\n");
2897 int cmd_querytype (const char *arg)
2899 if (!strcmp (arg, "ccl"))
2900 queryType = QueryType_CCL;
2901 else if (!strcmp (arg, "prefix") || !strcmp(arg, "rpn"))
2902 queryType = QueryType_Prefix;
2903 else if (!strcmp (arg, "ccl2rpn") || !strcmp (arg, "cclrpn"))
2904 queryType = QueryType_CCL2RPN;
2905 else if (!strcmp(arg, "cql"))
2906 queryType = QueryType_CQL;
2907 else if (!strcmp (arg, "cql2rpn") || !strcmp (arg, "cqlrpn"))
2908 queryType = QueryType_CQL2RPN;
2911 printf ("Querytype must be one of:\n");
2912 printf (" prefix - Prefix query\n");
2913 printf (" ccl - CCL query\n");
2914 printf (" ccl2rpn - CCL query converted to RPN\n");
2915 printf (" cql - CQL\n");
2916 printf (" cql2rpn - CQL query converted to RPN\n");
2922 int cmd_refid (const char *arg)
2927 refid = xstrdup (arg);
2931 int cmd_close(const char *arg)
2940 apdu = zget_APDU(out, Z_APDU_close);
2941 req = apdu->u.close;
2942 *req->closeReason = Z_Close_finished;
2944 printf("Sent close request.\n");
2949 int cmd_packagename(const char* arg)
2951 xfree (esPackageName);
2952 esPackageName = NULL;
2954 esPackageName = xstrdup(arg);
2958 int cmd_proxy(const char* arg)
2963 yazProxy = xstrdup (arg);
2967 int cmd_marccharset(const char *arg)
2972 if (sscanf(arg, "%29s", l1) < 1)
2974 xfree (marcCharset);
2976 if (strcmp(l1, "-"))
2977 marcCharset = xstrdup(l1);
2981 int cmd_charset(const char* arg)
2983 char l1[30], l2[30];
2986 if (sscanf(arg, "%29s %29s", l1, l2) < 1)
2988 printf("Current negotiation character set is `%s'\n",
2989 negotiationCharset ? negotiationCharset: "none");
2990 printf("Current output character set is `%s'\n",
2991 outputCharset ? outputCharset: "none");
2994 xfree (negotiationCharset);
2995 negotiationCharset = NULL;
2996 if (*l1 && strcmp(l1, "-"))
2998 negotiationCharset = xstrdup(l1);
2999 printf ("Character set negotiation : %s\n", negotiationCharset);
3002 printf ("Character set negotiation disabled\n");
3005 xfree (outputCharset);
3007 if (!strcmp(l2, "auto") && codeset)
3011 printf ("output charset: %s\n", codeset);
3012 outputCharset = xstrdup(codeset);
3017 printf ("No codeset found on this system\n");
3019 else if (strcmp(l2, "-"))
3020 outputCharset = xstrdup(l2);
3022 printf ("Output charset conversion disabled\n");
3028 int cmd_lang(const char* arg)
3031 printf("Current language is `%s'\n", (yazLang)?yazLang:NULL);
3037 yazLang = xstrdup(arg);
3041 int cmd_source(const char* arg)
3043 /* first should open the file and read one line at a time.. */
3045 char line[102400], *cp;
3048 fprintf(stderr,"Error in source command use a filename\n");
3052 includeFile = fopen (arg, "r");
3055 fprintf(stderr,"Unable to open file %s for reading\n",arg);
3059 while(!feof(includeFile)) {
3060 memset(line,0,sizeof(line));
3061 fgets(line,sizeof(line),includeFile);
3063 if(strlen(line) < 2) continue;
3064 if(line[0] == '#') continue;
3066 if ((cp = strrchr (line, '\n')))
3069 process_cmd_line(line);
3072 if(fclose(includeFile)<0) {
3073 perror("unable to close include file");
3079 int cmd_subshell(const char* args)
3084 system(getenv("SHELL"));
3090 int cmd_set_berfile(const char *arg)
3092 if (ber_file && ber_file != stdout && ber_file != stderr)
3094 if (!strcmp(arg, ""))
3096 else if (!strcmp(arg, "-"))
3099 ber_file = fopen(arg, "a");
3103 int cmd_set_apdufile(const char *arg)
3105 if(apdu_file && apdu_file != stderr && apdu_file != stderr)
3107 if (!strcmp(arg, ""))
3109 else if (!strcmp(arg, "-"))
3113 apdu_file = fopen(arg, "a");
3115 perror("unable to open apdu log file");
3118 odr_setprint(print, apdu_file);
3122 int cmd_set_cclfile(const char* arg)
3126 bibset = ccl_qual_mk ();
3127 inf = fopen (arg, "r");
3129 perror("unable to open CCL file");
3132 ccl_qual_file (bibset, inf);
3135 strcpy(ccl_fields,arg);
3139 int cmd_set_cqlfile(const char* arg)
3141 cql_transform_t newcqltrans;
3143 if ((newcqltrans = cql_transform_open_fname(arg)) == 0) {
3144 perror("unable to open CQL file");
3148 cql_transform_close(cqltrans);
3150 cqltrans = newcqltrans;
3151 strcpy(cql_fields, arg);
3155 int cmd_set_auto_reconnect(const char* arg)
3157 if(strlen(arg)==0) {
3158 auto_reconnect = ! auto_reconnect;
3159 } else if(strcmp(arg,"on")==0) {
3161 } else if(strcmp(arg,"off")==0) {
3164 printf("Error use on or off\n");
3169 printf("Set auto reconnect enabled.\n");
3171 printf("Set auto reconnect disabled.\n");
3176 int cmd_set_marcdump(const char* arg)
3178 if(marc_file && marc_file != stderr) { /* don't close stdout*/
3182 if (!strcmp(arg, ""))
3184 else if (!strcmp(arg, "-"))
3188 marc_file = fopen(arg, "a");
3190 perror("unable to open marc log file");
3196 this command takes 3 arge {name class oid}
3198 int cmd_register_oid(const char* args) {
3203 {"appctx",CLASS_APPCTX},
3204 {"absyn",CLASS_ABSYN},
3205 {"attset",CLASS_ATTSET},
3206 {"transyn",CLASS_TRANSYN},
3207 {"diagset",CLASS_DIAGSET},
3208 {"recsyn",CLASS_RECSYN},
3209 {"resform",CLASS_RESFORM},
3210 {"accform",CLASS_ACCFORM},
3211 {"extserv",CLASS_EXTSERV},
3212 {"userinfo",CLASS_USERINFO},
3213 {"elemspec",CLASS_ELEMSPEC},
3214 {"varset",CLASS_VARSET},
3215 {"schema",CLASS_SCHEMA},
3216 {"tagset",CLASS_TAGSET},
3217 {"general",CLASS_GENERAL},
3218 {0,(enum oid_class) 0}
3220 char oname_str[101], oclass_str[101], oid_str[101];
3223 oid_class oidclass = CLASS_GENERAL;
3224 int val = 0, oid[OID_SIZE];
3225 struct oident * new_oident=NULL;
3227 if (sscanf (args, "%100[^ ] %100[^ ] %100s",
3228 oname_str,oclass_str, oid_str) < 1) {
3229 printf("Error in register command \n");
3233 for (i = 0; oid_classes[i].className; i++) {
3234 if (!strcmp(oid_classes[i].className, oclass_str))
3236 oidclass=oid_classes[i].oclass;
3241 if(!(oid_classes[i].className)) {
3242 printf("Unknown oid class %s\n",oclass_str);
3250 while (isdigit (*(unsigned char *) name))
3252 val = val*10 + (*name - '0');
3265 new_oident = oid_addent (oid, PROTO_GENERAL, oidclass, oname_str,
3267 if(strcmp(new_oident->desc,oname_str))
3269 fprintf(stderr,"oid is already named as %s, registration failed\n",
3275 int cmd_push_command(const char* arg)
3277 #if HAVE_READLINE_HISTORY_H
3281 fprintf(stderr,"Not compiled with the readline/history module\n");
3286 void source_rcfile()
3288 /* Look for a $HOME/.yazclientrc and source it if it exists */
3289 struct stat statbuf;
3291 char* homedir=getenv("HOME");
3293 if(!homedir) return;
3295 sprintf(buffer,"%s/.yazclientrc",homedir);
3297 if(stat(buffer,&statbuf)==0) {
3301 if(stat(".yazclientrc",&statbuf)==0) {
3302 cmd_source(".yazclientrc");
3307 static void initialize(void)
3312 if (!(out = odr_createmem(ODR_ENCODE)) ||
3313 !(in = odr_createmem(ODR_DECODE)) ||
3314 !(print = odr_createmem(ODR_PRINT)))
3316 fprintf(stderr, "failed to allocate ODR streams\n");
3321 setvbuf(stdout, 0, _IONBF, 0);
3323 odr_setprint(print, apdu_file);
3325 bibset = ccl_qual_mk ();
3326 inf = fopen (ccl_fields, "r");
3329 ccl_qual_file (bibset, inf);
3333 cqltrans = cql_transform_open_fname(cql_fields);
3334 /* If this fails, no problem: we detect cqltrans == 0 later */
3336 #if HAVE_READLINE_READLINE_H
3337 rl_attempted_completion_function = (CPPFunction*)readline_completer;
3341 for(i=0; i<maxOtherInfosSupported; ++i) {
3342 extraOtherInfos[i].oidval = -1;
3349 #if HAVE_GETTIMEOFDAY
3350 struct timeval tv_start, tv_end;
3354 static void handle_srw_record(Z_SRW_record *rec)
3356 if (rec->recordPosition)
3358 printf ("pos=%d", *rec->recordPosition);
3359 setno = *rec->recordPosition + 1;
3361 if (rec->recordSchema)
3362 printf (" schema=%s", rec->recordSchema);
3364 if (rec->recordData_buf && rec->recordData_len)
3366 fwrite(rec->recordData_buf, 1, rec->recordData_len, stdout);
3368 fwrite (rec->recordData_buf, 1, rec->recordData_len, marc_file);
3371 printf ("No data!");
3375 static void handle_srw_explain_response(Z_SRW_explainResponse *res)
3377 handle_srw_record(&res->record);
3380 static void handle_srw_response(Z_SRW_searchRetrieveResponse *res)
3384 printf ("Received SRW SearchRetrieve Response\n");
3386 for (i = 0; i<res->num_diagnostics; i++)
3388 if (res->diagnostics[i].uri)
3389 printf ("SRW diagnostic %s\n",
3390 res->diagnostics[i].uri);
3392 printf ("SRW diagnostic missing or could not be decoded\n");
3393 if (res->diagnostics[i].message)
3394 printf ("Message: %s\n", res->diagnostics[i].message);
3395 if (res->diagnostics[i].details)
3396 printf ("Details: %s\n", res->diagnostics[i].details);
3398 if (res->numberOfRecords)
3399 printf ("Number of hits: %d\n", *res->numberOfRecords);
3400 for (i = 0; i<res->num_records; i++)
3401 handle_srw_record(res->records + i);
3404 static void http_response(Z_HTTP_Response *hres)
3407 const char *content_type = z_HTTP_header_lookup(hres->headers,
3409 const char *connection_head = z_HTTP_header_lookup(hres->headers,
3411 if (content_type && !yaz_strcmp_del("text/xml", content_type, "; "))
3413 Z_SOAP *soap_package = 0;
3414 ODR o = odr_createmem(ODR_DECODE);
3415 Z_SOAP_Handler soap_handlers[2] = {
3416 {"http://www.loc.gov/zing/srw/", 0,
3417 (Z_SOAP_fun) yaz_srw_codec},
3420 ret = z_soap_codec(o, &soap_package,
3421 &hres->content_buf, &hres->content_len,
3423 if (!ret && soap_package->which == Z_SOAP_generic &&
3424 soap_package->u.generic->no == 0)
3426 Z_SRW_PDU *sr = soap_package->u.generic->p;
3427 if (sr->which == Z_SRW_searchRetrieve_response)
3428 handle_srw_response(sr->u.response);
3429 else if (sr->which == Z_SRW_explain_response)
3430 handle_srw_explain_response(sr->u.explain_response);
3434 else if (soap_package && (soap_package->which == Z_SOAP_fault
3435 || soap_package->which == Z_SOAP_error))
3437 printf ("HTTP Error Status=%d\n", hres->code);
3438 printf ("SOAP Fault code %s\n",
3439 soap_package->u.fault->fault_code);
3440 printf ("SOAP Fault string %s\n",
3441 soap_package->u.fault->fault_string);
3442 if (soap_package->u.fault->details)
3443 printf ("SOAP Details %s\n",
3444 soap_package->u.fault->details);
3452 if (hres->code != 200)
3454 printf ("HTTP Error Status=%d\n", hres->code);
3458 printf ("Decoding of SRW package failed\n");
3464 if (!strcmp(hres->version, "1.0"))
3466 /* HTTP 1.0: only if Keep-Alive we stay alive.. */
3467 if (!connection_head || strcmp(connection_head, "Keep-Alive"))
3472 /* HTTP 1.1: only if no close we stay alive .. */
3473 if (connection_head && !strcmp(connection_head, "close"))
3480 void wait_and_handle_response()
3482 int reconnect_ok = 1;
3485 int netbufferlen = 0;
3490 res = cs_get(conn, &netbuffer, &netbufferlen);
3491 if (reconnect_ok && res <= 0 && protocol == PROTO_HTTP)
3502 buf_out = odr_getbuf(out, &len_out, 0);
3504 do_hex_dump(buf_out, len_out);
3506 cs_put(conn, buf_out, len_out);
3514 printf("Target closed connection\n");
3519 odr_reset(in); /* release APDU from last round */
3521 do_hex_dump(netbuffer, res);
3522 odr_setbuf(in, netbuffer, res, 0);
3524 if (!z_GDU(in, &gdu, 0, 0))
3526 FILE *f = ber_file ? ber_file : stdout;
3527 odr_perror(in, "Decoding incoming APDU");
3528 fprintf(f, "[Near %d]\n", odr_offset(in));
3529 fprintf(f, "Packet dump:\n---------\n");
3530 odr_dumpBER(f, netbuffer, res);
3531 fprintf(f, "---------\n");
3534 z_GDU(print, &gdu, 0, 0);
3537 if (conn && cs_more(conn))
3542 odr_dumpBER(ber_file, netbuffer, res);
3543 if (apdu_file && !z_GDU(print, &gdu, 0, 0))
3545 odr_perror(print, "Failed to print incoming APDU");
3549 if (gdu->which == Z_GDU_Z3950)
3551 Z_APDU *apdu = gdu->u.z3950;
3554 case Z_APDU_initResponse:
3555 process_initResponse(apdu->u.initResponse);
3557 case Z_APDU_searchResponse:
3558 process_searchResponse(apdu->u.searchResponse);
3560 case Z_APDU_scanResponse:
3561 process_scanResponse(apdu->u.scanResponse);
3563 case Z_APDU_presentResponse:
3564 print_refid (apdu->u.presentResponse->referenceId);
3566 *apdu->u.presentResponse->numberOfRecordsReturned;
3567 if (apdu->u.presentResponse->records)
3568 display_records(apdu->u.presentResponse->records);
3570 printf("No records.\n");
3571 printf ("nextResultSetPosition = %d\n",
3572 *apdu->u.presentResponse->nextResultSetPosition);
3574 case Z_APDU_sortResponse:
3575 process_sortResponse(apdu->u.sortResponse);
3577 case Z_APDU_extendedServicesResponse:
3578 printf("Got extended services response\n");
3579 process_ESResponse(apdu->u.extendedServicesResponse);
3582 printf("Target has closed the association.\n");
3583 process_close(apdu->u.close);
3585 case Z_APDU_resourceControlRequest:
3586 process_resourceControlRequest
3587 (apdu->u.resourceControlRequest);
3589 case Z_APDU_deleteResultSetResponse:
3590 process_deleteResultSetResponse(apdu->u.
3591 deleteResultSetResponse);
3594 printf("Received unknown APDU type (%d).\n",
3600 else if (gdu->which == Z_GDU_HTTP_Response)
3602 http_response(gdu->u.HTTP_Response);
3605 if (conn && !cs_more(conn))
3610 #if HAVE_GETTIMEOFDAY
3611 gettimeofday (&tv_end, 0);
3613 printf ("S/U S/U=%ld/%ld %ld/%ld",
3614 (long) tv_start.tv_sec,
3615 (long) tv_start.tv_usec,
3616 (long) tv_end.tv_sec,
3617 (long) tv_end.tv_usec);
3619 printf ("Elapsed: %.6f\n",
3620 (double) tv_end.tv_usec / 1e6 + tv_end.tv_sec -
3621 ((double) tv_start.tv_usec / 1e6 + tv_start.tv_sec));
3628 int cmd_cclparse(const char* arg)
3631 struct ccl_rpn_node *rpn=NULL;
3634 rpn = ccl_find_str (bibset, arg, &error, &pos);
3637 printf ("%*s^ - ", 3+strlen(last_cmd)+1+pos, " ");
3638 printf ("%s\n", ccl_err_msg (error));
3644 ccl_pr_tree(rpn, stdout);
3648 ccl_rpn_delete(rpn);
3656 int cmd_set_otherinfo(const char* args)
3658 char oidstr[101], otherinfoString[101];
3663 sscan_res = sscanf (args, "%d %100[^ ] %100s", &otherinfoNo, oidstr, otherinfoString);
3665 /* reset this otherinfo */
3666 if(otherinfoNo>=maxOtherInfosSupported) {
3667 printf("Error otherinfo index to large (%d>%d)\n",
3668 otherinfoNo,maxOtherInfosSupported);
3670 extraOtherInfos[otherinfoNo].oidval = -1;
3671 if (extraOtherInfos[otherinfoNo].value)
3672 free(extraOtherInfos[otherinfoNo].value);
3676 printf("Error in set_otherinfo command \n");
3680 if (otherinfoNo>=maxOtherInfosSupported) {
3681 printf("Error otherinfo index to large (%d>%d)\n",
3682 otherinfoNo,maxOtherInfosSupported);
3685 oidval = oid_getvalbyname (oidstr);
3686 if (oidval == -1 ) {
3687 printf("Error in set_otherinfo command unknown oid %s \n",oidstr);
3690 extraOtherInfos[otherinfoNo].oidval = oidval;
3691 if(extraOtherInfos[otherinfoNo].value) free(extraOtherInfos[otherinfoNo].value);
3692 extraOtherInfos[otherinfoNo].value = strdup(otherinfoString);
3697 int cmd_list_otherinfo(const char* args)
3701 if(strlen(args)>0) {
3703 if( i >= maxOtherInfosSupported ) {
3704 printf("Error otherinfo index to large (%d>%d)\n",i,maxOtherInfosSupported);
3708 if(extraOtherInfos[i].oidval != -1)
3709 printf(" otherinfo %d %s %s\n",
3711 yaz_z3950_oid_value_to_str(
3712 (enum oid_value) extraOtherInfos[i].oidval,
3714 extraOtherInfos[i].value);
3717 for(i=0; i<maxOtherInfosSupported; ++i) {
3718 if(extraOtherInfos[i].oidval != -1)
3719 printf(" otherinfo %d %s %s\n",
3721 yaz_z3950_oid_value_to_str(
3722 (enum oid_value) extraOtherInfos[i].oidval,
3724 extraOtherInfos[i].value);
3732 int cmd_list_all(const char* args) {
3735 /* connection options */
3737 printf("Connected to : %s\n",last_open_command);
3739 if(last_open_command)
3740 printf("Not connected to : %s\n",last_open_command);
3742 printf("Not connected : \n");
3745 if(yazProxy) printf("using proxy : %s\n",yazProxy);
3747 printf("auto_reconnect : %s\n",auto_reconnect?"on":"off");
3750 printf("Authentication : none\n");
3752 switch(auth->which) {
3753 case Z_IdAuthentication_idPass:
3754 printf("Authentication : IdPass\n");
3755 printf(" Login User : %s\n",auth->u.idPass->userId?auth->u.idPass->userId:"");
3756 printf(" Login Group : %s\n",auth->u.idPass->groupId?auth->u.idPass->groupId:"");
3757 printf(" Password : %s\n",auth->u.idPass->password?auth->u.idPass->password:"");
3759 case Z_IdAuthentication_open:
3760 printf("Authentication : psOpen\n");
3761 printf(" Open string : %s\n",auth->u.open);
3764 printf("Authentication : Unknown\n");
3767 if (negotiationCharset)
3768 printf("Neg. Character set : `%s'\n", negotiationCharset);
3772 for (i = 0; i<num_databaseNames; i++) printf("%s ",databaseNames[i]);
3776 printf("CCL file : %s\n",ccl_fields);
3777 printf("CQL file : %s\n",cql_fields);
3778 printf("Query type : %s\n",query_type_as_string(queryType));
3780 printf("Named Result Sets : %s\n",setnumber==-1?"off":"on");
3782 /* piggy back options */
3783 printf("ssub/lslb/mspn : %d/%d/%d\n",smallSetUpperBound,largeSetLowerBound,mediumSetPresentNumber);
3785 /* print present related options */
3786 printf("Format : %s\n",yaz_z3950_oid_value_to_str(recordsyntax,CLASS_RECSYN));
3787 printf("Schema : %s\n",record_schema ? record_schema : "not set");
3788 printf("Elements : %s\n",elementSetNames?elementSetNames->u.generic:"");
3790 /* loging options */
3791 printf("APDU log : %s\n",apdu_file?"on":"off");
3792 printf("Record log : %s\n",marc_file?"on":"off");
3795 printf("Other Info: \n");
3796 cmd_list_otherinfo("");
3801 int cmd_clear_otherinfo(const char* args)
3803 if(strlen(args)>0) {
3805 otherinfoNo = atoi(args);
3806 if( otherinfoNo >= maxOtherInfosSupported ) {
3807 printf("Error otherinfo index to large (%d>%d)\n",otherinfoNo,maxOtherInfosSupported);
3811 if(extraOtherInfos[otherinfoNo].oidval != -1) {
3812 /* only clear if set. */
3813 extraOtherInfos[otherinfoNo].oidval=-1;
3814 free(extraOtherInfos[otherinfoNo].value);
3819 for(i=0; i<maxOtherInfosSupported; ++i) {
3820 if (extraOtherInfos[i].oidval!=-1 ) {
3821 extraOtherInfos[i].oidval=-1;
3822 free(extraOtherInfos[i].value);
3829 static int cmd_help (const char *line);
3831 typedef char *(*completerFunctionType)(const char *text, int state);
3835 int (*fun)(const char *arg);
3837 completerFunctionType rl_completerfunction;
3838 int complete_filenames;
3839 char **local_tabcompletes;
3841 {"open", cmd_open, "('tcp'|'ssl')':<host>[':'<port>][/<db>]",NULL,0,NULL},
3842 {"quit", cmd_quit, "",NULL,0,NULL},
3843 {"find", cmd_find, "<query>",NULL,0,NULL},
3844 {"delete", cmd_delete, "<setname>",NULL,0,NULL},
3845 {"base", cmd_base, "<base-name>",NULL,0,NULL},
3846 {"show", cmd_show, "<rec#>['+'<#recs>['+'<setname>]]",NULL,0,NULL},
3847 {"scan", cmd_scan, "<term>",NULL,0,NULL},
3848 {"sort", cmd_sort, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
3849 {"sort+", cmd_sort_newset, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
3850 {"authentication", cmd_authentication, "<acctstring>",NULL,0,NULL},
3851 {"lslb", cmd_lslb, "<largeSetLowerBound>",NULL,0,NULL},
3852 {"ssub", cmd_ssub, "<smallSetUpperBound>",NULL,0,NULL},
3853 {"mspn", cmd_mspn, "<mediumSetPresentNumber>",NULL,0,NULL},
3854 {"status", cmd_status, "",NULL,0,NULL},
3855 {"setnames", cmd_setnames, "",NULL,0,NULL},
3856 {"cancel", cmd_cancel, "",NULL,0,NULL},
3857 {"cancel_find", cmd_cancel_find, "<query>",NULL,0,NULL},
3858 {"format", cmd_format, "<recordsyntax>",complete_format,0,NULL},
3859 {"schema", cmd_schema, "<schema>",complete_schema,0,NULL},
3860 {"elements", cmd_elements, "<elementSetName>",NULL,0,NULL},
3861 {"close", cmd_close, "",NULL,0,NULL},
3862 {"attributeset", cmd_attributeset, "<attrset>",complete_attributeset,0,NULL},
3863 {"querytype", cmd_querytype, "<type>",complete_querytype,0,NULL},
3864 {"refid", cmd_refid, "<id>",NULL,0,NULL},
3865 {"itemorder", cmd_itemorder, "ill|item <itemno>",NULL,0,NULL},
3866 {"update", cmd_update, "<action> <recid> [<file>]",NULL,0,NULL},
3867 {"update0", cmd_update0, "<action> <recid> [<file>]",NULL,0,NULL},
3868 {"packagename", cmd_packagename, "<packagename>",NULL,0,NULL},
3869 {"proxy", cmd_proxy, "[('tcp'|'ssl')]<host>[':'<port>]",NULL,0,NULL},
3870 {"charset", cmd_charset, "<nego_charset> <output_charset>",NULL,0,NULL},
3871 {"marccharset", cmd_marccharset, "<charset_name>",NULL,0,NULL},
3872 {"lang", cmd_lang, "<language_code>",NULL,0,NULL},
3873 {".", cmd_source, "<filename>",NULL,1,NULL},
3874 {"!", cmd_subshell, "Subshell command",NULL,1,NULL},
3875 {"set_apdufile", cmd_set_apdufile, "<filename>",NULL,1,NULL},
3876 {"set_berfile", cmd_set_berfile, "<filename>",NULL,1,NULL},
3877 {"set_marcdump", cmd_set_marcdump," <filename>",NULL,1,NULL},
3878 {"set_cclfile", cmd_set_cclfile," <filename>",NULL,1,NULL},
3879 {"set_cqlfile", cmd_set_cqlfile," <filename>",NULL,1,NULL},
3880 {"set_auto_reconnect", cmd_set_auto_reconnect," on|off",complete_auto_reconnect,1,NULL},
3881 {"set_otherinfo", cmd_set_otherinfo,"<otherinfoinddex> <oid> <string>",NULL,0,NULL},
3882 {"register_oid", cmd_register_oid,"<name> <class> <oid>",NULL,0,NULL},
3883 {"push_command", cmd_push_command,"<command>",command_generator,0,NULL},
3884 {"register_tab", cmd_register_tab,"<commandname> <tab>",command_generator,0,NULL},
3885 {"cclparse", cmd_cclparse,"<ccl find command>",NULL,0,NULL},
3886 {"list_otherinfo",cmd_list_otherinfo,"[otherinfoinddex]",NULL,0,NULL},
3887 {"list_all",cmd_list_all,"",NULL,0,NULL},
3888 {"clear_otherinfo",cmd_clear_otherinfo,"",NULL,0,NULL},
3889 /* Server Admin Functions */
3890 {"adm-reindex", cmd_adm_reindex, "<database-name>",NULL,0,NULL},
3891 {"adm-truncate", cmd_adm_truncate, "('database'|'index')<object-name>",NULL,0,NULL},
3892 {"adm-create", cmd_adm_create, "",NULL,0,NULL},
3893 {"adm-drop", cmd_adm_drop, "('database'|'index')<object-name>",NULL,0,NULL},
3894 {"adm-import", cmd_adm_import, "<record-type> <dir> <pattern>",NULL,0,NULL},
3895 {"adm-refresh", cmd_adm_refresh, "",NULL,0,NULL},
3896 {"adm-commit", cmd_adm_commit, "",NULL,0,NULL},
3897 {"adm-shutdown", cmd_adm_shutdown, "",NULL,0,NULL},
3898 {"adm-startup", cmd_adm_startup, "",NULL,0,NULL},
3899 {"explain", cmd_explain, "", NULL, 0, NULL},
3900 {"options", cmd_options, "", NULL, 0, NULL},
3901 {"zversion", cmd_zversion, "", NULL, 0, NULL},
3902 {"help", cmd_help, "", NULL,0,NULL},
3903 {"init", cmd_init, "", NULL,0,NULL},
3907 static int cmd_help (const char *line)
3913 sscanf (line, "%20s", topic);
3916 printf("Commands:\n");
3917 for (i = 0; cmd_array[i].cmd; i++)
3918 if (*topic == 0 || strcmp (topic, cmd_array[i].cmd) == 0)
3919 printf(" %s %s\n", cmd_array[i].cmd, cmd_array[i].ad);
3920 if (strcmp (topic, "find") == 0)
3923 printf (" \"term\" Simple Term\n");
3924 printf (" @attr [attset] type=value op Attribute\n");
3925 printf (" @and opl opr And\n");
3926 printf (" @or opl opr Or\n");
3927 printf (" @not opl opr And-Not\n");
3928 printf (" @set set Result set\n");
3930 printf ("Bib-1 attribute types\n");
3932 printf ("4=Title 7=ISBN 8=ISSN 30=Date 62=Abstract 1003=Author 1016=Any\n");
3933 printf ("2=Relation: ");
3934 printf ("1< 2<= 3= 4>= 5> 6!= 102=Relevance\n");
3935 printf ("3=Position: ");
3936 printf ("1=First in Field 2=First in subfield 3=Any position\n");
3937 printf ("4=Structure: ");
3938 printf ("1=Phrase 2=Word 3=Key 4=Year 5=Date 6=WordList\n");
3939 printf ("5=Truncation: ");
3940 printf ("1=Right 2=Left 3=L&R 100=No 101=# 102=Re-1 103=Re-2\n");
3941 printf ("6=Completeness:");
3942 printf ("1=Incomplete subfield 2=Complete subfield 3=Complete field\n");
3947 int cmd_register_tab(const char* arg) {
3949 char command[101], tabargument[101];
3954 if (sscanf (arg, "%100s %100s", command, tabargument) < 1) {
3958 /* locate the amdn in the list */
3959 for (i = 0; cmd_array[i].cmd; i++) {
3960 if (!strncmp(cmd_array[i].cmd, command, strlen(command))) {
3965 if(!cmd_array[i].cmd) {
3966 fprintf(stderr,"Unknown command %s\n",command);
3971 if(!cmd_array[i].local_tabcompletes)
3972 cmd_array[i].local_tabcompletes = (char **) calloc(1,sizeof(char**));
3976 tabslist = cmd_array[i].local_tabcompletes;
3977 for(;tabslist && *tabslist;tabslist++) {
3981 cmd_array[i].local_tabcompletes = (char **)
3982 realloc(cmd_array[i].local_tabcompletes,(num_of_tabs+2)*sizeof(char**));
3983 tabslist=cmd_array[i].local_tabcompletes;
3984 tabslist[num_of_tabs]=strdup(tabargument);
3985 tabslist[num_of_tabs+1]=NULL;
3990 void process_cmd_line(char* line)
3993 char word[32], arg[10240];
3995 #if HAVE_GETTIMEOFDAY
3996 gettimeofday (&tv_start, 0);
3999 if ((res = sscanf(line, "%31s %10239[^;]", word, arg)) <= 0)
4001 strcpy(word, last_cmd);
4006 strcpy(last_cmd, word);
4008 /* removed tailing spaces from the arg command */
4011 char* lastnonspace=NULL;
4014 if(!isspace(*(unsigned char *) p)) {
4019 *(++lastnonspace) = 0;
4022 for (i = 0; cmd_array[i].cmd; i++)
4023 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
4025 res = (*cmd_array[i].fun)(arg);
4029 if (!cmd_array[i].cmd) /* dump our help-screen */
4031 printf("Unknown command: %s.\n", word);
4032 printf("use help for list of commands\n");
4033 /* cmd_help (""); */
4037 if(apdu_file) fflush(apdu_file);
4040 wait_and_handle_response();
4049 char *command_generator(const char *text, int state)
4055 for( ; cmd_array[idx].cmd; ++idx) {
4056 if (!strncmp(cmd_array[idx].cmd,text,strlen(text))) {
4057 ++idx; /* skip this entry on the next run */
4058 return strdup(cmd_array[idx-1].cmd);
4066 This function only known how to complete on the first word
4068 char ** readline_completer(char *text, int start, int end) {
4069 #if HAVE_READLINE_READLINE_H
4071 completerFunctionType completerToUse;
4074 #if HAVE_READLINE_RL_COMPLETION_MATCHES
4075 char** res=rl_completion_matches(text,
4078 char** res=completion_matches(text,
4079 (CPFunction*)command_generator);
4081 rl_attempted_completion_over = 1;
4084 char arg[10240],word[32];
4086 if ((res = sscanf(rl_line_buffer, "%31s %10239[^;]", word, arg)) <= 0) {
4087 rl_attempted_completion_over = 1;
4091 for (i = 0; cmd_array[i].cmd; i++) {
4092 if (!strncmp(cmd_array[i].cmd, word, strlen(word))) {
4097 if(!cmd_array[i].cmd) return NULL;
4099 curret_global_list = cmd_array[i].local_tabcompletes;
4101 completerToUse = cmd_array[i].rl_completerfunction;
4102 if(completerToUse==NULL) /* if no pr. command completer is defined use the default completer */
4103 completerToUse = default_completer;
4105 if(completerToUse) {
4106 #ifdef HAVE_READLINE_RL_COMPLETION_MATCHES
4108 rl_completion_matches(text,
4112 completion_matches(text,
4113 (CPFunction*)completerToUse);
4115 if(!cmd_array[i].complete_filenames)
4116 rl_attempted_completion_over = 1;
4119 if(!cmd_array[i].complete_filenames)
4120 rl_attempted_completion_over = 1;
4130 static void client(void)
4136 #if HAVE_GETTIMEOFDAY
4137 gettimeofday (&tv_start, 0);
4142 char *line_in = NULL;
4143 #if HAVE_READLINE_READLINE_H
4146 line_in=readline(C_PROMPT);
4149 #if HAVE_READLINE_HISTORY_H
4151 add_history(line_in);
4153 strncpy(line, line_in, 10239);
4162 if (!fgets(line, 10239, stdin))
4164 if ((end_p = strchr (line, '\n')))
4167 process_cmd_line(line);
4171 static void show_version(void)
4175 yaz_version(vstr, 0);
4176 printf ("YAZ version: %s\n", YAZ_VERSION);
4177 if (strcmp(vstr, YAZ_VERSION))
4178 printf ("YAZ DLL/SO: %s\n", vstr);
4182 int main(int argc, char **argv)
4185 char *open_command = 0;
4186 char *auth_command = 0;
4191 if (!setlocale(LC_CTYPE, ""))
4192 fprintf (stderr, "setlocale failed\n");
4196 codeset = nl_langinfo(CODESET);
4200 outputCharset = xstrdup(codeset);
4202 ODR_MASK_SET(&z3950_options, Z_Options_search);
4203 ODR_MASK_SET(&z3950_options, Z_Options_present);
4204 ODR_MASK_SET(&z3950_options, Z_Options_namedResultSets);
4205 ODR_MASK_SET(&z3950_options, Z_Options_triggerResourceCtrl);
4206 ODR_MASK_SET(&z3950_options, Z_Options_scan);
4207 ODR_MASK_SET(&z3950_options, Z_Options_sort);
4208 ODR_MASK_SET(&z3950_options, Z_Options_extendedServices);
4209 ODR_MASK_SET(&z3950_options, Z_Options_delSet);
4211 while ((ret = options("k:c:q:a:b:m:v:p:u:t:Vxd:", argv, argc, &arg)) != -2)
4218 open_command = (char *) xmalloc (strlen(arg)+6);
4219 strcpy (open_command, "open ");
4220 strcat (open_command, arg);
4224 dump_file_prefix = arg;
4227 kilobytes = atoi(arg);
4230 if (!(marc_file = fopen (arg, "a")))
4237 outputCharset = xstrdup(arg);
4240 strncpy (ccl_fields, arg, sizeof(ccl_fields)-1);
4241 ccl_fields[sizeof(ccl_fields)-1] = '\0';
4244 strncpy (cql_fields, arg, sizeof(cql_fields)-1);
4245 cql_fields[sizeof(cql_fields)-1] = '\0';
4248 if (!strcmp(arg, "-"))
4251 ber_file=fopen(arg, "a");
4254 if (!strcmp(arg, "-"))
4257 apdu_file=fopen(arg, "a");
4263 yazProxy=strdup(arg);
4268 auth_command = (char *) xmalloc (strlen(arg)+6);
4269 strcpy (auth_command, "auth ");
4270 strcat (auth_command, arg);
4274 yaz_log_init(yaz_log_mask_str(arg), "", 0);
4280 fprintf (stderr, "Usage: %s [-m <marclog>] [ -a <apdulog>] "
4281 "[-b berdump] [-c cclfields] \n"
4282 "[-q cqlfields] [-p <proxy-addr>] [-u <auth>] "
4283 "[-k size] [-d dump] [-V] [<server-addr>]\n",
4291 #ifdef HAVE_GETTIMEOFDAY
4292 gettimeofday (&tv_start, 0);
4294 process_cmd_line (auth_command);
4295 #if HAVE_READLINE_HISTORY_H
4296 add_history(auth_command);
4298 xfree(auth_command);
4302 #ifdef HAVE_GETTIMEOFDAY
4303 gettimeofday (&tv_start, 0);
4305 process_cmd_line (open_command);
4306 #if HAVE_READLINE_HISTORY_H
4307 add_history(open_command);
4309 xfree(open_command);
4320 * vim600: sw=4 ts=8 fdm=marker
4321 * vim<600: sw=4 ts=8