2 * Copyright (C) 1995-2007, Index Data ApS
3 * See the file LICENSE for details.
5 * $Id: client.c,v 1.332 2007-04-12 13:52:57 adam Exp $
8 * \brief yaz-client program
20 #include <sys/types.h>
38 #if HAVE_OPENSSL_SSL_H
39 #include <openssl/bio.h>
40 #include <openssl/crypto.h>
41 #include <openssl/x509.h>
42 #include <openssl/pem.h>
43 #include <openssl/ssl.h>
44 #include <openssl/err.h>
51 #define S_ISREG(x) (x & _S_IFREG)
52 #define S_ISDIR(x) (x & _S_IFDIR)
55 #include <yaz/yaz-util.h>
57 #include <yaz/comstack.h>
59 #include <yaz/oid_db.h>
61 #include <yaz/proto.h>
62 #include <yaz/marcdisp.h>
63 #include <yaz/diagbib1.h>
64 #include <yaz/otherinfo.h>
65 #include <yaz/charneg.h>
67 #include <yaz/pquery.h>
68 #include <yaz/sortspec.h>
72 #include <yaz/yaz-ccl.h>
76 #if HAVE_READLINE_READLINE_H
77 #include <readline/readline.h>
79 #if HAVE_READLINE_HISTORY_H
80 #include <readline/history.h>
85 #include "tabcomplete.h"
88 #define C_PROMPT "Z> "
90 static file_history_t file_history = 0;
92 static char *sru_method = "soap";
93 static char *codeset = 0; /* character set for output */
94 static int hex_dump = 0;
95 static char *dump_file_prefix = 0;
96 static ODR out, in, print; /* encoding and decoding streams */
98 static ODR srw_sr_odr_out = 0;
99 static Z_SRW_PDU *srw_sr = 0;
101 static FILE *apdu_file = 0;
102 static FILE *ber_file = 0;
103 static COMSTACK conn = 0; /* our z-association */
104 static Z_IdAuthentication *auth = 0; /* our current auth definition */
105 char *databaseNames[128];
106 int num_databaseNames = 0;
107 static Z_External *record_last = 0;
108 static int setnumber = -1; /* current result set number */
109 static int smallSetUpperBound = 0;
110 static int largeSetLowerBound = 1;
111 static int mediumSetPresentNumber = 0;
112 static Z_ElementSetNames *elementSetNames = 0;
113 static int setno = 1; /* current set offset */
114 static enum oid_proto protocol = PROTO_Z3950; /* current app protocol */
115 #define RECORDSYNTAX_MAX 20
116 static char *recordsyntax_list[RECORDSYNTAX_MAX];
117 static int recordsyntax_size = 0;
119 static char *record_schema = 0;
120 static int sent_close = 0;
121 static NMEM session_mem = NULL; /* memory handle for init-response */
122 static Z_InitResponse *session_initResponse = 0; /* session parameters */
123 static char last_scan_line[512] = "0";
124 static char last_scan_query[512] = "0";
125 static char ccl_fields[512] = "default.bib";
126 /* ### How can I set this path to use wherever YAZ is installed? */
127 static char cql_fields[512] = "/usr/local/share/yaz/etc/pqf.properties";
128 static char *esPackageName = 0;
129 static char *yazProxy = 0;
130 static int kilobytes = 1024;
131 static char *negotiationCharset = 0;
132 static int negotiationCharsetRecords = 1;
133 static int negotiationCharsetVersion = 3;
134 static char *outputCharset = 0;
135 static char *marcCharset = 0;
136 static char* yazLang = 0;
138 static char last_cmd[32] = "?";
139 static FILE *marc_file = 0;
140 static char *refid = NULL;
141 static char *last_open_command = NULL;
142 static int auto_reconnect = 0;
143 static int auto_wait = 1;
144 static Odr_bitmask z3950_options;
145 static int z3950_version = 3;
146 static int scan_stepSize = 0;
147 static int scan_position = 1;
148 static int scan_size = 20;
149 static char cur_host[200];
150 static int last_hit_count = 0;
160 static QueryType queryType = QueryType_Prefix;
162 static CCL_bibset bibset; /* CCL bibset handle */
163 static cql_transform_t cqltrans = 0; /* CQL context-set handle */
165 #if HAVE_READLINE_COMPLETION_OVER
168 /* readline doesn't have this var. Define it ourselves. */
169 int rl_attempted_completion_over = 0;
172 /* set this one to 1, to avoid decode of unknown MARCs */
173 #define AVOID_MARC_DECODE 1
175 #define maxOtherInfosSupported 10
179 } extraOtherInfos[maxOtherInfosSupported];
181 void process_cmd_line(char* line);
182 #if HAVE_READLINE_READLINE_H
183 char **readline_completer(char *text, int start, int end);
185 static char *command_generator(const char *text, int state);
186 int cmd_register_tab(const char* arg);
188 static void close_session (void);
190 ODR getODROutputStream(void)
195 const char* query_type_as_string(QueryType q)
198 case QueryType_Prefix: return "prefix (RPN sent to server)";
199 case QueryType_CCL: return "CCL (CCL sent to server) ";
200 case QueryType_CCL2RPN: return "CCL -> RPN (RPN sent to server)";
201 case QueryType_CQL: return "CQL (CQL sent to server)";
202 case QueryType_CQL2RPN: return "CQL -> RPN (RPN sent to server)";
204 return "unknown Query type internal yaz-client error";
208 static void do_hex_dump(const char* buf, int len)
213 for( i=0; i<len ; i=i+16 )
216 for(x=0 ; i+x<len && x<16; ++x)
218 printf("%2.2X ",(unsigned int)((unsigned char)buf[i+x]));
223 if (dump_file_prefix)
226 if (++no < 1000 && strlen(dump_file_prefix) < 500)
230 sprintf (fname, "%s.%03d.raw", dump_file_prefix, no);
231 of = fopen(fname, "wb");
233 fwrite (buf, 1, len, of);
240 void add_otherInfos(Z_APDU *a)
242 Z_OtherInformation **oi;
246 for(i=0; i<maxOtherInfosSupported; ++i)
248 if (oid_oidlen(extraOtherInfos[i].oid) > 0)
249 yaz_oi_set_string_oid(oi, out, extraOtherInfos[i].oid,
250 1, extraOtherInfos[i].value);
254 int send_apdu(Z_APDU *a)
263 z_APDU(print, &a, 0, 0);
266 if (!z_APDU(out, &a, 0, 0))
268 odr_perror(out, "Encoding APDU");
272 buf = odr_getbuf(out, &len, 0);
274 odr_dumpBER(ber_file, buf, len);
275 /* printf ("sending APDU of size %d\n", len); */
276 do_hex_dump(buf, len);
277 if (cs_put(conn, buf, len) < 0)
279 fprintf(stderr, "cs_put: %s", cs_errmsg(cs_errno(conn)));
283 odr_reset(out); /* release the APDU structure */
287 static void print_stringn(const unsigned char *buf, size_t len)
290 for (i = 0; i<len; i++)
291 if ((buf[i] <= 126 && buf[i] >= 32) || strchr ("\n\r\t\f", buf[i]))
292 printf ("%c", buf[i]);
294 printf ("\\X%02X", buf[i]);
297 static void print_refid (Z_ReferenceId *id)
301 printf ("Reference Id: ");
302 print_stringn (id->buf, id->len);
307 static Z_ReferenceId *set_refid (ODR out)
312 id = (Z_ReferenceId *) odr_malloc (out, sizeof(*id));
313 id->size = id->len = strlen(refid);
314 id->buf = (unsigned char *) odr_malloc (out, id->len);
315 memcpy (id->buf, refid, id->len);
319 /* INIT SERVICE ------------------------------- */
321 static void send_initRequest(const char* type_and_host)
323 Z_APDU *apdu = zget_APDU(out, Z_APDU_initRequest);
324 Z_InitRequest *req = apdu->u.initRequest;
327 req->options = &z3950_options;
329 ODR_MASK_ZERO(req->protocolVersion);
330 for (i = 0; i<z3950_version; i++)
331 ODR_MASK_SET(req->protocolVersion, i);
333 *req->maximumRecordSize = 1024*kilobytes;
334 *req->preferredMessageSize = 1024*kilobytes;
336 req->idAuthentication = auth;
338 req->referenceId = set_refid (out);
340 if (yazProxy && type_and_host)
342 const int *oid_proxy = yaz_string_to_oid(yaz_oid_std(),
343 CLASS_USERINFO, OID_STR_PROXY);
344 yaz_oi_set_string_oid(&req->otherInfo, out, oid_proxy,
348 if (negotiationCharset || yazLang) {
349 Z_OtherInformation **p;
350 Z_OtherInformationUnit *p0;
352 yaz_oi_APDU(apdu, &p);
354 if ((p0=yaz_oi_update(p, out, NULL, 0, 0))) {
355 ODR_MASK_SET(req->options, Z_Options_negotiationModel);
357 p0->which = Z_OtherInfo_externallyDefinedInfo;
358 p0->information.externallyDefinedInfo =
359 yaz_set_proposal_charneg_list(out, ",",
362 negotiationCharsetRecords);
367 printf("Sent initrequest.\n");
371 /* These two are used only from process_initResponse() */
372 static void render_initUserInfo(Z_OtherInformation *ui1);
373 static void render_diag(Z_DiagnosticFormat *diag);
375 static void pr_opt(const char *opt, void *clientData)
380 static int process_initResponse(Z_InitResponse *res)
383 /* save session parameters for later use */
384 session_mem = odr_extract_mem(in);
385 session_initResponse = res;
387 for (ver = 0; ver < 8; ver++)
388 if (!ODR_MASK_GET(res->protocolVersion, ver))
392 printf("Connection rejected by v%d target.\n", ver);
394 printf("Connection accepted by v%d target.\n", ver);
395 if (res->implementationId)
396 printf("ID : %s\n", res->implementationId);
397 if (res->implementationName)
398 printf("Name : %s\n", res->implementationName);
399 if (res->implementationVersion)
400 printf("Version: %s\n", res->implementationVersion);
401 if (res->userInformationField)
403 Z_External *uif = res->userInformationField;
404 if (uif->which == Z_External_userInfo1) {
405 render_initUserInfo(uif->u.userInfo1);
407 printf("UserInformationfield:\n");
408 if (!z_External(print, (Z_External**)&uif, 0, 0))
410 odr_perror(print, "Printing userinfo\n");
413 if (uif->which == Z_External_octet) {
414 printf("Guessing visiblestring:\n");
415 printf("'%.*s'\n", uif->u.octet_aligned->len,
416 uif->u.octet_aligned->buf);
418 else if (uif->which == Z_External_single)
420 const int *oclc_oid = yaz_string_to_oid(yaz_oid_std(),
423 Odr_any *sat = uif->u.single_ASN1_type;
424 if (!oid_oidcmp(uif->direct_reference, oclc_oid))
426 Z_OCLC_UserInformation *oclc_ui;
427 ODR decode = odr_createmem(ODR_DECODE);
428 odr_setbuf(decode, (char *) sat->buf, sat->len, 0);
429 if (!z_OCLC_UserInformation(decode, &oclc_ui, 0, 0))
430 printf ("Bad OCLC UserInformation:\n");
432 printf ("OCLC UserInformation:\n");
433 if (!z_OCLC_UserInformation(print, &oclc_ui, 0, 0))
434 printf ("Bad OCLC UserInformation spec\n");
439 /* Peek at any private Init-diagnostic APDUs */
440 printf("### NAUGHTY: External is '%.*s'\n",
448 yaz_init_opt_decode(res->options, pr_opt, 0);
451 if (ODR_MASK_GET(res->options, Z_Options_namedResultSets))
454 if (ODR_MASK_GET(res->options, Z_Options_negotiationModel)) {
456 Z_CharSetandLanguageNegotiation *p =
457 yaz_get_charneg_record(res->otherInfo);
461 char *charset=NULL, *lang=NULL;
464 yaz_get_response_charneg(session_mem, p, &charset, &lang,
467 if (outputCharset && negotiationCharset) {
468 odr_set_charset (out, charset, outputCharset);
469 odr_set_charset (in, outputCharset, charset);
472 odr_set_charset (out, 0, 0);
473 odr_set_charset (in, 0, 0);
476 printf("Accepted character set : %s\n", charset);
477 printf("Accepted code language : %s\n", lang ? lang : "none");
478 printf("Accepted records in ...: %d\n", selected );
486 static void render_initUserInfo(Z_OtherInformation *ui1) {
488 printf("Init response contains %d otherInfo unit%s:\n",
489 ui1->num_elements, ui1->num_elements == 1 ? "" : "s");
491 for (i = 0; i < ui1->num_elements; i++) {
492 Z_OtherInformationUnit *unit = ui1->list[i];
493 printf(" %d: otherInfo unit contains ", i+1);
494 if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
495 unit->information.externallyDefinedInfo &&
496 unit->information.externallyDefinedInfo->which ==
498 render_diag(unit->information.externallyDefinedInfo->u.diag1);
500 else if (unit->which != Z_OtherInfo_externallyDefinedInfo)
502 printf("unsupported otherInfo unit->which = %d\n", unit->which);
506 printf("unsupported otherInfo unit external %d\n",
507 unit->information.externallyDefinedInfo ?
508 unit->information.externallyDefinedInfo->which : -2);
514 /* ### should this share code with display_diagrecs()? */
515 static void render_diag(Z_DiagnosticFormat *diag) {
518 printf("%d diagnostic%s:\n", diag->num, diag->num == 1 ? "" : "s");
519 for (i = 0; i < diag->num; i++) {
520 Z_DiagnosticFormat_s *ds = diag->elements[i];
521 printf(" %d: ", i+1);
523 case Z_DiagnosticFormat_s_defaultDiagRec: {
524 Z_DefaultDiagFormat *dd = ds->u.defaultDiagRec;
525 /* ### should check `dd->diagnosticSetId' */
526 printf("code=%d (%s)", *dd->condition,
527 diagbib1_str(*dd->condition));
528 /* Both types of addinfo are the same, so use type-pun */
529 if (dd->u.v2Addinfo != 0)
530 printf(",\n\taddinfo='%s'", dd->u.v2Addinfo);
533 case Z_DiagnosticFormat_s_explicitDiagnostic:
534 printf("Explicit diagnostic (not supported)");
537 printf("Unrecognised diagnostic type %d", ds->which);
541 if (ds->message != 0)
542 printf(", message='%s'", ds->message);
548 static int set_base(const char *arg)
553 for (i = 0; i<num_databaseNames; i++)
554 xfree (databaseNames[i]);
555 num_databaseNames = 0;
559 if (!(cp = strchr(arg, ' ')))
560 cp = arg + strlen(arg);
563 databaseNames[num_databaseNames] = (char *)xmalloc (1 + cp - arg);
564 memcpy (databaseNames[num_databaseNames], arg, cp - arg);
565 databaseNames[num_databaseNames][cp - arg] = '\0';
567 for (cp1 = databaseNames[num_databaseNames]; *cp1 ; cp1++)
576 if (num_databaseNames == 0)
578 num_databaseNames = 1;
579 databaseNames[0] = xstrdup("");
584 static int parse_cmd_doc(const char **arg, ODR out, char **buf,
588 while (**arg && strchr(" \t\n\r\f", **arg))
590 if ((*arg)[0] == '\"' && (sep=strchr(*arg+1, '"')))
594 *buf = odr_strdupn(out, *arg, *len);
598 else if ((*arg)[0] && (*arg)[0] != '\"')
602 const char *fname = *arg;
604 while (**arg != '\0' && **arg != ' ')
607 inf = fopen(fname, "rb");
610 printf("Couldn't open %s\n", fname);
613 if (fseek(inf, 0L, SEEK_END) == -1)
615 printf("Couldn't seek in %s\n", fname);
620 if (fseek(inf, 0L, SEEK_SET) == -1)
622 printf("Couldn't seek in %s\n", fname);
627 *buf = odr_malloc(out, fsize);
628 if (fread(*buf, 1, fsize, inf) != fsize)
630 printf("Unable to read %s\n", fname);
637 else if (**arg == '\0')
645 printf("Missing doc argument\n");
648 printf("Bad doc argument %s\n", *arg);
652 static int cmd_base(const char *arg)
656 printf("Usage: base <database> <database> ...\n");
659 return set_base(arg);
662 void cmd_open_remember_last_open_command(const char* arg, char* new_open_command)
664 if(last_open_command != arg)
666 if(last_open_command) xfree(last_open_command);
667 last_open_command = xstrdup(new_open_command);
671 int session_connect(const char *arg)
674 char type_and_host[101];
675 const char *basep = 0;
676 #if HAVE_OPENSSL_SSL_H
686 nmem_destroy (session_mem);
688 session_initResponse = 0;
690 cs_get_host_args(arg, &basep);
692 strncpy(type_and_host, arg, sizeof(type_and_host)-1);
693 type_and_host[sizeof(type_and_host)-1] = '\0';
695 cmd_open_remember_last_open_command(arg, type_and_host);
698 conn = cs_create_host(yazProxy, 1, &add);
700 conn = cs_create_host(arg, 1, &add);
703 printf ("Could not resolve address %s\n", arg);
707 if (conn->protocol == PROTO_HTTP)
708 queryType = QueryType_CQL;
710 if (conn->protocol == PROTO_HTTP)
712 printf ("SRW/HTTP not enabled in this YAZ\n");
718 protocol = conn->protocol;
719 if (conn->protocol == PROTO_HTTP)
723 printf("Connecting...");
725 if (cs_connect(conn, add) < 0)
727 printf ("error = %s\n", cs_strerror(conn));
733 #if HAVE_OPENSSL_SSL_H
734 if ((ssl = (SSL *) cs_get_ssl(conn)))
736 X509 *server_cert = SSL_get_peer_certificate (ssl);
742 BIO *bio = BIO_new(BIO_s_mem());
744 /* get PEM buffer in memory */
745 PEM_write_bio_X509(bio, server_cert);
746 pem_len = BIO_get_mem_data(bio, &pem_buf);
747 fwrite(pem_buf, pem_len, 1, stdout);
749 /* print all info on screen .. */
750 X509_print_fp(stdout, server_cert);
753 X509_free (server_cert);
759 if (protocol == PROTO_Z3950)
761 send_initRequest(type_and_host);
767 int cmd_open(const char *arg)
771 strncpy (cur_host, arg, sizeof(cur_host)-1);
772 cur_host[sizeof(cur_host)-1] = 0;
774 return session_connect(cur_host);
777 void try_reconnect(void)
781 if(!( auto_reconnect && last_open_command) ) return ;
783 open_command = (char *) xmalloc (strlen(last_open_command)+6);
784 strcpy (open_command, "open ");
786 strcat (open_command, last_open_command);
788 process_cmd_line(open_command);
793 int cmd_authentication(const char *arg)
795 static Z_IdAuthentication au;
796 static char user[40], group[40], pass[40];
797 static Z_IdPass idPass;
802 printf("Auth field set to null\n");
806 r = sscanf (arg, "%39s %39s %39s", user, group, pass);
809 printf("Authentication set to null\n");
815 if (!strcmp(user, "-")) {
816 au.which = Z_IdAuthentication_anonymous;
817 printf("Authentication set to Anonymous\n");
819 au.which = Z_IdAuthentication_open;
821 printf("Authentication set to Open (%s)\n", user);
827 au.which = Z_IdAuthentication_idPass;
828 au.u.idPass = &idPass;
829 idPass.groupId = NULL;
830 idPass.userId = user;
831 idPass.password = group;
832 printf("Authentication set to User (%s), Pass (%s)\n", user, group);
837 au.which = Z_IdAuthentication_idPass;
838 au.u.idPass = &idPass;
839 idPass.groupId = group;
840 idPass.userId = user;
841 idPass.password = pass;
842 printf("Authentication set to User (%s), Group (%s), Pass (%s)\n",
848 /* SEARCH SERVICE ------------------------------ */
849 static void display_record(Z_External *r);
851 static void print_record(const unsigned char *buf, size_t len)
854 print_stringn (buf, len);
855 /* add newline if not already added ... */
856 if (i <= 0 || buf[i-1] != '\n')
860 static void display_record(Z_External *r)
862 char oid_name_buf[OID_STR_MAX];
864 const int *oid = r->direct_reference;
865 const char *oid_name = 0;
869 * Tell the user what we got.
873 oid_name = yaz_oid_to_string_buf(oid, &oclass, oid_name_buf);
874 printf("Record type: ");
876 printf("%s\n", oid_name);
878 /* Check if this is a known, ASN.1 type tucked away in an octet string */
879 if (r->which == Z_External_octet)
881 Z_ext_typeent *type = z_ext_getentbyref(r->direct_reference);
887 * Call the given decoder to process the record.
889 odr_setbuf(in, (char*)r->u.octet_aligned->buf,
890 r->u.octet_aligned->len, 0);
891 if (!(*type->fun)(in, &rr, 0, 0))
893 odr_perror(in, "Decoding constructed record.");
894 fprintf(stdout, "[Near %ld]\n", (long) odr_offset(in));
895 fprintf(stdout, "Packet dump:\n---------\n");
896 odr_dumpBER(stdout, (char*)r->u.octet_aligned->buf,
897 r->u.octet_aligned->len);
898 fprintf(stdout, "---------\n");
900 /* note just ignores the error ant print the bytes form the octet_aligned later */
903 * Note: we throw away the original, BER-encoded record here.
904 * Do something else with it if you want to keep it.
906 r->u.sutrs = (Z_SUTRS *) rr; /* we don't actually check the type here. */
907 r->which = type->what;
911 if (oid_name && !yaz_matchstr(oid_name, OID_STR_SOIF))
913 print_record((const unsigned char *) r->u.octet_aligned->buf,
914 r->u.octet_aligned->len);
916 fwrite (r->u.octet_aligned->buf, 1, r->u.octet_aligned->len, marc_file);
918 else if (oid && r->which == Z_External_octet)
920 const char *octet_buf = (char*)r->u.octet_aligned->buf;
921 if (oid_name && (!yaz_matchstr(oid_name, OID_STR_XML)
922 || !yaz_matchstr(oid_name, OID_STR_APPLICATION_XML)
923 || !yaz_matchstr(oid_name, OID_STR_HTML)))
925 print_record((const unsigned char *) octet_buf,
926 r->u.octet_aligned->len);
928 else if (oid_name && !yaz_matchstr(oid_name, OID_STR_POSTSCRIPT))
930 int size = r->u.octet_aligned->len;
933 print_record((const unsigned char *) octet_buf, size);
937 const int *oidsuffix = oid_oidlen(oid) > 1
938 ? oid + oid_oidlen(oid)-2 : 0;
940 #if AVOID_MARC_DECODE
941 /* primitive check for a marc OID 5.1-29 except 16 */
942 oidsuffix[0] == 5 && oidsuffix[1] < 30 && oidsuffix[1] != 16
951 yaz_marc_t mt = yaz_marc_create();
952 const char *from = 0;
954 if (marcCharset && !strcmp(marcCharset, "auto"))
956 if (!yaz_matchstr(oid_name, OID_STR_USMARC))
958 if (octet_buf[9] == 'a')
966 else if (marcCharset)
968 if (outputCharset && from)
970 cd = yaz_iconv_open(outputCharset, from);
971 printf ("convert from %s to %s", from,
974 printf (" unsupported\n");
977 yaz_marc_iconv(mt, cd);
982 if (yaz_marc_decode_buf(mt, octet_buf, r->u.octet_aligned->len,
985 fwrite (result, rlen, 1, stdout);
989 printf ("bad MARC. Dumping as it is:\n");
990 print_record((const unsigned char*) octet_buf,
991 r->u.octet_aligned->len);
993 yaz_marc_destroy(mt);
999 print_record((const unsigned char*) octet_buf,
1000 r->u.octet_aligned->len);
1004 fwrite (octet_buf, 1, r->u.octet_aligned->len, marc_file);
1006 else if (oid_name && !yaz_matchstr(oid_name, OID_STR_SUTRS))
1008 if (r->which != Z_External_sutrs)
1010 printf("Expecting single SUTRS type for SUTRS.\n");
1013 print_record(r->u.sutrs->buf, r->u.sutrs->len);
1015 fwrite (r->u.sutrs->buf, 1, r->u.sutrs->len, marc_file);
1017 else if (oid_name && !yaz_matchstr(oid_name, OID_STR_GRS1))
1020 if (r->which != Z_External_grs1)
1022 printf("Expecting single GRS type for GRS.\n");
1026 yaz_display_grs1(w, r->u.grs1, 0);
1027 puts (wrbuf_cstr(w));
1030 else if (oid_name && !yaz_matchstr(oid_name, OID_STR_OPAC))
1033 if (r->u.opac->bibliographicRecord)
1034 display_record(r->u.opac->bibliographicRecord);
1035 for (i = 0; i<r->u.opac->num_holdingsData; i++)
1037 Z_HoldingsRecord *h = r->u.opac->holdingsData[i];
1038 if (h->which == Z_HoldingsRecord_marcHoldingsRecord)
1040 printf ("MARC holdings %d\n", i);
1041 display_record(h->u.marcHoldingsRecord);
1043 else if (h->which == Z_HoldingsRecord_holdingsAndCirc)
1047 Z_HoldingsAndCircData *data = h->u.holdingsAndCirc;
1049 printf ("Data holdings %d\n", i);
1050 if (data->typeOfRecord)
1051 printf ("typeOfRecord: %s\n", data->typeOfRecord);
1052 if (data->encodingLevel)
1053 printf ("encodingLevel: %s\n", data->encodingLevel);
1054 if (data->receiptAcqStatus)
1055 printf ("receiptAcqStatus: %s\n", data->receiptAcqStatus);
1056 if (data->generalRetention)
1057 printf ("generalRetention: %s\n", data->generalRetention);
1058 if (data->completeness)
1059 printf ("completeness: %s\n", data->completeness);
1060 if (data->dateOfReport)
1061 printf ("dateOfReport: %s\n", data->dateOfReport);
1063 printf ("nucCode: %s\n", data->nucCode);
1064 if (data->localLocation)
1065 printf ("localLocation: %s\n", data->localLocation);
1066 if (data->shelvingLocation)
1067 printf ("shelvingLocation: %s\n", data->shelvingLocation);
1068 if (data->callNumber)
1069 printf ("callNumber: %s\n", data->callNumber);
1070 if (data->shelvingData)
1071 printf ("shelvingData: %s\n", data->shelvingData);
1072 if (data->copyNumber)
1073 printf ("copyNumber: %s\n", data->copyNumber);
1074 if (data->publicNote)
1075 printf ("publicNote: %s\n", data->publicNote);
1076 if (data->reproductionNote)
1077 printf ("reproductionNote: %s\n", data->reproductionNote);
1078 if (data->termsUseRepro)
1079 printf ("termsUseRepro: %s\n", data->termsUseRepro);
1080 if (data->enumAndChron)
1081 printf ("enumAndChron: %s\n", data->enumAndChron);
1082 for (j = 0; j<data->num_volumes; j++)
1084 printf ("volume %d\n", j);
1085 if (data->volumes[j]->enumeration)
1086 printf (" enumeration: %s\n",
1087 data->volumes[j]->enumeration);
1088 if (data->volumes[j]->chronology)
1089 printf (" chronology: %s\n",
1090 data->volumes[j]->chronology);
1091 if (data->volumes[j]->enumAndChron)
1092 printf (" enumAndChron: %s\n",
1093 data->volumes[j]->enumAndChron);
1095 for (j = 0; j<data->num_circulationData; j++)
1097 printf ("circulation %d\n", j);
1098 if (data->circulationData[j]->availableNow)
1099 printf (" availableNow: %d\n",
1100 *data->circulationData[j]->availableNow);
1101 if (data->circulationData[j]->availablityDate)
1102 printf (" availabiltyDate: %s\n",
1103 data->circulationData[j]->availablityDate);
1104 if (data->circulationData[j]->availableThru)
1105 printf (" availableThru: %s\n",
1106 data->circulationData[j]->availableThru);
1107 if (data->circulationData[j]->restrictions)
1108 printf (" restrictions: %s\n",
1109 data->circulationData[j]->restrictions);
1110 if (data->circulationData[j]->itemId)
1111 printf (" itemId: %s\n",
1112 data->circulationData[j]->itemId);
1113 if (data->circulationData[j]->renewable)
1114 printf (" renewable: %d\n",
1115 *data->circulationData[j]->renewable);
1116 if (data->circulationData[j]->onHold)
1117 printf (" onHold: %d\n",
1118 *data->circulationData[j]->onHold);
1119 if (data->circulationData[j]->enumAndChron)
1120 printf (" enumAndChron: %s\n",
1121 data->circulationData[j]->enumAndChron);
1122 if (data->circulationData[j]->midspine)
1123 printf (" midspine: %s\n",
1124 data->circulationData[j]->midspine);
1125 if (data->circulationData[j]->temporaryLocation)
1126 printf (" temporaryLocation: %s\n",
1127 data->circulationData[j]->temporaryLocation);
1134 printf("Unknown record representation.\n");
1135 if (!z_External(print, &r, 0, 0))
1137 odr_perror(print, "Printing external");
1143 static void display_diagrecs(Z_DiagRec **pp, int num)
1146 Z_DefaultDiagFormat *r;
1148 printf("Diagnostic message(s) from database:\n");
1149 for (i = 0; i<num; i++)
1151 Z_DiagRec *p = pp[i];
1152 if (p->which != Z_DiagRec_defaultFormat)
1154 printf("Diagnostic record not in default format.\n");
1158 r = p->u.defaultFormat;
1160 if (!r->diagnosticSetId)
1161 printf("Missing diagset\n");
1165 char diag_name_buf[OID_STR_MAX];
1166 const char *diag_name = 0;
1167 diag_name = yaz_oid_to_string_buf
1168 (r->diagnosticSetId, &oclass, diag_name_buf);
1169 if (yaz_matchstr(diag_name, OID_STR_BIB1))
1170 printf("Unknown diagset: %s\n", diag_name);
1172 printf(" [%d] %s", *r->condition, diagbib1_str(*r->condition));
1175 case Z_DefaultDiagFormat_v2Addinfo:
1176 printf (" -- v2 addinfo '%s'\n", r->u.v2Addinfo);
1178 case Z_DefaultDiagFormat_v3Addinfo:
1179 printf (" -- v3 addinfo '%s'\n", r->u.v3Addinfo);
1186 static void display_nameplusrecord(Z_NamePlusRecord *p)
1188 if (p->databaseName)
1189 printf("[%s]", p->databaseName);
1190 if (p->which == Z_NamePlusRecord_surrogateDiagnostic)
1191 display_diagrecs(&p->u.surrogateDiagnostic, 1);
1192 else if (p->which == Z_NamePlusRecord_databaseRecord)
1193 display_record(p->u.databaseRecord);
1196 static void display_records(Z_Records *p)
1200 if (p->which == Z_Records_NSD)
1202 Z_DiagRec dr, *dr_p = &dr;
1203 dr.which = Z_DiagRec_defaultFormat;
1204 dr.u.defaultFormat = p->u.nonSurrogateDiagnostic;
1205 display_diagrecs (&dr_p, 1);
1207 else if (p->which == Z_Records_multipleNSD)
1208 display_diagrecs (p->u.multipleNonSurDiagnostics->diagRecs,
1209 p->u.multipleNonSurDiagnostics->num_diagRecs);
1212 printf("Records: %d\n", p->u.databaseOrSurDiagnostics->num_records);
1213 for (i = 0; i < p->u.databaseOrSurDiagnostics->num_records; i++)
1214 display_nameplusrecord(p->u.databaseOrSurDiagnostics->records[i]);
1218 static int send_deleteResultSetRequest(const char *arg)
1223 Z_APDU *apdu = zget_APDU(out, Z_APDU_deleteResultSetRequest);
1224 Z_DeleteResultSetRequest *req = apdu->u.deleteResultSetRequest;
1226 req->referenceId = set_refid (out);
1228 req->num_resultSetList =
1229 sscanf (arg, "%30s %30s %30s %30s %30s %30s %30s %30s",
1230 names[0], names[1], names[2], names[3],
1231 names[4], names[5], names[6], names[7]);
1233 req->deleteFunction = (int *)
1234 odr_malloc (out, sizeof(*req->deleteFunction));
1235 if (req->num_resultSetList > 0)
1237 *req->deleteFunction = Z_DeleteResultSetRequest_list;
1238 req->resultSetList = (char **)
1239 odr_malloc (out, sizeof(*req->resultSetList)*
1240 req->num_resultSetList);
1241 for (i = 0; i<req->num_resultSetList; i++)
1242 req->resultSetList[i] = names[i];
1246 *req->deleteFunction = Z_DeleteResultSetRequest_all;
1247 req->resultSetList = 0;
1251 printf("Sent deleteResultSetRequest.\n");
1256 static int send_srw(Z_SRW_PDU *sr)
1258 const char *charset = negotiationCharset;
1259 const char *host_port = cur_host;
1263 path = odr_malloc(out, 2+strlen(databaseNames[0]));
1265 strcpy(path+1, databaseNames[0]);
1267 gdu = z_get_HTTP_Request_host_path(out, host_port, path);
1269 if (!strcmp(sru_method, "get"))
1271 yaz_sru_get_encode(gdu->u.HTTP_Request, sr, out, charset);
1273 else if (!strcmp(sru_method, "post"))
1275 yaz_sru_post_encode(gdu->u.HTTP_Request, sr, out, charset);
1277 else if (!strcmp(sru_method, "soap"))
1279 yaz_sru_soap_encode(gdu->u.HTTP_Request, sr, out, charset);
1282 if (z_GDU(out, &gdu, 0, 0))
1290 if (!z_GDU(print, &gdu, 0, 0))
1291 printf ("Failed to print outgoing SRU package\n");
1294 buf_out = odr_getbuf(out, &len_out, 0);
1296 /* we don't odr_reset(out), since we may need the buffer again */
1298 do_hex_dump(buf_out, len_out);
1300 r = cs_put(conn, buf_out, len_out);
1310 static char *encode_SRW_term(ODR o, const char *q)
1312 const char *in_charset = "ISO-8859-1";
1313 WRBUF w = wrbuf_alloc();
1317 in_charset = outputCharset;
1318 cd = yaz_iconv_open("UTF-8", in_charset);
1322 return odr_strdup(o, q);
1324 wrbuf_iconv_write(w, cd, q, strlen(q));
1326 res = odr_strdup(o, wrbuf_cstr(w));
1328 res = odr_strdup(o, q);
1329 yaz_iconv_close(cd);
1335 static int send_SRW_scanRequest(const char *arg, int pos, int num)
1339 /* regular requestse .. */
1340 sr = yaz_srw_get(out, Z_SRW_scan_request);
1345 sr->u.scan_request->query_type = Z_SRW_query_type_cql;
1346 sr->u.scan_request->scanClause.cql = encode_SRW_term(out, arg);
1348 case QueryType_Prefix:
1349 sr->u.scan_request->query_type = Z_SRW_query_type_pqf;
1350 sr->u.scan_request->scanClause.pqf = encode_SRW_term(out, arg);
1353 printf ("Only CQL and PQF supported in SRW\n");
1356 sr->u.scan_request->responsePosition = odr_intdup(out, pos);
1357 sr->u.scan_request->maximumTerms = odr_intdup(out, num);
1358 return send_srw(sr);
1361 static int send_SRW_searchRequest(const char *arg)
1367 assert(srw_sr_odr_out == 0);
1368 srw_sr_odr_out = odr_createmem(ODR_ENCODE);
1370 odr_reset(srw_sr_odr_out);
1374 /* save this for later .. when fetching individual records */
1375 srw_sr = yaz_srw_get(srw_sr_odr_out, Z_SRW_searchRetrieve_request);
1377 /* regular request .. */
1378 sr = yaz_srw_get(out, Z_SRW_searchRetrieve_request);
1383 srw_sr->u.request->query_type = Z_SRW_query_type_cql;
1384 srw_sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1386 sr->u.request->query_type = Z_SRW_query_type_cql;
1387 sr->u.request->query.cql = encode_SRW_term(srw_sr_odr_out, arg);
1389 case QueryType_Prefix:
1390 srw_sr->u.request->query_type = Z_SRW_query_type_pqf;
1391 srw_sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1393 sr->u.request->query_type = Z_SRW_query_type_pqf;
1394 sr->u.request->query.pqf = encode_SRW_term(srw_sr_odr_out, arg);
1397 printf ("Only CQL and PQF supported in SRW\n");
1400 sr->u.request->maximumRecords = odr_intdup(out, 0);
1403 sr->u.request->recordSchema = record_schema;
1404 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
1405 sr->u.request->recordPacking = "xml";
1406 return send_srw(sr);
1410 static int send_searchRequest(const char *arg)
1412 Z_APDU *apdu = zget_APDU(out, Z_APDU_searchRequest);
1413 Z_SearchRequest *req = apdu->u.searchRequest;
1415 struct ccl_rpn_node *rpn = NULL;
1417 char setstring[100];
1418 Z_RPNQuery *RPNquery;
1420 YAZ_PQF_Parser pqf_parser;
1422 QueryType myQueryType = queryType;
1425 if (myQueryType == QueryType_CCL2RPN)
1427 rpn = ccl_find_str(bibset, arg, &error, &pos);
1430 printf("CCL ERROR: %s\n", ccl_err_msg(error));
1433 } else if (myQueryType == QueryType_CQL2RPN) {
1434 /* ### All this code should be wrapped in a utility function */
1436 struct cql_node *node;
1437 const char *addinfo;
1438 if (cqltrans == 0) {
1439 printf("Can't use CQL: no translation file. Try set_cqlfile\n");
1442 parser = cql_parser_create();
1443 if ((error = cql_parser_string(parser, arg)) != 0) {
1444 printf("Can't parse CQL: must be a syntax error\n");
1447 node = cql_parser_result(parser);
1448 if ((error = cql_transform_buf(cqltrans, node, pqfbuf,
1449 sizeof pqfbuf)) != 0) {
1450 error = cql_transform_error(cqltrans, &addinfo);
1451 printf ("Can't convert CQL to PQF: %s (addinfo=%s)\n",
1452 cql_strerror(error), addinfo);
1456 myQueryType = QueryType_Prefix;
1459 req->referenceId = set_refid (out);
1460 if (!strcmp(arg, "@big")) /* strictly for troublemaking */
1462 static unsigned char big[2100];
1463 static Odr_oct bigo;
1465 /* send a very big referenceid to test transport stack etc. */
1466 memset(big, 'A', 2100);
1467 bigo.len = bigo.size = 2100;
1469 req->referenceId = &bigo;
1474 sprintf(setstring, "%d", ++setnumber);
1475 req->resultSetName = setstring;
1477 *req->smallSetUpperBound = smallSetUpperBound;
1478 *req->largeSetLowerBound = largeSetLowerBound;
1479 *req->mediumSetPresentNumber = mediumSetPresentNumber;
1480 if (smallSetUpperBound > 0 || (largeSetLowerBound > 1 &&
1481 mediumSetPresentNumber > 0))
1483 if (recordsyntax_size)
1484 req->preferredRecordSyntax =
1485 yaz_string_to_oid_odr(yaz_oid_std(),
1486 CLASS_RECSYN, recordsyntax_list[0], out);
1488 req->smallSetElementSetNames =
1489 req->mediumSetElementSetNames = elementSetNames;
1491 req->num_databaseNames = num_databaseNames;
1492 req->databaseNames = databaseNames;
1494 req->query = &query;
1496 switch (myQueryType)
1498 case QueryType_Prefix:
1499 query.which = Z_Query_type_1;
1500 pqf_parser = yaz_pqf_create ();
1501 RPNquery = yaz_pqf_parse (pqf_parser, out, arg);
1504 const char *pqf_msg;
1506 int code = yaz_pqf_error (pqf_parser, &pqf_msg, &off);
1508 printf("%*s^\n", ioff+4, "");
1509 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
1511 yaz_pqf_destroy (pqf_parser);
1514 yaz_pqf_destroy (pqf_parser);
1515 query.u.type_1 = RPNquery;
1518 query.which = Z_Query_type_2;
1519 query.u.type_2 = &ccl_query;
1520 ccl_query.buf = (unsigned char*) arg;
1521 ccl_query.len = strlen(arg);
1523 case QueryType_CCL2RPN:
1524 query.which = Z_Query_type_1;
1525 RPNquery = ccl_rpn_query(out, rpn);
1528 printf ("Couldn't convert from CCL to RPN\n");
1531 query.u.type_1 = RPNquery;
1532 ccl_rpn_delete (rpn);
1535 query.which = Z_Query_type_104;
1536 ext = (Z_External *) odr_malloc(out, sizeof(*ext));
1537 ext->direct_reference = odr_getoidbystr(out, "1.2.840.10003.16.2");
1538 ext->indirect_reference = 0;
1539 ext->descriptor = 0;
1540 ext->which = Z_External_CQL;
1541 ext->u.cql = odr_strdup(out, arg);
1542 query.u.type_104 = ext;
1545 printf ("Unsupported query type\n");
1548 if (send_apdu(apdu))
1549 printf("Sent searchRequest.\n");
1554 /* display Query Expression as part of searchResult-1 */
1555 static void display_queryExpression (const char *lead, Z_QueryExpression *qe)
1559 printf(" %s=", lead);
1560 if (qe->which == Z_QueryExpression_term)
1562 if (qe->u.term->queryTerm)
1564 Z_Term *term = qe->u.term->queryTerm;
1565 switch (term->which)
1567 case Z_Term_general:
1568 printf ("%.*s", term->u.general->len, term->u.general->buf);
1570 case Z_Term_characterString:
1571 printf ("%s", term->u.characterString);
1573 case Z_Term_numeric:
1574 printf ("%d", *term->u.numeric);
1584 /* see if we can find USR:SearchResult-1 */
1585 static void display_searchResult (Z_OtherInformation *o)
1590 for (i = 0; i < o->num_elements; i++)
1592 if (o->list[i]->which == Z_OtherInfo_externallyDefinedInfo)
1594 Z_External *ext = o->list[i]->information.externallyDefinedInfo;
1596 if (ext->which == Z_External_searchResult1)
1599 Z_SearchInfoReport *sr = ext->u.searchResult1;
1600 printf ("SearchResult-1:");
1601 for (j = 0; j < sr->num; j++)
1605 if (!sr->elements[j]->subqueryExpression)
1607 display_queryExpression("term",
1608 sr->elements[j]->subqueryExpression);
1609 display_queryExpression("interpretation",
1610 sr->elements[j]->subqueryInterpretation);
1611 display_queryExpression("recommendation",
1612 sr->elements[j]->subqueryRecommendation);
1613 if (sr->elements[j]->subqueryCount)
1614 printf(" cnt=%d", *sr->elements[j]->subqueryCount);
1615 if (sr->elements[j]->subqueryId)
1616 printf(" id=%s ", sr->elements[j]->subqueryId);
1624 static int process_searchResponse(Z_SearchResponse *res)
1626 printf ("Received SearchResponse.\n");
1627 print_refid (res->referenceId);
1628 if (*res->searchStatus)
1629 printf("Search was a success.\n");
1631 printf("Search was a bloomin' failure.\n");
1632 printf("Number of hits: %d", *res->resultCount);
1633 last_hit_count = *res->resultCount;
1635 printf (", setno %d", setnumber);
1637 if (res->resultSetStatus)
1639 printf("Result Set Status: ");
1640 switch(*res->resultSetStatus)
1642 case Z_SearchResponse_subset:
1643 printf("subset"); break;
1644 case Z_SearchResponse_interim:
1645 printf("interim"); break;
1646 case Z_SearchResponse_none:
1647 printf("none"); break;
1648 case Z_SearchResponse_estimate:
1649 printf("estimate"); break;
1651 printf("%d", *res->resultSetStatus);
1655 display_searchResult (res->additionalSearchInfo);
1656 printf("records returned: %d\n",
1657 *res->numberOfRecordsReturned);
1658 setno += *res->numberOfRecordsReturned;
1660 display_records(res->records);
1664 static void print_level(int iLevel)
1667 for (i = 0; i < iLevel * 4; i++)
1671 static void print_int(int iLevel, const char *pTag, int *pInt)
1675 print_level(iLevel);
1676 printf("%s: %d\n", pTag, *pInt);
1680 static void print_string(int iLevel, const char *pTag, const char *pString)
1682 if (pString != NULL)
1684 print_level(iLevel);
1685 printf("%s: %s\n", pTag, pString);
1689 static void print_oid(int iLevel, const char *pTag, Odr_oid *pOid)
1695 print_level(iLevel);
1696 printf("%s:", pTag);
1697 for (; *pInt != -1; pInt++)
1698 printf(" %d", *pInt);
1703 static void print_referenceId(int iLevel, Z_ReferenceId *referenceId)
1705 if (referenceId != NULL)
1709 print_level(iLevel);
1710 printf("Ref Id (%d, %d): ", referenceId->len, referenceId->size);
1711 for (i = 0; i < referenceId->len; i++)
1712 printf("%c", referenceId->buf[i]);
1717 static void print_string_or_numeric(int iLevel, const char *pTag, Z_StringOrNumeric *pStringNumeric)
1719 if (pStringNumeric != NULL)
1721 switch (pStringNumeric->which)
1723 case Z_StringOrNumeric_string:
1724 print_string(iLevel, pTag, pStringNumeric->u.string);
1727 case Z_StringOrNumeric_numeric:
1728 print_int(iLevel, pTag, pStringNumeric->u.numeric);
1732 print_level(iLevel);
1733 printf("%s: valid type for Z_StringOrNumeric\n", pTag);
1739 static void print_universe_report_duplicate(
1741 Z_UniverseReportDuplicate *pUniverseReportDuplicate)
1743 if (pUniverseReportDuplicate != NULL)
1745 print_level(iLevel);
1746 printf("Universe Report Duplicate: \n");
1748 print_string_or_numeric(iLevel, "Hit No",
1749 pUniverseReportDuplicate->hitno);
1753 static void print_universe_report_hits(
1755 Z_UniverseReportHits *pUniverseReportHits)
1757 if (pUniverseReportHits != NULL)
1759 print_level(iLevel);
1760 printf("Universe Report Hits: \n");
1762 print_string_or_numeric(iLevel, "Database",
1763 pUniverseReportHits->database);
1764 print_string_or_numeric(iLevel, "Hits", pUniverseReportHits->hits);
1768 static void print_universe_report(int iLevel, Z_UniverseReport *pUniverseReport)
1770 if (pUniverseReport != NULL)
1772 print_level(iLevel);
1773 printf("Universe Report: \n");
1775 print_int(iLevel, "Total Hits", pUniverseReport->totalHits);
1776 switch (pUniverseReport->which)
1778 case Z_UniverseReport_databaseHits:
1779 print_universe_report_hits(iLevel,
1780 pUniverseReport->u.databaseHits);
1783 case Z_UniverseReport_duplicate:
1784 print_universe_report_duplicate(iLevel,
1785 pUniverseReport->u.duplicate);
1789 print_level(iLevel);
1790 printf("Type: %d\n", pUniverseReport->which);
1796 static void print_external(int iLevel, Z_External *pExternal)
1798 if (pExternal != NULL)
1800 print_level(iLevel);
1801 printf("External: \n");
1803 print_oid(iLevel, "Direct Reference", pExternal->direct_reference);
1804 print_int(iLevel, "InDirect Reference", pExternal->indirect_reference);
1805 print_string(iLevel, "Descriptor", pExternal->descriptor);
1806 switch (pExternal->which)
1808 case Z_External_universeReport:
1809 print_universe_report(iLevel, pExternal->u.universeReport);
1813 print_level(iLevel);
1814 printf("Type: %d\n", pExternal->which);
1820 static int process_resourceControlRequest (Z_ResourceControlRequest *req)
1822 printf ("Received ResourceControlRequest.\n");
1823 print_referenceId(1, req->referenceId);
1824 print_int(1, "Suspended Flag", req->suspendedFlag);
1825 print_int(1, "Partial Results Available", req->partialResultsAvailable);
1826 print_int(1, "Response Required", req->responseRequired);
1827 print_int(1, "Triggered Request Flag", req->triggeredRequestFlag);
1828 print_external(1, req->resourceReport);
1832 void process_ESResponse(Z_ExtendedServicesResponse *res)
1835 switch (*res->operationStatus)
1837 case Z_ExtendedServicesResponse_done:
1840 case Z_ExtendedServicesResponse_accepted:
1841 printf ("accepted\n");
1843 case Z_ExtendedServicesResponse_failure:
1844 printf ("failure\n");
1845 display_diagrecs(res->diagnostics, res->num_diagnostics);
1848 printf ("unknown\n");
1850 if ( (*res->operationStatus != Z_ExtendedServicesResponse_failure) &&
1851 (res->num_diagnostics != 0) ) {
1852 display_diagrecs(res->diagnostics, res->num_diagnostics);
1854 print_refid (res->referenceId);
1855 if (res->taskPackage &&
1856 res->taskPackage->which == Z_External_extendedService)
1858 Z_TaskPackage *taskPackage = res->taskPackage->u.extendedService;
1859 Odr_oct *id = taskPackage->targetReference;
1860 Z_External *ext = taskPackage->taskSpecificParameters;
1864 printf ("Target Reference: ");
1865 print_stringn (id->buf, id->len);
1868 if (ext->which == Z_External_update)
1870 Z_IUUpdateTaskPackage *utp = ext->u.update->u.taskPackage;
1871 if (utp && utp->targetPart)
1873 Z_IUTargetPart *targetPart = utp->targetPart;
1876 for (i = 0; i<targetPart->num_taskPackageRecords; i++)
1879 Z_IUTaskPackageRecordStructure *tpr =
1880 targetPart->taskPackageRecords[i];
1881 printf ("task package record %d\n", i+1);
1882 if (tpr->which == Z_IUTaskPackageRecordStructure_record)
1884 display_record (tpr->u.record);
1888 printf ("other type\n");
1894 if (res->taskPackage && res->taskPackage->which == Z_External_octet)
1896 Odr_oct *doc = res->taskPackage->u.octet_aligned;
1897 printf("%.*s\n", doc->len, doc->buf);
1901 const char *get_ill_element (void *clientData, const char *element)
1906 static Z_External *create_external_itemRequest(void)
1908 struct ill_get_ctl ctl;
1909 ILL_ItemRequest *req;
1911 int item_request_size = 0;
1912 char *item_request_buf = 0;
1916 ctl.f = get_ill_element;
1918 req = ill_get_ItemRequest(&ctl, "ill", 0);
1920 printf ("ill_get_ItemRequest failed\n");
1922 if (!ill_ItemRequest (out, &req, 0, 0))
1926 ill_ItemRequest(print, &req, 0, 0);
1929 item_request_buf = odr_getbuf (out, &item_request_size, 0);
1930 if (item_request_buf)
1931 odr_setbuf (out, item_request_buf, item_request_size, 1);
1932 printf ("Couldn't encode ItemRequest, size %d\n", item_request_size);
1937 const int *ill_oid = yaz_string_to_oid(yaz_oid_std(),
1938 CLASS_GENERAL, "ISOILL-1");
1939 r = (Z_External *) odr_malloc (out, sizeof(*r));
1940 r->direct_reference = odr_oiddup(out, ill_oid);
1941 r->indirect_reference = 0;
1943 r->which = Z_External_single;
1945 r->u.single_ASN1_type = (Odr_oct *)
1946 odr_malloc (out, sizeof(*r->u.single_ASN1_type));
1947 r->u.single_ASN1_type->buf = (unsigned char *)
1948 odr_malloc (out, item_request_size);
1949 r->u.single_ASN1_type->len = item_request_size;
1950 r->u.single_ASN1_type->size = item_request_size;
1951 memcpy (r->u.single_ASN1_type->buf, item_request_buf,
1954 do_hex_dump(item_request_buf,item_request_size);
1959 static Z_External *create_external_ILL_APDU(int which)
1961 struct ill_get_ctl ctl;
1964 int ill_request_size = 0;
1965 char *ill_request_buf = 0;
1969 ctl.f = get_ill_element;
1971 ill_apdu = ill_get_APDU(&ctl, "ill", 0);
1973 if (!ill_APDU (out, &ill_apdu, 0, 0))
1977 printf ("-------------------\n");
1978 ill_APDU(print, &ill_apdu, 0, 0);
1980 printf ("-------------------\n");
1982 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
1983 if (ill_request_buf)
1984 odr_setbuf (out, ill_request_buf, ill_request_size, 1);
1985 printf ("Couldn't encode ILL-Request, size %d\n", ill_request_size);
1990 const int *ill_oid = yaz_string_to_oid(yaz_oid_std(),
1991 CLASS_GENERAL, "ISOILL-1");
1993 ill_request_buf = odr_getbuf (out, &ill_request_size, 0);
1995 r = (Z_External *) odr_malloc (out, sizeof(*r));
1996 r->direct_reference = odr_oiddup(out, ill_oid);
1997 r->indirect_reference = 0;
1999 r->which = Z_External_single;
2001 r->u.single_ASN1_type = (Odr_oct *)
2002 odr_malloc (out, sizeof(*r->u.single_ASN1_type));
2003 r->u.single_ASN1_type->buf = (unsigned char *)
2004 odr_malloc (out, ill_request_size);
2005 r->u.single_ASN1_type->len = ill_request_size;
2006 r->u.single_ASN1_type->size = ill_request_size;
2007 memcpy (r->u.single_ASN1_type->buf, ill_request_buf, ill_request_size);
2008 /* printf ("len = %d\n", ill_request_size); */
2009 /* do_hex_dump(ill_request_buf,ill_request_size); */
2010 /* printf("--- end of extenal\n"); */
2017 static Z_External *create_ItemOrderExternal(const char *type, int itemno)
2019 Z_External *r = (Z_External *) odr_malloc(out, sizeof(Z_External));
2020 const int *itemorder_oid = yaz_string_to_oid(yaz_oid_std(),
2023 r->direct_reference = odr_oiddup(out, itemorder_oid);
2024 r->indirect_reference = 0;
2027 r->which = Z_External_itemOrder;
2029 r->u.itemOrder = (Z_ItemOrder *) odr_malloc(out,sizeof(Z_ItemOrder));
2030 memset(r->u.itemOrder, 0, sizeof(Z_ItemOrder));
2031 r->u.itemOrder->which=Z_IOItemOrder_esRequest;
2033 r->u.itemOrder->u.esRequest = (Z_IORequest *)
2034 odr_malloc(out,sizeof(Z_IORequest));
2035 memset(r->u.itemOrder->u.esRequest, 0, sizeof(Z_IORequest));
2037 r->u.itemOrder->u.esRequest->toKeep = (Z_IOOriginPartToKeep *)
2038 odr_malloc(out,sizeof(Z_IOOriginPartToKeep));
2039 memset(r->u.itemOrder->u.esRequest->toKeep, 0, sizeof(Z_IOOriginPartToKeep));
2040 r->u.itemOrder->u.esRequest->notToKeep = (Z_IOOriginPartNotToKeep *)
2041 odr_malloc(out,sizeof(Z_IOOriginPartNotToKeep));
2042 memset(r->u.itemOrder->u.esRequest->notToKeep, 0, sizeof(Z_IOOriginPartNotToKeep));
2044 r->u.itemOrder->u.esRequest->toKeep->supplDescription = NULL;
2045 r->u.itemOrder->u.esRequest->toKeep->contact = NULL;
2046 r->u.itemOrder->u.esRequest->toKeep->addlBilling = NULL;
2048 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem =
2049 (Z_IOResultSetItem *) odr_malloc(out, sizeof(Z_IOResultSetItem));
2050 memset(r->u.itemOrder->u.esRequest->notToKeep->resultSetItem, 0, sizeof(Z_IOResultSetItem));
2051 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->resultSetId = "1";
2053 r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item =
2054 (int *) odr_malloc(out, sizeof(int));
2055 *r->u.itemOrder->u.esRequest->notToKeep->resultSetItem->item = itemno;
2057 if (!strcmp (type, "item") || !strcmp(type, "2"))
2059 printf ("using item-request\n");
2060 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2061 create_external_itemRequest();
2063 else if (!strcmp(type, "ill") || !strcmp(type, "1"))
2065 printf ("using ILL-request\n");
2066 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2067 create_external_ILL_APDU(ILL_APDU_ILL_Request);
2069 else if (!strcmp(type, "xml") || !strcmp(type, "3"))
2071 const int *oid_xml = yaz_string_to_oid(yaz_oid_std(),
2072 CLASS_RECSYN, "xml");
2073 const char *xml_buf =
2075 " <type>request</type>\n"
2076 " <libraryNo>000200</libraryNo>\n"
2077 " <borrowerTicketNo> 1212 </borrowerTicketNo>\n"
2079 r->u.itemOrder->u.esRequest->notToKeep->itemRequest =
2080 z_ext_record_oid(out, oid_xml, xml_buf, strlen(xml_buf));
2083 r->u.itemOrder->u.esRequest->notToKeep->itemRequest = 0;
2088 static int send_itemorder(const char *type, int itemno)
2090 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2091 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2093 const int *itemorder_oid = yaz_string_to_oid(yaz_oid_std(),
2096 req->referenceId = set_refid (out);
2098 req->packageType = odr_oiddup(out, itemorder_oid);
2099 req->packageName = esPackageName;
2101 req->taskSpecificParameters = create_ItemOrderExternal(type, itemno);
2107 static int only_z3950(void)
2111 printf ("Not connected yet\n");
2114 if (protocol == PROTO_HTTP)
2116 printf ("Not supported by SRW\n");
2122 static int cmd_update_common(const char *arg, int version);
2124 static int cmd_update(const char *arg)
2126 return cmd_update_common(arg, 1);
2129 static int cmd_update0(const char *arg)
2131 return cmd_update_common(arg, 0);
2134 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2135 char *rec_buf, int rec_len);
2137 static int cmd_update_SRW(int action_no, const char *recid,
2138 char *rec_buf, int rec_len);
2140 static int cmd_update_common(const char *arg, int version)
2142 char action[20], recid_buf[20];
2143 const char *recid = 0;
2151 sscanf (arg, "%19s %19s%n", action, recid_buf, &noread);
2154 printf("Use: update action recid [fname]\n");
2155 printf(" where action is one of insert,replace,delete.update\n");
2156 printf(" recid is some record ID. Use none for no ID\n");
2157 printf(" fname is file of record to be updated\n");
2161 if (!strcmp (action, "insert"))
2162 action_no = Z_IUOriginPartToKeep_recordInsert;
2163 else if (!strcmp (action, "replace"))
2164 action_no = Z_IUOriginPartToKeep_recordReplace;
2165 else if (!strcmp (action, "delete"))
2166 action_no = Z_IUOriginPartToKeep_recordDelete;
2167 else if (!strcmp (action, "update"))
2168 action_no = Z_IUOriginPartToKeep_specialUpdate;
2171 printf ("Bad action: %s\n", action);
2172 printf ("Possible values: insert, replace, delete, update\n");
2176 if (strcmp(recid_buf, "none")) /* none means no record ID */
2180 if (parse_cmd_doc(&arg, out, &rec_buf, &rec_len, 1) == 0)
2184 if (protocol == PROTO_HTTP)
2185 return cmd_update_SRW(action_no, recid, rec_buf, rec_len);
2187 return cmd_update_Z3950(version, action_no, recid, rec_buf, rec_len);
2191 static int cmd_update_SRW(int action_no, const char *recid,
2192 char *rec_buf, int rec_len)
2200 Z_SRW_PDU *srw = yaz_srw_get(out, Z_SRW_update_request);
2201 Z_SRW_updateRequest *sr = srw->u.update_request;
2205 case Z_IUOriginPartToKeep_recordInsert:
2206 sr->operation = "info:srw/action/1/create";
2208 case Z_IUOriginPartToKeep_recordReplace:
2209 sr->operation = "info:srw/action/1/replace";
2211 case Z_IUOriginPartToKeep_recordDelete:
2212 sr->operation = "info:srw/action/1/delete";
2217 sr->record = yaz_srw_get_record(out);
2218 sr->record->recordData_buf = rec_buf;
2219 sr->record->recordData_len = rec_len;
2220 sr->record->recordSchema = record_schema;
2223 sr->recordId = odr_strdup(out, recid);
2224 return send_srw(srw);
2229 static int cmd_update_Z3950(int version, int action_no, const char *recid,
2230 char *rec_buf, int rec_len)
2232 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest );
2233 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2235 Z_External *record_this = 0;
2236 const int *oid_xml = yaz_string_to_oid(yaz_oid_std(),
2237 CLASS_RECSYN, "xml");
2240 record_this = z_ext_record_oid(out, oid_xml, rec_buf, rec_len);
2245 printf ("No last record (update ignored)\n");
2248 record_this = record_last;
2252 yaz_string_to_oid_odr(yaz_oid_std(),
2254 version == 0 ? "DB. Update (first version)" :
2256 req->packageName = esPackageName;
2258 req->referenceId = set_refid (out);
2260 r = req->taskSpecificParameters = (Z_External *)
2261 odr_malloc (out, sizeof(*r));
2262 r->direct_reference = req->packageType;
2263 r->indirect_reference = 0;
2267 Z_IU0OriginPartToKeep *toKeep;
2268 Z_IU0SuppliedRecords *notToKeep;
2270 r->which = Z_External_update0;
2271 r->u.update0 = (Z_IU0Update *) odr_malloc(out, sizeof(*r->u.update0));
2272 r->u.update0->which = Z_IUUpdate_esRequest;
2273 r->u.update0->u.esRequest = (Z_IU0UpdateEsRequest *)
2274 odr_malloc(out, sizeof(*r->u.update0->u.esRequest));
2275 toKeep = r->u.update0->u.esRequest->toKeep = (Z_IU0OriginPartToKeep *)
2276 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->toKeep));
2278 toKeep->databaseName = databaseNames[0];
2280 toKeep->elementSetName = 0;
2282 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2283 *toKeep->action = action_no;
2285 notToKeep = r->u.update0->u.esRequest->notToKeep = (Z_IU0SuppliedRecords *)
2286 odr_malloc(out, sizeof(*r->u.update0->u.esRequest->notToKeep));
2288 notToKeep->elements = (Z_IU0SuppliedRecords_elem **)
2289 odr_malloc(out, sizeof(*notToKeep->elements));
2290 notToKeep->elements[0] = (Z_IU0SuppliedRecords_elem *)
2291 odr_malloc(out, sizeof(**notToKeep->elements));
2292 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2295 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2296 odr_malloc (out, sizeof(Odr_oct));
2297 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2298 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2299 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2302 notToKeep->elements[0]->u.opaque = 0;
2303 notToKeep->elements[0]->supplementalId = 0;
2304 notToKeep->elements[0]->correlationInfo = 0;
2305 notToKeep->elements[0]->record = record_this;
2309 Z_IUOriginPartToKeep *toKeep;
2310 Z_IUSuppliedRecords *notToKeep;
2312 r->which = Z_External_update;
2313 r->u.update = (Z_IUUpdate *) odr_malloc(out, sizeof(*r->u.update));
2314 r->u.update->which = Z_IUUpdate_esRequest;
2315 r->u.update->u.esRequest = (Z_IUUpdateEsRequest *)
2316 odr_malloc(out, sizeof(*r->u.update->u.esRequest));
2317 toKeep = r->u.update->u.esRequest->toKeep = (Z_IUOriginPartToKeep *)
2318 odr_malloc(out, sizeof(*r->u.update->u.esRequest->toKeep));
2320 toKeep->databaseName = databaseNames[0];
2322 toKeep->elementSetName = 0;
2323 toKeep->actionQualifier = 0;
2324 toKeep->action = (int *) odr_malloc(out, sizeof(*toKeep->action));
2325 *toKeep->action = action_no;
2327 notToKeep = r->u.update->u.esRequest->notToKeep = (Z_IUSuppliedRecords *)
2328 odr_malloc(out, sizeof(*r->u.update->u.esRequest->notToKeep));
2330 notToKeep->elements = (Z_IUSuppliedRecords_elem **)
2331 odr_malloc(out, sizeof(*notToKeep->elements));
2332 notToKeep->elements[0] = (Z_IUSuppliedRecords_elem *)
2333 odr_malloc(out, sizeof(**notToKeep->elements));
2334 notToKeep->elements[0]->which = Z_IUSuppliedRecords_elem_opaque;
2337 notToKeep->elements[0]->u.opaque = (Odr_oct *)
2338 odr_malloc (out, sizeof(Odr_oct));
2339 notToKeep->elements[0]->u.opaque->buf = (unsigned char *) recid;
2340 notToKeep->elements[0]->u.opaque->size = strlen(recid);
2341 notToKeep->elements[0]->u.opaque->len = strlen(recid);
2344 notToKeep->elements[0]->u.opaque = 0;
2345 notToKeep->elements[0]->supplementalId = 0;
2346 notToKeep->elements[0]->correlationInfo = 0;
2347 notToKeep->elements[0]->record = record_this;
2355 static int cmd_xmles(const char *arg)
2365 Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest);
2366 Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest;
2369 Z_External *ext = (Z_External *) odr_malloc(out, sizeof(*ext));
2371 req->referenceId = set_refid (out);
2372 req->taskSpecificParameters = ext;
2373 ext->indirect_reference = 0;
2374 ext->descriptor = 0;
2375 ext->which = Z_External_octet;
2376 ext->u.single_ASN1_type = (Odr_oct *) odr_malloc (out, sizeof(Odr_oct));
2377 sscanf(arg, "%50s%n", oid_str, &noread);
2380 printf("Missing OID for xmles\n");
2384 if (parse_cmd_doc(&arg, out, &asn_buf,
2385 &ext->u.single_ASN1_type->len, 0) == 0)
2388 ext->u.single_ASN1_type->buf = (unsigned char *) asn_buf;
2390 oid = yaz_string_to_oid_odr(yaz_oid_std(),
2391 CLASS_EXTSERV, oid_str, out);
2394 printf("Bad OID: %s\n", oid_str);
2398 req->packageType = oid;
2400 ext->direct_reference = oid;
2408 static int cmd_itemorder(const char *arg)
2415 if (sscanf (arg, "%10s %d", type, &itemno) != 2)
2418 printf("Item order request\n");
2420 send_itemorder(type, itemno);
2424 static void show_opt(const char *arg, void *clientData)
2426 printf ("%s ", arg);
2429 static int cmd_zversion(const char *arg)
2432 z3950_version = atoi(arg);
2434 printf ("version is %d\n", z3950_version);
2438 static int cmd_options(const char *arg)
2444 r = yaz_init_opt_encode(&z3950_options, arg, &pos);
2446 printf("Unknown option(s) near %s\n", arg+pos);
2450 yaz_init_opt_decode(&z3950_options, show_opt, 0);
2456 static int cmd_explain(const char *arg)
2458 if (protocol != PROTO_HTTP)
2469 /* save this for later .. when fetching individual records */
2470 sr = yaz_srw_get(out, Z_SRW_explain_request);
2471 if (recordsyntax_size == 1
2472 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2473 sr->u.explain_request->recordPacking = "xml";
2481 static int cmd_init(const char *arg)
2485 strncpy (cur_host, arg, sizeof(cur_host)-1);
2486 cur_host[sizeof(cur_host)-1] = 0;
2490 send_initRequest(cur_host);
2494 static int cmd_sru(const char *arg)
2498 printf("SRU method is: %s\n", sru_method);
2502 if (!yaz_matchstr(arg, "post"))
2503 sru_method = "post";
2504 else if (!yaz_matchstr(arg, "get"))
2506 else if (!yaz_matchstr(arg, "soap"))
2507 sru_method = "soap";
2510 printf("Unknown SRU method: %s\n", arg);
2511 printf("Specify one of POST, GET, SOAP\n");
2517 static int cmd_find(const char *arg)
2521 printf("Find what?\n");
2524 if (protocol == PROTO_HTTP)
2531 if (!send_SRW_searchRequest(arg))
2544 printf("Not connected yet\n");
2548 if (!send_searchRequest(arg))
2554 static int cmd_delete(const char *arg)
2558 if (!send_deleteResultSetRequest(arg))
2563 static int cmd_ssub(const char *arg)
2565 if (!(smallSetUpperBound = atoi(arg)))
2570 static int cmd_lslb(const char *arg)
2572 if (!(largeSetLowerBound = atoi(arg)))
2577 static int cmd_mspn(const char *arg)
2579 if (!(mediumSetPresentNumber = atoi(arg)))
2584 static int cmd_status(const char *arg)
2586 printf("smallSetUpperBound: %d\n", smallSetUpperBound);
2587 printf("largeSetLowerBound: %d\n", largeSetLowerBound);
2588 printf("mediumSetPresentNumber: %d\n", mediumSetPresentNumber);
2592 static int cmd_setnames(const char *arg)
2594 if (*arg == '1') /* enable ? */
2596 else if (*arg == '0') /* disable ? */
2598 else if (setnumber < 0) /* no args, toggle .. */
2604 printf("Set numbering enabled.\n");
2606 printf("Set numbering disabled.\n");
2610 /* PRESENT SERVICE ----------------------------- */
2612 static void parse_show_args(const char *arg_c, char *setstring,
2613 int *start, int *number)
2618 strncpy(arg, arg_c, sizeof(arg)-1);
2619 arg[sizeof(arg)-1] = '\0';
2621 if ((p = strchr(arg, '+')))
2623 *number = atoi(p + 1);
2628 if (!strcmp(arg, "all"))
2630 *number = last_hit_count;
2636 if (p && (p=strchr(p+1, '+')))
2637 strcpy (setstring, p+1);
2638 else if (setnumber >= 0)
2639 sprintf(setstring, "%d", setnumber);
2644 static int send_presentRequest(const char *arg)
2646 Z_APDU *apdu = zget_APDU(out, Z_APDU_presentRequest);
2647 Z_PresentRequest *req = apdu->u.presentRequest;
2648 Z_RecordComposition compo;
2650 char setstring[100];
2652 req->referenceId = set_refid (out);
2654 parse_show_args(arg, setstring, &setno, &nos);
2656 req->resultSetId = setstring;
2658 req->resultSetStartPoint = &setno;
2659 req->numberOfRecordsRequested = &nos;
2661 if (recordsyntax_size)
2662 req->preferredRecordSyntax =
2663 yaz_string_to_oid_odr(yaz_oid_std(),
2664 CLASS_RECSYN, recordsyntax_list[0], out);
2666 if (record_schema || recordsyntax_size >= 2)
2668 req->recordComposition = &compo;
2669 compo.which = Z_RecordComp_complex;
2670 compo.u.complex = (Z_CompSpec *)
2671 odr_malloc(out, sizeof(*compo.u.complex));
2672 compo.u.complex->selectAlternativeSyntax = (bool_t *)
2673 odr_malloc(out, sizeof(bool_t));
2674 *compo.u.complex->selectAlternativeSyntax = 0;
2676 compo.u.complex->generic = (Z_Specification *)
2677 odr_malloc(out, sizeof(*compo.u.complex->generic));
2679 compo.u.complex->generic->which = Z_Schema_oid;
2681 compo.u.complex->generic->schema.oid = 0;
2684 compo.u.complex->generic->schema.oid =
2685 yaz_string_to_oid_odr(yaz_oid_std(),
2686 CLASS_SCHEMA, record_schema, out);
2688 if (!compo.u.complex->generic->schema.oid)
2690 /* OID wasn't a schema! Try record syntax instead. */
2691 compo.u.complex->generic->schema.oid = (Odr_oid *)
2692 yaz_string_to_oid_odr(yaz_oid_std(),
2693 CLASS_RECSYN, record_schema, out);
2696 if (!elementSetNames)
2697 compo.u.complex->generic->elementSpec = 0;
2700 compo.u.complex->generic->elementSpec = (Z_ElementSpec *)
2701 odr_malloc(out, sizeof(Z_ElementSpec));
2702 compo.u.complex->generic->elementSpec->which =
2703 Z_ElementSpec_elementSetName;
2704 compo.u.complex->generic->elementSpec->u.elementSetName =
2705 elementSetNames->u.generic;
2707 compo.u.complex->num_dbSpecific = 0;
2708 compo.u.complex->dbSpecific = 0;
2710 compo.u.complex->num_recordSyntax = 0;
2711 compo.u.complex->recordSyntax = 0;
2712 if (recordsyntax_size >= 2)
2715 compo.u.complex->num_recordSyntax = recordsyntax_size;
2716 compo.u.complex->recordSyntax = (Odr_oid **)
2717 odr_malloc(out, recordsyntax_size * sizeof(Odr_oid*));
2718 for (i = 0; i < recordsyntax_size; i++)
2719 compo.u.complex->recordSyntax[i] =
2720 yaz_string_to_oid_odr(yaz_oid_std(),
2721 CLASS_RECSYN, recordsyntax_list[i], out);
2724 else if (elementSetNames)
2726 req->recordComposition = &compo;
2727 compo.which = Z_RecordComp_simple;
2728 compo.u.simple = elementSetNames;
2731 printf("Sent presentRequest (%d+%d).\n", setno, nos);
2736 static int send_SRW_presentRequest(const char *arg)
2738 char setstring[100];
2740 Z_SRW_PDU *sr = srw_sr;
2744 parse_show_args(arg, setstring, &setno, &nos);
2745 sr->u.request->startRecord = odr_intdup(out, setno);
2746 sr->u.request->maximumRecords = odr_intdup(out, nos);
2748 sr->u.request->recordSchema = record_schema;
2749 if (recordsyntax_size == 1 && !yaz_matchstr(recordsyntax_list[0], "xml"))
2750 sr->u.request->recordPacking = "xml";
2751 return send_srw(sr);
2755 static void close_session (void)
2767 void process_close(Z_Close *req)
2769 Z_APDU *apdu = zget_APDU(out, Z_APDU_close);
2770 Z_Close *res = apdu->u.close;
2772 static char *reasons[] =
2777 "cost limit reached",
2779 "security violation",
2786 printf("Reason: %s, message: %s\n", reasons[*req->closeReason],
2787 req->diagnosticInformation ? req->diagnosticInformation : "NULL");
2792 *res->closeReason = Z_Close_finished;
2794 printf("Sent response.\n");
2799 static int cmd_show(const char *arg)
2801 if (protocol == PROTO_HTTP)
2808 if (!send_SRW_presentRequest(arg))
2818 printf("Not connected yet\n");
2821 if (!send_presentRequest(arg))
2827 void exit_client(int code)
2829 file_history_save(file_history);
2830 file_history_destroy(&file_history);
2834 int cmd_quit(const char *arg)
2836 printf("See you later, alligator.\n");
2842 int cmd_cancel(const char *arg)
2844 Z_APDU *apdu = zget_APDU(out, Z_APDU_triggerResourceControlRequest);
2845 Z_TriggerResourceControlRequest *req =
2846 apdu->u.triggerResourceControlRequest;
2851 sscanf(arg, "%15s", command);
2855 if (session_initResponse &&
2856 !ODR_MASK_GET(session_initResponse->options,
2857 Z_Options_triggerResourceCtrl))
2859 printf("Target doesn't support cancel (trigger resource ctrl)\n");
2862 *req->requestedAction = Z_TriggerResourceControlRequest_cancel;
2863 req->resultSetWanted = &rfalse;
2864 req->referenceId = set_refid (out);
2867 printf("Sent cancel request\n");
2868 if (!strcmp(command, "wait"))
2874 int cmd_cancel_find(const char *arg) {
2878 return cmd_cancel("");
2883 int send_scanrequest(const char *query, int pp, int num, const char *term)
2885 Z_APDU *apdu = zget_APDU(out, Z_APDU_scanRequest);
2886 Z_ScanRequest *req = apdu->u.scanRequest;
2890 if (queryType == QueryType_CCL2RPN)
2893 struct ccl_rpn_node *rpn;
2895 rpn = ccl_find_str (bibset, query, &error, &pos);
2898 printf("CCL ERROR: %s\n", ccl_err_msg(error));
2902 yaz_string_to_oid_odr(yaz_oid_std(),
2903 CLASS_ATTSET, "Bib-1", out);
2904 if (!(req->termListAndStartPoint = ccl_scan_query (out, rpn)))
2906 printf("Couldn't convert CCL to Scan term\n");
2909 ccl_rpn_delete (rpn);
2913 YAZ_PQF_Parser pqf_parser = yaz_pqf_create ();
2915 if (!(req->termListAndStartPoint =
2916 yaz_pqf_scan(pqf_parser, out, &req->attributeSet, query)))
2918 const char *pqf_msg;
2920 int code = yaz_pqf_error (pqf_parser, &pqf_msg, &off);
2922 printf("%*s^\n", ioff+7, "");
2923 printf("Prefix query error: %s (code %d)\n", pqf_msg, code);
2924 yaz_pqf_destroy (pqf_parser);
2927 yaz_pqf_destroy (pqf_parser);
2931 if (req->termListAndStartPoint->term &&
2932 req->termListAndStartPoint->term->which == Z_Term_general &&
2933 req->termListAndStartPoint->term->u.general)
2935 req->termListAndStartPoint->term->u.general->buf =
2936 (unsigned char *) odr_strdup(out, term);
2937 req->termListAndStartPoint->term->u.general->len =
2938 req->termListAndStartPoint->term->u.general->size =
2942 req->referenceId = set_refid (out);
2943 req->num_databaseNames = num_databaseNames;
2944 req->databaseNames = databaseNames;
2945 req->numberOfTermsRequested = #
2946 req->preferredPositionInResponse = &pp;
2947 req->stepSize = odr_intdup(out, scan_stepSize);
2952 int send_sortrequest(const char *arg, int newset)
2954 Z_APDU *apdu = zget_APDU(out, Z_APDU_sortRequest);
2955 Z_SortRequest *req = apdu->u.sortRequest;
2956 Z_SortKeySpecList *sksl = (Z_SortKeySpecList *)
2957 odr_malloc (out, sizeof(*sksl));
2963 sprintf (setstring, "%d", setnumber);
2965 sprintf (setstring, "default");
2967 req->referenceId = set_refid (out);
2969 req->num_inputResultSetNames = 1;
2970 req->inputResultSetNames = (Z_InternationalString **)
2971 odr_malloc (out, sizeof(*req->inputResultSetNames));
2972 req->inputResultSetNames[0] = odr_strdup (out, setstring);
2974 if (newset && setnumber >= 0)
2975 sprintf (setstring, "%d", ++setnumber);
2977 req->sortedResultSetName = odr_strdup (out, setstring);
2979 req->sortSequence = yaz_sort_spec (out, arg);
2980 if (!req->sortSequence)
2982 printf ("Missing sort specifications\n");
2989 void display_term(Z_TermInfo *t)
2992 printf("%s", t->displayTerm);
2993 else if (t->term->which == Z_Term_general)
2995 printf("%.*s", t->term->u.general->len, t->term->u.general->buf);
2996 sprintf(last_scan_line, "%.*s", t->term->u.general->len,
2997 t->term->u.general->buf);
3000 printf("Term (not general)");
3001 if (t->globalOccurrences)
3002 printf (" (%d)\n", *t->globalOccurrences);
3007 void process_scanResponse(Z_ScanResponse *res)
3010 Z_Entry **entries = NULL;
3011 int num_entries = 0;
3013 printf("Received ScanResponse\n");
3014 print_refid (res->referenceId);
3015 printf("%d entries", *res->numberOfEntriesReturned);
3016 if (res->positionOfTerm)
3017 printf (", position=%d", *res->positionOfTerm);
3019 if (*res->scanStatus != Z_Scan_success)
3020 printf("Scan returned code %d\n", *res->scanStatus);
3023 if ((entries = res->entries->entries))
3024 num_entries = res->entries->num_entries;
3025 for (i = 0; i < num_entries; i++)
3027 int pos_term = res->positionOfTerm ? *res->positionOfTerm : -1;
3028 if (entries[i]->which == Z_Entry_termInfo)
3030 printf("%c ", i + 1 == pos_term ? '*' : ' ');
3031 display_term(entries[i]->u.termInfo);
3034 display_diagrecs(&entries[i]->u.surrogateDiagnostic, 1);
3036 if (res->entries->nonsurrogateDiagnostics)
3037 display_diagrecs (res->entries->nonsurrogateDiagnostics,
3038 res->entries->num_nonsurrogateDiagnostics);
3041 void process_sortResponse(Z_SortResponse *res)
3043 printf("Received SortResponse: status=");
3044 switch (*res->sortStatus)
3046 case Z_SortResponse_success:
3047 printf ("success"); break;
3048 case Z_SortResponse_partial_1:
3049 printf ("partial"); break;
3050 case Z_SortResponse_failure:
3051 printf ("failure"); break;
3053 printf ("unknown (%d)", *res->sortStatus);
3056 print_refid (res->referenceId);
3057 if (res->diagnostics)
3058 display_diagrecs(res->diagnostics,
3059 res->num_diagnostics);
3062 void process_deleteResultSetResponse (Z_DeleteResultSetResponse *res)
3064 printf("Got deleteResultSetResponse status=%d\n",
3065 *res->deleteOperationStatus);
3066 if (res->deleteListStatuses)
3069 for (i = 0; i < res->deleteListStatuses->num; i++)
3071 printf ("%s status=%d\n", res->deleteListStatuses->elements[i]->id,
3072 *res->deleteListStatuses->elements[i]->status);
3077 int cmd_sort_generic(const char *arg, int newset)
3081 if (session_initResponse &&
3082 !ODR_MASK_GET(session_initResponse->options, Z_Options_sort))
3084 printf("Target doesn't support sort\n");
3089 if (send_sortrequest(arg, newset) < 0)
3096 int cmd_sort(const char *arg)
3098 return cmd_sort_generic (arg, 0);
3101 int cmd_sort_newset (const char *arg)
3103 return cmd_sort_generic (arg, 1);
3106 int cmd_scanstep(const char *arg)
3108 scan_stepSize = atoi(arg);
3112 int cmd_scanpos(const char *arg)
3114 int r = sscanf(arg, "%d", &scan_position);
3120 int cmd_scansize(const char *arg)
3122 int r = sscanf(arg, "%d", &scan_size);
3128 int cmd_scan(const char *arg)
3130 if (protocol == PROTO_HTTP)
3139 if (send_SRW_scanRequest(arg, scan_position, scan_size) < 0)
3144 if (send_SRW_scanRequest(last_scan_line, 1, scan_size) < 0)
3159 printf("Session not initialized yet\n");
3163 if (session_initResponse &&
3164 !ODR_MASK_GET(session_initResponse->options, Z_Options_scan))
3166 printf("Target doesn't support scan\n");
3171 strcpy (last_scan_query, arg);
3172 if (send_scanrequest(arg, scan_position, scan_size, 0) < 0)
3177 if (send_scanrequest(last_scan_query, 1, scan_size, last_scan_line) < 0)
3184 int cmd_schema(const char *arg)
3186 xfree(record_schema);
3189 record_schema = xstrdup(arg);
3193 int cmd_format(const char *arg)
3195 const char *cp = arg;
3202 printf("Usage: format <recordsyntax>\n");
3205 for (i = 0; i < recordsyntax_size; i++)
3207 xfree(recordsyntax_list[i]);
3208 recordsyntax_list[i] = 0;
3211 while (sscanf(cp, "%40s%n", form_str, &nor) >= 1 && nor > 0
3212 && idx < RECORDSYNTAX_MAX)
3214 if (!strcmp(form_str, "none"))
3216 recordsyntax_list[idx] = xstrdup(form_str);
3220 recordsyntax_size = idx;
3224 int cmd_elements(const char *arg)
3226 static Z_ElementSetNames esn;
3227 static char what[100];
3231 elementSetNames = 0;
3235 esn.which = Z_ElementSetNames_generic;
3236 esn.u.generic = what;
3237 elementSetNames = &esn;
3241 int cmd_querytype (const char *arg)
3243 if (!strcmp (arg, "ccl"))
3244 queryType = QueryType_CCL;
3245 else if (!strcmp (arg, "prefix") || !strcmp(arg, "rpn"))
3246 queryType = QueryType_Prefix;
3247 else if (!strcmp (arg, "ccl2rpn") || !strcmp (arg, "cclrpn"))
3248 queryType = QueryType_CCL2RPN;
3249 else if (!strcmp(arg, "cql"))
3250 queryType = QueryType_CQL;
3251 else if (!strcmp (arg, "cql2rpn") || !strcmp (arg, "cqlrpn"))
3252 queryType = QueryType_CQL2RPN;
3255 printf ("Querytype must be one of:\n");
3256 printf (" prefix - Prefix query\n");
3257 printf (" ccl - CCL query\n");
3258 printf (" ccl2rpn - CCL query converted to RPN\n");
3259 printf (" cql - CQL\n");
3260 printf (" cql2rpn - CQL query converted to RPN\n");
3266 int cmd_refid (const char *arg)
3271 refid = xstrdup (arg);
3275 int cmd_close(const char *arg)
3281 apdu = zget_APDU(out, Z_APDU_close);
3282 req = apdu->u.close;
3283 *req->closeReason = Z_Close_finished;
3285 printf("Sent close request.\n");
3290 int cmd_packagename(const char* arg)
3292 xfree (esPackageName);
3293 esPackageName = NULL;
3295 esPackageName = xstrdup(arg);
3299 int cmd_proxy(const char* arg)
3304 yazProxy = xstrdup (arg);
3308 int cmd_marccharset(const char *arg)
3313 if (sscanf(arg, "%29s", l1) < 1)
3315 printf("MARC character set is `%s'\n",
3316 marcCharset ? marcCharset: "none");
3319 xfree (marcCharset);
3321 if (strcmp(l1, "-"))
3322 marcCharset = xstrdup(l1);
3326 int cmd_displaycharset(const char *arg)
3331 if (sscanf(arg, "%29s", l1) < 1)
3333 printf("Display character set is `%s'\n",
3334 outputCharset ? outputCharset: "none");
3338 xfree (outputCharset);
3340 if (!strcmp(l1, "auto") && codeset)
3344 printf ("Display character set: %s\n", codeset);
3345 outputCharset = xstrdup(codeset);
3348 printf ("No codeset found on this system\n");
3350 else if (strcmp(l1, "-") && strcmp(l1, "none"))
3351 outputCharset = xstrdup(l1);
3356 int cmd_negcharset(const char *arg)
3361 if (sscanf(arg, "%29s %d %d", l1, &negotiationCharsetRecords,
3362 &negotiationCharsetVersion) < 1)
3364 printf("Current negotiation character set is `%s'\n",
3365 negotiationCharset ? negotiationCharset: "none");
3366 printf("Records in charset %s\n", negotiationCharsetRecords ?
3368 printf("Charneg version %d\n", negotiationCharsetVersion);
3372 xfree (negotiationCharset);
3373 negotiationCharset = NULL;
3374 if (*l1 && strcmp(l1, "-") && strcmp(l1, "none"))
3376 negotiationCharset = xstrdup(l1);
3377 printf ("Character set negotiation : %s\n", negotiationCharset);
3383 int cmd_charset(const char* arg)
3385 char l1[30], l2[30], l3[30];
3387 *l1 = *l2 = *l3 = 0;
3388 if (sscanf(arg, "%29s %29s %29s", l1, l2, l3) < 1)
3391 cmd_displaycharset("");
3392 cmd_marccharset("");
3398 cmd_displaycharset(l2);
3400 cmd_marccharset(l3);
3405 int cmd_lang(const char* arg)
3408 printf("Current language is `%s'\n", (yazLang)?yazLang:NULL);
3414 yazLang = xstrdup(arg);
3418 int cmd_source(const char* arg, int echo )
3420 /* first should open the file and read one line at a time.. */
3422 char line[102400], *cp;
3425 fprintf(stderr,"Error in source command use a filename\n");
3429 includeFile = fopen (arg, "r");
3432 fprintf(stderr,"Unable to open file %s for reading\n",arg);
3436 while(!feof(includeFile)) {
3437 memset(line,0,sizeof(line));
3438 fgets(line,sizeof(line),includeFile);
3440 if(strlen(line) < 2) continue;
3441 if(line[0] == '#') continue;
3443 if ((cp = strrchr (line, '\n')))
3447 printf( "processing line: %s\n",line );
3449 process_cmd_line(line);
3452 if(fclose(includeFile)<0) {
3453 perror("unable to close include file");
3459 int cmd_source_echo(const char* arg)
3465 int cmd_source_noecho(const char* arg)
3472 int cmd_subshell(const char* args)
3477 system(getenv("SHELL"));
3483 int cmd_set_berfile(const char *arg)
3485 if (ber_file && ber_file != stdout && ber_file != stderr)
3487 if (!strcmp(arg, ""))
3489 else if (!strcmp(arg, "-"))
3492 ber_file = fopen(arg, "a");
3496 int cmd_set_apdufile(const char *arg)
3498 if(apdu_file && apdu_file != stderr && apdu_file != stderr)
3500 if (!strcmp(arg, ""))
3502 else if (!strcmp(arg, "-"))
3506 apdu_file = fopen(arg, "a");
3508 perror("unable to open apdu log file");
3511 odr_setprint(print, apdu_file);
3515 int cmd_set_cclfile(const char* arg)
3519 bibset = ccl_qual_mk ();
3520 inf = fopen (arg, "r");
3522 perror("unable to open CCL file");
3525 ccl_qual_file (bibset, inf);
3528 strcpy(ccl_fields,arg);
3532 int cmd_set_cqlfile(const char* arg)
3534 cql_transform_t newcqltrans;
3536 if ((newcqltrans = cql_transform_open_fname(arg)) == 0) {
3537 perror("unable to open CQL file");
3541 cql_transform_close(cqltrans);
3543 cqltrans = newcqltrans;
3544 strcpy(cql_fields, arg);
3548 int cmd_set_auto_reconnect(const char* arg)
3550 if(strlen(arg)==0) {
3551 auto_reconnect = ! auto_reconnect;
3552 } else if(strcmp(arg,"on")==0) {
3554 } else if(strcmp(arg,"off")==0) {
3557 printf("Error use on or off\n");
3562 printf("Set auto reconnect enabled.\n");
3564 printf("Set auto reconnect disabled.\n");
3570 int cmd_set_auto_wait(const char* arg)
3572 if(strlen(arg)==0) {
3573 auto_wait = ! auto_wait;
3574 } else if(strcmp(arg,"on")==0) {
3576 } else if(strcmp(arg,"off")==0) {
3579 printf("Error use on or off\n");
3584 printf("Set auto wait enabled.\n");
3586 printf("Set auto wait disabled.\n");
3591 int cmd_set_marcdump(const char* arg)
3593 if(marc_file && marc_file != stderr) { /* don't close stdout*/
3597 if (!strcmp(arg, ""))
3599 else if (!strcmp(arg, "-"))
3603 marc_file = fopen(arg, "a");
3605 perror("unable to open marc log file");
3612 this command takes 3 arge {name class oid}
3614 int cmd_register_oid(const char* args) {
3619 {"appctx",CLASS_APPCTX},
3620 {"absyn",CLASS_ABSYN},
3621 {"attset",CLASS_ATTSET},
3622 {"transyn",CLASS_TRANSYN},
3623 {"diagset",CLASS_DIAGSET},
3624 {"recsyn",CLASS_RECSYN},
3625 {"resform",CLASS_RESFORM},
3626 {"accform",CLASS_ACCFORM},
3627 {"extserv",CLASS_EXTSERV},
3628 {"userinfo",CLASS_USERINFO},
3629 {"elemspec",CLASS_ELEMSPEC},
3630 {"varset",CLASS_VARSET},
3631 {"schema",CLASS_SCHEMA},
3632 {"tagset",CLASS_TAGSET},
3633 {"general",CLASS_GENERAL},
3634 {0,(enum oid_class) 0}
3636 char oname_str[101], oclass_str[101], oid_str[101];
3639 oid_class oidclass = CLASS_GENERAL;
3640 int val = 0, oid[OID_SIZE];
3641 struct oident * new_oident=NULL;
3643 if (sscanf (args, "%100[^ ] %100[^ ] %100s",
3644 oname_str,oclass_str, oid_str) < 1) {
3645 printf("Error in register command \n");
3649 for (i = 0; oid_classes[i].className; i++) {
3650 if (!strcmp(oid_classes[i].className, oclass_str))
3652 oidclass=oid_classes[i].oclass;
3657 if(!(oid_classes[i].className)) {
3658 printf("Unknown oid class %s\n",oclass_str);
3666 while (isdigit (*(unsigned char *) name))
3668 val = val*10 + (*name - '0');
3681 new_oident = oid_addent (oid, PROTO_GENERAL, oidclass, oname_str,
3683 if(strcmp(new_oident->desc,oname_str))
3685 fprintf(stderr,"oid is already named as %s, registration failed\n",
3692 int cmd_push_command(const char* arg)
3694 #if HAVE_READLINE_HISTORY_H
3698 fprintf(stderr,"Not compiled with the readline/history module\n");
3703 void source_rcfile(void)
3705 /* Look for a $HOME/.yazclientrc and source it if it exists */
3706 struct stat statbuf;
3708 char* homedir = getenv("HOME");
3710 sprintf(fname, "%.500s%s%s", homedir ? homedir : "",
3714 if (stat(fname,&statbuf)==0)
3715 cmd_source(fname, 0 );
3718 void add_to_readline_history(void *client_data, const char *line)
3720 #if HAVE_READLINE_HISTORY_H
3726 static void initialize(void)
3731 if (!(out = odr_createmem(ODR_ENCODE)) ||
3732 !(in = odr_createmem(ODR_DECODE)) ||
3733 !(print = odr_createmem(ODR_PRINT)))
3735 fprintf(stderr, "failed to allocate ODR streams\n");
3739 setvbuf(stdout, 0, _IONBF, 0);
3741 odr_setprint(print, apdu_file);
3743 bibset = ccl_qual_mk ();
3744 inf = fopen (ccl_fields, "r");
3747 ccl_qual_file (bibset, inf);
3751 cqltrans = cql_transform_open_fname(cql_fields);
3752 /* If this fails, no problem: we detect cqltrans == 0 later */
3754 #if HAVE_READLINE_READLINE_H
3755 rl_attempted_completion_function = (CPPFunction*)readline_completer;
3757 for(i = 0; i < maxOtherInfosSupported; ++i) {
3758 extraOtherInfos[i].oid[0] = -1;
3759 extraOtherInfos[i].value = 0;
3762 cmd_format("usmarc");
3766 file_history = file_history_new();
3767 file_history_load(file_history);
3768 file_history_trav(file_history, 0, add_to_readline_history);
3772 #if HAVE_GETTIMEOFDAY
3773 struct timeval tv_start;
3777 static void handle_srw_record(Z_SRW_record *rec)
3779 if (rec->recordPosition)
3781 printf ("pos=%d", *rec->recordPosition);
3782 setno = *rec->recordPosition + 1;
3784 if (rec->recordSchema)
3785 printf (" schema=%s", rec->recordSchema);
3787 if (rec->recordData_buf && rec->recordData_len)
3789 fwrite(rec->recordData_buf, 1, rec->recordData_len, stdout);
3791 fwrite (rec->recordData_buf, 1, rec->recordData_len, marc_file);
3794 printf ("No data!");
3798 static void handle_srw_explain_response(Z_SRW_explainResponse *res)
3800 handle_srw_record(&res->record);
3803 static void handle_srw_response(Z_SRW_searchRetrieveResponse *res)
3807 printf ("Received SRW SearchRetrieve Response\n");
3809 for (i = 0; i<res->num_diagnostics; i++)
3811 if (res->diagnostics[i].uri)
3812 printf ("SRW diagnostic %s\n",
3813 res->diagnostics[i].uri);
3815 printf ("SRW diagnostic missing or could not be decoded\n");
3816 if (res->diagnostics[i].message)
3817 printf ("Message: %s\n", res->diagnostics[i].message);
3818 if (res->diagnostics[i].details)
3819 printf ("Details: %s\n", res->diagnostics[i].details);
3821 if (res->numberOfRecords)
3822 printf ("Number of hits: %d\n", *res->numberOfRecords);
3823 for (i = 0; i<res->num_records; i++)
3824 handle_srw_record(res->records + i);
3827 static void handle_srw_scan_term(Z_SRW_scanTerm *term)
3829 if (term->displayTerm)
3830 printf("%s:", term->displayTerm);
3831 else if (term->value)
3832 printf("%s:", term->value);
3834 printf("No value:");
3835 if (term->numberOfRecords)
3836 printf(" %d", *term->numberOfRecords);
3837 if (term->whereInList)
3838 printf(" %s", term->whereInList);
3839 if (term->value && term->displayTerm)
3840 printf(" %s", term->value);
3842 strcpy(last_scan_line, term->value);
3846 static void handle_srw_scan_response(Z_SRW_scanResponse *res)
3850 printf ("Received SRW Scan Response\n");
3852 for (i = 0; i<res->num_diagnostics; i++)
3854 if (res->diagnostics[i].uri)
3855 printf ("SRW diagnostic %s\n",
3856 res->diagnostics[i].uri);
3858 printf ("SRW diagnostic missing or could not be decoded\n");
3859 if (res->diagnostics[i].message)
3860 printf ("Message: %s\n", res->diagnostics[i].message);
3861 if (res->diagnostics[i].details)
3862 printf ("Details: %s\n", res->diagnostics[i].details);
3865 for (i = 0; i<res->num_terms; i++)
3866 handle_srw_scan_term(res->terms + i);
3869 static void http_response(Z_HTTP_Response *hres)
3872 const char *content_type = z_HTTP_header_lookup(hres->headers,
3874 const char *connection_head = z_HTTP_header_lookup(hres->headers,
3876 if (content_type && !yaz_strcmp_del("text/xml", content_type, "; "))
3878 Z_SOAP *soap_package = 0;
3879 ODR o = odr_createmem(ODR_DECODE);
3880 Z_SOAP_Handler soap_handlers[3] = {
3881 {YAZ_XMLNS_SRU_v1_1, 0, (Z_SOAP_fun) yaz_srw_codec},
3882 {YAZ_XMLNS_UPDATE_v0_9, 0, (Z_SOAP_fun) yaz_ucp_codec},
3885 ret = z_soap_codec(o, &soap_package,
3886 &hres->content_buf, &hres->content_len,
3888 if (!ret && soap_package->which == Z_SOAP_generic)
3890 Z_SRW_PDU *sr = soap_package->u.generic->p;
3891 if (sr->which == Z_SRW_searchRetrieve_response)
3892 handle_srw_response(sr->u.response);
3893 else if (sr->which == Z_SRW_explain_response)
3894 handle_srw_explain_response(sr->u.explain_response);
3895 else if (sr->which == Z_SRW_scan_response)
3896 handle_srw_scan_response(sr->u.scan_response);
3897 else if (sr->which == Z_SRW_update_response)
3898 printf("Got update response. Status: %s\n",
3899 sr->u.update_response->operationStatus);
3903 else if (soap_package && (soap_package->which == Z_SOAP_fault
3904 || soap_package->which == Z_SOAP_error))
3906 printf ("HTTP Error Status=%d\n", hres->code);
3907 printf ("SOAP Fault code %s\n",
3908 soap_package->u.fault->fault_code);
3909 printf ("SOAP Fault string %s\n",
3910 soap_package->u.fault->fault_string);
3911 if (soap_package->u.fault->details)
3912 printf ("SOAP Details %s\n",
3913 soap_package->u.fault->details);
3917 printf("z_soap_codec failed. (no SOAP error)\n");
3924 if (hres->code != 200)
3926 printf ("HTTP Error Status=%d\n", hres->code);
3930 printf ("Decoding of SRW package failed\n");
3936 if (!strcmp(hres->version, "1.0"))
3938 /* HTTP 1.0: only if Keep-Alive we stay alive.. */
3939 if (!connection_head || strcmp(connection_head, "Keep-Alive"))
3944 /* HTTP 1.1: only if no close we stay alive .. */
3945 if (connection_head && !strcmp(connection_head, "close"))
3952 void wait_and_handle_response(int one_response_only)
3954 int reconnect_ok = 1;
3957 int netbufferlen = 0;
3958 #if HAVE_GETTIMEOFDAY
3960 struct timeval tv_end;
3966 res = cs_get(conn, &netbuffer, &netbufferlen);
3967 if (reconnect_ok && res <= 0 && protocol == PROTO_HTTP)
3978 buf_out = odr_getbuf(out, &len_out, 0);
3980 do_hex_dump(buf_out, len_out);
3982 cs_put(conn, buf_out, len_out);
3990 printf("Target closed connection\n");
3994 #if HAVE_GETTIMEOFDAY
3995 if (got_tv_end == 0)
3996 gettimeofday (&tv_end, 0); /* count first one only */
4000 odr_reset(in); /* release APDU from last round */
4002 do_hex_dump(netbuffer, res);
4003 odr_setbuf(in, netbuffer, res, 0);
4005 if (!z_GDU(in, &gdu, 0, 0))
4007 FILE *f = ber_file ? ber_file : stdout;
4008 odr_perror(in, "Decoding incoming APDU");
4009 fprintf(f, "[Near %ld]\n", (long) odr_offset(in));
4010 fprintf(f, "Packet dump:\n---------\n");
4011 odr_dumpBER(f, netbuffer, res);
4012 fprintf(f, "---------\n");
4015 z_GDU(print, &gdu, 0, 0);
4018 if (conn && cs_more(conn))
4023 odr_dumpBER(ber_file, netbuffer, res);
4024 if (apdu_file && !z_GDU(print, &gdu, 0, 0))
4026 odr_perror(print, "Failed to print incoming APDU");
4030 if (gdu->which == Z_GDU_Z3950)
4032 Z_APDU *apdu = gdu->u.z3950;
4035 case Z_APDU_initResponse:
4036 process_initResponse(apdu->u.initResponse);
4038 case Z_APDU_searchResponse:
4039 process_searchResponse(apdu->u.searchResponse);
4041 case Z_APDU_scanResponse:
4042 process_scanResponse(apdu->u.scanResponse);
4044 case Z_APDU_presentResponse:
4045 print_refid (apdu->u.presentResponse->referenceId);
4047 *apdu->u.presentResponse->numberOfRecordsReturned;
4048 if (apdu->u.presentResponse->records)
4049 display_records(apdu->u.presentResponse->records);
4051 printf("No records.\n");
4052 printf ("nextResultSetPosition = %d\n",
4053 *apdu->u.presentResponse->nextResultSetPosition);
4055 case Z_APDU_sortResponse:
4056 process_sortResponse(apdu->u.sortResponse);
4058 case Z_APDU_extendedServicesResponse:
4059 printf("Got extended services response\n");
4060 process_ESResponse(apdu->u.extendedServicesResponse);
4063 printf("Target has closed the association.\n");
4064 process_close(apdu->u.close);
4066 case Z_APDU_resourceControlRequest:
4067 process_resourceControlRequest
4068 (apdu->u.resourceControlRequest);
4070 case Z_APDU_deleteResultSetResponse:
4071 process_deleteResultSetResponse(apdu->u.
4072 deleteResultSetResponse);
4075 printf("Received unknown APDU type (%d).\n",
4081 else if (gdu->which == Z_GDU_HTTP_Response)
4083 http_response(gdu->u.HTTP_Response);
4086 if (one_response_only)
4088 if (conn && !cs_more(conn))
4091 #if HAVE_GETTIMEOFDAY
4095 printf ("S/U S/U=%ld/%ld %ld/%ld",
4096 (long) tv_start.tv_sec,
4097 (long) tv_start.tv_usec,
4098 (long) tv_end.tv_sec,
4099 (long) tv_end.tv_usec);
4101 printf ("Elapsed: %.6f\n",
4102 (double) tv_end.tv_usec / 1e6 + tv_end.tv_sec -
4103 ((double) tv_start.tv_usec / 1e6 + tv_start.tv_sec));
4110 int cmd_cclparse(const char* arg)
4113 struct ccl_rpn_node *rpn=NULL;
4116 rpn = ccl_find_str (bibset, arg, &error, &pos);
4119 int ioff = 3+strlen(last_cmd)+1+pos;
4120 printf ("%*s^ - ", ioff, " ");
4121 printf ("%s\n", ccl_err_msg (error));
4127 ccl_pr_tree(rpn, stdout);
4131 ccl_rpn_delete(rpn);
4139 int cmd_set_otherinfo(const char* args)
4141 char oidstr[101], otherinfoString[101];
4145 sscan_res = sscanf (args, "%d %100[^ ] %100s",
4146 &otherinfoNo, oidstr, otherinfoString);
4148 if (sscan_res > 0 && otherinfoNo >= maxOtherInfosSupported) {
4149 printf("Error otherinfo index too large (%d>=%d)\n",
4150 otherinfoNo,maxOtherInfosSupported);
4157 /* reset this otherinfo */
4158 extraOtherInfos[otherinfoNo].oid[0] = -1;
4159 xfree(extraOtherInfos[otherinfoNo].value);
4160 extraOtherInfos[otherinfoNo].value = 0;
4163 if (sscan_res != 3) {
4164 printf("Error in set_otherinfo command \n");
4169 NMEM oid_tmp = nmem_create();
4171 yaz_string_to_oid_nmem(yaz_oid_std(),
4172 CLASS_GENERAL, oidstr, oid_tmp);
4173 oid_oidcpy(extraOtherInfos[otherinfoNo].oid, oid);
4175 xfree(extraOtherInfos[otherinfoNo].value);
4176 extraOtherInfos[otherinfoNo].value = xstrdup(otherinfoString);
4178 nmem_destroy(oid_tmp);
4184 int cmd_sleep(const char* args )
4193 printf("Done sleeping %d seconds\n", sec);
4198 int cmd_list_otherinfo(const char* args)
4205 if (i >= maxOtherInfosSupported)
4207 printf("Error otherinfo index to large (%d>%d)\n",i,maxOtherInfosSupported);
4210 if (extraOtherInfos[i].value)
4212 char name_oid[OID_STR_MAX];
4215 yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4217 printf(" otherinfo %d %s %s\n",
4218 i, name ? name : "null",
4219 extraOtherInfos[i].value);
4225 for(i = 0; i < maxOtherInfosSupported; ++i)
4227 if (extraOtherInfos[i].value)
4229 char name_oid[OID_STR_MAX];
4232 yaz_oid_to_string_buf(extraOtherInfos[i].oid, &oclass,
4234 printf(" otherinfo %d %s %s\n",
4235 i, name ? name : "null",
4236 extraOtherInfos[i].value);
4245 int cmd_list_all(const char* args) {
4248 /* connection options */
4250 printf("Connected to : %s\n",last_open_command);
4252 if(last_open_command)
4253 printf("Not connected to : %s\n",last_open_command);
4255 printf("Not connected : \n");
4258 if(yazProxy) printf("using proxy : %s\n",yazProxy);
4260 printf("auto_reconnect : %s\n",auto_reconnect?"on":"off");
4261 printf("auto_wait : %s\n",auto_wait?"on":"off");
4264 printf("Authentication : none\n");
4266 switch(auth->which) {
4267 case Z_IdAuthentication_idPass:
4268 printf("Authentication : IdPass\n");
4269 printf(" Login User : %s\n",auth->u.idPass->userId?auth->u.idPass->userId:"");
4270 printf(" Login Group : %s\n",auth->u.idPass->groupId?auth->u.idPass->groupId:"");
4271 printf(" Password : %s\n",auth->u.idPass->password?auth->u.idPass->password:"");
4273 case Z_IdAuthentication_open:
4274 printf("Authentication : psOpen\n");
4275 printf(" Open string : %s\n",auth->u.open);
4278 printf("Authentication : Unknown\n");
4281 if (negotiationCharset)
4282 printf("Neg. Character set : `%s'\n", negotiationCharset);
4286 for (i = 0; i<num_databaseNames; i++) printf("%s ",databaseNames[i]);
4290 printf("CCL file : %s\n",ccl_fields);
4291 printf("CQL file : %s\n",cql_fields);
4292 printf("Query type : %s\n",query_type_as_string(queryType));
4294 printf("Named Result Sets : %s\n",setnumber==-1?"off":"on");
4296 /* piggy back options */
4297 printf("ssub/lslb/mspn : %d/%d/%d\n",smallSetUpperBound,largeSetLowerBound,mediumSetPresentNumber);
4299 /* print present related options */
4300 if (recordsyntax_size > 0)
4302 printf("Format : %s\n", recordsyntax_list[0]);
4304 printf("Schema : %s\n",record_schema ? record_schema : "not set");
4305 printf("Elements : %s\n",elementSetNames?elementSetNames->u.generic:"");
4307 /* loging options */
4308 printf("APDU log : %s\n",apdu_file?"on":"off");
4309 printf("Record log : %s\n",marc_file?"on":"off");
4312 printf("Other Info: \n");
4313 cmd_list_otherinfo("");
4318 int cmd_clear_otherinfo(const char* args)
4320 if(strlen(args)>0) {
4321 int otherinfoNo = atoi(args);
4322 if (otherinfoNo >= maxOtherInfosSupported) {
4323 printf("Error otherinfo index too large (%d>=%d)\n",
4324 otherinfoNo, maxOtherInfosSupported);
4327 if (extraOtherInfos[otherinfoNo].value)
4329 /* only clear if set. */
4330 extraOtherInfos[otherinfoNo].oid[0] = -1;
4331 xfree(extraOtherInfos[otherinfoNo].value);
4332 extraOtherInfos[otherinfoNo].value = 0;
4336 for(i = 0; i < maxOtherInfosSupported; ++i)
4338 if (extraOtherInfos[i].value)
4340 extraOtherInfos[i].oid[0] = -1;
4341 xfree(extraOtherInfos[i].value);
4342 extraOtherInfos[i].value = 0;
4349 int cmd_wait_response(const char *arg)
4351 int wait_for = atoi(arg);
4353 if( wait_for < 1 ) {
4357 for( i=0 ; i < wait_for ; ++i ) {
4358 wait_and_handle_response(1);
4363 static int cmd_help (const char *line);
4365 typedef char *(*completerFunctionType)(const char *text, int state);
4369 int (*fun)(const char *arg);
4371 completerFunctionType rl_completerfunction;
4372 int complete_filenames;
4373 const char **local_tabcompletes;
4375 {"open", cmd_open, "('tcp'|'ssl')':<host>[':'<port>][/<db>]",NULL,0,NULL},
4376 {"quit", cmd_quit, "",NULL,0,NULL},
4377 {"find", cmd_find, "<query>",NULL,0,NULL},
4378 {"delete", cmd_delete, "<setname>",NULL,0,NULL},
4379 {"base", cmd_base, "<base-name>",NULL,0,NULL},
4380 {"show", cmd_show, "<rec#>['+'<#recs>['+'<setname>]]",NULL,0,NULL},
4381 {"scan", cmd_scan, "<term>",NULL,0,NULL},
4382 {"scanstep", cmd_scanstep, "<size>",NULL,0,NULL},
4383 {"scanpos", cmd_scanpos, "<size>",NULL,0,NULL},
4384 {"scansize", cmd_scansize, "<size>",NULL,0,NULL},
4385 {"sort", cmd_sort, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4386 {"sort+", cmd_sort_newset, "<sortkey> <flag> <sortkey> <flag> ...",NULL,0,NULL},
4387 {"authentication", cmd_authentication, "<acctstring>",NULL,0,NULL},
4388 {"lslb", cmd_lslb, "<largeSetLowerBound>",NULL,0,NULL},
4389 {"ssub", cmd_ssub, "<smallSetUpperBound>",NULL,0,NULL},
4390 {"mspn", cmd_mspn, "<mediumSetPresentNumber>",NULL,0,NULL},
4391 {"status", cmd_status, "",NULL,0,NULL},
4392 {"setnames", cmd_setnames, "",NULL,0,NULL},
4393 {"cancel", cmd_cancel, "",NULL,0,NULL},
4394 {"cancel_find", cmd_cancel_find, "<query>",NULL,0,NULL},
4395 {"format", cmd_format, "<recordsyntax>",complete_format,0,NULL},
4396 {"schema", cmd_schema, "<schema>",complete_schema,0,NULL},
4397 {"elements", cmd_elements, "<elementSetName>",NULL,0,NULL},
4398 {"close", cmd_close, "",NULL,0,NULL},
4399 {"querytype", cmd_querytype, "<type>",complete_querytype,0,NULL},
4400 {"refid", cmd_refid, "<id>",NULL,0,NULL},
4401 {"itemorder", cmd_itemorder, "ill|item|xml <itemno>",NULL,0,NULL},
4402 {"update", cmd_update, "<action> <recid> [<doc>]",NULL,0,NULL},
4403 {"update0", cmd_update0, "<action> <recid> [<doc>]",NULL,0,NULL},
4404 {"xmles", cmd_xmles, "<OID> <doc>",NULL,0,NULL},
4405 {"packagename", cmd_packagename, "<packagename>",NULL,0,NULL},
4406 {"proxy", cmd_proxy, "[('tcp'|'ssl')]<host>[':'<port>]",NULL,0,NULL},
4407 {"charset", cmd_charset, "<nego_charset> <output_charset>",NULL,0,NULL},
4408 {"negcharset", cmd_negcharset, "<nego_charset>",NULL,0,NULL},
4409 {"displaycharset", cmd_displaycharset, "<output_charset>",NULL,0,NULL},
4410 {"marccharset", cmd_marccharset, "<charset_name>",NULL,0,NULL},
4411 {"lang", cmd_lang, "<language_code>",NULL,0,NULL},
4412 {"source", cmd_source_echo, "<filename>",NULL,1,NULL},
4413 {".", cmd_source_echo, "<filename>",NULL,1,NULL},
4414 {"!", cmd_subshell, "Subshell command",NULL,1,NULL},
4415 {"set_apdufile", cmd_set_apdufile, "<filename>",NULL,1,NULL},
4416 {"set_berfile", cmd_set_berfile, "<filename>",NULL,1,NULL},
4417 {"set_marcdump", cmd_set_marcdump," <filename>",NULL,1,NULL},
4418 {"set_cclfile", cmd_set_cclfile," <filename>",NULL,1,NULL},
4419 {"set_cqlfile", cmd_set_cqlfile," <filename>",NULL,1,NULL},
4420 {"set_auto_reconnect", cmd_set_auto_reconnect," on|off",complete_auto_reconnect,1,NULL},
4421 {"set_auto_wait", cmd_set_auto_wait," on|off",complete_auto_reconnect,1,NULL},
4422 {"set_otherinfo", cmd_set_otherinfo,"<otherinfoinddex> <oid> <string>",NULL,0,NULL},
4423 {"sleep", cmd_sleep,"<seconds>",NULL,0,NULL},
4425 {"register_oid", cmd_register_oid,"<name> <class> <oid>",NULL,0,NULL},
4427 {"push_command", cmd_push_command,"<command>",command_generator,0,NULL},
4428 {"register_tab", cmd_register_tab,"<commandname> <tab>",command_generator,0,NULL},
4429 {"cclparse", cmd_cclparse,"<ccl find command>",NULL,0,NULL},
4430 {"list_otherinfo",cmd_list_otherinfo,"[otherinfoinddex]",NULL,0,NULL},
4431 {"list_all",cmd_list_all,"",NULL,0,NULL},
4432 {"clear_otherinfo",cmd_clear_otherinfo,"",NULL,0,NULL},
4433 {"wait_response",cmd_wait_response,"<number>",NULL,0,NULL},
4434 /* Server Admin Functions */
4435 {"adm-reindex", cmd_adm_reindex, "<database-name>",NULL,0,NULL},
4436 {"adm-truncate", cmd_adm_truncate, "('database'|'index')<object-name>",NULL,0,NULL},
4437 {"adm-create", cmd_adm_create, "",NULL,0,NULL},
4438 {"adm-drop", cmd_adm_drop, "('database'|'index')<object-name>",NULL,0,NULL},
4439 {"adm-import", cmd_adm_import, "<record-type> <dir> <pattern>",NULL,0,NULL},
4440 {"adm-refresh", cmd_adm_refresh, "",NULL,0,NULL},
4441 {"adm-commit", cmd_adm_commit, "",NULL,0,NULL},
4442 {"adm-shutdown", cmd_adm_shutdown, "",NULL,0,NULL},
4443 {"adm-startup", cmd_adm_startup, "",NULL,0,NULL},
4444 {"explain", cmd_explain, "", NULL, 0, NULL},
4445 {"options", cmd_options, "", NULL, 0, NULL},
4446 {"zversion", cmd_zversion, "", NULL, 0, NULL},
4447 {"help", cmd_help, "", NULL,0,NULL},
4448 {"init", cmd_init, "", NULL,0,NULL},
4449 {"sru", cmd_sru, "", NULL,0,NULL},
4450 {"exit", cmd_quit, "",NULL,0,NULL},
4454 static int cmd_help (const char *line)
4460 sscanf (line, "%20s", topic);
4463 printf("Commands:\n");
4464 for (i = 0; cmd_array[i].cmd; i++)
4465 if (*topic == 0 || strcmp (topic, cmd_array[i].cmd) == 0)
4466 printf(" %s %s\n", cmd_array[i].cmd, cmd_array[i].ad);
4467 if (!strcmp(topic, "find"))
4470 printf(" \"term\" Simple Term\n");
4471 printf(" @attr [attset] type=value op Attribute\n");
4472 printf(" @and opl opr And\n");
4473 printf(" @or opl opr Or\n");
4474 printf(" @not opl opr And-Not\n");
4475 printf(" @set set Result set\n");
4476 printf(" @prox exl dist ord rel uc ut Proximity. Use help prox\n");
4478 printf("Bib-1 attribute types\n");
4480 printf("4=Title 7=ISBN 8=ISSN 30=Date 62=Abstract 1003=Author 1016=Any\n");
4481 printf("2=Relation: ");
4482 printf("1< 2<= 3= 4>= 5> 6!= 102=Relevance\n");
4483 printf("3=Position: ");
4484 printf("1=First in Field 2=First in subfield 3=Any position\n");
4485 printf("4=Structure: ");
4486 printf("1=Phrase 2=Word 3=Key 4=Year 5=Date 6=WordList\n");
4487 printf("5=Truncation: ");
4488 printf("1=Right 2=Left 3=L&R 100=No 101=# 102=Re-1 103=Re-2\n");
4489 printf("6=Completeness:");
4490 printf("1=Incomplete subfield 2=Complete subfield 3=Complete field\n");
4492 if (!strcmp(topic, "prox"))
4494 printf("Proximity:\n");
4495 printf(" @prox exl dist ord rel uc ut\n");
4496 printf(" exl: exclude flag . 0=include, 1=exclude.\n");
4497 printf(" dist: distance integer.\n");
4498 printf(" ord: order flag. 0=unordered, 1=ordered.\n");
4499 printf(" rel: relation integer. 1< 2<= 3= 4>= 5> 6!= .\n");
4500 printf(" uc: unit class. k=known, p=private.\n");
4501 printf(" ut: unit type. 1=character, 2=word, 3=sentence,\n");
4502 printf(" 4=paragraph, 5=section, 6=chapter, 7=document,\n");
4503 printf(" 8=element, 9=subelement, 10=elementType, 11=byte.\n");
4504 printf("\nExamples:\n");
4505 printf(" Search for a and b in-order at most 3 words apart:\n");
4506 printf(" @prox 0 3 1 2 k 2 a b\n");
4507 printf(" Search for any order of a and b next to each other:\n");
4508 printf(" @prox 0 1 0 3 k 2 a b\n");
4513 int cmd_register_tab(const char* arg)
4515 #if HAVE_READLINE_READLINE_H
4516 char command[101], tabargument[101];
4519 const char** tabslist;
4521 if (sscanf (arg, "%100s %100s", command, tabargument) < 1) {
4525 /* locate the amdn in the list */
4526 for (i = 0; cmd_array[i].cmd; i++) {
4527 if (!strncmp(cmd_array[i].cmd, command, strlen(command))) {
4532 if (!cmd_array[i].cmd) {
4533 fprintf(stderr,"Unknown command %s\n",command);
4538 if (!cmd_array[i].local_tabcompletes)
4539 cmd_array[i].local_tabcompletes = (const char **) calloc(1,sizeof(char**));
4543 tabslist = cmd_array[i].local_tabcompletes;
4544 for(; tabslist && *tabslist; tabslist++) {
4548 cmd_array[i].local_tabcompletes = (const char **)
4549 realloc(cmd_array[i].local_tabcompletes,
4550 (num_of_tabs+2)*sizeof(char**));
4551 tabslist = cmd_array[i].local_tabcompletes;
4552 tabslist[num_of_tabs] = strdup(tabargument);
4553 tabslist[num_of_tabs+1] = NULL;
4559 void process_cmd_line(char* line)
4562 char word[32], arg[10240];
4564 #if HAVE_GETTIMEOFDAY
4565 gettimeofday (&tv_start, 0);
4568 if ((res = sscanf(line, "%31s %10239[^;]", word, arg)) <= 0)
4570 strcpy(word, last_cmd);
4575 strcpy(last_cmd, word);
4577 /* removed tailing spaces from the arg command */
4580 char* lastnonspace=NULL;
4583 if(!isspace(*(unsigned char *) p)) {
4588 *(++lastnonspace) = 0;
4591 for (i = 0; cmd_array[i].cmd; i++)
4592 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
4594 res = (*cmd_array[i].fun)(arg);
4598 if (!cmd_array[i].cmd) /* dump our help-screen */
4600 printf("Unknown command: %s.\n", word);
4601 printf("Type 'help' for list of commands\n");
4605 if(apdu_file) fflush(apdu_file);
4607 if (res >= 2 && auto_wait)
4608 wait_and_handle_response(0);
4616 static char *command_generator(const char *text, int state)
4618 #if HAVE_READLINE_READLINE_H
4623 for( ; cmd_array[idx].cmd; ++idx) {
4624 if (!strncmp(cmd_array[idx].cmd, text, strlen(text))) {
4625 ++idx; /* skip this entry on the next run */
4626 return strdup(cmd_array[idx-1].cmd);
4633 #if HAVE_READLINE_READLINE_H
4634 static const char** default_completer_list = NULL;
4636 static char* default_completer(const char* text, int state)
4638 return complete_from_list(default_completer_list, text, state);
4642 #if HAVE_READLINE_READLINE_H
4645 This function only known how to complete on the first word
4647 char **readline_completer(char *text, int start, int end)
4649 completerFunctionType completerToUse;
4652 #if HAVE_READLINE_RL_COMPLETION_MATCHES
4653 char** res = rl_completion_matches(text, command_generator);
4655 char** res = completion_matches(text,
4656 (CPFunction*)command_generator);
4658 rl_attempted_completion_over = 1;
4661 char arg[10240],word[32];
4663 if ((res = sscanf(rl_line_buffer, "%31s %10239[^;]", word, arg)) <= 0) {
4664 rl_attempted_completion_over = 1;
4668 for (i = 0; cmd_array[i].cmd; i++)
4669 if (!strncmp(cmd_array[i].cmd, word, strlen(word)))
4672 if(!cmd_array[i].cmd)
4675 default_completer_list = cmd_array[i].local_tabcompletes;
4677 completerToUse = cmd_array[i].rl_completerfunction;
4678 if (!completerToUse)
4679 { /* if command completer is not defined use the default completer */
4680 completerToUse = default_completer;
4682 if (completerToUse) {
4683 #ifdef HAVE_READLINE_RL_COMPLETION_MATCHES
4685 rl_completion_matches(text, completerToUse);
4688 completion_matches(text, (CPFunction*)completerToUse);
4690 if (!cmd_array[i].complete_filenames)
4691 rl_attempted_completion_over = 1;
4694 if (!cmd_array[i].complete_filenames)
4695 rl_attempted_completion_over = 1;
4703 void ctrl_c_handler(int x)
4709 static void client(void)
4716 signal(SIGINT, ctrl_c_handler);
4719 #if HAVE_GETTIMEOFDAY
4720 gettimeofday (&tv_start, 0);
4725 char *line_in = NULL;
4726 #if HAVE_READLINE_READLINE_H
4729 line_in=readline(C_PROMPT);
4732 #if HAVE_READLINE_HISTORY_H
4734 add_history(line_in);
4736 strncpy(line, line_in, sizeof(line)-1);
4745 if (!fgets(line, sizeof(line)-1, stdin))
4747 if ((end_p = strchr (line, '\n')))
4751 file_history_add_line(file_history, line);
4752 process_cmd_line(line);
4756 static void show_version(void)
4760 yaz_version(vstr, 0);
4761 printf ("YAZ version: %s\n", YAZ_VERSION);
4762 if (strcmp(vstr, YAZ_VERSION))
4763 printf ("YAZ DLL/SO: %s\n", vstr);
4767 int main(int argc, char **argv)
4770 char *open_command = 0;
4771 char *auth_command = 0;
4776 if (!setlocale(LC_CTYPE, ""))
4777 fprintf (stderr, "setlocale failed\n");
4781 codeset = nl_langinfo(CODESET);
4785 outputCharset = xstrdup(codeset);
4787 ODR_MASK_SET(&z3950_options, Z_Options_search);
4788 ODR_MASK_SET(&z3950_options, Z_Options_present);
4789 ODR_MASK_SET(&z3950_options, Z_Options_namedResultSets);
4790 ODR_MASK_SET(&z3950_options, Z_Options_triggerResourceCtrl);
4791 ODR_MASK_SET(&z3950_options, Z_Options_scan);
4792 ODR_MASK_SET(&z3950_options, Z_Options_sort);
4793 ODR_MASK_SET(&z3950_options, Z_Options_extendedServices);
4794 ODR_MASK_SET(&z3950_options, Z_Options_delSet);
4796 while ((ret = options("k:c:q:a:b:m:v:p:u:t:Vxd:", argv, argc, &arg)) != -2)
4803 open_command = (char *) xmalloc (strlen(arg)+6);
4804 strcpy (open_command, "open ");
4805 strcat (open_command, arg);
4809 fprintf(stderr, "%s: Specify at most one server address\n",
4815 dump_file_prefix = arg;
4818 kilobytes = atoi(arg);
4821 if (!(marc_file = fopen (arg, "a")))
4828 outputCharset = xstrdup(arg);
4831 strncpy (ccl_fields, arg, sizeof(ccl_fields)-1);
4832 ccl_fields[sizeof(ccl_fields)-1] = '\0';
4835 strncpy (cql_fields, arg, sizeof(cql_fields)-1);
4836 cql_fields[sizeof(cql_fields)-1] = '\0';
4839 if (!strcmp(arg, "-"))
4842 ber_file=fopen(arg, "a");
4845 if (!strcmp(arg, "-"))
4848 apdu_file=fopen(arg, "a");
4854 yazProxy = xstrdup(arg);
4859 auth_command = (char *) xmalloc (strlen(arg)+6);
4860 strcpy (auth_command, "auth ");
4861 strcat (auth_command, arg);
4865 yaz_log_init(yaz_log_mask_str(arg), "", 0);
4871 fprintf (stderr, "Usage: %s "
4878 " [-p <proxy-addr>]"
4882 " [<server-addr>]\n",
4890 #ifdef HAVE_GETTIMEOFDAY
4891 gettimeofday (&tv_start, 0);
4893 process_cmd_line (auth_command);
4894 #if HAVE_READLINE_HISTORY_H
4895 add_history(auth_command);
4897 xfree(auth_command);
4901 #ifdef HAVE_GETTIMEOFDAY
4902 gettimeofday (&tv_start, 0);
4904 process_cmd_line (open_command);
4905 #if HAVE_READLINE_HISTORY_H
4906 add_history(open_command);
4908 xfree(open_command);
4917 * indent-tabs-mode: nil
4919 * vim: shiftwidth=4 tabstop=8 expandtab