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