]> code.citadel.org Git - citadel.git/blobdiff - citadel/commands.c
* Bug fixes: Fix numerous char array size mismatches, signed/unsigned
[citadel.git] / citadel / commands.c
index e101b9422a835f51e9e26b7d00a09793fe29049c..4ae380c9433b67f7b8380affb7f0fc50f80d25e2 100644 (file)
@@ -44,6 +44,7 @@
 #include <errno.h>
 #include <stdarg.h>
 #include "citadel.h"
+#include "citadel_ipc.h"
 #include "commands.h"
 #include "messages.h"
 #include "citadel_decls.h"
@@ -79,6 +80,7 @@ int rc_prompt_control = 0;
 time_t rc_idle_threshold = (time_t)900;
 char urls[MAXURLS][SIZ];
 char rc_url_cmd[SIZ];
+char rc_gotmail_cmd[SIZ];
 
 char *gl_string;
 int next_lazy_cmd = 5;
@@ -86,6 +88,7 @@ int next_lazy_cmd = 5;
 int lines_printed = 0;         /* line count for paginator */
 extern int screenwidth, screenheight;
 extern int termn8;
+extern CtdlIPC *ipc_for_signal_handlers;       /* KLUDGE cover your eyes */
 
 struct citcmd *cmdlist = NULL;
 
