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.11 1996/01/24 08:26:56 adam
45 * All tcl commands prefixed with egw_ (except the html command).
47 * Revision 1.10 1995/11/08 16:14:35 adam
48 * Many improvements and bug fixes.
49 * First version that ran on dtbsun.
51 * Revision 1.9 1995/11/07 14:57:00 adam
52 * Work on search in multiple targets.
53 * New wtcl command: wlog.
54 * Optional timeout parameter to zwait.
56 * Revision 1.8 1995/11/06 17:44:23 adam
57 * State reestablised when shell restarts. History of previous
60 * Revision 1.7 1995/10/31 16:56:25 adam
61 * Record presentation.
63 * Revision 1.6 1995/10/31 10:03:54 adam
65 * New command implemented - aborts script.
67 * Revision 1.5 1995/10/30 17:35:18 adam
68 * New function zwait that waits for a variable change - due to i/o events
69 * that invoke callback routines.
71 * Revision 1.4 1995/10/27 17:30:16 adam
72 * First search request/response that works.
74 * Revision 1.3 1995/10/27 15:12:14 adam
75 * IrTcl incorporated in the gateway.
76 * Better separation of script types.
77 * Z39.50 gateway scripts entered.
79 * Revision 1.2 1995/10/23 16:55:43 adam
80 * A lot of changes - really.
82 * Revision 1.1 1995/10/20 14:02:42 adam
83 * First version of WWW gateway with embedded Tcl.
95 static void *do_create (WCLIENT wcl, void *args);
96 static int do_exec (const char *fname, char *parms, void *mydata);
97 static int do_load (char *parms, void *mydata);
98 static int do_save (char *parms, void *mydata);
100 static struct w_interp_type w_interp_t = {
108 W_Interp_Type w_interp_tcl = &w_interp_t;
111 static char *mod = "wtcl";
122 Tcl_Interp *w_interp_tcl_get (W_Interp w_interp)
126 if (strcmp (w_interp->ctrl->name, "tcl"))
128 gw_log (GW_LOG_FATAL, mod, "Internal failure");
131 p = (struct tcl_info*) w_interp->mydata;
135 static int proc_wabort_invoke (ClientData clientData, Tcl_Interp *interp,
136 int argc, char **argv)
138 struct tcl_info *p = (struct tcl_info*) clientData;
142 Tcl_AppendResult (interp, argv[1], NULL);
146 static int proc_wflush_invoke (ClientData clientData, Tcl_Interp *interp,
147 int argc, char **argv)
149 struct tcl_info *p = (struct tcl_info*) clientData;
155 static int proc_html_invoke (ClientData clientData, Tcl_Interp *interp,
156 int argc, char **argv)
158 struct tcl_info *p = (struct tcl_info*) clientData;
161 for (i = 1; i<argc; i++)
162 wo_write (p->wcl, argv[i], strlen(argv[i]));
166 static int proc_wform_invoke (ClientData clientData, Tcl_Interp *interp,
167 int argc, char **argv)
169 struct tcl_info *p = (struct tcl_info*) clientData;
173 for (i = 0; *p->wcl->wf_data[i].name; i++)
174 if (!strcmp (argv[1], p->wcl->wf_data[i].name) &&
175 *p->wcl->wf_data[i].value)
176 Tcl_AppendElement (p->interp, p->wcl->wf_data[i].value);
179 for (i = 0; *p->wcl->wf_data[i].name; i++)
181 Tcl_AppendResult (p->interp, "{ ", NULL);
182 Tcl_AppendElement (p->interp, p->wcl->wf_data[i].name);
183 Tcl_AppendElement (p->interp, p->wcl->wf_data[i].value);
184 Tcl_AppendResult (p->interp, " }\n", NULL);
189 static int proc_wlog_invoke (ClientData clientData, Tcl_Interp *interp,
190 int argc, char **argv)
196 if (!strcmp (argv[1], "debug"))
198 else if (!strcmp (argv[1], "fatal"))
200 else if (!strcmp (argv[1], "warn"))
202 else if (!strcmp (argv[1], "acct"))
209 gw_log (mask, mod, "%s", argv[2]);
212 gw_log (mask, mod, "%s %s", argv[2], argv[3]);
215 gw_log (mask, mod, "%s %s %s", argv[2], argv[3], argv[4]);
218 gw_log (mask, mod, "%s %s %s %s", argv[2], argv[3], argv[4], argv[5]);
225 int Tcl_AppInit (Tcl_Interp *interp)
227 if (Tcl_Init (interp) == TCL_ERROR)
232 static void *do_create (WCLIENT wcl, void *args)
237 if (!(p = malloc (sizeof(*p))))
239 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "malloc: tcl_info");
242 if (!(p->interp = Tcl_CreateInterp ()))
244 gw_log (GW_LOG_FATAL, mod, "Cannot make Tcl_Interp");
249 if (!(p->fbuf = malloc (p->fbuf_size)))
251 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "malloc: tcl_info fbuf");
254 Tcl_AppInit (p->interp);
255 Tcl_CreateCommand (p->interp, "html", proc_html_invoke, p, NULL);
256 Tcl_CreateCommand (p->interp, "egw_form", proc_wform_invoke, p, NULL);
257 Tcl_CreateCommand (p->interp, "egw_abort", proc_wabort_invoke, p, NULL);
258 Tcl_CreateCommand (p->interp, "egw_flush", proc_wflush_invoke, p, NULL);
259 Tcl_CreateCommand (p->interp, "egw_log", proc_wlog_invoke, p, NULL);
260 sprintf (tmp_str, "%d", wcl->id);
261 Tcl_SetVar (p->interp, "sessionId", tmp_str, TCL_GLOBAL_ONLY);
265 static void report_error (struct tcl_info *p, int errorLine,
266 const char *pre, const char *msg)
270 gw_log (GW_LOG_WARN, mod, "%s %d %s", pre, errorLine, msg);
271 wo_printf (p->wcl, "\n<br><hr>\n<strong>"
272 "%s %d</strong><br>\n", pre, errorLine);
273 wo_printf (p->wcl, "<xmp>\n%s</xmp>\n<hr>\n", msg);
276 static int tcl_exec (const char *fname, char *parms,
277 struct tcl_info *p, FILE *inf, int *lineno)
279 int c, escape = 0, level = 0;
285 if (fbuf_ptr == p->fbuf_size-1)
289 if (!(newb = malloc (p->fbuf_size += 16384)))
291 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "malloc: fbuf");
294 memcpy (newb, p->fbuf, fbuf_ptr);
301 report_error (p, *lineno, "Error in Tcl script starting at line",
302 "Unexpected EOF (missing right brace)");
307 else if (c == '{' && !escape)
312 else if (c == '}' && !escape)
324 p->fbuf[fbuf_ptr++] = c;
326 p->fbuf[fbuf_ptr] = '\0';
328 r = Tcl_Eval (p->interp, p->fbuf);
330 report_error (p, p->interp->errorLine + *lineno - 1,
331 "Error in Tcl script in line",
332 Tcl_GetVar (p->interp, "errorInfo", 0));
333 (*lineno) += local_line;
339 static int do_exec (const char *fname, char *parms, void *mydata)
341 struct tcl_info *p = mydata;
344 FILE *inf = fopen (fname, "r");
346 gw_log (GW_LOG_DEBUG, mod, "Executing %s", fname);
349 gw_log (GW_LOG_WARN|GW_LOG_ERRNO, mod, "open %s", fname);
352 Tcl_SetVar (p->interp, "sessionParms", parms, TCL_GLOBAL_ONLY);
353 while ((c = getc(inf)) != EOF)
363 int r = tcl_exec (fname, parms, p, inf, &lineno);
369 else if (r == TCL_ERROR)
390 static int do_load (char *parms, void *mydata)
392 struct tcl_info *p = mydata;
396 sprintf (fname, "tcl.state.%d", p->wcl->id);
397 r = Tcl_EvalFile (p->interp, fname);
399 gw_log (GW_LOG_WARN, mod, "Cannot load Tcl state" );
403 static int do_save (char *parms, void *mydata)
405 struct tcl_info *p = mydata;
406 struct Tcl_CmdInfo cinfo;
408 if (Tcl_GetCommandInfo(p->interp, "saveState", &cinfo))
412 gw_log (GW_LOG_DEBUG, mod, "saveState");
413 r = Tcl_Eval (p->interp, "saveState\n");
415 report_error (p, p->interp->errorLine,
416 "Error in Tcl saveState in line",
417 Tcl_GetVar (p->interp, "errorInfo", 0));