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