@@ -135,11 +138,11 @@ char was_a_key_pressed(void) {
 
 /*
  * Check to see if we need to pause at the end of a screen.
- * If we do, we have to disable server keepalives during the pause because
+ * If we do, we have to switch to half keepalives during the pause because
  * we are probably in the middle of a server operation and the NOOP command
  * would confuse everything.
  */
-int checkpagin(int lp, int pagin, int height)
+int checkpagin(int lp, unsigned int pagin, unsigned int height)
 {
        int thekey;
 
@@ -154,7 +157,7 @@ int checkpagin(int lp, int pagin, int height)
 
        if (!pagin) return(0);
        if (lp>=(height-1)) {
-               set_keepalives(KA_NO);
+               set_keepalives(KA_HALF);
                hit_any_key();
                set_keepalives(KA_YES);
                return(0);
@@ -208,6 +211,8 @@ void print_express(void)
        int flags = 0;
        char sender[64];
        char node[64];
+       char *listing = NULL;
+       int r;                  /* IPC result code */
 
        if (express_msgs == 0)
                return;
@@ -221,16 +226,15 @@ void print_express(void)
        }
        
        while (express_msgs != 0) {
-               serv_puts("GEXP");
-               serv_gets(buf);
-               if (buf[0] != '1')
+               r = CtdlIPCGetInstantMessage(ipc_for_signal_handlers, &listing, buf);
+               if (r / 100 != 1)
                        return;
        
-               express_msgs = extract_int(&buf[4], 0);
-               timestamp = extract_long(&buf[4], 1);
-               flags = extract_int(&buf[4], 2);
-               extract(sender, &buf[4], 3);
-               extract(node, &buf[4], 4);
+               express_msgs = extract_int(buf, 0);
+               timestamp = extract_long(buf, 1);
+               flags = extract_int(buf, 2);
+               extract(sender, buf, 3);
+               extract(node, buf, 4);
                strcpy(last_paged, sender);
        
                stamp = localtime(&timestamp);
@@ -269,10 +273,7 @@ void print_express(void)
                                fprintf(outpipe, " from %s", sender);
                                if (strncmp(serv_info.serv_nodename, node, 32))
                                        fprintf(outpipe, " @%s", node);
-                               fprintf(outpipe, ":\n");
-                               while (serv_gets(buf), strcmp(buf, "000")) {
-                                       fprintf(outpipe, "%s\n", buf);
-                               }
+                               fprintf(outpipe, ":\n%s\n", listing);
                                pclose(outpipe);
                                if (express_msgs == 0)
                                        return;
@@ -312,7 +313,8 @@ void print_express(void)
        
                scr_printf(":\n");
                lines_printed++;
-               fmout(screenwidth, NULL, NULL, 1, screenheight, -1, 0);
+               fmout(screenwidth, NULL, listing, NULL, 1, screenheight, -1, 0);
+               free(listing);
 
                /* when running in curses mode, the scroll bar in most
                   xterm-style programs becomes useless, so it makes sense to
@@ -345,14 +347,16 @@ void set_keepalives(int s)
 
 static time_t idlet = 0;
 static void really_do_keepalive(void) {
-       char buf[1024];
+       int r;                          /* IPC response code */
 
        time(&idlet);
+
+       /* If full keepalives are enabled, send a NOOP to the server and
+        * wait for a response.
+        */
        if (keepalives_enabled == KA_YES) {
-               serv_puts("NOOP");
-               serv_gets(buf);
-               if (buf[3] == '*') {
-                       express_msgs = 1;
+               r = CtdlIPCNoop(ipc_for_signal_handlers);
+               if (express_msgs > 0) {
                        if (ok_to_interrupt == 1) {
                                scr_printf("\r%64s\r", "");
                                print_express();
@@ -362,6 +366,14 @@ static void really_do_keepalive(void) {
                        }
                }
        }
+
+       /* If half keepalives are enabled, send a QNOP to the server (if the
+        * server supports it) and then do nothing.
+        */
+       if ( (keepalives_enabled == KA_HALF)
+          && (serv_info.serv_supports_qnop > 0) ) {
+               CtdlIPC_putline(ipc_for_signal_handlers, "QNOP");
+       }
 }
 
 /* threaded nonblocking keepalive stuff starts here. I'm going for a simple
@@ -483,7 +495,7 @@ int inkey(void)
                        a = 0;
                if (a == 13)
                        a = 10;
-               if (((a != 4) && (a != 10) && (a != 8) && (a != NEXT_KEY) && (a != STOP_KEY))
+               if (((a != 23) && (a != 4) && (a != 10) && (a != 8) && (a != NEXT_KEY) && (a != STOP_KEY))
                    && ((a < 32) || (a > 126)))
                        a = 0;
 
@@ -554,15 +566,20 @@ void getline(char *string, int lim)
        async_ka_start();
       GLA:a = inkey();
        a = (a & 127);
-       if ((a == 8) && (strlen(string) == 0))
+       if ((a == 8 || a == 23) && (strlen(string) == 0))
                goto GLA;
        if ((a != 10) && (a != 8) && (strlen(string) == lim))
                goto GLA;
        if ((a == 8) && (string[0] != 0)) {
                string[strlen(string) - 1] = 0;
-               scr_putc(8);
-               scr_putc(32);
-               scr_putc(8);
+               scr_putc(8); scr_putc(32); scr_putc(8);
+               goto GLA;
+       }
+       if ((a == 23) && (string[0] != 0)) {
+               do {
+                       string[strlen(string) - 1] = 0;
+                       scr_putc(8); scr_putc(32); scr_putc(8);
+               } while (strlen(string) && string[strlen(string) - 1] != ' ');
                goto GLA;
        }
        if ((a == 10)) {
@@ -630,7 +647,7 @@ int boolprompt(char *prompt, int prev_val)
        color(DIM_WHITE);
        scr_printf("%s ", prompt);
        color(DIM_MAGENTA);
-       scr_printf(" [");
+       scr_printf("[");
        color(BRIGHT_MAGENTA);
        scr_printf("%s", (prev_val ? "Yes" : "No"));
        color(DIM_MAGENTA);
@@ -720,6 +737,7 @@ void load_command_set(void)
        rc_force_mail_prompts = 0;
        rc_ansi_color = 0;
        strcpy(rc_url_cmd, "");
+       strcpy(rc_gotmail_cmd, "");
 #ifdef HAVE_OPENSSL
        rc_encrypt = RC_DEFAULT;
 #endif
@@ -747,7 +765,7 @@ void load_command_set(void)
        }
        if (ccfile == NULL) {
                perror("commands: cannot open citadel.rc");
-               logoff(errno);
+               logoff(NULL, 3);
        }
        while (fgets(buf, sizeof buf, ccfile) != NULL) {
                while ((strlen(buf) > 0) ? (isspace(buf[strlen(buf) - 1])) : 0)
@@ -759,7 +777,7 @@ void load_command_set(void)
                                rc_encrypt = RC_YES;
 #else
                                fprintf(stderr, "citadel.rc requires encryption support but citadel is not compiled with OpenSSL");
-                               logoff(1);
+                               logoff(NULL, 3);
 #endif
                        }
 #ifdef HAVE_OPENSSL
@@ -842,6 +860,9 @@ void load_command_set(void)
                if (!strncasecmp(buf, "urlcmd=", 7))
                        strcpy(rc_url_cmd, &buf[7]);
 
+               if (!strncasecmp(buf, "gotmailcmd=", 11))
+                       strcpy(rc_gotmail_cmd, &buf[11]);
+
                if (!strncasecmp(buf, "alternate_semantics=", 20)) {
                        if (!strncasecmp(&buf[11], "yes", 3))
                                rc_alt_semantics = 1;
@@ -1000,7 +1021,7 @@ int requires_string(struct citcmd *cptr, int ncomp)
  * This function returns an integer command number.  If the command prompts
  * for a string then it is placed in the supplied buffer.
  */
-int getcmd(char *argbuf)
+int getcmd(CtdlIPC *ipc, char *argbuf)
 {
        char cmdbuf[5];
        int cmdspaces[5];
@@ -1026,9 +1047,9 @@ int getcmd(char *argbuf)
                        enable_color = 0;
        }
        /* if we're running in idiot mode, display a cute little menu */
-       IFNEXPERT formout("mainmenu");
+       IFNEXPERT formout(ipc, "mainmenu");
 
-       print_express();        /* print express messages if there are any */
+       print_express();
        strcpy(argbuf, "");
        cmdpos = 0;
        for (a = 0; a < 5; ++a)
@@ -1171,8 +1192,8 @@ void sttybbs(int cmd)
                live.c_oflag = OPOST | ONLCR;
                live.c_lflag = ISIG | NOFLSH;
 
-               live.c_cc[VINTR] = (-1);
-               live.c_cc[VQUIT] = (-1);
+               live.c_cc[VINTR] = 0;
+               live.c_cc[VQUIT] = 0;
 
 #ifdef hpux
                live.c_cc[VMIN] = 0;
@@ -1231,9 +1252,9 @@ void sttybbs(int cmd)
 /*
  * display_help()  -  help file viewer
  */
-void display_help(char *name)
+void display_help(CtdlIPC *ipc, char *name)
 {
-       formout(name);
+       formout(ipc, name);
 }
 
 
@@ -1242,17 +1263,19 @@ void display_help(char *name)
  */
 int fmout(
        int width,      /* screen width to use */
-       FILE *fpin,     /* file to read from, or NULL to read from server */
+       FILE *fpin,     /* file to read from, or NULL to format given text */
+       char *text,     /* Text to be formatted (when fpin is NULL) */
        FILE *fpout,    /* File to write to, or NULL to write to screen */
        char pagin,     /* nonzero if we should use the paginator */
        int height,     /* screen height to use */
        int starting_lp,/* starting value for lines_printed, -1 for global */
-       char subst)     /* nonzero if we should use hypertext mode */
+       int subst)      /* nonzero if we should use hypertext mode */
 {
-       int a, b, c, d, old;
+       int a, b, c, old;
        int real = (-1);
        char aaa[140];
        char buffer[512];
+       char *e;
        int eof_flag = 0;
 
        num_urls = 0;   /* Start with a clean slate of embedded URL's */
@@ -1264,6 +1287,7 @@ int fmout(
        old = 255;
        strcpy(buffer, "");
        c = 1;                  /* c is the current pos */
+       e = text;               /* e is pointer to current pos */
 
 FMTA:  while ((eof_flag == 0) && (strlen(buffer) < 126)) {
                if (fpin != NULL) {     /* read from file */
@@ -1274,20 +1298,19 @@ FMTA:   while ((eof_flag == 0) && (strlen(buffer) < 126)) {
                                buffer[strlen(buffer) + 1] = 0;
                                buffer[strlen(buffer)] = a;
                        }
-               } else {        /* read from server */
-                       d = strlen(buffer);
-                       serv_gets(&buffer[d]);
-                       while ((!isspace(buffer[d])) && (isspace(buffer[strlen(buffer) - 1])))
-                               buffer[strlen(buffer) - 1] = 0;
-                       if (!strcmp(&buffer[d], "000")) {
-                               buffer[d] = 0;
+               } else {        /* read from text */
+                       if (!*e) {
                                eof_flag = 1;
                                while (isspace(buffer[strlen(buffer) - 1]))
                                        buffer[strlen(buffer) - 1] = 0;
+                               buffer[strlen(buffer) + 1] = 0;
+                               buffer[strlen(buffer)] = 10;
+                       }
+                       if (eof_flag == 0) {
+                               a = *e++;
+                               buffer[strlen(buffer) + 1] = 0;
+                               buffer[strlen(buffer)] = a;
                        }
-                       d = strlen(buffer);
-                       buffer[d] = 10;
-                       buffer[d + 1] = 0;
                }
        }
 
@@ -1380,9 +1403,9 @@ FMTA:     while ((eof_flag == 0) && (strlen(buffer) < 126)) {
        goto FMTA;
 
        /* keypress caught; drain the server */
-OOPS:  do {
-               serv_gets(aaa);
-       } while (strcmp(aaa, "000"));
+OOPS:  /* do {
+               CtdlIPC_getline(ipc, aaa);
+       } while (strcmp(aaa, "000")); */
 
 FMTEND:
        if (fpout) {
@@ -1422,9 +1445,11 @@ void color(int colornum)
 #endif
                /* When switching to dim white, actually output an 'original
                 * pair' sequence -- this looks better on black-on-white
-                * terminals.
+                * terminals. - Changed to ORIGINAL_PAIR as this actually
+                * wound up looking horrible on black-on-white terminals, not
+                * to mention transparent terminals.
                 */
-               if (colornum == DIM_WHITE)
+               if (colornum == ORIGINAL_PAIR)
                        printf("\033[39;49m");
                else
                        printf("\033[3%d;40m", (colornum & 7));