X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=tclmain.c;h=bf27a749318785c1df0a787f6a65a1488b741576;hb=2d7ed4958a374e8188f8b505cf4411aca1ad2717;hp=377e87b7decd53df3ff8a9b91300d67b9fe95a54;hpb=6ce01d975c367faed574b3e477423858ce4b4400;p=ir-tcl-moved-to-github.git diff --git a/tclmain.c b/tclmain.c index 377e87b..bf27a74 100644 --- a/tclmain.c +++ b/tclmain.c @@ -5,7 +5,30 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: tclmain.c,v $ - * Revision 1.12 1995-08-28 11:07:16 adam + * Revision 1.18 1996-02-23 17:31:42 adam + * More functions made available to the wais tcl extension. + * + * Revision 1.17 1996/02/21 10:16:21 adam + * Simplified select handling. Only one function ir_tcl_select_set has + * to be externally defined. + * + * Revision 1.16 1996/02/05 17:58:05 adam + * Ported ir-tcl to use the beta releases of tcl7.5/tk4.1. + * + * Revision 1.15 1996/01/10 09:18:45 adam + * PDU specific callbacks implemented: initRespnse, searchResponse, + * presentResponse and scanResponse. + * Bug fix in the command line shell (tclmain.c) - discovered on OSF/1. + * + * Revision 1.14 1995/09/21 13:11:53 adam + * Support of dynamic loading. + * Test script uses load command if necessary. + * + * Revision 1.13 1995/08/28 12:21:22 adam + * Removed lines and list as synonyms of list in MARC extractron. + * Configure searches also for tk4.0 / tcl7.4. + * + * Revision 1.12 1995/08/28 11:07:16 adam * Minor changes. * * Revision 1.11 1995/08/03 13:23:02 adam @@ -55,10 +78,9 @@ static char *fileName = NULL; /* select(2) callbacks */ struct callback { - void (*r_handle)(ClientData); - void (*w_handle)(ClientData); - void (*x_handle)(ClientData); - void *obj; + void (*handle)(ClientData, int, int, int); + int r, w, e; + ClientData obj; }; #define MAX_CALLBACK 200 @@ -71,8 +93,12 @@ int Tcl_AppInit (Tcl_Interp *interp) { if (Tcl_Init(interp) == TCL_ERROR) return TCL_ERROR; - if (ir_tcl_init(interp) == TCL_ERROR) + if (Irtcl_Init(interp) == TCL_ERROR) + return TCL_ERROR; +#if USE_WAIS + if (Waistcl_Init(interp) == TCL_ERROR) return TCL_ERROR; +#endif return TCL_OK; } @@ -87,16 +113,11 @@ int main (int argc, char **argv) if (argc == 2) fileName = argv[1]; - log_init (LOG_ALL, "", NULL); if (Tcl_AppInit(interp) != TCL_OK) { fprintf(stderr, "Tcl_AppInit failed: %s\n", interp->result); } for (i=0; i max_fd) max_fd = fd; } -void ir_select_add_write (int fd, void *obj) -{ - callback_table[fd].w_handle = ir_select_write; - if (fd > max_fd) - max_fd = fd; -} - -void ir_select_remove_write (int fd, void *obj) -{ - callback_table[fd].w_handle = NULL; -} - -void ir_select_remove (int fd, void *obj) -{ - callback_table[fd].r_handle = NULL; - callback_table[fd].w_handle = NULL; - callback_table[fd].x_handle = NULL; -}