2 * Copyright (c) 1995-2004, Index Data
3 * See the file LICENSE for details.
5 * $Id: client.c,v 1.254 2004-11-01 21:19:08 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;
118 static int scan_stepSize = 0;
119 static int scan_position = 1;
120 static char cur_host[200];
130 static QueryType queryType = QueryType_Prefix;
132 static CCL_bibset bibset; /* CCL bibset handle */
133 static cql_transform_t cqltrans; /* CQL context-set handle */
135 #if HAVE_READLINE_COMPLETION_OVER
138 /* readline doesn't have this var. Define it ourselves. */
139 int rl_attempted_completion_over = 0;
142 /* set this one to 1, to avoid decode of unknown MARCs */
143 #define AVOID_MARC_DECODE 1
145 #define maxOtherInfosSupported 10
149 } extraOtherInfos[maxOtherInfosSupported];
152 void process_cmd_line(char* line);
153 char ** readline_completer(char *text, int start, int end);
154 char *command_generator(const char *text, int state);
155 char** curret_global_list=NULL;
156 int cmd_register_tab(const char* arg);
158 static void close_session (void);
160 ODR getODROutputStream()
165 const char* query_type_as_string(QueryType q)
168 case QueryType_Prefix: return "prefix (RPN sent to server)";
169 case QueryType_CCL: return "CCL (CCL sent to server) ";
170 case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
171 case QueryType_CQL: return "CQL (CQL sent to server)";
172 case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
174 return "unknown Query type internal yaz-client error";
178 static void do_hex_dump(const char* buf, int len)
183 for( i=0; i<len ; i=i+16 )
186 for(x=0 ; i+x<len && x<16; ++x)
188 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
193 if (dump_file_prefix)
196 if (++no < 1000 && strlen(dump_file_prefix) < 500)
200 sprintf (fname, "%s.%03d.raw", dump_file_prefix, no);
201 of = fopen(fname, "wb");
203 fwrite (buf, 1, len, of);
210 void add_otherInfos(Z_APDU *a)
212 Z_OtherInformation **oi;
216 for(i=0; i<maxOtherInfosSupported; ++i)
218 if(extraOtherInfos[i].oidval != -1)
219 yaz_oi_set_string_oidval(oi, out, extraOtherInfos[i].oidval,
220 1, extraOtherInfos[i].value);
224 int send_apdu(Z_APDU *a)
233 z_APDU(print, &a, 0, 0);
236 if (!z_APDU(out, &a, 0, 0))
238 odr_perror(out, "Encoding APDU");
242 buf = odr_getbuf(out, &len, 0);
244 odr_dumpBER(ber_file, buf, len);
245 /* printf ("sending APDU of size %d\n", len); */
246 do_hex_dump(buf, len);
247 if (cs_put(conn, buf, len) < 0)
249 fprintf(stderr, "cs_put: %s", cs_errmsg(cs_errno(conn)));
253 odr_reset(out); /* release the APDU structure */
257 static void print_stringn(const unsigned char *buf, size_t len)
260 for (i = 0; i<len; i++)
261 if ((buf[i] <= 126 && buf[i] >= 32) || strchr ("\n\r\t\f", buf[i]))
262 printf ("%c", buf[i]);
264 printf ("\\X%02X", buf[i]);
267 static void print_refid (Z_ReferenceId *id)
271 printf ("Reference Id: ");
272 print_stringn (id->buf, id->len);
277 static Z_ReferenceId *set_refid (ODR out)
282 id = (Z_ReferenceId *) odr_malloc (out, sizeof(*id));
283 id->size = id->len = strlen(refid);
284 id->buf = (unsigned char *) odr_malloc (out, id->len);
285 memcpy (id->buf, refid, id->len);
289 /* INIT SERVICE ------------------------------- */
291 static void send_initRequest(const char* type_and_host)
293 Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
294 Z_InitRequest *req = apdu->u.initRequest;
297 req->options = &z3950_options;
299 ODR_MASK_ZERO(req->protocolVersion);
300 for (i = 0; i<z3950_version; i++)
301 ODR_MASK_SET(req->protocolVersion, i);
303 *req->maximumRecordSize = 1024*kilobytes;
304 *req->preferredMessageSize = 1024*kilobytes;
306 req->idAuthentication = auth;
308 req->referenceId = set_refid (out);
310 if (yazProxy && type_and_host)
311 yaz_oi_set_string_oidval(&req->otherInfo, out, VAL_PROXY,
314 if (negotiationCharset || yazLang) {
315 Z_OtherInformation **p;
316 Z_OtherInformationUnit *p0;
318 yaz_oi_APDU(apdu, &p);
320 if ((p0=yaz_oi_update(p, out, NULL, 0, 0))) {
321 ODR_MASK_SET(req->options, Z_Options_negotiationModel);
323 p0->which = Z_OtherInfo_externallyDefinedInfo;
324 p0->information.externallyDefinedInfo =
325 yaz_set_proposal_charneg(
327 (const char**)&negotiationCharset,
328 negotiationCharset ? 1 : 0,
329 (const char**)&yazLang, yazLang ? 1 : 0, 1);
334 printf("Sent initrequest.\n");
338 /* These two are used only from process_initResponse() */
339 static void render_initUserInfo(Z_OtherInformation *ui1);
340 static void render_diag(Z_DiagnosticFormat *diag);
342 static void pr_opt(const char *opt, void *clientData)
347 static int process_initResponse(Z_InitResponse *res)
350 /* save session parameters for later use */
351 session_mem = odr_extract_mem(in);
354 for (ver = 0; ver < 8; ver++)
355 if (!ODR_MASK_GET(res->protocolVersion, ver))
359 printf("Connection rejected by v%d target.\n", ver);
361 printf("Connection accepted by v%d target.\n", ver);
362 if (res->implementationId)
363 printf("ID : %s\n", res->implementationId);
364 if (res->implementationName)
365 printf("Name : %s\n", res->implementationName);
366 if (res->implementationVersion)
367 printf("Version: %s\n", res->implementationVersion);
368 if (res->userInformationField)
370 Z_External *uif = res->userInformationField;
371 if (uif->which == Z_External_userInfo1) {
372 render_initUserInfo(uif->u.userInfo1);
374 printf("UserInformationfield:\n");
375 if (!z_External(print, (Z_External**)&uif, 0, 0)) {
376 odr_perror(print, "Printing userinfo\n");
379 if (uif->which == Z_External_octet) {
380 printf("Guessing visiblestring:\n");
381 printf("'%s'\n", uif->u. octet_aligned->buf);
382 } else if (uif->which == Z_External_single) {
383 Odr_any *sat = uif->u.single_ASN1_type;
384 oident *oid = oid_getentbyoid(uif->direct_reference);
385 if (oid->value == VAL_OCLCUI) {
386 Z_OCLC_UserInformation *oclc_ui;
387 ODR decode = odr_createmem(ODR_DECODE);
388 odr_setbuf(decode, sat->buf, sat->len, 0);
389 if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
390 printf ("Bad OCLC UserInformation:\n");
392 printf ("OCLC UserInformation:\n");
393 if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
394 printf ("Bad OCLC UserInformation spec\n");
399 /* Peek at any private Init-diagnostic APDUs */
400 printf("### NAUGHTY: External is '%.*s'\n", sat->len, sat->buf);
407 yaz_init_opt_decode(res->options, pr_opt, 0);
410 if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
413 if (ODR_MASK_GET(res->options, Z_Options_negotiationModel)) {
415 Z_CharSetandLanguageNegotiation *p =
416 yaz_get_charneg_record(res->otherInfo);
420 char *charset=NULL, *lang=NULL;
423 yaz_get_response_charneg(session_mem, p, &charset, &lang,
426 if (outputCharset && negotiationCharset) {
427 odr_set_charset (out, charset, outputCharset);
428 odr_set_charset (in, outputCharset, charset);
431 odr_set_charset (out, 0, 0);
432 odr_set_charset (in, 0, 0);
435 printf("Accepted character set : %s\n", charset);
436 printf("Accepted code language : %s\n", lang ? lang : "none");
437 printf("Accepted records in ...: %d\n", selected );
445 static void render_initUserInfo(Z_OtherInformation *ui1) {
447 printf("Init response contains %d otherInfo unit%s:\n",
448 ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
450 for (i = 0; i < ui1->num_elements; i++) {
451 Z_OtherInformationUnit *unit = ui1->list[i];
452 printf(" %d: otherInfo unit contains ", i+1);
453 if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
454 unit->information.externallyDefinedInfo->which ==
456 render_diag(unit->information.externallyDefinedInfo->u.diag1);
458 printf("unsupported otherInfo unit type %d\n", unit->which);
464 /* ### should this share code with display_diagrecs()? */
465 static void render_diag(Z_DiagnosticFormat *diag) {
468 printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
469 for (i = 0; i < diag->num; i++) {
470 Z_DiagnosticFormat_s *ds = diag->elements[i];
471 printf(" %d: ", i+1);
473 case Z_DiagnosticFormat_s_defaultDiagRec: {
474 Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
475 /* ### should check `dd->diagnosticSetId' */
476 printf("code=%d (%s)", *dd->condition,
477 diagbib1_str(*dd->condition));
478 /* Both types of addinfo are the same, so use type-pun */
479 if (dd->u.v2Addinfo != 0)
480 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
483 case Z_DiagnosticFormat_s_explicitDiagnostic:
484 printf("Explicit diagnostic (not supported)");
487 printf("Unrecognised diagnostic type %d", ds->which);
491 if (ds->message != 0)
492 printf(", message='%s'", ds->message);
498 static int set_base(const char *arg)
503 for (i = 0; i<num_databaseNames; i++)
504 xfree (databaseNames[i]);
505 num_databaseNames = 0;
509 if (!(cp = strchr(arg, ' ')))
510 cp = arg + strlen(arg);
513 databaseNames[num_databaseNames] = (char *)xmalloc (1 + cp - arg);
514 memcpy (databaseNames[num_databaseNames], arg, cp - arg);
515 databaseNames[num_databaseNames][cp - arg] = '\0';
517 for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
526 if (num_databaseNames == 0)
528 num_databaseNames = 1;
529 databaseNames[0] = xstrdup("");
534 static int cmd_base(const char *arg)
538 printf("Usage: base <database> <database> ...\n");
541 return set_base(arg);
544 void cmd_open_remember_last_open_command(const char* arg, char* new_open_command)
546 if(last_open_command != arg)
548 if(last_open_command) xfree(last_open_command);
549 last_open_command = xstrdup(new_open_command);
553 int session_connect(const char *arg)
556 char type_and_host[101];
557 const char *basep = 0;
558 #if HAVE_OPENSSL_SSL_H
567 nmem_destroy (session_mem);
571 cs_get_host_args(arg, &basep);
573 strncpy(type_and_host, arg, sizeof(type_and_host)-1);
574 type_and_host[sizeof(type_and_host)-1] = '\0';
576 cmd_open_remember_last_open_command(arg,type_and_host);
579 conn = cs_create_host(yazProxy, 1, &add);
581 conn = cs_create_host(arg, 1, &add);
584 printf ("Couldn't create comstack\n");
588 if (conn->protocol == PROTO_HTTP)
589 queryType = QueryType_CQL;
591 if (conn->protocol == PROTO_HTTP)
593 printf ("SRW/HTTP not enabled in this YAZ\n");
599 protocol = conn->protocol;
600 if (conn->protocol == PROTO_HTTP)
604 printf("Connecting...");
606 if (cs_connect(conn, add) < 0)
608 printf ("error = %s\n", cs_strerror(conn));
609 if (conn->cerrno == CSYSERR)
612 yaz_strerror(msg, sizeof(msg));
613 printf ("%s\n", msg);
620 #if HAVE_OPENSSL_SSL_H
621 if ((ssl = (SSL *) cs_get_ssl(conn)))
623 X509 *server_cert = SSL_get_peer_certificate (ssl);
629 BIO *bio = BIO_new(BIO_s_mem());
631 /* get PEM buffer in memory */
632 PEM_write_bio_X509(bio, server_cert);
633 pem_len = BIO_get_mem_data(bio, &pem_buf);
634 fwrite(pem_buf, pem_len, 1, stdout);
636 /* print all info on screen .. */
637 X509_print_fp(stdout, server_cert);
640 X509_free (server_cert);
646 if (protocol == PROTO_Z3950)
648 send_initRequest(type_and_host);
654 int cmd_open(const char *arg)
658 strncpy (cur_host, arg, sizeof(cur_host)-1);
659 cur_host[sizeof(cur_host)-1] = 0;
661 return session_connect(cur_host);
668 if(!( auto_reconnect && last_open_command) ) return ;
670 open_command = (char *) xmalloc (strlen(last_open_command)+6);
671 strcpy (open_command, "open ");
673 strcat (open_command, last_open_command);
675 process_cmd_line(open_command);
680 int cmd_authentication(const char *arg)
682 static Z_IdAuthentication au;
683 static char user[40], group[40], pass[40];
684 static Z_IdPass idPass;
689 printf("Auth field set to null\n");
693 r = sscanf (arg, "%39s %39s %39s", user, group, pass);
696 printf("Authentication set to null\n");
702 if (!strcmp(user, "-")) {
703 au.which = Z_IdAuthentication_anonymous;
704 printf("Authentication set to Anonymous\n");
706 au.which = Z_IdAuthentication_open;
708 printf("Authentication set to Open (%s)\n", user);
714 au.which = Z_IdAuthentication_idPass;
715 au.u.idPass = &idPass;
716 idPass.groupId = NULL;
717 idPass.userId = user;
718 idPass.password = group;
719 printf("Authentication set to User (%s), Pass (%s)\n", user, group);
724 au.which = Z_IdAuthentication_idPass;
725 au.u.idPass = &idPass;
726 idPass.groupId = group;
727 idPass.userId = user;
728 idPass.password = pass;
729 printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
735 /* SEARCH SERVICE ------------------------------ */
736 static void display_record(Z_External *r);
738 static void print_record(const unsigned char *buf, size_t len)
741 print_stringn (buf, len);
742 /* add newline if not already added ... */
743 if (i <= 0 || buf[i-1] != '\n')
746 fwrite (buf, 1, len, marc_file);
749 static void display_record(Z_External *r)
751 oident *ent = oid_getentbyoid(r->direct_reference);
755 * Tell the user what we got.
757 if (r->direct_reference)
759 printf("Record type: ");
761 printf("%s\n", ent->desc);
762 else if (!odr_oid(print, &r->direct_reference, 0, 0))
764 odr_perror(print, "print oid");
768 /* Check if this is a known, ASN.1 type tucked away in an octet string */
769 if (ent && r->which == Z_External_octet)
771 Z_ext_typeent *type = z_ext_getentbyref(ent->value);
777 * Call the given decoder to process the record.
779 odr_setbuf(in, (char*)r->u.octet_aligned->buf,
780 r->u.octet_aligned->len, 0);
781 if (!(*type->fun)(in, &rr, 0, 0))
783 odr_perror(in, "Decoding constructed record.");
784 fprintf(stdout, "[Near %d]\n", odr_offset(in));
785 fprintf(stdout, "Packet dump:\n---------\n");
786 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
787 r->u.octet_aligned->len);
788 fprintf(stdout, "---------\n");
790 /* note just ignores the error ant print the bytes form the octet_aligned later */
793 * Note: we throw away the original, BER-encoded record here.
794 * Do something else with it if you want to keep it.
796 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
797 r->which = type->what;
801 if (ent && ent->value == VAL_SOIF)
802 print_record((const unsigned char *) r->u.octet_aligned->buf,
803 r->u.octet_aligned->len);
804 else if (r->which == Z_External_octet)
806 const char *octet_buf = (char*)r->u.octet_aligned->buf;
807 if (ent->oclass == CLASS_RECSYN &&
808 (ent->value == VAL_TEXT_XML ||
809 ent->value == VAL_APPLICATION_XML ||
810 ent->value == VAL_HTML))
812 print_record((const unsigned char *) octet_buf,
813 r->u.octet_aligned->len);
815 else if (ent->value == VAL_POSTSCRIPT)
817 int size = r->u.octet_aligned->len;
820 print_record((const unsigned char *) octet_buf, size);
825 #if AVOID_MARC_DECODE
826 /* primitive check for a marc OID 5.1-29 except 16 */
827 ent->oidsuffix[0] == 5 && ent->oidsuffix[1] < 30 &&
828 ent->oidsuffix[1] != 16
837 yaz_marc_t mt = yaz_marc_create();
839 if (yaz_marc_decode_buf(mt, octet_buf,r->u.octet_aligned->len,
843 if (marcCharset && !strcmp(marcCharset, "auto"))
845 if (ent->value == VAL_USMARC)
847 if (octet_buf[9] == 'a')
855 else if (marcCharset)
857 if (outputCharset && from)
859 cd = yaz_iconv_open(outputCharset, from);
860 printf ("convert from %s to %s", from,
863 printf (" unsupported\n");
868 fwrite (result, 1, rlen, stdout);
872 size_t inbytesleft = rlen;
873 const char *inp = result;
877 size_t outbytesleft = sizeof(outbuf);
881 r = yaz_iconv (cd, (char**) &inp,
883 &outp, &outbytesleft);
884 if (r == (size_t) (-1))
886 int e = yaz_iconv_error(cd);
887 if (e != YAZ_ICONV_E2BIG)
890 fwrite (outbuf, outp - outbuf, 1, stdout);
896 printf ("bad MARC. Dumping as it is:\n");
897 print_record((const unsigned char*) octet_buf,
898 r->u.octet_aligned->len);
900 yaz_marc_destroy(mt);
906 print_record((const unsigned char*) octet_buf,
907 r->u.octet_aligned->len);
911 fwrite (octet_buf, 1, r->u.octet_aligned->len, marc_file);
913 else if (ent && ent->value == VAL_SUTRS)
915 if (r->which != Z_External_sutrs)
917 printf("Expecting single SUTRS type for SUTRS.\n");
920 print_record(r->u.sutrs->buf, r->u.sutrs->len);
922 else if (ent && ent->value == VAL_GRS1)
925 if (r->which != Z_External_grs1)
927 printf("Expecting single GRS type for GRS.\n");
931 yaz_display_grs1(w, r->u.grs1, 0);
935 else if ( /* OPAC display not complete yet .. */
936 ent && ent->value == VAL_OPAC)
939 if (r->u.opac->bibliographicRecord)
940 display_record(r->u.opac->bibliographicRecord);
941 for (i = 0; i<r->u.opac->num_holdingsData; i++)
943 Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
944 if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
946 printf ("MARC holdings %d\n", i);
947 display_record(h->u.marcHoldingsRecord);
949 else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
953 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
955 printf ("Data holdings %d\n", i);
956 if (data->typeOfRecord)
957 printf ("typeOfRecord: %s\n", data->typeOfRecord);
958 if (data->encodingLevel)
959 printf ("encodingLevel: %s\n", data->encodingLevel);
960 if (data->receiptAcqStatus)
961 printf ("receiptAcqStatus: %s\n", data->receiptAcqStatus);
962 if (data->generalRetention)
963 printf ("generalRetention: %s\n", data->generalRetention);
964 if (data->completeness)
965 printf ("completeness: %s\n", data->completeness);
966 if (data->dateOfReport)
967 printf ("dateOfReport: %s\n", data->dateOfReport);
969 printf ("nucCode: %s\n", data->nucCode);
970 if (data->localLocation)
971 printf ("localLocation: %s\n", data->localLocation);
972 if (data->shelvingLocation)
973 printf ("shelvingLocation: %s\n", data->shelvingLocation);
974 if (data->callNumber)
975 printf ("callNumber: %s\n", data->callNumber);
976 if (data->shelvingData)
977 printf ("shelvingData: %s\n", data->shelvingData);
978 if (data->copyNumber)
979 printf ("copyNumber: %s\n", data->copyNumber);
980 if (data->publicNote)
981 printf ("publicNote: %s\n", data->publicNote);
982 if (data->reproductionNote)
983 printf ("reproductionNote: %s\n", data->reproductionNote);
984 if (data->termsUseRepro)
985 printf ("termsUseRepro: %s\n", data->termsUseRepro);
986 if (data->enumAndChron)
987 printf ("enumAndChron: %s\n", data->enumAndChron);
988 for (j = 0; j<data->num_volumes; j++)
990 printf ("volume %d\n", j);
991 if (data->volumes[j]->enumeration)
992 printf (" enumeration: %s\n",
993 data->volumes[j]->enumeration);
994 if (data->volumes[j]->chronology)
995 printf (" chronology: %s\n",
996 data->volumes[j]->chronology);
997 if (data->volumes[j]->enumAndChron)
998 printf (" enumAndChron: %s\n",
999 data->volumes[j]->enumAndChron);
1001 for (j = 0; j<data->num_circulationData; j++)
1003 printf ("circulation %d\n", j);
1004 if (data->circulationData[j]->availableNow)
1005 printf (" availableNow: %d\n",
1006 *data->circulationData[j]->availableNow);
1007 if (data->circulationData[j]->availablityDate)
1008 printf (" availabiltyDate: %s\n",
1009 data->circulationData[j]->availablityDate);
1010 if (data->circulationData[j]->availableThru)
1011 printf (" availableThru: %s\n",
1012 data->circulationData[j]->availableThru);
1013 if (data->circulationData[j]->restrictions)
1014 printf (" restrictions: %s\n",
1015 data->circulationData[j]->restrictions);
1016 if (data->circulationData[j]->itemId)
1017 printf (" itemId: %s\n",
1018 data->circulationData[j]->itemId);
1019 if (data->circulationData[j]->renewable)
1020 printf (" renewable: %d\n",
1021 *data->circulationData[j]->renewable);
1022 if (data->circulationData[j]->onHold)
1023 printf (" onHold: %d\n",
1024 *data->circulationData[j]->onHold);
1025 if (data->circulationData[j]->enumAndChron)
1026 printf (" enumAndChron: %s\n",
1027 data->circulationData[j]->enumAndChron);
1028 if (data->circulationData[j]->midspine)
1029 printf (" midspine: %s\n",
1030 data->circulationData[j]->midspine);
1031 if (data->circulationData[j]->temporaryLocation)
1032 printf (" temporaryLocation: %s\n",
1033 data->circulationData[j]->temporaryLocation);
1040 printf("Unknown record representation.\n");
1041 if (!z_External(print, &r, 0, 0))
1043 odr_perror(print, "Printing external");
1049 static void display_diagrecs(Z_DiagRec **pp, int num)
1053 Z_DefaultDiagFormat *r;
1055 printf("Diagnostic message(s) from database:\n");
1056 for (i = 0; i<num; i++)
1058 Z_DiagRec *p = pp[i];
1059 if (p->which != Z_DiagRec_defaultFormat)
1061 printf("Diagnostic record not in default format.\n");
1065 r = p->u.defaultFormat;
1066 if (!(ent = oid_getentbyoid(r->diagnosticSetId)) ||
1067 ent->oclass != CLASS_DIAGSET || ent->value != VAL_BIB1)
1068 printf("Missing or unknown diagset\n");
1069 printf(" [%d] %s", *r->condition, diagbib1_str(*r->condition));
1072 case Z_DefaultDiagFormat_v2Addinfo:
1073 printf (" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1075 case Z_DefaultDiagFormat_v3Addinfo:
1076 printf (" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1083 static void display_nameplusrecord(Z_NamePlusRecord *p)
1085 if (p->databaseName)
1086 printf("[%s]", p->databaseName);
1087 if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1088 display_diagrecs(&p->u.surrogateDiagnostic, 1);
1089 else if (p->which == Z_NamePlusRecord_databaseRecord)
1090 display_record(p->u.databaseRecord);
1093 static void display_records(Z_Records *p)
1097 if (p->which == Z_Records_NSD)
1099 Z_DiagRec dr, *dr_p = &dr;
1100 dr.which = Z_DiagRec_defaultFormat;
1101 dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1102 display_diagrecs (&dr_p, 1);
1104 else if (p->which == Z_Records_multipleNSD)
1105 display_diagrecs (p->u.multipleNonSurDiagnostics->diagRecs,
1106 p->u.multipleNonSurDiagnostics->num_diagRecs);
1109 printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1110 for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1111 display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1115 static int send_deleteResultSetRequest(const char *arg)
1120 Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1121 Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1123 req->referenceId = set_refid (out);
1125 req->num_resultSetList =
1126 sscanf (arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1127 names[0], names[1], names[2], names[3],
1128 names[4], names[5], names[6], names[7]);
1130 req->deleteFunction = (int *)
1131 odr_malloc (out, sizeof(*req->deleteFunction));
1132 if (req->num_resultSetList > 0)
1134 *req->deleteFunction = Z_DeleteResultSetRequest_list;
1135 req->resultSetList = (char **)
1136 odr_malloc (out, sizeof(*req->resultSetList)*
1137 req->num_resultSetList);
1138 for (i = 0; i<req->num_resultSetList; i++)
1139 req->resultSetList[i] = names[i];
1143 *req->deleteFunction = Z_DeleteResultSetRequest_all;
1144 req->resultSetList = 0;
1148 printf("Sent deleteResultSetRequest.\n");
1153 static int send_srw(Z_SRW_PDU *sr)
1155 const char *charset = negotiationCharset;
1156 const char *host_port = cur_host;
1159 Z_SOAP_Handler h[2] = {
1160 {"http://www.loc.gov/zing/srw/", 0, (Z_SOAP_fun) yaz_srw_codec},
1163 ODR o = odr_createmem(ODR_ENCODE);
1165 Z_SOAP *p = odr_malloc(o, sizeof(*p));
1168 path = odr_malloc(out, strlen(databaseNames[0])+2);
1170 strcpy(path+1, databaseNames[0]);
1172 gdu = z_get_HTTP_Request(out);
1173 gdu->u.HTTP_Request->version = http_version;
1174 gdu->u.HTTP_Request->path = odr_strdup(out, path);
1178 const char *cp0 = strstr(host_port, "://");
1179 const char *cp1 = 0;
1185 cp1 = strchr(cp0, '/');
1187 cp1 = cp0+strlen(cp0);
1191 char *h = odr_malloc(out, cp1 - cp0 + 1);
1192 memcpy (h, cp0, cp1 - cp0);
1194 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers,
1199 strcpy(ctype, "text/xml");
1200 if (charset && strlen(charset) < 20)
1202 strcat(ctype, "; charset=");
1203 strcat(ctype, charset);
1205 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers,
1206 "Content-Type", ctype);
1207 z_HTTP_header_add(out, &gdu->u.HTTP_Request->headers,
1208 "SOAPAction", "\"\"");
1209 p->which = Z_SOAP_generic;
1210 p->u.generic = odr_malloc(o, sizeof(*p->u.generic));
1211 p->u.generic->no = 0;
1212 p->u.generic->ns = 0;
1213 p->u.generic->p = sr;
1214 p->ns = "http://schemas.xmlsoap.org/soap/envelope/";
1216 ret = z_soap_codec_enc(o, &p,
1217 &gdu->u.HTTP_Request->content_buf,
1218 &gdu->u.HTTP_Request->content_len, h,
1221 if (z_GDU(out, &gdu, 0, 0))
1229 if (!z_GDU(print, &gdu, 0, 0))
1230 printf ("Failed to print outgoing APDU\n");
1233 buf_out = odr_getbuf(out, &len_out, 0);
1235 /* we don't odr_reset(out), since we may need the buffer again */
1237 do_hex_dump(buf_out, len_out);
1239 r = cs_put(conn, buf_out, len_out);
1251 static int send_SRW_searchRequest(const char *arg)
1257 assert(srw_sr_odr_out == 0);
1258 srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1260 odr_reset(srw_sr_odr_out);
1264 /* save this for later .. when fetching individual records */
1265 srw_sr = yaz_srw_get(srw_sr_odr_out, Z_SRW_searchRetrieve_request);
1267 /* regular request .. */
1268 sr = yaz_srw_get(out, Z_SRW_searchRetrieve_request);
1273 srw_sr->u.request->query_type = Z_SRW_query_type_cql;
1274 srw_sr->u.request->query.cql = odr_strdup(srw_sr_odr_out, arg);
1276 sr->u.request->query_type = Z_SRW_query_type_cql;
1277 sr->u.request->query.cql = odr_strdup(out, arg);
1279 case QueryType_Prefix:
1280 srw_sr->u.request->query_type = Z_SRW_query_type_pqf;
1281 srw_sr->u.request->query.pqf = odr_strdup(srw_sr_odr_out, arg);
1283 sr->u.request->query_type = Z_SRW_query_type_pqf;
1284 sr->u.request->query.pqf = odr_strdup(out, arg);
1287 printf ("Only CQL and PQF supported in SRW\n");
1290 sr->u.request->maximumRecords = odr_intdup(out, 0);
1293 sr->u.request->recordSchema = record_schema;
1294 if (recordsyntax == VAL_TEXT_XML)
1295 sr->u.explain_request->recordPacking = "xml";
1296 return send_srw(sr);
1300 static int send_searchRequest(const char *arg)
1302 Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1303 Z_SearchRequest *req = apdu->u.searchRequest;
1305 struct ccl_rpn_node *rpn = NULL;
1307 char setstring[100];
1308 Z_RPNQuery *RPNquery;
1310 YAZ_PQF_Parser pqf_parser;
1312 QueryType myQueryType = queryType;
1315 if (myQueryType == QueryType_CCL2RPN)
1317 rpn = ccl_find_str(bibset, arg, &error, &pos);
1320 printf("CCL ERROR: %s\n", ccl_err_msg(error));
1323 } else if (myQueryType == QueryType_CQL2RPN) {
1324 /* ### All this code should be wrapped in a utility function */
1326 struct cql_node *node;
1327 const char *addinfo;
1328 if (cqltrans == 0) {
1329 printf("Can't use CQL: no translation file. Try set_cqlfile\n");
1332 parser = cql_parser_create();
1333 if ((error = cql_parser_string(parser, arg)) != 0) {
1334 printf("Can't parse CQL: must be a syntax error\n");
1337 node = cql_parser_result(parser);
1338 if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1339 sizeof pqfbuf)) != 0) {
1340 error = cql_transform_error(cqltrans, &addinfo);
1341 printf ("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1342 cql_strerror(error), addinfo);
1346 myQueryType = QueryType_Prefix;
1349 req->referenceId = set_refid (out);
1350 if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1352 static unsigned char big[2100];
1353 static Odr_oct bigo;
1355 /* send a very big referenceid to test transport stack etc. */
1356 memset(big, 'A', 2100);
1357 bigo.len = bigo.size = 2100;
1359 req->referenceId = &bigo;
1364 sprintf(setstring, "%d", ++setnumber);
1365 req->resultSetName = setstring;
1367 *req->smallSetUpperBound = smallSetUpperBound;
1368 *req->largeSetLowerBound = largeSetLowerBound;
1369 *req->mediumSetPresentNumber = mediumSetPresentNumber;
1370 if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1371 mediumSetPresentNumber > 0))
1373 req->preferredRecordSyntax =
1374 yaz_oidval_to_z3950oid(out, CLASS_RECSYN, recordsyntax);
1376 req->smallSetElementSetNames =
1377 req->mediumSetElementSetNames = elementSetNames;
1379 req->num_databaseNames = num_databaseNames;
1380 req->databaseNames = databaseNames;
1382 req->query = &query;
1384 switch (myQueryType)
1386 case QueryType_Prefix:
1387 query.which = Z_Query_type_1;
1388 pqf_parser = yaz_pqf_create ();
1389 RPNquery = yaz_pqf_parse (pqf_parser, out, arg);
1392 const char *pqf_msg;
1394 int code = yaz_pqf_error (pqf_parser, &pqf_msg, &off);
1395 printf("%*s^\n", off+4, "");
1396 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1398 yaz_pqf_destroy (pqf_parser);
1401 yaz_pqf_destroy (pqf_parser);
1402 query.u.type_1 = RPNquery;
1405 query.which = Z_Query_type_2;
1406 query.u.type_2 = &ccl_query;
1407 ccl_query.buf = (unsigned char*) arg;
1408 ccl_query.len = strlen(arg);
1410 case QueryType_CCL2RPN:
1411 query.which = Z_Query_type_1;
1412 RPNquery = ccl_rpn_query(out, rpn);
1415 printf ("Couldn't convert from CCL to RPN\n");
1418 query.u.type_1 = RPNquery;
1419 ccl_rpn_delete (rpn);
1422 query.which = Z_Query_type_104;
1423 ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1424 ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1425 ext->indirect_reference = 0;
1426 ext->descriptor = 0;
1427 ext->which = Z_External_CQL;
1428 ext->u.cql = odr_strdup(out, arg);
1429 query.u.type_104 = ext;
1432 printf ("Unsupported query type\n");
1435 if (send_apdu(apdu))
1436 printf("Sent searchRequest.\n");
1441 /* display Query Expression as part of searchResult-1 */
1442 static void display_queryExpression (Z_QueryExpression *qe)
1446 if (qe->which == Z_QueryExpression_term)
1448 if (qe->u.term->queryTerm)
1450 Z_Term *term = qe->u.term->queryTerm;
1451 switch (term->which)
1453 case Z_Term_general:
1454 printf (" %.*s", term->u.general->len, term->u.general->buf);
1456 case Z_Term_characterString:
1457 printf (" %s", term->u.characterString);
1459 case Z_Term_numeric:
1460 printf (" %d", *term->u.numeric);
1470 /* see if we can find USR:SearchResult-1 */
1471 static void display_searchResult (Z_OtherInformation *o)
1476 for (i = 0; i < o->num_elements; i++)
1478 if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1480 Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1482 if (ext->which == Z_External_searchResult1)
1485 Z_SearchInfoReport *sr = ext->u.searchResult1;
1486 printf ("SearchResult-1:");
1487 for (j = 0; j < sr->num; j++)
1489 if (!sr->elements[j]->subqueryExpression)
1491 display_queryExpression (
1492 sr->elements[j]->subqueryExpression);
1493 display_queryExpression (
1494 sr->elements[j]->subqueryInterpretation);
1495 display_queryExpression (
1496 sr->elements[j]->subqueryRecommendation);
1497 if (sr->elements[j]->subqueryCount)
1498 printf ("(%d)", *sr->elements[j]->subqueryCount);
1506 static int process_searchResponse(Z_SearchResponse *res)
1508 printf ("Received SearchResponse.\n");
1509 print_refid (res->referenceId);
1510 if (*res->searchStatus)
1511 printf("Search was a success.\n");
1513 printf("Search was a bloomin' failure.\n");
1514 printf("Number of hits: %d", *res->resultCount);
1516 printf (", setno %d", setnumber);
1518 display_searchResult (res->additionalSearchInfo);
1519 printf("records returned: %d\n",
1520 *res->numberOfRecordsReturned);
1521 setno += *res->numberOfRecordsReturned;
1523 display_records(res->records);
1527 static void print_level(int iLevel)
1530 for (i = 0; i < iLevel * 4; i++)
1534 static void print_int(int iLevel, const char *pTag, int *pInt)
1538 print_level(iLevel);
1539 printf("%s: %d\n", pTag, *pInt);
1543 static void print_string(int iLevel, const char *pTag, const char *pString)
1545 if (pString != NULL)
1547 print_level(iLevel);
1548 printf("%s: %s\n", pTag, pString);
1552 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1558 print_level(iLevel);
1559 printf("%s:", pTag);
1560 for (; *pInt != -1; pInt++)
1561 printf(" %d", *pInt);
1566 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1568 if (referenceId != NULL)
1572 print_level(iLevel);
1573 printf("Ref Id (%d, %d): ", referenceId->len, referenceId->size);
1574 for (i = 0; i < referenceId->len; i++)
1575 printf("%c", referenceId->buf[i]);
1580 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1582 if (pStringNumeric != NULL)
1584 switch (pStringNumeric->which)
1586 case Z_StringOrNumeric_string:
1587 print_string(iLevel, pTag, pStringNumeric->u.string);
1590 case Z_StringOrNumeric_numeric:
1591 print_int(iLevel, pTag, pStringNumeric->u.numeric);
1595 print_level(iLevel);
1596 printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1602 static void print_universe_report_duplicate(
1604 Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1606 if (pUniverseReportDuplicate != NULL)
1608 print_level(iLevel);
1609 printf("Universe Report Duplicate: \n");
1611 print_string_or_numeric(iLevel, "Hit No",
1612 pUniverseReportDuplicate->hitno);
1616 static void print_universe_report_hits(
1618 Z_UniverseReportHits *pUniverseReportHits)
1620 if (pUniverseReportHits != NULL)
1622 print_level(iLevel);
1623 printf("Universe Report Hits: \n");
1625 print_string_or_numeric(iLevel, "Database",
1626 pUniverseReportHits->database);
1627 print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1631 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1633 if (pUniverseReport != NULL)
1635 print_level(iLevel);
1636 printf("Universe Report: \n");
1638 print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1639 switch (pUniverseReport->which)
1641 case Z_UniverseReport_databaseHits:
1642 print_universe_report_hits(iLevel,
1643 pUniverseReport->u.databaseHits);
1646 case Z_UniverseReport_duplicate:
1647 print_universe_report_duplicate(iLevel,
1648 pUniverseReport->u.duplicate);
1652 print_level(iLevel);
1653 printf("Type: %d\n", pUniverseReport->which);
1659 static void print_external(int iLevel, Z_External *pExternal)
1661 if (pExternal != NULL)
1663 print_level(iLevel);
1664 printf("External: \n");
1666 print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
1667 print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
1668 print_string(iLevel, "Descriptor", pExternal->descriptor);
1669 switch (pExternal->which)
1671 case Z_External_universeReport:
1672 print_universe_report(iLevel, pExternal->u.universeReport);
1676 print_level(iLevel);
1677 printf("Type: %d\n", pExternal->which);
1683 static int process_resourceControlRequest (Z_ResourceControlRequest *req)
1685 printf ("Received ResourceControlRequest.\n");
1686 print_referenceId(1, req->referenceId);
1687 print_int(1, "Suspended Flag", req->suspendedFlag);
1688 print_int(1, "Partial Results Available", req->partialResultsAvailable);
1689 print_int(1, "Response Required", req->responseRequired);
1690 print_int(1, "Triggered Request Flag", req->triggeredRequestFlag);
1691 print_external(1, req->resourceReport);
1695 void process_ESResponse(Z_ExtendedServicesResponse *res)
1698 switch (*res->operationStatus)
1700 case Z_ExtendedServicesResponse_done:
1703 case Z_ExtendedServicesResponse_accepted:
1704 printf ("accepted\n");
1706 case Z_ExtendedServicesResponse_failure:
1707 printf ("failure\n");
1708 display_diagrecs(res->diagnostics, res->num_diagnostics);
1711 printf ("unknown\n");
1713 if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
1714 (res->num_diagnostics != 0) ) {
1715 display_diagrecs(res->diagnostics, res->num_diagnostics);
1717 print_refid (res->referenceId);
1718 if (res->taskPackage &&
1719 res->taskPackage->which == Z_External_extendedService)
1721 Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
1722 Odr_oct *id = taskPackage->targetReference;
1723 Z_External *ext = taskPackage->taskSpecificParameters;
1727 printf ("Target Reference: ");
1728 print_stringn (id->buf, id->len);
1731 if (ext->which == Z_External_update)
1733 Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
1734 if (utp && utp->targetPart)
1736 Z_IUTargetPart *targetPart = utp->targetPart;
1739 for (i = 0; i<targetPart->num_taskPackageRecords; i++)
1742 Z_IUTaskPackageRecordStructure *tpr =
1743 targetPart->taskPackageRecords[i];
1744 printf ("task package record %d\n", i+1);
1745 if (tpr->which == Z_IUTaskPackageRecordStructure_record)
1747 display_record (tpr->u.record);
1751 printf ("other type\n");
1759 const char *get_ill_element (void *clientData, const char *element)
1764 static Z_External *create_external_itemRequest()
1766 struct ill_get_ctl ctl;
1767 ILL_ItemRequest *req;
1769 int item_request_size = 0;
1770 char *item_request_buf = 0;
1774 ctl.f = get_ill_element;
1776 req = ill_get_ItemRequest(&ctl, "ill", 0);
1778 printf ("ill_get_ItemRequest failed\n");
1780 if (!ill_ItemRequest (out, &req, 0, 0))
1784 ill_ItemRequest(print, &req, 0, 0);
1787 item_request_buf = odr_getbuf (out, &item_request_size, 0);
1788 if (item_request_buf)
1789 odr_setbuf (out, item_request_buf, item_request_size, 1);
1790 printf ("Couldn't encode ItemRequest, size %d\n", item_request_size);
1797 item_request_buf = odr_getbuf (out, &item_request_size, 0);
1798 oid.proto = PROTO_GENERAL;
1799 oid.oclass = CLASS_GENERAL;
1800 oid.value = VAL_ISO_ILL_1;
1802 r = (Z_External *) odr_malloc (out, sizeof(*r));
1803 r->direct_reference = odr_oiddup(out,oid_getoidbyent(&oid));
1804 r->indirect_reference = 0;
1806 r->which = Z_External_single;
1808 r->u.single_ASN1_type = (Odr_oct *)
1809 odr_malloc (out, sizeof(*r->u.single_ASN1_type));
1810 r->u.single_ASN1_type->buf = (unsigned char *)
1811 odr_malloc (out, item_request_size);
1812 r->u.single_ASN1_type->len = item_request_size;
1813 r->u.single_ASN1_type->size = item_request_size;
1814 memcpy (r->u.single_ASN1_type->buf, item_request_buf,
1817 do_hex_dump(item_request_buf,item_request_size);
1822 static Z_External *create_external_ILL_APDU(int which)
1824 struct ill_get_ctl ctl;
1827 int ill_request_size = 0;
1828 char *ill_request_buf = 0;
1832 ctl.f = get_ill_element;
1834 ill_apdu = ill_get_APDU(&ctl, "ill", 0);
1836 if (!ill_APDU (out, &ill_apdu, 0, 0))
1840 printf ("-------------------\n");
1841 ill_APDU(print, &ill_apdu, 0, 0);
1843 printf ("-------------------\n");
1845 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
1846 if (ill_request_buf)
1847 odr_setbuf (out, ill_request_buf, ill_request_size, 1);
1848 printf ("Couldn't encode ILL-Request, size %d\n", ill_request_size);
1854 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
1856 oid.proto = PROTO_GENERAL;
1857 oid.oclass = CLASS_GENERAL;
1858 oid.value = VAL_ISO_ILL_1;
1860 r = (Z_External *) odr_malloc (out, sizeof(*r));
1861 r->direct_reference = odr_oiddup(out,oid_getoidbyent(&oid));
1862 r->indirect_reference = 0;
1864 r->which = Z_External_single;
1866 r->u.single_ASN1_type = (Odr_oct *)
1867 odr_malloc (out, sizeof(*r->u.single_ASN1_type));
1868 r->u.single_ASN1_type->buf = (unsigned char *)
1869 odr_malloc (out, ill_request_size);
1870 r->u.single_ASN1_type->len = ill_request_size;
1871 r->u.single_ASN1_type->size = ill_request_size;
1872 memcpy (r->u.single_ASN1_type->buf, ill_request_buf, ill_request_size);
1873 /* printf ("len = %d\n", ill_request_size); */
1874 /* do_hex_dump(ill_request_buf,ill_request_size); */
1875 /* printf("--- end of extenal\n"); */
1882 static Z_External *create_ItemOrderExternal(const char *type, int itemno)
1884 Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
1885 oident ItemOrderRequest;
1887 ItemOrderRequest.proto = PROTO_Z3950;
1888 ItemOrderRequest.oclass = CLASS_EXTSERV;
1889 ItemOrderRequest.value = VAL_ITEMORDER;
1891 r->direct_reference = odr_oiddup(out,oid_getoidbyent(&ItemOrderRequest));
1892 r->indirect_reference = 0;
1895 r->which = Z_External_itemOrder;
1897 r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
1898 memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
1899 r->u.itemOrder->which=Z_IOItemOrder_esRequest;
1901 r->u.itemOrder->u.esRequest = (Z_IORequest *)
1902 odr_malloc(out,sizeof(Z_IORequest));
1903 memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
1905 r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
1906 odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
1907 memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
1908 r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
1909 odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
1910 memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
1912 r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
1913 r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
1914 r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
1916 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
1917 (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
1918 memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
1919 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
1921 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
1922 (int *) odr_malloc(out, sizeof(int));
1923 *r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item = itemno;
1925 if (!strcmp (type, "item") || !strcmp(type, "2"))
1927 printf ("using item-request\n");
1928 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
1929 create_external_itemRequest();
1931 else if (!strcmp(type, "ill") || !strcmp(type, "1"))
1933 printf ("using ILL-request\n");
1934 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
1935 create_external_ILL_APDU(ILL_APDU_ILL_Request);
1937 else if (!strcmp(type, "xml") || !strcmp(type, "3"))
1939 const char *xml_buf =
1941 " <type>request</type>\n"
1942 " <libraryNo>000200</libraryNo>\n"
1943 " <borrowerTicketNo> 1212 </borrowerTicketNo>\n"
1945 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
1946 z_ext_record (out, VAL_TEXT_XML, xml_buf, strlen(xml_buf));
1949 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
1954 static int send_itemorder(const char *type, int itemno)
1956 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
1957 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
1958 oident ItemOrderRequest;
1960 ItemOrderRequest.proto = PROTO_Z3950;
1961 ItemOrderRequest.oclass = CLASS_EXTSERV;
1962 ItemOrderRequest.value = VAL_ITEMORDER;
1963 req->packageType = odr_oiddup(out,oid_getoidbyent(&ItemOrderRequest));
1964 req->packageName = esPackageName;
1966 req->taskSpecificParameters = create_ItemOrderExternal(type, itemno);
1972 static int only_z3950()
1974 if (protocol == PROTO_HTTP)
1976 printf ("Not supported by SRW\n");
1982 static int cmd_update_common(const char *arg, int version);
1984 static int cmd_update(const char *arg)
1986 return cmd_update_common(arg, 1);
1989 static int cmd_update0(const char *arg)
1991 return cmd_update_common(arg, 0);
1994 static int cmd_update_common(const char *arg, int version)
1996 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
1997 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
1999 char action[20], recid[20], fname[80];
2001 Z_External *record_this = 0;
2008 sscanf (arg, "%19s %19s %79s", action, recid, fname);
2010 if (!strcmp (action, "insert"))
2011 action_no = Z_IUOriginPartToKeep_recordInsert;
2012 else if (!strcmp (action, "replace"))
2013 action_no = Z_IUOriginPartToKeep_recordReplace;
2014 else if (!strcmp (action, "delete"))
2015 action_no = Z_IUOriginPartToKeep_recordDelete;
2016 else if (!strcmp (action, "update"))
2017 action_no = Z_IUOriginPartToKeep_specialUpdate;
2020 printf ("Bad action: %s\n", action);
2021 printf ("Possible values: insert, replace, delete, update\n");
2029 stat (fname, &status);
2030 if (S_ISREG(status.st_mode) && (inf = fopen(fname, "r")))
2032 size_t len = status.st_size;
2033 char *buf = (char *) xmalloc (len);
2035 fread (buf, 1, len, inf);
2039 record_this = z_ext_record (out, VAL_TEXT_XML, buf, len);
2045 printf ("File %s doesn't exist\n", fname);
2053 printf ("No last record (update ignored)\n");
2056 record_this = record_last;
2060 yaz_oidval_to_z3950oid(out, CLASS_EXTSERV,
2061 version == 0 ? VAL_DBUPDATE0 : VAL_DBUPDATE);
2063 req->packageName = esPackageName;
2065 req->referenceId = set_refid (out);
2067 r = req->taskSpecificParameters = (Z_External *)
2068 odr_malloc (out, sizeof(*r));
2069 r->direct_reference = req->packageType;
2070 r->indirect_reference = 0;
2074 Z_IU0OriginPartToKeep *toKeep;
2075 Z_IU0SuppliedRecords *notToKeep;
2077 r->which = Z_External_update0;
2078 r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2079 r->u.update0->which = Z_IUUpdate_esRequest;
2080 r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2081 odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2082 toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2083 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2085 toKeep->databaseName = databaseNames[0];
2087 toKeep->elementSetName = 0;
2089 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2090 *toKeep->action = action_no;
2092 notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2093 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2095 notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2096 odr_malloc(out, sizeof(*notToKeep->elements));
2097 notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2098 odr_malloc(out, sizeof(**notToKeep->elements));
2099 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2102 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2103 odr_malloc (out, sizeof(Odr_oct));
2104 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2105 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2106 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2109 notToKeep->elements[0]->u.opaque = 0;
2110 notToKeep->elements[0]->supplementalId = 0;
2111 notToKeep->elements[0]->correlationInfo = 0;
2112 notToKeep->elements[0]->record = record_this;
2116 Z_IUOriginPartToKeep *toKeep;
2117 Z_IUSuppliedRecords *notToKeep;
2119 r->which = Z_External_update;
2120 r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2121 r->u.update->which = Z_IUUpdate_esRequest;
2122 r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2123 odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2124 toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2125 odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2127 toKeep->databaseName = databaseNames[0];
2129 toKeep->elementSetName = 0;
2130 toKeep->actionQualifier = 0;
2131 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2132 *toKeep->action = action_no;
2134 notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2135 odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2137 notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2138 odr_malloc(out, sizeof(*notToKeep->elements));
2139 notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2140 odr_malloc(out, sizeof(**notToKeep->elements));
2141 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2144 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2145 odr_malloc (out, sizeof(Odr_oct));
2146 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2147 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2148 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2151 notToKeep->elements[0]->u.opaque = 0;
2152 notToKeep->elements[0]->supplementalId = 0;
2153 notToKeep->elements[0]->correlationInfo = 0;
2154 notToKeep->elements[0]->record = record_this;
2162 static int cmd_itemorder(const char *arg)
2169 if (sscanf (arg, "%10s %d", type, &itemno) != 2)
2172 printf("Item order request\n");
2174 send_itemorder(type, itemno);
2178 static void show_opt(const char *arg, void *clientData)
2180 printf ("%s ", arg);
2183 static int cmd_zversion(const char *arg)
2186 z3950_version = atoi(arg);
2188 printf ("version is %d\n", z3950_version);
2192 static int cmd_options(const char *arg)
2198 r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2202 yaz_init_opt_decode(&z3950_options, show_opt, 0);
2208 static int cmd_explain(const char *arg)
2210 if (protocol != PROTO_HTTP)
2221 /* save this for later .. when fetching individual records */
2222 sr = yaz_srw_get(out, Z_SRW_explain_request);
2223 if (recordsyntax == VAL_TEXT_XML)
2224 sr->u.explain_request->recordPacking = "xml";
2232 static int cmd_init(const char *arg)
2234 if (!conn || protocol != PROTO_Z3950)
2236 send_initRequest(0);
2240 static int cmd_find(const char *arg)
2244 printf("Find what?\n");
2247 if (protocol == PROTO_HTTP)
2254 if (!send_SRW_searchRequest(arg))
2267 printf("Not connected yet\n");
2271 if (!send_searchRequest(arg))
2277 static int cmd_delete(const char *arg)
2281 printf("Not connected yet\n");
2286 if (!send_deleteResultSetRequest(arg))
2291 static int cmd_ssub(const char *arg)
2293 if (!(smallSetUpperBound = atoi(arg)))
2298 static int cmd_lslb(const char *arg)
2302 if (!(largeSetLowerBound = atoi(arg)))
2307 static int cmd_mspn(const char *arg)
2311 if (!(mediumSetPresentNumber = atoi(arg)))
2316 static int cmd_status(const char *arg)
2318 printf("smallSetUpperBound: %d\n", smallSetUpperBound);
2319 printf("largeSetLowerBound: %d\n", largeSetLowerBound);
2320 printf("mediumSetPresentNumber: %d\n", mediumSetPresentNumber);
2324 static int cmd_setnames(const char *arg)
2326 if (*arg == '1') /* enable ? */
2328 else if (*arg == '0') /* disable ? */
2330 else if (setnumber < 0) /* no args, toggle .. */
2336 printf("Set numbering enabled.\n");
2338 printf("Set numbering disabled.\n");
2342 /* PRESENT SERVICE ----------------------------- */
2344 static void parse_show_args(const char *arg_c, char *setstring,
2345 int *start, int *number)
2350 strncpy(arg, arg_c, sizeof(arg)-1);
2351 arg[sizeof(arg)-1] = '\0';
2353 if ((p = strchr(arg, '+')))
2355 *number = atoi(p + 1);
2360 if (p && (p=strchr(p+1, '+')))
2361 strcpy (setstring, p+1);
2362 else if (setnumber >= 0)
2363 sprintf(setstring, "%d", setnumber);
2368 static int send_presentRequest(const char *arg)
2370 Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
2371 Z_PresentRequest *req = apdu->u.presentRequest;
2372 Z_RecordComposition compo;
2374 char setstring[100];
2376 req->referenceId = set_refid (out);
2378 parse_show_args(arg, setstring, &setno, &nos);
2380 req->resultSetId = setstring;
2382 req->resultSetStartPoint = &setno;
2383 req->numberOfRecordsRequested = &nos;
2385 req->preferredRecordSyntax =
2386 yaz_oidval_to_z3950oid(out, CLASS_RECSYN, recordsyntax);
2390 req->recordComposition = &compo;
2391 compo.which = Z_RecordComp_complex;
2392 compo.u.complex = (Z_CompSpec *)
2393 odr_malloc(out, sizeof(*compo.u.complex));
2394 compo.u.complex->selectAlternativeSyntax = (bool_t *)
2395 odr_malloc(out, sizeof(bool_t));
2396 *compo.u.complex->selectAlternativeSyntax = 0;
2398 compo.u.complex->generic = (Z_Specification *)
2399 odr_malloc(out, sizeof(*compo.u.complex->generic));
2400 compo.u.complex->generic->which = Z_Schema_oid;
2402 compo.u.complex->generic->schema.oid =
2403 yaz_str_to_z3950oid(out, CLASS_SCHEMA, record_schema);
2405 if (!compo.u.complex->generic->schema.oid)
2407 /* OID wasn't a schema! Try record syntax instead. */
2408 compo.u.complex->generic->schema.oid = (Odr_oid *)
2409 yaz_str_to_z3950oid(out, CLASS_RECSYN, record_schema);
2411 if (!elementSetNames)
2412 compo.u.complex->generic->elementSpec = 0;
2415 compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
2416 odr_malloc(out, sizeof(Z_ElementSpec));
2417 compo.u.complex->generic->elementSpec->which =
2418 Z_ElementSpec_elementSetName;
2419 compo.u.complex->generic->elementSpec->u.elementSetName =
2420 elementSetNames->u.generic;
2422 compo.u.complex->num_dbSpecific = 0;
2423 compo.u.complex->dbSpecific = 0;
2424 compo.u.complex->num_recordSyntax = 0;
2425 compo.u.complex->recordSyntax = 0;
2427 else if (elementSetNames)
2429 req->recordComposition = &compo;
2430 compo.which = Z_RecordComp_simple;
2431 compo.u.simple = elementSetNames;
2434 printf("Sent presentRequest (%d+%d).\n", setno, nos);
2439 static int send_SRW_presentRequest(const char *arg)
2441 char setstring[100];
2443 Z_SRW_PDU *sr = srw_sr;
2447 parse_show_args(arg, setstring, &setno, &nos);
2448 sr->u.request->startRecord = odr_intdup(out, setno);
2449 sr->u.request->maximumRecords = odr_intdup(out, nos);
2451 sr->u.request->recordSchema = record_schema;
2452 if (recordsyntax == VAL_TEXT_XML)
2453 sr->u.request->recordPacking = "xml";
2454 return send_srw(sr);
2458 static void close_session (void)
2465 nmem_destroy (session_mem);
2474 void process_close(Z_Close *req)
2476 Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
2477 Z_Close *res = apdu->u.close;
2479 static char *reasons[] =
2484 "cost limit reached",
2486 "security violation",
2493 printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
2494 req->diagnosticInformation ? req->diagnosticInformation : "NULL");
2499 *res->closeReason = Z_Close_finished;
2501 printf("Sent response.\n");
2506 static int cmd_show(const char *arg)
2508 if (protocol == PROTO_HTTP)
2515 if (!send_SRW_presentRequest(arg))
2525 printf("Not connected yet\n");
2528 if (!send_presentRequest(arg))
2534 int cmd_quit(const char *arg)
2536 printf("See you later, alligator.\n");
2542 int cmd_cancel(const char *arg)
2544 Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
2545 Z_TriggerResourceControlRequest *req =
2546 apdu->u.triggerResourceControlRequest;
2551 printf("Session not initialized yet\n");
2556 if (!ODR_MASK_GET(session->options, Z_Options_triggerResourceCtrl))
2558 printf("Target doesn't support cancel (trigger resource ctrl)\n");
2561 *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
2562 req->resultSetWanted = &rfalse;
2563 req->referenceId = set_refid (out);
2566 printf("Sent cancel request\n");
2571 int cmd_cancel_find(const char *arg) {
2575 return cmd_cancel("");
2580 int send_scanrequest(const char *query, int pp, int num, const char *term)
2582 Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
2583 Z_ScanRequest *req = apdu->u.scanRequest;
2587 if (queryType == QueryType_CCL2RPN)
2590 struct ccl_rpn_node *rpn;
2592 rpn = ccl_find_str (bibset, query, &error, &pos);
2595 printf("CCL ERROR: %s\n", ccl_err_msg(error));
2599 yaz_oidval_to_z3950oid(out, CLASS_ATTSET, VAL_BIB1);
2600 if (!(req->termListAndStartPoint = ccl_scan_query (out, rpn)))
2602 printf("Couldn't convert CCL to Scan term\n");
2605 ccl_rpn_delete (rpn);
2609 YAZ_PQF_Parser pqf_parser = yaz_pqf_create ();
2611 if (!(req->termListAndStartPoint =
2612 yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
2614 const char *pqf_msg;
2616 int code = yaz_pqf_error (pqf_parser, &pqf_msg, &off);
2617 printf("%*s^\n", off+7, "");
2618 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
2619 yaz_pqf_destroy (pqf_parser);
2622 yaz_pqf_destroy (pqf_parser);
2626 if (req->termListAndStartPoint->term &&
2627 req->termListAndStartPoint->term->which == Z_Term_general &&
2628 req->termListAndStartPoint->term->u.general)
2630 req->termListAndStartPoint->term->u.general->buf =
2631 (unsigned char *) odr_strdup(out, term);
2632 req->termListAndStartPoint->term->u.general->len =
2633 req->termListAndStartPoint->term->u.general->size =
2637 req->referenceId = set_refid (out);
2638 req->num_databaseNames = num_databaseNames;
2639 req->databaseNames = databaseNames;
2640 req->numberOfTermsRequested = #
2641 req->preferredPositionInResponse = &pp;
2642 req->stepSize = odr_intdup(out, scan_stepSize);
2647 int send_sortrequest(const char *arg, int newset)
2649 Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
2650 Z_SortRequest *req = apdu->u.sortRequest;
2651 Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
2652 odr_malloc (out, sizeof(*sksl));
2658 sprintf (setstring, "%d", setnumber);
2660 sprintf (setstring, "default");
2662 req->referenceId = set_refid (out);
2664 req->num_inputResultSetNames = 1;
2665 req->inputResultSetNames = (Z_InternationalString **)
2666 odr_malloc (out, sizeof(*req->inputResultSetNames));
2667 req->inputResultSetNames[0] = odr_strdup (out, setstring);
2669 if (newset && setnumber >= 0)
2670 sprintf (setstring, "%d", ++setnumber);
2672 req->sortedResultSetName = odr_strdup (out, setstring);
2674 req->sortSequence = yaz_sort_spec (out, arg);
2675 if (!req->sortSequence)
2677 printf ("Missing sort specifications\n");
2684 void display_term(Z_TermInfo *t)
2687 printf("%s", t->displayTerm);
2688 else if (t->term->which == Z_Term_general)
2690 printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
2691 sprintf(last_scan_line, "%.*s", t->term->u.general->len,
2692 t->term->u.general->buf);
2695 printf("Term (not general)");
2696 if (t->globalOccurrences)
2697 printf (" (%d)\n", *t->globalOccurrences);
2702 void process_scanResponse(Z_ScanResponse *res)
2705 Z_Entry **entries = NULL;
2706 int num_entries = 0;
2708 printf("Received ScanResponse\n");
2709 print_refid (res->referenceId);
2710 printf("%d entries", *res->numberOfEntriesReturned);
2711 if (res->positionOfTerm)
2712 printf (", position=%d", *res->positionOfTerm);
2714 if (*res->scanStatus != Z_Scan_success)
2715 printf("Scan returned code %d\n", *res->scanStatus);
2718 if ((entries = res->entries->entries))
2719 num_entries = res->entries->num_entries;
2720 for (i = 0; i < num_entries; i++)
2722 int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
2723 if (entries[i]->which == Z_Entry_termInfo)
2725 printf("%c ", i + 1 == pos_term ? '*' : ' ');
2726 display_term(entries[i]->u.termInfo);
2729 display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
2731 if (res->entries->nonsurrogateDiagnostics)
2732 display_diagrecs (res->entries->nonsurrogateDiagnostics,
2733 res->entries->num_nonsurrogateDiagnostics);
2736 void process_sortResponse(Z_SortResponse *res)
2738 printf("Received SortResponse: status=");
2739 switch (*res->sortStatus)
2741 case Z_SortResponse_success:
2742 printf ("success"); break;
2743 case Z_SortResponse_partial_1:
2744 printf ("partial"); break;
2745 case Z_SortResponse_failure:
2746 printf ("failure"); break;
2748 printf ("unknown (%d)", *res->sortStatus);
2751 print_refid (res->referenceId);
2752 if (res->diagnostics)
2753 display_diagrecs(res->diagnostics,
2754 res->num_diagnostics);
2757 void process_deleteResultSetResponse (Z_DeleteResultSetResponse *res)
2759 printf("Got deleteResultSetResponse status=%d\n",
2760 *res->deleteOperationStatus);
2761 if (res->deleteListStatuses)
2764 for (i = 0; i < res->deleteListStatuses->num; i++)
2766 printf ("%s status=%d\n", res->deleteListStatuses->elements[i]->id,
2767 *res->deleteListStatuses->elements[i]->status);
2772 int cmd_sort_generic(const char *arg, int newset)
2776 printf("Session not initialized yet\n");
2781 if (!ODR_MASK_GET(session->options, Z_Options_sort))
2783 printf("Target doesn't support sort\n");
2788 if (send_sortrequest(arg, newset) < 0)
2795 int cmd_sort(const char *arg)
2797 return cmd_sort_generic (arg, 0);
2800 int cmd_sort_newset (const char *arg)
2802 return cmd_sort_generic (arg, 1);
2805 int cmd_scanstep(const char *arg)
2807 scan_stepSize = atoi(arg);
2811 int cmd_scanpos(const char *arg)
2813 int r = sscanf(arg, "%d", &scan_position);
2819 int cmd_scan(const char *arg)
2828 printf("Session not initialized yet\n");
2832 if (!ODR_MASK_GET(session->options, Z_Options_scan))
2834 printf("Target doesn't support scan\n");
2839 strcpy (last_scan_query, arg);
2840 if (send_scanrequest(arg, scan_position, 20, 0) < 0)
2845 if (send_scanrequest(last_scan_query, 1, 20, last_scan_line) < 0)
2851 int cmd_schema(const char *arg)
2853 xfree(record_schema);
2856 record_schema = xstrdup(arg);
2860 int cmd_format(const char *arg)
2865 printf("Usage: format <recordsyntax>\n");
2868 nsyntax = oid_getvalbyname (arg);
2869 if (strcmp(arg, "none") && nsyntax == VAL_NONE)
2871 printf ("unknown record syntax\n");
2874 recordsyntax = nsyntax;
2878 int cmd_elements(const char *arg)
2880 static Z_ElementSetNames esn;
2881 static char what[100];
2885 elementSetNames = 0;
2889 esn.which = Z_ElementSetNames_generic;
2890 esn.u.generic = what;
2891 elementSetNames = &esn;
2895 int cmd_attributeset(const char *arg)
2901 printf("Usage: attributeset <setname>\n");
2904 sscanf(arg, "%s", what);
2905 if (p_query_attset (what))
2907 printf("Unknown attribute set name\n");
2913 int cmd_querytype (const char *arg)
2915 if (!strcmp (arg, "ccl"))
2916 queryType = QueryType_CCL;
2917 else if (!strcmp (arg, "prefix") || !strcmp(arg, "rpn"))
2918 queryType = QueryType_Prefix;
2919 else if (!strcmp (arg, "ccl2rpn") || !strcmp (arg, "cclrpn"))
2920 queryType = QueryType_CCL2RPN;
2921 else if (!strcmp(arg, "cql"))
2922 queryType = QueryType_CQL;
2923 else if (!strcmp (arg, "cql2rpn") || !strcmp (arg, "cqlrpn"))
2924 queryType = QueryType_CQL2RPN;
2927 printf ("Querytype must be one of:\n");
2928 printf (" prefix - Prefix query\n");
2929 printf (" ccl - CCL query\n");
2930 printf (" ccl2rpn - CCL query converted to RPN\n");
2931 printf (" cql - CQL\n");
2932 printf (" cql2rpn - CQL query converted to RPN\n");
2938 int cmd_refid (const char *arg)
2943 refid = xstrdup (arg);
2947 int cmd_close(const char *arg)
2956 apdu = zget_APDU(out, Z_APDU_close);
2957 req = apdu->u.close;
2958 *req->closeReason = Z_Close_finished;
2960 printf("Sent close request.\n");
2965 int cmd_packagename(const char* arg)
2967 xfree (esPackageName);
2968 esPackageName = NULL;
2970 esPackageName = xstrdup(arg);
2974 int cmd_proxy(const char* arg)
2979 yazProxy = xstrdup (arg);
2983 int cmd_marccharset(const char *arg)
2988 if (sscanf(arg, "%29s", l1) < 1)
2990 xfree (marcCharset);
2992 if (strcmp(l1, "-"))
2993 marcCharset = xstrdup(l1);
2997 int cmd_charset(const char* arg)
2999 char l1[30], l2[30];
3002 if (sscanf(arg, "%29s %29s", l1, l2) < 1)
3004 printf("Current negotiation character set is `%s'\n",
3005 negotiationCharset ? negotiationCharset: "none");
3006 printf("Current output character set is `%s'\n",
3007 outputCharset ? outputCharset: "none");
3010 xfree (negotiationCharset);
3011 negotiationCharset = NULL;
3012 if (*l1 && strcmp(l1, "-"))
3014 negotiationCharset = xstrdup(l1);
3015 printf ("Character set negotiation : %s\n", negotiationCharset);
3018 printf ("Character set negotiation disabled\n");
3021 xfree (outputCharset);
3023 if (!strcmp(l2, "auto") && codeset)
3027 printf ("output charset: %s\n", codeset);
3028 outputCharset = xstrdup(codeset);
3033 printf ("No codeset found on this system\n");
3035 else if (strcmp(l2, "-"))
3036 outputCharset = xstrdup(l2);
3038 printf ("Output charset conversion disabled\n");
3044 int cmd_lang(const char* arg)
3047 printf("Current language is `%s'\n", (yazLang)?yazLang:NULL);
3053 yazLang = xstrdup(arg);
3057 int cmd_source(const char* arg)
3059 /* first should open the file and read one line at a time.. */
3061 char line[102400], *cp;
3064 fprintf(stderr,"Error in source command use a filename\n");
3068 includeFile = fopen (arg, "r");
3071 fprintf(stderr,"Unable to open file %s for reading\n",arg);
3075 while(!feof(includeFile)) {
3076 memset(line,0,sizeof(line));
3077 fgets(line,sizeof(line),includeFile);
3079 if(strlen(line) < 2) continue;
3080 if(line[0] == '#') continue;
3082 if ((cp = strrchr (line, '\n')))
3085 process_cmd_line(line);
3088 if(fclose(includeFile)<0) {
3089 perror("unable to close include file");
3095 int cmd_subshell(const char* args)
3100 system(getenv("SHELL"));
3106 int cmd_set_berfile(const char *arg)
3108 if (ber_file && ber_file != stdout && ber_file != stderr)
3110 if (!strcmp(arg, ""))
3112 else if (!strcmp(arg, "-"))
3115 ber_file = fopen(arg, "a");
3119 int cmd_set_apdufile(const char *arg)
3121 if(apdu_file && apdu_file != stderr && apdu_file != stderr)
3123 if (!strcmp(arg, ""))
3125 else if (!strcmp(arg, "-"))
3129 apdu_file = fopen(arg, "a");
3131 perror("unable to open apdu log file");
3134 odr_setprint(print, apdu_file);
3138 int cmd_set_cclfile(const char* arg)
3142 bibset = ccl_qual_mk ();
3143 inf = fopen (arg, "r");
3145 perror("unable to open CCL file");
3148 ccl_qual_file (bibset, inf);
3151 strcpy(ccl_fields,arg);
3155 int cmd_set_cqlfile(const char* arg)
3157 cql_transform_t newcqltrans;
3159 if ((newcqltrans = cql_transform_open_fname(arg)) == 0) {
3160 perror("unable to open CQL file");
3164 cql_transform_close(cqltrans);
3166 cqltrans = newcqltrans;
3167 strcpy(cql_fields, arg);
3171 int cmd_set_auto_reconnect(const char* arg)
3173 if(strlen(arg)==0) {
3174 auto_reconnect = ! auto_reconnect;
3175 } else if(strcmp(arg,"on")==0) {
3177 } else if(strcmp(arg,"off")==0) {
3180 printf("Error use on or off\n");
3185 printf("Set auto reconnect enabled.\n");
3187 printf("Set auto reconnect disabled.\n");
3192 int cmd_set_marcdump(const char* arg)
3194 if(marc_file && marc_file != stderr) { /* don't close stdout*/
3198 if (!strcmp(arg, ""))
3200 else if (!strcmp(arg, "-"))
3204 marc_file = fopen(arg, "a");
3206 perror("unable to open marc log file");
3212 this command takes 3 arge {name class oid}
3214 int cmd_register_oid(const char* args) {
3219 {"appctx",CLASS_APPCTX},
3220 {"absyn",CLASS_ABSYN},
3221 {"attset",CLASS_ATTSET},
3222 {"transyn",CLASS_TRANSYN},
3223 {"diagset",CLASS_DIAGSET},
3224 {"recsyn",CLASS_RECSYN},
3225 {"resform",CLASS_RESFORM},
3226 {"accform",CLASS_ACCFORM},
3227 {"extserv",CLASS_EXTSERV},
3228 {"userinfo",CLASS_USERINFO},
3229 {"elemspec",CLASS_ELEMSPEC},
3230 {"varset",CLASS_VARSET},
3231 {"schema",CLASS_SCHEMA},
3232 {"tagset",CLASS_TAGSET},
3233 {"general",CLASS_GENERAL},
3234 {0,(enum oid_class) 0}
3236 char oname_str[101], oclass_str[101], oid_str[101];
3239 oid_class oidclass = CLASS_GENERAL;
3240 int val = 0, oid[OID_SIZE];
3241 struct oident * new_oident=NULL;
3243 if (sscanf (args, "%100[^ ] %100[^ ] %100s",
3244 oname_str,oclass_str, oid_str) < 1) {
3245 printf("Error in register command \n");
3249 for (i = 0; oid_classes[i].className; i++) {
3250 if (!strcmp(oid_classes[i].className, oclass_str))
3252 oidclass=oid_classes[i].oclass;
3257 if(!(oid_classes[i].className)) {
3258 printf("Unknown oid class %s\n",oclass_str);
3266 while (isdigit (*(unsigned char *) name))
3268 val = val*10 + (*name - '0');
3281 new_oident = oid_addent (oid, PROTO_GENERAL, oidclass, oname_str,
3283 if(strcmp(new_oident->desc,oname_str))
3285 fprintf(stderr,"oid is already named as %s, registration failed\n",
3291 int cmd_push_command(const char* arg)
3293 #if HAVE_READLINE_HISTORY_H
3297 fprintf(stderr,"Not compiled with the readline/history module\n");
3302 void source_rcfile()
3304 /* Look for a $HOME/.yazclientrc and source it if it exists */
3305 struct stat statbuf;
3307 char* homedir=getenv("HOME");
3309 if(!homedir) return;
3311 sprintf(buffer,"%s/.yazclientrc",homedir);
3313 if(stat(buffer,&statbuf)==0) {
3317 if(stat(".yazclientrc",&statbuf)==0) {
3318 cmd_source(".yazclientrc");
3323 static void initialize(void)
3328 if (!(out = odr_createmem(ODR_ENCODE)) ||
3329 !(in = odr_createmem(ODR_DECODE)) ||
3330 !(print = odr_createmem(ODR_PRINT)))
3332 fprintf(stderr, "failed to allocate ODR streams\n");
3337 setvbuf(stdout, 0, _IONBF, 0);
3339 odr_setprint(print, apdu_file);
3341 bibset = ccl_qual_mk ();
3342 inf = fopen (ccl_fields, "r");
3345 ccl_qual_file (bibset, inf);
3349 cqltrans = cql_transform_open_fname(cql_fields);
3350 /* If this fails, no problem: we detect cqltrans == 0 later */
3352 #if HAVE_READLINE_READLINE_H
3353 rl_attempted_completion_function = (CPPFunction*)readline_completer;
3357 for(i=0; i<maxOtherInfosSupported; ++i) {
3358 extraOtherInfos[i].oidval = -1;
3365 #if HAVE_GETTIMEOFDAY
3366 struct timeval tv_start, tv_end;
3370 static void handle_srw_record(Z_SRW_record *rec)
3372 if (rec->recordPosition)
3374 printf ("pos=%d", *rec->recordPosition);
3375 setno = *rec->recordPosition + 1;
3377 if (rec->recordSchema)
3378 printf (" schema=%s", rec->recordSchema);
3380 if (rec->recordData_buf && rec->recordData_len)
3382 fwrite(rec->recordData_buf, 1, rec->recordData_len, stdout);
3384 fwrite (rec->recordData_buf, 1, rec->recordData_len, marc_file);
3387 printf ("No data!");
3391 static void handle_srw_explain_response(Z_SRW_explainResponse *res)
3393 handle_srw_record(&res->record);
3396 static void handle_srw_response(Z_SRW_searchRetrieveResponse *res)
3400 printf ("Received SRW SearchRetrieve Response\n");
3402 for (i = 0; i<res->num_diagnostics; i++)
3404 if (res->diagnostics[i].uri)
3405 printf ("SRW diagnostic %s\n",
3406 res->diagnostics[i].uri);
3408 printf ("SRW diagnostic missing or could not be decoded\n");
3409 if (res->diagnostics[i].message)
3410 printf ("Message: %s\n", res->diagnostics[i].message);
3411 if (res->diagnostics[i].details)
3412 printf ("Details: %s\n", res->diagnostics[i].details);
3414 if (res->numberOfRecords)
3415 printf ("Number of hits: %d\n", *res->numberOfRecords);
3416 for (i = 0; i<res->num_records; i++)
3417 handle_srw_record(res->records + i);
3420 static void http_response(Z_HTTP_Response *hres)
3423 const char *content_type = z_HTTP_header_lookup(hres->headers,
3425 const char *connection_head = z_HTTP_header_lookup(hres->headers,
3427 if (content_type && !yaz_strcmp_del("text/xml", content_type, "; "))
3429 Z_SOAP *soap_package = 0;
3430 ODR o = odr_createmem(ODR_DECODE);
3431 Z_SOAP_Handler soap_handlers[2] = {
3432 {"http://www.loc.gov/zing/srw/", 0,
3433 (Z_SOAP_fun) yaz_srw_codec},
3436 ret = z_soap_codec(o, &soap_package,
3437 &hres->content_buf, &hres->content_len,
3439 if (!ret && soap_package->which == Z_SOAP_generic &&
3440 soap_package->u.generic->no == 0)
3442 Z_SRW_PDU *sr = soap_package->u.generic->p;
3443 if (sr->which == Z_SRW_searchRetrieve_response)
3444 handle_srw_response(sr->u.response);
3445 else if (sr->which == Z_SRW_explain_response)
3446 handle_srw_explain_response(sr->u.explain_response);
3450 else if (soap_package && (soap_package->which == Z_SOAP_fault
3451 || soap_package->which == Z_SOAP_error))
3453 printf ("HTTP Error Status=%d\n", hres->code);
3454 printf ("SOAP Fault code %s\n",
3455 soap_package->u.fault->fault_code);
3456 printf ("SOAP Fault string %s\n",
3457 soap_package->u.fault->fault_string);
3458 if (soap_package->u.fault->details)
3459 printf ("SOAP Details %s\n",
3460 soap_package->u.fault->details);
3468 if (hres->code != 200)
3470 printf ("HTTP Error Status=%d\n", hres->code);
3474 printf ("Decoding of SRW package failed\n");
3480 if (!strcmp(hres->version, "1.0"))
3482 /* HTTP 1.0: only if Keep-Alive we stay alive.. */
3483 if (!connection_head || strcmp(connection_head, "Keep-Alive"))
3488 /* HTTP 1.1: only if no close we stay alive .. */
3489 if (connection_head && !strcmp(connection_head, "close"))
3496 void wait_and_handle_response()
3498 int reconnect_ok = 1;
3501 int netbufferlen = 0;
3506 res = cs_get(conn, &netbuffer, &netbufferlen);
3507 if (reconnect_ok && res <= 0 && protocol == PROTO_HTTP)
3518 buf_out = odr_getbuf(out, &len_out, 0);
3520 do_hex_dump(buf_out, len_out);
3522 cs_put(conn, buf_out, len_out);
3530 printf("Target closed connection\n");
3535 odr_reset(in); /* release APDU from last round */
3537 do_hex_dump(netbuffer, res);
3538 odr_setbuf(in, netbuffer, res, 0);
3540 if (!z_GDU(in, &gdu, 0, 0))
3542 FILE *f = ber_file ? ber_file : stdout;
3543 odr_perror(in, "Decoding incoming APDU");
3544 fprintf(f, "[Near %d]\n", odr_offset(in));
3545 fprintf(f, "Packet dump:\n---------\n");
3546 odr_dumpBER(f, netbuffer, res);
3547 fprintf(f, "---------\n");
3550 z_GDU(print, &gdu, 0, 0);
3553 if (conn && cs_more(conn))
3558 odr_dumpBER(ber_file, netbuffer, res);
3559 if (apdu_file && !z_GDU(print, &gdu, 0, 0))
3561 odr_perror(print, "Failed to print incoming APDU");
3565 if (gdu->which == Z_GDU_Z3950)
3567 Z_APDU *apdu = gdu->u.z3950;
3570 case Z_APDU_initResponse:
3571 process_initResponse(apdu->u.initResponse);
3573 case Z_APDU_searchResponse:
3574 process_searchResponse(apdu->u.searchResponse);
3576 case Z_APDU_scanResponse:
3577 process_scanResponse(apdu->u.scanResponse);
3579 case Z_APDU_presentResponse:
3580 print_refid (apdu->u.presentResponse->referenceId);
3582 *apdu->u.presentResponse->numberOfRecordsReturned;
3583 if (apdu->u.presentResponse->records)
3584 display_records(apdu->u.presentResponse->records);
3586 printf("No records.\n");
3587 printf ("nextResultSetPosition = %d\n",
3588 *apdu->u.presentResponse->nextResultSetPosition);
3590 case Z_APDU_sortResponse:
3591 process_sortResponse(apdu->u.sortResponse);
3593 case Z_APDU_extendedServicesResponse:
3594 printf("Got extended services response\n");
3595 process_ESResponse(apdu->u.extendedServicesResponse);
3598 printf("Target has closed the association.\n");
3599 process_close(apdu->u.close);
3601 case Z_APDU_resourceControlRequest:
3602 process_resourceControlRequest
3603 (apdu->u.resourceControlRequest);
3605 case Z_APDU_deleteResultSetResponse:
3606 process_deleteResultSetResponse(apdu->u.
3607 deleteResultSetResponse);
3610 printf("Received unknown APDU type (%d).\n",
3616 else if (gdu->which == Z_GDU_HTTP_Response)
3618 http_response(gdu->u.HTTP_Response);
3621 if (conn && !cs_more(conn))
3626 #if HAVE_GETTIMEOFDAY
3627 gettimeofday (&tv_end, 0);
3629 printf ("S/U S/U=%ld/%ld %ld/%ld",
3630 (long) tv_start.tv_sec,
3631 (long) tv_start.tv_usec,
3632 (long) tv_end.tv_sec,
3633 (long) tv_end.tv_usec);
3635 printf ("Elapsed: %.6f\n",
3636 (double) tv_end.tv_usec / 1e6 + tv_end.tv_sec -
3637 ((double) tv_start.tv_usec / 1e6 + tv_start.tv_sec));
3644 int cmd_cclparse(const char* arg)
3647 struct ccl_rpn_node *rpn=NULL;
3650 rpn = ccl_find_str (bibset, arg, &error, &pos);
3653 printf ("%*s^ - ", 3+strlen(last_cmd)+1+pos, " ");
3654 printf ("%s\n", ccl_err_msg (error));
3660 ccl_pr_tree(rpn, stdout);
3664 ccl_rpn_delete(rpn);
3672 int cmd_set_otherinfo(const char* args)
3674 char oidstr[101], otherinfoString[101];
3679 sscan_res = sscanf (args, "%d %100[^ ] %100s", &otherinfoNo, oidstr, otherinfoString);
3681 /* reset this otherinfo */
3682 if(otherinfoNo>=maxOtherInfosSupported) {
3683 printf("Error otherinfo index to large (%d>%d)\n",
3684 otherinfoNo,maxOtherInfosSupported);
3686 extraOtherInfos[otherinfoNo].oidval = -1;
3687 if (extraOtherInfos[otherinfoNo].value)
3688 free(extraOtherInfos[otherinfoNo].value);
3692 printf("Error in set_otherinfo command \n");
3696 if (otherinfoNo>=maxOtherInfosSupported) {
3697 printf("Error otherinfo index to large (%d>%d)\n",
3698 otherinfoNo,maxOtherInfosSupported);
3701 oidval = oid_getvalbyname (oidstr);
3702 if (oidval == -1 ) {
3703 printf("Error in set_otherinfo command unknown oid %s \n",oidstr);
3706 extraOtherInfos[otherinfoNo].oidval = oidval;
3707 if(extraOtherInfos[otherinfoNo].value) free(extraOtherInfos[otherinfoNo].value);
3708 extraOtherInfos[otherinfoNo].value = strdup(otherinfoString);
3713 int cmd_sleep(const char* args )
3722 printf("Done sleeping %d seconds\n", sec);
3727 int cmd_list_otherinfo(const char* args)
3731 if(strlen(args)>0) {
3733 if( i >= maxOtherInfosSupported ) {
3734 printf("Error otherinfo index to large (%d>%d)\n",i,maxOtherInfosSupported);
3738 if(extraOtherInfos[i].oidval != -1)
3739 printf(" otherinfo %d %s %s\n",
3741 yaz_z3950_oid_value_to_str(
3742 (enum oid_value) extraOtherInfos[i].oidval,
3744 extraOtherInfos[i].value);
3747 for(i=0; i<maxOtherInfosSupported; ++i) {
3748 if(extraOtherInfos[i].oidval != -1)
3749 printf(" otherinfo %d %s %s\n",
3751 yaz_z3950_oid_value_to_str(
3752 (enum oid_value) extraOtherInfos[i].oidval,
3754 extraOtherInfos[i].value);
3762 int cmd_list_all(const char* args) {
3765 /* connection options */
3767 printf("Connected to : %s\n",last_open_command);
3769 if(last_open_command)
3770 printf("Not connected to : %s\n",last_open_command);
3772 printf("Not connected : \n");
3775 if(yazProxy) printf("using proxy : %s\n",yazProxy);
3777 printf("auto_reconnect : %s\n",auto_reconnect?"on":"off");
3780 printf("Authentication : none\n");
3782 switch(auth->which) {
3783 case Z_IdAuthentication_idPass:
3784 printf("Authentication : IdPass\n");
3785 printf(" Login User : %s\n",auth->u.idPass->userId?auth->u.idPass->userId:"");
3786 printf(" Login Group : %s\n",auth->u.idPass->groupId?auth->u.idPass->groupId:"");
3787 printf(" Password : %s\n",auth->u.idPass->password?auth->u.idPass->password:"");
3789 case Z_IdAuthentication_open:
3790 printf("Authentication : psOpen\n");
3791 printf(" Open string : %s\n",auth->u.open);
3794 printf("Authentication : Unknown\n");
3797 if (negotiationCharset)
3798 printf("Neg. Character set : `%s'\n", negotiationCharset);
3802 for (i = 0; i<num_databaseNames; i++) printf("%s ",databaseNames[i]);
3806 printf("CCL file : %s\n",ccl_fields);
3807 printf("CQL file : %s\n",cql_fields);
3808 printf("Query type : %s\n",query_type_as_string(queryType));
3810 printf("Named Result Sets : %s\n",setnumber==-1?"off":"on");
3812 /* piggy back options */
3813 printf("ssub/lslb/mspn : %d/%d/%d\n",smallSetUpperBound,largeSetLowerBound,mediumSetPresentNumber);
3815 /* print present related options */
3816 printf("Format : %s\n",yaz_z3950_oid_value_to_str(recordsyntax,CLASS_RECSYN));
3817 printf("Schema : %s\n",record_schema ? record_schema : "not set");
3818 printf("Elements : %s\n",elementSetNames?elementSetNames->u.generic:"");
3820 /* loging options */
3821 printf("APDU log : %s\n",apdu_file?"on":"off");
3822 printf("Record log : %s\n",marc_file?"on":"off");
3825 printf("Other Info: \n");
3826 cmd_list_otherinfo("");
3831 int cmd_clear_otherinfo(const char* args)
3833 if(strlen(args)>0) {
3835 otherinfoNo = atoi(args);
3836 if( otherinfoNo >= maxOtherInfosSupported ) {
3837 printf("Error otherinfo index to large (%d>%d)\n",otherinfoNo,maxOtherInfosSupported);
3841 if(extraOtherInfos[otherinfoNo].oidval != -1) {
3842 /* only clear if set. */
3843 extraOtherInfos[otherinfoNo].oidval=-1;
3844 free(extraOtherInfos[otherinfoNo].value);
3849 for(i=0; i<maxOtherInfosSupported; ++i) {
3850 if (extraOtherInfos[i].oidval!=-1 ) {
3851 extraOtherInfos[i].oidval=-1;
3852 free(extraOtherInfos[i].value);
3859 static int cmd_help (const char *line);
3861 typedef char *(*completerFunctionType)(const char *text, int state);
3865 int (*fun)(const char *arg);
3867 completerFunctionType rl_completerfunction;
3868 int complete_filenames;
3869 char **local_tabcompletes;
3871 {"open", cmd_open, "('tcp'|'ssl')':<host>[':'<port>][/<db>]",NULL,0,NULL},
3872 {"quit", cmd_quit, "",NULL,0,NULL},
3873 {"find", cmd_find, "<query>",NULL,0,NULL},
3874 {"delete", cmd_delete, "<setname>",NULL,0,NULL},
3875 {"base", cmd_base, "<base-name>",NULL,0,NULL},
3876 {"show", cmd_show, "<rec#>['+'<#recs>['+'<setname>]]",NULL,0,NULL},
3877 {"scan", cmd_scan, "<term>",NULL,0,NULL},
3878 {"scanstep", cmd_scanstep, "<size>",NULL,0,NULL},
3879 {"scanpos", cmd_scanpos, "<size>",NULL,0,NULL},
3880 {"sort", cmd_sort, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
3881 {"sort+", cmd_sort_newset, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
3882 {"authentication", cmd_authentication, "<acctstring>",NULL,0,NULL},
3883 {"lslb", cmd_lslb, "<largeSetLowerBound>",NULL,0,NULL},
3884 {"ssub", cmd_ssub, "<smallSetUpperBound>",NULL,0,NULL},
3885 {"mspn", cmd_mspn, "<mediumSetPresentNumber>",NULL,0,NULL},
3886 {"status", cmd_status, "",NULL,0,NULL},
3887 {"setnames", cmd_setnames, "",NULL,0,NULL},
3888 {"cancel", cmd_cancel, "",NULL,0,NULL},
3889 {"cancel_find", cmd_cancel_find, "<query>",NULL,0,NULL},
3890 {"format", cmd_format, "<recordsyntax>",complete_format,0,NULL},
3891 {"schema", cmd_schema, "<schema>",complete_schema,0,NULL},
3892 {"elements", cmd_elements, "<elementSetName>",NULL,0,NULL},
3893 {"close", cmd_close, "",NULL,0,NULL},
3894 {"attributeset", cmd_attributeset, "<attrset>",complete_attributeset,0,NULL},
3895 {"querytype", cmd_querytype, "<type>",complete_querytype,0,NULL},
3896 {"refid", cmd_refid, "<id>",NULL,0,NULL},
3897 {"itemorder", cmd_itemorder, "ill|item <itemno>",NULL,0,NULL},
3898 {"update", cmd_update, "<action> <recid> [<file>]",NULL,0,NULL},
3899 {"update0", cmd_update0, "<action> <recid> [<file>]",NULL,0,NULL},
3900 {"packagename", cmd_packagename, "<packagename>",NULL,0,NULL},
3901 {"proxy", cmd_proxy, "[('tcp'|'ssl')]<host>[':'<port>]",NULL,0,NULL},
3902 {"charset", cmd_charset, "<nego_charset> <output_charset>",NULL,0,NULL},
3903 {"marccharset", cmd_marccharset, "<charset_name>",NULL,0,NULL},
3904 {"lang", cmd_lang, "<language_code>",NULL,0,NULL},
3905 {".", cmd_source, "<filename>",NULL,1,NULL},
3906 {"!", cmd_subshell, "Subshell command",NULL,1,NULL},
3907 {"set_apdufile", cmd_set_apdufile, "<filename>",NULL,1,NULL},
3908 {"set_berfile", cmd_set_berfile, "<filename>",NULL,1,NULL},
3909 {"set_marcdump", cmd_set_marcdump," <filename>",NULL,1,NULL},
3910 {"set_cclfile", cmd_set_cclfile," <filename>",NULL,1,NULL},
3911 {"set_cqlfile", cmd_set_cqlfile," <filename>",NULL,1,NULL},
3912 {"set_auto_reconnect", cmd_set_auto_reconnect," on|off",complete_auto_reconnect,1,NULL},
3913 {"set_otherinfo", cmd_set_otherinfo,"<otherinfoinddex> <oid> <string>",NULL,0,NULL},
3914 {"sleep", cmd_sleep,"<seconds>",NULL,0,NULL},
3915 {"register_oid", cmd_register_oid,"<name> <class> <oid>",NULL,0,NULL},
3916 {"push_command", cmd_push_command,"<command>",command_generator,0,NULL},
3917 {"register_tab", cmd_register_tab,"<commandname> <tab>",command_generator,0,NULL},
3918 {"cclparse", cmd_cclparse,"<ccl find command>",NULL,0,NULL},
3919 {"list_otherinfo",cmd_list_otherinfo,"[otherinfoinddex]",NULL,0,NULL},
3920 {"list_all",cmd_list_all,"",NULL,0,NULL},
3921 {"clear_otherinfo",cmd_clear_otherinfo,"",NULL,0,NULL},
3922 /* Server Admin Functions */
3923 {"adm-reindex", cmd_adm_reindex, "<database-name>",NULL,0,NULL},
3924 {"adm-truncate", cmd_adm_truncate, "('database'|'index')<object-name>",NULL,0,NULL},
3925 {"adm-create", cmd_adm_create, "",NULL,0,NULL},
3926 {"adm-drop", cmd_adm_drop, "('database'|'index')<object-name>",NULL,0,NULL},
3927 {"adm-import", cmd_adm_import, "<record-type> <dir> <pattern>",NULL,0,NULL},
3928 {"adm-refresh", cmd_adm_refresh, "",NULL,0,NULL},
3929 {"adm-commit", cmd_adm_commit, "",NULL,0,NULL},
3930 {"adm-shutdown", cmd_adm_shutdown, "",NULL,0,NULL},
3931 {"adm-startup", cmd_adm_startup, "",NULL,0,NULL},
3932 {"explain", cmd_explain, "", NULL, 0, NULL},
3933 {"options", cmd_options, "", NULL, 0, NULL},
3934 {"zversion", cmd_zversion, "", NULL, 0, NULL},
3935 {"help", cmd_help, "", NULL,0,NULL},
3936 {"init", cmd_init, "", NULL,0,NULL},
3940 static int cmd_help (const char *line)
3946 sscanf (line, "%20s", topic);
3949 printf("Commands:\n");
3950 for (i = 0; cmd_array[i].cmd; i++)
3951 if (*topic == 0 || strcmp (topic, cmd_array[i].cmd) == 0)
3952 printf(" %s %s\n", cmd_array[i].cmd, cmd_array[i].ad);
3953 if (strcmp (topic, "find") == 0)
3956 printf (" \"term\" Simple Term\n");
3957 printf (" @attr [attset] type=value op Attribute\n");
3958 printf (" @and opl opr And\n");
3959 printf (" @or opl opr Or\n");
3960 printf (" @not opl opr And-Not\n");
3961 printf (" @set set Result set\n");
3963 printf ("Bib-1 attribute types\n");
3965 printf ("4=Title 7=ISBN 8=ISSN 30=Date 62=Abstract 1003=Author 1016=Any\n");
3966 printf ("2=Relation: ");
3967 printf ("1< 2<= 3= 4>= 5> 6!= 102=Relevance\n");
3968 printf ("3=Position: ");
3969 printf ("1=First in Field 2=First in subfield 3=Any position\n");
3970 printf ("4=Structure: ");
3971 printf ("1=Phrase 2=Word 3=Key 4=Year 5=Date 6=WordList\n");
3972 printf ("5=Truncation: ");
3973 printf ("1=Right 2=Left 3=L&R 100=No 101=# 102=Re-1 103=Re-2\n");
3974 printf ("6=Completeness:");
3975 printf ("1=Incomplete subfield 2=Complete subfield 3=Complete field\n");
3980 int cmd_register_tab(const char* arg) {
3982 char command[101], tabargument[101];
3987 if (sscanf (arg, "%100s %100s", command, tabargument) < 1) {
3991 /* locate the amdn in the list */
3992 for (i = 0; cmd_array[i].cmd; i++) {
3993 if (!strncmp(cmd_array[i].cmd, command, strlen(command))) {
3998 if(!cmd_array[i].cmd) {
3999 fprintf(stderr,"Unknown command %s\n",command);
4004 if(!cmd_array[i].local_tabcompletes)
4005 cmd_array[i].local_tabcompletes = (char **) calloc(1,sizeof(char**));
4009 tabslist = cmd_array[i].local_tabcompletes;
4010 for(;tabslist && *tabslist;tabslist++) {
4014 cmd_array[i].local_tabcompletes = (char **)
4015 realloc(cmd_array[i].local_tabcompletes,(num_of_tabs+2)*sizeof(char**));
4016 tabslist=cmd_array[i].local_tabcompletes;
4017 tabslist[num_of_tabs]=strdup(tabargument);
4018 tabslist[num_of_tabs+1]=NULL;
4023 void process_cmd_line(char* line)
4026 char word[32], arg[10240];
4028 #if HAVE_GETTIMEOFDAY
4029 gettimeofday (&tv_start, 0);
4032 if ((res = sscanf(line, "%31s %10239[^;]", word, arg)) <= 0)
4034 strcpy(word, last_cmd);
4039 strcpy(last_cmd, word);
4041 /* removed tailing spaces from the arg command */
4044 char* lastnonspace=NULL;
4047 if(!isspace(*(unsigned char *) p)) {
4052 *(++lastnonspace) = 0;
4055 for (i = 0; cmd_array[i].cmd; i++)
4056 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
4058 res = (*cmd_array[i].fun)(arg);
4062 if (!cmd_array[i].cmd) /* dump our help-screen */
4064 printf("Unknown command: %s.\n", word);
4065 printf("use help for list of commands\n");
4066 /* cmd_help (""); */
4070 if(apdu_file) fflush(apdu_file);
4073 wait_and_handle_response();
4082 char *command_generator(const char *text, int state)
4088 for( ; cmd_array[idx].cmd; ++idx) {
4089 if (!strncmp(cmd_array[idx].cmd,text,strlen(text))) {
4090 ++idx; /* skip this entry on the next run */
4091 return strdup(cmd_array[idx-1].cmd);
4099 This function only known how to complete on the first word
4101 char ** readline_completer(char *text, int start, int end) {
4102 #if HAVE_READLINE_READLINE_H
4104 completerFunctionType completerToUse;
4107 #if HAVE_READLINE_RL_COMPLETION_MATCHES
4108 char** res=rl_completion_matches(text,
4111 char** res=completion_matches(text,
4112 (CPFunction*)command_generator);
4114 rl_attempted_completion_over = 1;
4117 char arg[10240],word[32];
4119 if ((res = sscanf(rl_line_buffer, "%31s %10239[^;]", word, arg)) <= 0) {
4120 rl_attempted_completion_over = 1;
4124 for (i = 0; cmd_array[i].cmd; i++) {
4125 if (!strncmp(cmd_array[i].cmd, word, strlen(word))) {
4130 if(!cmd_array[i].cmd) return NULL;
4132 curret_global_list = cmd_array[i].local_tabcompletes;
4134 completerToUse = cmd_array[i].rl_completerfunction;
4135 if(completerToUse==NULL) /* if no pr. command completer is defined use the default completer */
4136 completerToUse = default_completer;
4138 if(completerToUse) {
4139 #ifdef HAVE_READLINE_RL_COMPLETION_MATCHES
4141 rl_completion_matches(text,
4145 completion_matches(text,
4146 (CPFunction*)completerToUse);
4148 if(!cmd_array[i].complete_filenames)
4149 rl_attempted_completion_over = 1;
4152 if(!cmd_array[i].complete_filenames)
4153 rl_attempted_completion_over = 1;
4163 static void client(void)
4169 #if HAVE_GETTIMEOFDAY
4170 gettimeofday (&tv_start, 0);
4175 char *line_in = NULL;
4176 #if HAVE_READLINE_READLINE_H
4179 line_in=readline(C_PROMPT);
4182 #if HAVE_READLINE_HISTORY_H
4184 add_history(line_in);
4186 strncpy(line, line_in, 10239);
4195 if (!fgets(line, 10239, stdin))
4197 if ((end_p = strchr (line, '\n')))
4200 process_cmd_line(line);
4204 static void show_version(void)
4208 yaz_version(vstr, 0);
4209 printf ("YAZ version: %s\n", YAZ_VERSION);
4210 if (strcmp(vstr, YAZ_VERSION))
4211 printf ("YAZ DLL/SO: %s\n", vstr);
4215 int main(int argc, char **argv)
4218 char *open_command = 0;
4219 char *auth_command = 0;
4224 if (!setlocale(LC_CTYPE, ""))
4225 fprintf (stderr, "setlocale failed\n");
4229 codeset = nl_langinfo(CODESET);
4233 outputCharset = xstrdup(codeset);
4235 ODR_MASK_SET(&z3950_options, Z_Options_search);
4236 ODR_MASK_SET(&z3950_options, Z_Options_present);
4237 ODR_MASK_SET(&z3950_options, Z_Options_namedResultSets);
4238 ODR_MASK_SET(&z3950_options, Z_Options_triggerResourceCtrl);
4239 ODR_MASK_SET(&z3950_options, Z_Options_scan);
4240 ODR_MASK_SET(&z3950_options, Z_Options_sort);
4241 ODR_MASK_SET(&z3950_options, Z_Options_extendedServices);
4242 ODR_MASK_SET(&z3950_options, Z_Options_delSet);
4244 while ((ret = options("k:c:q:a:b:m:v:p:u:t:Vxd:", argv, argc, &arg)) != -2)
4251 open_command = (char *) xmalloc (strlen(arg)+6);
4252 strcpy (open_command, "open ");
4253 strcat (open_command, arg);
4257 dump_file_prefix = arg;
4260 kilobytes = atoi(arg);
4263 if (!(marc_file = fopen (arg, "a")))
4270 outputCharset = xstrdup(arg);
4273 strncpy (ccl_fields, arg, sizeof(ccl_fields)-1);
4274 ccl_fields[sizeof(ccl_fields)-1] = '\0';
4277 strncpy (cql_fields, arg, sizeof(cql_fields)-1);
4278 cql_fields[sizeof(cql_fields)-1] = '\0';
4281 if (!strcmp(arg, "-"))
4284 ber_file=fopen(arg, "a");
4287 if (!strcmp(arg, "-"))
4290 apdu_file=fopen(arg, "a");
4296 yazProxy=strdup(arg);
4301 auth_command = (char *) xmalloc (strlen(arg)+6);
4302 strcpy (auth_command, "auth ");
4303 strcat (auth_command, arg);
4307 yaz_log_init(yaz_log_mask_str(arg), "", 0);
4313 fprintf (stderr, "Usage: %s [-m <marclog>] [ -a <apdulog>] "
4314 "[-b berdump] [-c cclfields] \n"
4315 "[-q cqlfields] [-p <proxy-addr>] [-u <auth>] "
4316 "[-k size] [-d dump] [-V] [<server-addr>]\n",
4324 #ifdef HAVE_GETTIMEOFDAY
4325 gettimeofday (&tv_start, 0);
4327 process_cmd_line (auth_command);
4328 #if HAVE_READLINE_HISTORY_H
4329 add_history(auth_command);
4331 xfree(auth_command);
4335 #ifdef HAVE_GETTIMEOFDAY
4336 gettimeofday (&tv_start, 0);
4338 process_cmd_line (open_command);
4339 #if HAVE_READLINE_HISTORY_H
4340 add_history(open_command);
4342 xfree(open_command);
4353 * vim600: sw=4 ts=8 fdm=marker
4354 * vim<600: sw=4 ts=8