X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tclmain.c;h=d426d1c0b7650f3984fe34052c32890d6de0548e;hb=d026c3e06f6e19e5ed4174ab1a504a4b5af79183;hp=214ce9abc5beb51bc804c97f5faf7e05ba1b1db1;hpb=b7bac2322e7a6855f60d167509108eff3d21bd65;p=ir-tcl-moved-to-github.git diff --git a/tclmain.c b/tclmain.c index 214ce9a..d426d1c 100644 --- a/tclmain.c +++ b/tclmain.c @@ -1,35 +1,20 @@ /* * IR toolkit for tcl/tk - * (c) Index Data 1995 + * (c) Index Data 1995-1996 * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * * $Log: tclmain.c,v $ - * Revision 1.10 1995-06-30 12:39:28 adam - * Bug fix: loadFile didn't set record type. - * The MARC routines are a little less strict in the interpretation. - * Script display.tcl replaces the old marc.tcl. - * New interactive script: shell.tcl. + * Revision 1.21 2000-02-22 23:11:03 adam + * Fixed include statements. * - * Revision 1.9 1995/06/26 10:20:20 adam - * ir-tk works like wish. + * Revision 1.20 1997/04/30 07:26:08 adam + * Added support for shared libaries (if supported by Tcl itself). * - * Revision 1.8 1995/06/21 15:16:44 adam - * More work on configuration. - * - * Revision 1.7 1995/06/21 11:04:54 adam - * Uses GNU autoconf 2.3. - * Install procedure implemented. - * boook bitmaps moved to sub directory bitmaps. - * - * Revision 1.6 1995/05/29 08:44:28 adam - * Work on delete of objects. - * - * Revision 1.5 1995/03/20 08:53:30 adam - * Event loop in tclmain.c rewritten. New method searchStatus. - * - * Revision 1.4 1995/03/17 07:50:31 adam - * Headers have changed a little. + * Revision 1.19 1996/08/20 09:27:49 adam + * More work on explain. + * Renamed tkinit.c to tkmain.c. The tcl shell uses the Tcl 7.5 interface + * for socket i/o instead of the handcrafted one (for Tcl 7.3 and Tcl7.4). * */ @@ -39,20 +24,49 @@ #ifdef _AIX #include #endif + #include #include - +#include #include "ir-tcl.h" +int Tcl_AppInit (Tcl_Interp *interp) +{ + if (Tcl_Init(interp) == TCL_ERROR) + return 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; +} + +#if TCL_MAJOR_VERSION > 7 || (TCL_MAJOR_VERSION == 7 && TCL_MINOR_VERSION > 4) +/* new version of tcl: version > 7.4 */ +extern int matherr (); +int *tclDummyMathPtr = (int*) matherr; + +int main (int argc, char **argv) +{ + Tcl_Main (argc, argv, Tcl_AppInit); + return 0; +} + +#else +/* old version of tcl: version <= 7.4 */ + static char *fileName = NULL; +extern int main (); +int *tclDummyMainPtr = (int*) main; /* select(2) callbacks */ struct callback { - void (*r_handle)(void *p); - void (*w_handle)(void *p); - void (*x_handle)(void *p); - void *obj; + void (*handle)(ClientData, int, int, int); + int r, w, e; + ClientData obj; }; #define MAX_CALLBACK 200 @@ -61,15 +75,6 @@ static int max_fd = 3; /* don't worry: it will grow... */ void tcl_mainloop (Tcl_Interp *interp, int interactive); -int Tcl_AppInit (Tcl_Interp *interp) -{ - if (Tcl_Init(interp) == TCL_ERROR) - return TCL_ERROR; - if (ir_tcl_init(interp) == TCL_ERROR) - return TCL_ERROR; - return TCL_OK; -} - int main (int argc, char **argv) { Tcl_Interp *interp; @@ -85,11 +90,7 @@ int main (int argc, char **argv) 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) +void ir_tcl_select_set (void (*f)(ClientData clientData, int r, int w, int e), + int fd, ClientData clientData, int r, int w, int e) { - callback_table[fd].w_handle = ir_select_write; + callback_table[fd].handle = f; + callback_table[fd].obj = clientData; + callback_table[fd].r = r; + callback_table[fd].w = w; + callback_table[fd].e = e; 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; -} +#endif