#
# $Log: client.tcl,v $
-# Revision 1.15 1995-03-28 12:45:22 adam
+# Revision 1.16 1995-03-31 08:56:36 adam
+# New button "Search".
+#
+# Revision 1.15 1995/03/28 12:45:22 adam
# New ir method failback: called on disconnect/protocol error.
# New ir set/get method: protocol: SR / Z3950.
# Simple popup and disconnect when failback is invoked.
set settingsChanged 0
set setNo 0
-wm minsize . 300 200
+wm minsize . 300 250
if {[file readable "~/.tk-c"]} {
source "~/.tk-c"
z39 callback {init-response}
z39 init
show-status {Initializing} 1
- set setNo 0
}
proc init-response {} {
}
return
}
- if {$setMax > 10} {
- set setMax 10
+ if {$setMax > 4} {
+ set setMax 4
}
z39 callback {present-response}
set setOffset 1
- z39.$setNo present 1 $setMax
+ z39.$setNo present $setOffset $setMax
+ show-status {Retrieve} 1
+}
+
+proc present-more {number} {
+ global setNo
+ global setOffset
+ global setMax
+
+ puts "present-more"
+ set max [z39.$setNo resultCount]
+ if {$max <= $setMax} {
+ return
+ }
+ puts "max=$max"
+ puts "setOffset=$setOffset"
+ if {$number == ""} {
+ set setMax $max
+ } else {
+ incr setMax $number
+ }
+ z39 callback {present-response}
+ z39.$setNo present $setOffset [expr $setMax - $setOffset + 1]
show-status {Retrieve} 1
}
menu .top.target.m.slist
cascade-target-list
-menubutton .top.database -text "Database" -underline 0 -menu .top.database.m
-menu .top.database.m
-.top.database.m add command -label "Select ..." -command {database-select}
-.top.database.m add command -label "Add ..." -command {puts "Add"}
+menubutton .top.search -text "Search" -underline 0 -menu .top.search.m
+menu .top.search.m
+.top.search.m add command -label "Database" -command {database-select}
+.top.search.m add cascade -label "Query type" -menu .top.search.m.querytype
+menu .top.search.m.querytype
+.top.search.m.querytype add radiobutton -label "RPN"
+.top.search.m.querytype add radiobutton -label "CCL"
+.top.search.m add cascade -label "Present" -menu .top.search.m.present
+menu .top.search.m.present
+.top.search.m.present add command -label "More" -command [list present-more 10]
+.top.search.m.present add command -label "All" -command [list present-more {}]
menubutton .top.help -text "Help" -menu .top.help.m
menu .top.help.m
.top.help.m add command -label "Help on help" -command {puts "Help on help"}
.top.help.m add command -label "About" -command {puts "About"}
-pack .top.file .top.target .top.database -side left
+pack .top.file .top.target .top.search -side left
pack .top.help -side right
label .mid.searchlabel -text {Search:}
* Sebastian Hammer, Adam Dickmeiss
*
* $Log: ir-tcl.c,v $
- * Revision 1.20 1995-03-29 16:07:09 adam
+ * Revision 1.21 1995-03-31 08:56:37 adam
+ * New button "Search".
+ *
+ * Revision 1.20 1995/03/29 16:07:09 adam
* Bug fix: Didn't use setName in present request.
*
* Revision 1.19 1995/03/28 12:45:23 adam
#include <assert.h>
#include <yaz-ccl.h>
-#include <iso2709p.h>
+#include <iso2709.h>
#include <comstack.h>
#include <tcpip.h>
Z_InitRequest req;
int r;
+ if (!p->cs_link)
+ {
+ interp->result = "not connected";
+ return TCL_ERROR;
+ }
req.referenceId = 0;
req.options = &p->options;
req.protocolVersion = &p->protocolVersion;
if ((r=cs_put (p->cs_link, p->sbuf, p->slen)) < 0)
{
interp->result = "cs_put failed in init";
+ do_disconnect (p, NULL, 0, NULL);
return TCL_ERROR;
}
else if (r == 1)
if ((r=cs_connect (p->cs_link, addr)) < 0)
{
interp->result = "cs_connect fail";
+ do_disconnect (p, NULL, 0, NULL);
return TCL_ERROR;
}
ir_select_add (cs_fileno (p->cs_link), p);
Tcl_Eval (p->interp, p->callback);
}
}
- Tcl_AppendElement (interp, p->hostname);
+ if (p->hostname)
+ Tcl_AppendElement (interp, p->hostname);
return TCL_OK;
}
{
free (p->hostname);
p->hostname = NULL;
+ ir_select_remove_write (cs_fileno (p->cs_link), p);
ir_select_remove (cs_fileno (p->cs_link), p);
assert (p->cs_link);
cs_close (p->cs_link);
p->cs_link = NULL;
}
+ assert (!p->cs_link);
return TCL_OK;
}
interp->result = "no databaseNames";
return TCL_ERROR;
}
+ if (!p->cs_link)
+ {
+ interp->result = "not connected";
+ return TCL_ERROR;
+ }
apdu.which = Z_APDU_searchRequest;
apdu.u.searchRequest = &req;
apdup = &apdu;
return TCL_OK;
}
-static int marc_cmp (const char *field, const char *pattern)
-{
- if (*pattern == '*')
- return 0;
- for (; *field && *pattern; field++, pattern++)
- {
- if (*pattern == '?')
- continue;
- if (*pattern != *field)
- break;
- }
- return *field - *pattern;
-}
-
static int get_marc_fields(Tcl_Interp *interp, Iso2709Rec rec,
int argc, char **argv)
{
- struct iso2709_dir *dir;
- struct iso2709_field *field;
+ Iso2709Anchor a;
+ char *data;
- for (dir = rec->directory; dir; dir = dir->next)
+ a = iso2709_a_mk (rec);
+ while (iso2709_a_search (a, argv[4], argv[5], argv[6]))
{
- if (argc > 4 && marc_cmp (dir->tag, argv[4]))
- continue;
- if (argc > 5 && marc_cmp (dir->indicator, argv[5]))
- continue;
- for (field = dir->fields; field; field = field->next)
- {
- if (argc > 6 && marc_cmp (field->identifier, argv[6]))
- continue;
- Tcl_AppendElement (interp, field->data);
- }
+ if (!(iso2709_a_info_field (a, NULL, NULL, NULL, &data)))
+ break;
+ Tcl_AppendElement (interp, data);
+ iso2709_a_next (a);
}
+
+ iso2709_a_rm (a);
return TCL_OK;
}
-static int get_marc_lines (Tcl_Interp *interp, Iso2709Rec rec,
- int argc, char **argv)
+static int get_marc_lines(Tcl_Interp *interp, Iso2709Rec rec,
+ int argc, char **argv)
{
- struct iso2709_dir *dir;
- struct iso2709_field *field;
+ Iso2709Anchor a;
+ char *tag;
+ char *indicator;
+ char *identifier;
+ char *data;
+ char *ptag = "";
- for (dir = rec->directory; dir; dir = dir->next)
+ a = iso2709_a_mk (rec);
+ while (iso2709_a_search (a, argv[4], argv[5], argv[6]))
{
- if (argc > 4 && marc_cmp (dir->tag, argv[4]))
- continue;
- if (!dir->indicator)
- Tcl_AppendResult (interp, "{", dir->tag, " {} {", NULL);
- else
- {
- if (argc > 5 && marc_cmp (dir->indicator, argv[5]))
- continue;
- Tcl_AppendResult (interp, "{", dir->tag, " {", dir->indicator,
- "} {", NULL);
- }
- for (field = dir->fields; field; field = field->next)
+ if (!(iso2709_a_info_field (a, &tag, &indicator, &identifier, &data)))
+ break;
+ if (strcmp (tag, ptag))
{
- if (!field->identifier)
- Tcl_AppendResult (interp, "{{}", NULL);
+ if (*ptag)
+ Tcl_AppendResult (interp, "}} ", NULL);
+ if (!indicator)
+ Tcl_AppendResult (interp, "{", tag, " {} {", NULL);
else
- {
- if (argc > 6 && marc_cmp (field->identifier, argv[6]))
- continue;
- Tcl_AppendResult (interp, "{", field->identifier, NULL);
- }
- Tcl_AppendElement (interp, field->data);
- Tcl_AppendResult (interp, "} ", NULL);
+ Tcl_AppendResult (interp, "{", tag, " {", indicator,
+ "} {", NULL);
+ ptag = tag;
}
- Tcl_AppendResult (interp, "}} ", NULL);
+ if (!identifier)
+ Tcl_AppendResult (interp, "{{}", NULL);
+ else
+ Tcl_AppendResult (interp, "{", identifier, NULL);
+ Tcl_AppendElement (interp, data);
+ Tcl_AppendResult (interp, "} ", NULL);
+ iso2709_a_next (a);
}
+ if (*ptag)
+ Tcl_AppendResult (interp, "}} ", NULL);
+ iso2709_a_rm (a);
return TCL_OK;
}
}
else
number = 10;
+ if (!p->cs_link)
+ {
+ interp->result = "not connected";
+ return TCL_ERROR;
+ }
obj->start = start;
obj->number = number;
printf ("cs_rcvconnect error\n");
if (p->failback)
Tcl_Eval (p->interp, p->failback);
+ do_disconnect (p, NULL, 0, NULL);
return;
}
if (p->callback)
ir_select_remove (cs_fileno (p->cs_link), p);
if (p->failback)
Tcl_Eval (p->interp, p->failback);
+ do_disconnect (p, NULL, 0, NULL);
return;
}
if (r == 1)
printf ("%s\n", odr_errlist [odr_geterror (p->odr_in)]);
if (p->failback)
Tcl_Eval (p->interp, p->failback);
+ do_disconnect (p, NULL, 0, NULL);
return;
}
switch(apdu->which)
apdu->which);
if (p->failback)
Tcl_Eval (p->interp, p->failback);
+ do_disconnect (p, NULL, 0, NULL);
}
if (p->callback)
Tcl_Eval (p->interp, p->callback);
ir_select_remove_write (cs_fileno (p->cs_link), p);
if (p->failback)
Tcl_Eval (p->interp, p->failback);
+ do_disconnect (p, NULL, 0, NULL);
return;
}
ir_select_remove_write (cs_fileno (p->cs_link), p);
if ((r=cs_put (p->cs_link, p->sbuf, p->slen)) < 0)
{
printf ("select write fail\n");
- cs_close (p->cs_link);
if (p->failback)
Tcl_Eval (p->interp, p->failback);
+ do_disconnect (p, NULL, 0, NULL);
}
else if (r == 0) /* remove select bit */
{