Logs of changes.
[egate.git] / www / wshmain.c
1 /*
2  * Copyright (c) 1995, the EUROPAGATE consortium (see below).
3  *
4  * The EUROPAGATE consortium members are:
5  *
6  *    University College Dublin
7  *    Danmarks Teknologiske Videnscenter
8  *    An Chomhairle Leabharlanna
9  *    Consejo Superior de Investigaciones Cientificas
10  *
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,
13  * provided that:
14  *
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.
18  *
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.
22  *
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.
28  * 
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.
32  *
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.
42  *
43  * $Log: wshmain.c,v $
44  * Revision 1.2  1996/03/08 16:47:06  adam
45  * Logs of changes.
46  *
47  * Revision 1.1  1996/02/29  15:36:34  adam
48  * Main shell loop implemented as a separate function called wshmain.
49  *
50  */
51
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <string.h>
55 #include <assert.h>
56 #include <unistd.h>
57 #include <ctype.h>
58
59 #include <sys/resource.h>
60 #include <sys/time.h>
61
62 #include <gw-db.h>
63 #include <gw-res.h>
64 #include "winterp.h"
65
66 WCLIENT wcl;
67 static char *mod = "w";
68
69 void wshmain (int argc, char **argv, W_Interp_Type w_interp_type)
70 {
71     char *script, *parms, parms_buf[512];
72     int timeout;
73     W_Interp w_interp;
74     GW_DB gw_db;
75     GwRes shRes;
76 #if 1
77     struct rlimit rlim;
78
79     rlim.rlim_cur = RLIM_INFINITY;
80     rlim.rlim_max = RLIM_INFINITY;
81     setrlimit (RLIMIT_CORE, &rlim);
82 #endif
83
84     gw_log_init (*argv);
85     gw_log_file (GW_LOG_ALL, "egwsh_log");
86 #if 0
87     gw_log_level (GW_LOG_ALL);
88 #endif
89     gw_log (GW_LOG_STAT, *argv, "Europagate www shell");
90     shRes = gw_res_init ();
91     gw_res_merge (shRes, "egw.res");
92     gw_res_merge (shRes, "shell.res");
93
94 #if 1
95     gw_log_level (gw_log_mask_str (
96                   gw_res_get (shRes, "log.level", "default")));
97 #endif 
98     if (!(wcl = wproto_init (gw_res_get (shRes, "fifo.dir", "/tmp/egw"))))
99     {
100         gw_log (GW_LOG_FATAL, mod, "init");
101         exit(1);
102     }
103     gw_log_session (wcl->id);
104
105     w_interp = w_interp_create (w_interp_type, wcl, NULL);
106
107     w_interp_load_state (w_interp, NULL);
108     timeout = atoi (gw_res_get (shRes, "timeout", "120"));
109     if (timeout < 1)
110         timeout = 1;
111     while (1)
112     {
113         char *p;
114         int r;
115
116         r = wproto_process (wcl, timeout);
117         if (r <= 0)
118         {
119             gw_db = gw_db_open ("www.db", 0, 0);
120             if (gw_db)
121                 break;
122             gw_log (GW_LOG_DEBUG, mod, "Cannot terminate - new request");
123             timeout = 10;
124             continue;
125         }
126         timeout = atoi (gw_res_get (shRes, "timeout", "120"));
127         if (timeout < 1)
128             timeout = 1;
129         wo_clear (wcl, NULL);
130         strcpy (parms_buf, wcl->wf_parms);
131         script = parms = parms_buf;
132         while (*parms && *parms != '/')
133             parms++;
134         if (*parms)
135             *parms++ = '\0';
136         if (*script)
137         {
138             p = script + strlen(script);
139             while (*--p && p != script)
140                 switch (*p)
141                 {
142                 case '+':
143                     wproto_cache (wcl, wcl->cache_level+1);
144                     *p = '\0';
145                     break;
146                 case '-':
147                     if (p[1])
148                         wproto_cache (wcl, wcl->cache_level-atoi(p+1));
149                     else
150                         wproto_cache (wcl, wcl->cache_level-1);
151                     *p = '\0';
152                     break;
153                 case '=':
154                     if (isdigit(p[1]))
155                         wproto_cache (wcl, atoi(p+1));
156                     *p = '\0';
157                     break;
158                 case ';':
159                     wo_printf (wcl, "Expires: %s\n", p[1] ? p+1 : "0");
160                     gw_log (GW_LOG_DEBUG, mod, "Expires: %s", p[1] ?p+1:"0");
161                     *p = '\0';
162                     break;
163                 }
164         }
165         wo_printf (wcl, "Content-type: text/html\n\n");
166         for (p = parms; *p; p++)
167             if (*p == '+')
168                 *p = ' ';
169         gw_log (GW_LOG_STAT, mod, "script: %s", script);
170         gw_log (GW_LOG_STAT, mod, "parms: %s", parms);
171         if (w_interp_exec (w_interp, script, parms))
172         {
173             wo_printf (wcl, "<html><head><title>wsh error</title></head>\n");
174             wo_printf (wcl, "<body>Couldn't execute script %s</body></html>",
175                        script);
176         }
177         wo_finish(wcl);
178     }
179     gw_log (GW_LOG_DEBUG, mod, "save state..");
180     w_interp_save_state (w_interp, NULL);
181     wproto_terminate(wcl);
182 }
183
184