Sort of targets in multiple-targets selection.
[egate.git] / www / wsh.c
index 4bd4257..55eb3d8 100644 (file)
--- a/www/wsh.c
+++ b/www/wsh.c
  * USE OR PERFORMANCE OF THIS SOFTWARE.
  *
  * $Log: wsh.c,v $
- * Revision 1.2  1995/10/20 14:02:42  adam
+ * Revision 1.12  1996/02/19 15:45:00  adam
+ * Sort of targets in multiple-targets selection.
+ *
+ * Revision 1.11  1996/02/12  10:10:32  adam
+ * Resource/config system used by the gateway.
+ *
+ * Revision 1.10  1996/01/12  10:05:22  adam
+ * If script name ends with ';' HTTP/GET/Expires will be defined.
+ * The cgi interface only reads final handshake if response from
+ * server (shell) was zero-terminated [If it isn't it probably died].
+ *
+ * Revision 1.9  1996/01/09  10:46:51  adam
+ * New defines: LOGDIR/EGWDIR/CGIDIR set in Makefile.
+ *
+ * Revision 1.8  1995/12/20  16:31:33  adam
+ * Bug fix: shell might terminate even though new request was initiated
+ * by the cgi interface program.
+ * Work on more simple user interface and Europagate buttons.
+ *
+ * Revision 1.7  1995/11/06  17:44:23  adam
+ * State reestablised when shell restarts. History of previous
+ * result sets.
+ *
+ * Revision 1.6  1995/11/06  10:51:19  adam
+ * End of response marker in response from wsh/wproto to wcgi.
+ * Shells are respawned when necessary.
+ *
+ * Revision 1.5  1995/11/01  16:15:48  adam
+ * Better presentation of records. Query/set number persistent.
+ *
+ * Revision 1.4  1995/10/27  15:12:12  adam
+ * IrTcl incorporated in the gateway.
+ * Better separation of script types.
+ * Z39.50 gateway scripts entered.
+ *
+ * Revision 1.3  1995/10/23  16:55:41  adam
+ * A lot of changes - really.
+ *
+ * Revision 1.2  1995/10/20  14:02:42  adam
  * First version of WWW gateway with embedded Tcl.
  *
  * Revision 1.1  1995/10/20  11:49:28  adam
 #include <unistd.h>
 #include <ctype.h>
 
-#include "winterp.h"
+#include <sys/resource.h>
+#include <sys/time.h>
 
-#define TIMEOUT_SHORT 60
-#define TIMEOUT_MEDIUM 1800
-#define TIMEOUT_LONG 7200
+#include <gw-db.h>
+#include <gw-res.h>
+#include "whtml.h"
+#include "wtcl.h"
+#include "wirtcl.h"
 
 static WCLIENT wcl;
 static char *mod = "wsh";
 
 int main (int argc, char **argv)
 {
-    char *script, *p, parms[512];
-    int timeout = TIMEOUT_SHORT;
-    W_Interp tcl_interp, html_interp;
+    char *script, *parms, parms_buf[512];
+    int timeout;
+    W_Interp w_interp;
+    GW_DB gw_db;
+    GwRes shRes;
+#if 0
+    struct rlimit rlim;
+
+    rlim.rlim_cur = RLIM_INFINITY;
+    rlim.rlim_max = RLIM_INFINITY;
+    setrlimit (RLIMIT_CORE, &rlim);
+#endif
 
-    chdir("/usr/local/etc/httpd/cgi-bin");
-    gw_log_init ("egw");
-    gw_log_file (GW_LOG_ALL, "/usr/local/etc/httpd/logs/egwsh_log");
+    gw_log_init (*argv);
+    gw_log_file (GW_LOG_ALL, "egwsh_log");
+#if 0
     gw_log_level (GW_LOG_ALL);
-    gw_log (GW_LOG_STAT, mod, "Europagate www shell");
+#endif
+    gw_log (GW_LOG_STAT, mod, "Europagate www shell: %s", *argv);
+    shRes = gw_res_init ();
+    gw_res_merge (shRes, "egw.res");
+    gw_res_merge (shRes, "shell.res");
 
-    if (!(wcl = wproto_init()))
+#if 1
+    gw_log_level (gw_log_mask_str (
+                  gw_res_get (shRes, "log.level", "default")));
+#endif 
+    if (!(wcl = wproto_init (gw_res_get (shRes, "fifo.dir", "/tmp/egw"))))
     {
        gw_log (GW_LOG_FATAL, mod, "init");
        exit(1);
     }
-    tcl_interp = w_interp_create (w_interp_tcl, NULL);
-    html_interp = w_interp_create (w_interp_html, NULL);
-    while (wproto_process(wcl, timeout) > 0)
+    gw_log_session (wcl->id);
+    if (!strcmp (*argv, "egwtcl"))
+        w_interp = w_interp_create (w_interp_tcl, wcl, NULL);
+    else if (!strcmp (*argv, "egwirtcl"))
+        w_interp = w_interp_create (w_interp_irtcl, wcl, NULL);
+    else if (!strcmp (*argv, "egwhtml"))
+        w_interp = w_interp_create (w_interp_html, wcl, NULL);
+    else
     {
-       wo_clear(wcl, "text/html");
-       strcpy(parms, wcl->wf_parms);
-       script = p = parms;
-       while (*p && *p != '/')
-           p++;
-       if (*p == '/')
-           *(p++) = '\0';
-       gw_log (GW_LOG_DEBUG, mod, "script: %s", script);
-       gw_log (GW_LOG_DEBUG, mod, "parms: %s", p);
-        if (w_interp_exec (tcl_interp, wcl, script, p))
+        gw_log (GW_LOG_FATAL, mod, "Cannot determine shell type. prog=%s",
+               *argv);
+        exit (1);
+    }
+    w_interp_load_state (w_interp, NULL);
+    timeout = atoi (gw_res_get (shRes, "timeout", "120"));
+    if (timeout < 1)
+        timeout = 1;
+    while (1)
+    {
+        char *p;
+        int r;
+
+        r = wproto_process (wcl, timeout);
+        if (r <= 0)
+        {
+            gw_db = gw_db_open ("www.db", 0, 0);
+            if (gw_db)
+                break;
+            gw_log (GW_LOG_DEBUG, mod, "Cannot terminate - new request");
+            timeout = 10;
+            continue;
+        }
+        timeout = atoi (gw_res_get (shRes, "timeout", "120"));
+        if (timeout < 1)
+            timeout = 1;
+       wo_clear (wcl, NULL);
+       strcpy (parms_buf, wcl->wf_parms);
+       script = parms = parms_buf;
+       while (*parms && *parms != '/')
+           parms++;
+       if (*parms)
+           *parms++ = '\0';
+        if (*script)
+        {
+            p = script + strlen(script);
+            while (*--p && p != script)
+                switch (*p)
+                {
+                case '+':
+                    wproto_cache (wcl, wcl->cache_level+1);
+                    *p = '\0';
+                    break;
+                case '-':
+                    if (p[1])
+                        wproto_cache (wcl, wcl->cache_level-atoi(p+1));
+                    else
+                        wproto_cache (wcl, wcl->cache_level-1);
+                    *p = '\0';
+                    break;
+                case '=':
+                    if (isdigit(p[1]))
+                        wproto_cache (wcl, atoi(p+1));
+                    *p = '\0';
+                    break;
+               case ';':
+                    wo_printf (wcl, "Expires: %s\n", p[1] ? p+1 : "0");
+                   gw_log (GW_LOG_DEBUG, mod, "Expires: %s", p[1] ?p+1:"0");
+                   *p = '\0';
+                    break;
+                }
+        }
+        wo_printf (wcl, "Content-type: text/html\n\n");
+        for (p = parms; *p; p++)
+            if (*p == '+')
+                *p = ' ';
+       gw_log (GW_LOG_STAT, mod, "script: %s", script);
+       gw_log (GW_LOG_STAT, mod, "parms: %s", parms);
+        if (w_interp_exec (w_interp, script, parms))
         {
             wo_printf (wcl, "<html><head><title>wsh error</title></head>\n");
             wo_printf (wcl, "<body>Couldn't execute script %s</body></html>",
@@ -103,6 +225,7 @@ int main (int argc, char **argv)
         }
        wo_finish(wcl);
     }
+    w_interp_save_state (w_interp, NULL);
     wproto_terminate(wcl);
     return 0;
 }