2 * Copyright (c) 1995, the EUROPAGATE consortium (see below).
4 * The EUROPAGATE consortium members are:
6 * University College Dublin
7 * Danmarks Teknologiske Videnscenter
8 * An Chomhairle Leabharlanna
9 * Consejo Superior de Investigaciones Cientificas
11 * Permission to use, copy, modify, distribute, and sell this software and
12 * its documentation, in whole or in part, for any purpose, is hereby granted,
15 * 1. This copyright and permission notice appear in all copies of the
16 * software and its documentation. Notices of copyright or attribution
17 * which appear at the beginning of any file must remain unchanged.
19 * 2. The names of EUROPAGATE or the project partners may not be used to
20 * endorse or promote products derived from this software without specific
21 * prior written permission.
23 * 3. Users of this software (implementors and gateway operators) agree to
24 * inform the EUROPAGATE consortium of their use of the software. This
25 * information will be used to evaluate the EUROPAGATE project and the
26 * software, and to plan further developments. The consortium may use
27 * the information in later publications.
29 * 4. Users of this software agree to make their best efforts, when
30 * documenting their use of the software, to acknowledge the EUROPAGATE
31 * consortium, and the role played by the software in their work.
33 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
34 * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
35 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
36 * IN NO EVENT SHALL THE EUROPAGATE CONSORTIUM OR ITS MEMBERS BE LIABLE
37 * FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF
38 * ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
39 * OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND
40 * ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
41 * USE OR PERFORMANCE OF THIS SOFTWARE.
44 * Revision 1.10 1995/11/08 16:14:35 adam
45 * Many improvements and bug fixes.
46 * First version that ran on dtbsun.
48 * Revision 1.9 1995/11/07 14:57:00 adam
49 * Work on search in multiple targets.
50 * New wtcl command: wlog.
51 * Optional timeout parameter to zwait.
53 * Revision 1.8 1995/11/06 17:44:23 adam
54 * State reestablised when shell restarts. History of previous
57 * Revision 1.7 1995/10/31 16:56:25 adam
58 * Record presentation.
60 * Revision 1.6 1995/10/31 10:03:54 adam
62 * New command implemented - aborts script.
64 * Revision 1.5 1995/10/30 17:35:18 adam
65 * New function zwait that waits for a variable change - due to i/o events
66 * that invoke callback routines.
68 * Revision 1.4 1995/10/27 17:30:16 adam
69 * First search request/response that works.
71 * Revision 1.3 1995/10/27 15:12:14 adam
72 * IrTcl incorporated in the gateway.
73 * Better separation of script types.
74 * Z39.50 gateway scripts entered.
76 * Revision 1.2 1995/10/23 16:55:43 adam
77 * A lot of changes - really.
79 * Revision 1.1 1995/10/20 14:02:42 adam
80 * First version of WWW gateway with embedded Tcl.
92 static void *do_create (WCLIENT wcl, void *args);
93 static int do_exec (const char *fname, char *parms, void *mydata);
94 static int do_load (char *parms, void *mydata);
95 static int do_save (char *parms, void *mydata);
97 static struct w_interp_type w_interp_t = {
105 W_Interp_Type w_interp_tcl = &w_interp_t;
108 static char *mod = "wtcl";
119 Tcl_Interp *w_interp_tcl_get (W_Interp w_interp)
123 if (strcmp (w_interp->ctrl->name, "tcl"))
125 gw_log (GW_LOG_FATAL, mod, "Internal failure");
128 p = (struct tcl_info*) w_interp->mydata;
132 static int proc_wabort_invoke (ClientData clientData, Tcl_Interp *interp,
133 int argc, char **argv)
135 struct tcl_info *p = (struct tcl_info*) clientData;
139 Tcl_AppendResult (interp, argv[1], NULL);
143 static int proc_wflush_invoke (ClientData clientData, Tcl_Interp *interp,
144 int argc, char **argv)
146 struct tcl_info *p = (struct tcl_info*) clientData;
152 static int proc_html_invoke (ClientData clientData, Tcl_Interp *interp,
153 int argc, char **argv)
155 struct tcl_info *p = (struct tcl_info*) clientData;
158 for (i = 1; i<argc; i++)
159 wo_puts (p->wcl, argv[i]);
163 static int proc_htmlr_invoke (ClientData clientData, Tcl_Interp *interp,
164 int argc, char **argv)
166 struct tcl_info *p = (struct tcl_info*) clientData;
169 r = proc_html_invoke (clientData, interp, argc, argv);
170 wo_putc (p->wcl, '\n');
174 static int proc_wform_invoke (ClientData clientData, Tcl_Interp *interp,
175 int argc, char **argv)
177 struct tcl_info *p = (struct tcl_info*) clientData;
181 for (i = 0; *p->wcl->wf_data[i].name; i++)
182 if (!strcmp (argv[1], p->wcl->wf_data[i].name) &&
183 *p->wcl->wf_data[i].value)
184 Tcl_AppendElement (p->interp, p->wcl->wf_data[i].value);
187 for (i = 0; *p->wcl->wf_data[i].name; i++)
189 Tcl_AppendResult (p->interp, "{ ", NULL);
190 Tcl_AppendElement (p->interp, p->wcl->wf_data[i].name);
191 Tcl_AppendElement (p->interp, p->wcl->wf_data[i].value);
192 Tcl_AppendResult (p->interp, " }\n", NULL);
197 static int proc_wlog_invoke (ClientData clientData, Tcl_Interp *interp,
198 int argc, char **argv)
204 if (!strcmp (argv[1], "debug"))
206 else if (!strcmp (argv[1], "fatal"))
208 else if (!strcmp (argv[1], "warn"))
210 else if (!strcmp (argv[1], "acct"))
217 gw_log (mask, mod, "%s", argv[2]);
220 gw_log (mask, mod, "%s %s", argv[2], argv[3]);
223 gw_log (mask, mod, "%s %s %s", argv[2], argv[3], argv[4]);
226 gw_log (mask, mod, "%s %s %s %s", argv[2], argv[3], argv[4], argv[5]);
233 int Tcl_AppInit (Tcl_Interp *interp)
235 if (Tcl_Init (interp) == TCL_ERROR)
240 static void *do_create (WCLIENT wcl, void *args)
245 if (!(p = malloc (sizeof(*p))))
247 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "malloc: tcl_info");
250 if (!(p->interp = Tcl_CreateInterp ()))
252 gw_log (GW_LOG_FATAL, mod, "Cannot make Tcl_Interp");
257 if (!(p->fbuf = malloc (p->fbuf_size)))
259 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "malloc: tcl_info fbuf");
262 Tcl_AppInit (p->interp);
263 Tcl_CreateCommand (p->interp, "html", proc_html_invoke, p, NULL);
264 Tcl_CreateCommand (p->interp, "htmlr", proc_htmlr_invoke, p, NULL);
265 Tcl_CreateCommand (p->interp, "wform", proc_wform_invoke, p, NULL);
266 Tcl_CreateCommand (p->interp, "wabort", proc_wabort_invoke, p, NULL);
267 Tcl_CreateCommand (p->interp, "wflush", proc_wflush_invoke, p, NULL);
268 Tcl_CreateCommand (p->interp, "wlog", proc_wlog_invoke, p, NULL);
269 sprintf (tmp_str, "%d", wcl->id);
270 Tcl_SetVar (p->interp, "sessionId", tmp_str, TCL_GLOBAL_ONLY);
274 static void report_error (struct tcl_info *p, int errorLine,
275 const char *pre, const char *msg)
279 gw_log (GW_LOG_WARN, mod, "%s %d %s", pre, errorLine, msg);
280 wo_printf (p->wcl, "\n<br><hr>\n<strong>"
281 "%s %d</strong><br>\n", pre, errorLine);
282 wo_printf (p->wcl, "<xmp>\n%s</xmp>\n<hr>\n", msg);
285 static int tcl_exec (const char *fname, char *parms,
286 struct tcl_info *p, FILE *inf, int *lineno)
288 int c, escape = 0, level = 0;
294 if (fbuf_ptr == p->fbuf_size-1)
298 if (!(newb = malloc (p->fbuf_size += 16384)))
300 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "malloc: fbuf");
303 memcpy (newb, p->fbuf, fbuf_ptr);
310 report_error (p, *lineno, "Error in Tcl script starting at line",
311 "Unexpected EOF (missing right brace)");
316 else if (c == '{' && !escape)
321 else if (c == '}' && !escape)
333 p->fbuf[fbuf_ptr++] = c;
335 p->fbuf[fbuf_ptr] = '\0';
337 r = Tcl_Eval (p->interp, p->fbuf);
339 report_error (p, p->interp->errorLine + *lineno - 1,
340 "Error in Tcl script in line",
341 Tcl_GetVar (p->interp, "errorInfo", 0));
342 (*lineno) += local_line;
348 static int do_exec (const char *fname, char *parms, void *mydata)
350 struct tcl_info *p = mydata;
353 FILE *inf = fopen (fname, "r");
355 gw_log (GW_LOG_DEBUG, mod, "Executing %s", fname);
358 gw_log (GW_LOG_WARN|GW_LOG_ERRNO, mod, "open %s", fname);
361 Tcl_SetVar (p->interp, "sessionParms", parms, TCL_GLOBAL_ONLY);
362 while ((c = getc(inf)) != EOF)
372 int r = tcl_exec (fname, parms, p, inf, &lineno);
378 else if (r == TCL_ERROR)
399 static int do_load (char *parms, void *mydata)
401 struct tcl_info *p = mydata;
405 sprintf (fname, "tcl.state.%d", p->wcl->id);
406 r = Tcl_EvalFile (p->interp, fname);
408 report_error (p, p->interp->errorLine,
409 "Error in Tcl loadState in line",
410 Tcl_GetVar (p->interp, "errorInfo", 0));
414 static int do_save (char *parms, void *mydata)
416 struct tcl_info *p = mydata;
417 struct Tcl_CmdInfo cinfo;
419 if (Tcl_GetCommandInfo(p->interp, "saveState", &cinfo))
423 gw_log (GW_LOG_DEBUG, mod, "saveState");
424 r = Tcl_Eval (p->interp, "saveState\n");
426 report_error (p, p->interp->errorLine,
427 "Error in Tcl saveState in line",
428 Tcl_GetVar (p->interp, "errorInfo", 0));