Merge branch 'topic/nyd2'
[s-mailx.git] / lex.c
blob51196edcdedb4c6e7c77adea079c8088f7714e8d
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ (Lexical processing of) Commands, and the (blocking) "event mainloop".
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2014 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
6 */
7 /*
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
40 #ifndef HAVE_AMALGAMATION
41 # include "nail.h"
42 #endif
44 #include <fcntl.h>
46 struct cmd {
47 char const *name; /* Name of command */
48 int (*func)(void*); /* Implementor of command */
49 enum argtype argtype; /* Arglist type (see below) */
50 short msgflag; /* Required flags of msgs */
51 short msgmask; /* Relevant flags of msgs */
52 #ifdef HAVE_DOCSTRINGS
53 char const *doc; /* One line doc for command */
54 #endif
56 /* Yechh, can't initialize unions */
57 #define minargs msgflag /* Minimum argcount for RAWLIST */
58 #define maxargs msgmask /* Max argcount for RAWLIST */
60 struct cmd_ghost {
61 struct cmd_ghost *next;
62 struct str cmd; /* Data follows after .name */
63 char name[VFIELD_SIZE(sizeof(size_t))];
66 static int *_msgvec;
67 static int _reset_on_stop; /* do a reset() if stopped */
68 static sighandler_type _oldpipe;
69 static struct cmd_ghost *_cmd_ghosts;
70 /* _cmd_tab[] after fun protos */
71 static int _lex_inithdr; /* am printing startup headers */
73 /* Update mailname (if name != NULL) and displayname, return wether displayname
74 * was large enough to swallow mailname */
75 static bool_t _update_mailname(char const *name);
76 #ifdef HAVE_C90AMEND1 /* TODO unite __narrow_suffix() into one fun! */
77 SINLINE size_t __narrow_suffix(char const *cp, size_t cpl, size_t maxl);
78 #endif
80 /* Isolate the command from the arguments */
81 static char * _lex_isolate(char const *comm);
83 /* Get first-fit, or NULL */
84 static struct cmd const * _lex(char const *comm);
86 /* Command ghost handling */
87 static int _ghost(void *v);
88 static int _unghost(void *v);
90 /* Print a list of all commands */
91 static int _pcmdlist(void *v);
92 static int __pcmd_cmp(void const *s1, void const *s2);
94 /* Print the binaries compiled-in features */
95 static int _features(void *v);
97 /* Print the binaries version number */
98 static int _version(void *v);
100 /* When we wake up after ^Z, reprint the prompt */
101 static void stop(int s);
103 /* Branch here on hangup signal and simulate "exit" */
104 static void hangup(int s);
106 /* List of all commands */
107 static struct cmd const _cmd_tab[] = {
108 #include "cmd_tab.h"
111 #ifdef HAVE_C90AMEND1
112 SINLINE size_t
113 __narrow_suffix(char const *cp, size_t cpl, size_t maxl)
115 int err;
116 size_t i, ok;
117 NYD_ENTER;
119 for (err = ok = i = 0; cpl > maxl || err;) {
120 int ml = mblen(cp, cpl);
121 if (ml < 0) { /* XXX _narrow_suffix(): mblen() error; action? */
122 (void)mblen(NULL, 0);
123 err = 1;
124 ml = 1;
125 } else {
126 if (!err)
127 ok = i;
128 err = 0;
129 if (ml == 0)
130 break;
132 cp += ml;
133 i += ml;
134 cpl -= ml;
136 NYD_LEAVE;
137 return ok;
139 #endif /* HAVE_C90AMEND1 */
141 static bool_t
142 _update_mailname(char const *name)
144 char tbuf[PATH_MAX], *mailp, *dispp;
145 size_t i, j;
146 bool_t rv = TRU1;
147 NYD_ENTER;
149 /* Don't realpath(3) if it's only an update request */
150 if (name != NULL) {
151 #ifdef HAVE_REALPATH
152 enum protocol p = which_protocol(name);
153 if (p == PROTO_FILE || p == PROTO_MAILDIR) {
154 if (realpath(name, mailname) == NULL) {
155 fprintf(stderr, _("Can't canonicalize `%s'\n"), name);
156 rv = FAL0;
157 goto jdocopy;
159 } else
160 jdocopy:
161 #endif
162 n_strlcpy(mailname, name, sizeof(mailname));
165 mailp = mailname;
166 dispp = displayname;
168 /* Don't display an absolute path but "+FOLDER" if under *folder* */
169 if (getfold(tbuf, sizeof tbuf)) {
170 i = strlen(tbuf);
171 if (i < sizeof(tbuf) -1)
172 tbuf[i++] = '/';
173 if (!strncmp(tbuf, mailp, i)) {
174 mailp += i;
175 *dispp++ = '+';
179 /* We want to see the name of the folder .. on the screen */
180 i = strlen(mailp);
181 if (i < sizeof(displayname) -1)
182 memcpy(dispp, mailp, i +1);
183 else {
184 rv = FAL0;
185 /* Avoid disrupting multibyte sequences (if possible) */
186 #ifndef HAVE_C90AMEND1
187 j = sizeof(displayname) / 3 - 1;
188 i -= sizeof(displayname) - (1/* + */ + 3) - j;
189 #else
190 j = field_detect_clip(sizeof(displayname) / 3, mailp, i);
191 i = j + __narrow_suffix(mailp + j, i - j,
192 sizeof(displayname) - (1/* + */ + 3 + 1) - j);
193 #endif
194 snprintf(dispp, sizeof(displayname), "%.*s...%s",
195 (int)j, mailp, mailp + i);
197 NYD_LEAVE;
198 return rv;
201 static char *
202 _lex_isolate(char const *comm)
204 NYD_ENTER;
205 while (*comm != '\0' &&
206 strchr("~|? \t0123456789&%@$^.:/-+*'\",;(`", *comm) == NULL)
207 ++comm;
208 NYD_LEAVE;
209 return UNCONST(comm);
212 static struct cmd const *
213 _lex(char const *comm) /* TODO **command hashtable**! linear list search!!! */
215 struct cmd const *cp;
216 NYD_ENTER;
218 for (cp = _cmd_tab; cp->name != NULL; ++cp)
219 if (*comm == *cp->name && is_prefix(comm, cp->name))
220 goto jleave;
221 cp = NULL;
222 jleave:
223 NYD_LEAVE;
224 return cp;
227 static int
228 _ghost(void *v)
230 char const **argv = v;
231 struct cmd_ghost *lcg, *cg;
232 size_t nl, cl;
233 NYD_ENTER;
235 /* Show the list? */
236 if (*argv == NULL) {
237 printf(_("Command ghosts are:\n"));
238 for (nl = 0, cg = _cmd_ghosts; cg != NULL; cg = cg->next) {
239 cl = strlen(cg->name) + 5 + cg->cmd.l + 3;
240 nl += cl;
241 if (UICMP(z, nl, >=, scrnwidth)) {
242 nl = cl;
243 printf("\n");
245 printf((cg->next != NULL ? "%s -> <%s>, " : "%s -> <%s>\n"),
246 cg->name, cg->cmd.s);
248 v = NULL;
249 goto jleave;
252 /* Request to add new ghost */
253 if (argv[1] == NULL || argv[1][0] == '\0' || argv[2] != NULL) {
254 fprintf(stderr, _("Usage: %s\n"),
255 _("Define a <ghost> of <command>, or list all ghosts"));
256 v = NULL;
257 goto jleave;
260 /* Check that we can deal with this one */
261 if (*argv[0] == '\0' || *_lex_isolate(argv[0]) != '\0') {
262 fprintf(stderr, _("Can't canonicalize `%s'\n"), argv[0]);
263 v = NULL;
264 goto jleave;
267 /* Always recreate */
268 for (lcg = NULL, cg = _cmd_ghosts; cg != NULL; lcg = cg, cg = cg->next)
269 if (!strcmp(cg->name, argv[0])) {
270 if (lcg != NULL)
271 lcg->next = cg->next;
272 else
273 _cmd_ghosts = cg->next;
274 free(cg);
275 break;
278 /* Need a new one */
279 nl = strlen(argv[0]) +1;
280 cl = strlen(argv[1]) +1;
281 cg = smalloc(sizeof(*cg) - VFIELD_SIZEOF(struct cmd_ghost, name) + nl + cl);
282 cg->next = _cmd_ghosts;
283 memcpy(cg->name, argv[0], nl);
284 cg->cmd.s = cg->name + nl;
285 cg->cmd.l = cl -1;
286 memcpy(cg->cmd.s, argv[1], cl);
288 _cmd_ghosts = cg;
289 jleave:
290 NYD_LEAVE;
291 return (v == NULL);
294 static int
295 _unghost(void *v)
297 int rv = 0;
298 char const **argv = v, *cp;
299 struct cmd_ghost *lcg, *cg;
300 NYD_ENTER;
302 while ((cp = *argv++) != NULL) {
303 for (lcg = NULL, cg = _cmd_ghosts; cg != NULL; lcg = cg, cg = cg->next)
304 if (!strcmp(cg->name, cp)) {
305 if (lcg != NULL)
306 lcg->next = cg->next;
307 else
308 _cmd_ghosts = cg->next;
309 free(cg);
310 goto jouter;
312 fprintf(stderr, _("Unknown command: `%s'\n"), cp);
313 rv = 1;
314 jouter:
317 NYD_LEAVE;
318 return rv;
321 static int
322 __pcmd_cmp(void const *s1, void const *s2)
324 struct cmd const * const *c1 = s1, * const *c2 = s2;
325 int rv;
326 NYD_ENTER;
328 rv = strcmp((*c1)->name, (*c2)->name);
329 NYD_LEAVE;
330 return rv;
333 static int
334 _pcmdlist(void *v)
336 struct cmd const **cpa, *cp, **cursor;
337 size_t i;
338 NYD_ENTER;
339 UNUSED(v);
341 for (i = 0; _cmd_tab[i].name != NULL; ++i)
343 ++i;
344 cpa = ac_alloc(sizeof(cp) * i);
346 for (i = 0; (cp = _cmd_tab + i)->name != NULL; ++i)
347 cpa[i] = cp;
348 cpa[i] = NULL;
350 qsort(cpa, i, sizeof(cp), &__pcmd_cmp);
352 printf(_("Commands are:\n"));
353 for (i = 0, cursor = cpa; (cp = *cursor++) != NULL;) {
354 size_t j;
355 if (cp->func == &c_cmdnotsupp)
356 continue;
357 j = strlen(cp->name) + 2;
358 if ((i += j) > 72) {
359 i = j;
360 printf("\n");
362 printf((*cursor != NULL ? "%s, " : "%s\n"), cp->name);
365 ac_free(cpa);
366 NYD_LEAVE;
367 return 0;
370 static int
371 _features(void *v)
373 NYD_ENTER;
374 UNUSED(v);
375 printf(_("Features: %s\n"), features);
376 NYD_LEAVE;
377 return 0;
380 static int
381 _version(void *v)
383 NYD_ENTER;
384 UNUSED(v);
385 printf(_("Version %s\n"), version);
386 NYD_LEAVE;
387 return 0;
390 static void
391 stop(int s)
393 sighandler_type old_action;
394 sigset_t nset;
395 NYD_X; /* Signal handler */
397 old_action = safe_signal(s, SIG_DFL);
399 sigemptyset(&nset);
400 sigaddset(&nset, s);
401 sigprocmask(SIG_UNBLOCK, &nset, NULL);
402 kill(0, s);
403 sigprocmask(SIG_BLOCK, &nset, NULL);
404 safe_signal(s, old_action);
405 if (_reset_on_stop) {
406 _reset_on_stop = 0;
407 reset(0);
411 static void
412 hangup(int s)
414 NYD_X; /* Signal handler */
415 UNUSED(s);
416 /* nothing to do? */
417 exit(1);
420 FL int
421 setfile(char const *name, int nmail) /* TODO oh my god */
423 static int shudclob;
425 struct stat stb;
426 struct flock flp;
427 FILE *ibuf = NULL;
428 int rv, i, compressed = 0, omsgCount = 0;
429 bool_t isedit;
430 char const *who;
431 size_t offset;
432 struct shortcut *sh;
433 NYD_ENTER;
435 /* Note we don't 'userid(myname) != getuid()', preliminary steps are usually
436 * necessary to make a mailbox accessible by a different user, and if that
437 * has happened, let's just let the usual file perms decide */
438 who = (name[1] != '\0') ? name + 1 : myname;
439 isedit = (*name != '%' && ((sh = get_shortcut(name)) == NULL ||
440 *sh->sh_long != '%'));
441 if ((name = expand(name)) == NULL)
442 goto jem1;
444 switch (which_protocol(name)) {
445 case PROTO_FILE:
446 break;
447 case PROTO_MAILDIR:
448 rv = maildir_setfile(name, nmail, isedit);
449 goto jleave;
450 #ifdef HAVE_POP3
451 case PROTO_POP3:
452 shudclob = 1;
453 rv = pop3_setfile(name, nmail, isedit);
454 goto jleave;
455 #endif
456 #ifdef HAVE_IMAP
457 case PROTO_IMAP:
458 shudclob = 1;
459 if (nmail && mb.mb_type == MB_CACHE)
460 rv = 1;
461 else
462 rv = imap_setfile(name, nmail, isedit);
463 goto jleave;
464 #endif
465 default:
466 fprintf(stderr, _("Cannot handle protocol: %s\n"), name);
467 goto jem1;
470 /* FIXME this FILE leaks if quit()->edstop() reset()s! This entire code
471 * FIXME here is total crap, below we open(2) the same name again just to
472 * FIXME close it right away etc. The normal thing would be to (1) finalize
473 * FIXME the current box and (2) open the new box; yet, since (2) may fail
474 * FIXME we terribly need our VOID box to make this logic order possible! */
475 if ((ibuf = Zopen(name, "r", &compressed)) == NULL) {
476 if ((!isedit && errno == ENOENT) || nmail) {
477 if (nmail)
478 goto jnonmail;
479 goto jnomail;
481 perror(name);
482 goto jem1;
485 if (fstat(fileno(ibuf), &stb) == -1) {
486 if (nmail)
487 goto jnonmail;
488 perror("fstat");
489 goto jem1;
492 if (S_ISREG(stb.st_mode) ||
493 ((options & OPT_BATCH_FLAG) && !strcmp(name, "/dev/null"))) {
494 /* EMPTY */
495 } else {
496 if (nmail)
497 goto jnonmail;
498 errno = S_ISDIR(stb.st_mode) ? EISDIR : EINVAL;
499 perror(name);
500 goto jem1;
503 /* Looks like all will be well. We must now relinquish our hold on the
504 * current set of stuff. Must hold signals while we are reading the new
505 * file, else we will ruin the message[] data structure */
507 hold_sigs(); /* TODO note on this one in quit.c:quit() */
508 if (shudclob && !nmail)
509 quit();
510 #ifdef HAVE_SOCKETS
511 if (!nmail && mb.mb_sock.s_fd >= 0)
512 sclose(&mb.mb_sock); /* TODO sorry? VMAILFS->close(), thank you */
513 #endif
515 /* Copy the messages into /tmp and set pointers */
516 flp.l_type = F_RDLCK;
517 flp.l_start = 0;
518 flp.l_whence = SEEK_SET;
519 if (!nmail) {
520 mb.mb_type = MB_FILE;
521 mb.mb_perm = (options & OPT_R_FLAG) ? 0 : MB_DELE | MB_EDIT;
522 mb.mb_compressed = compressed;
523 if (compressed) {
524 if (compressed & 0200)
525 mb.mb_perm = 0;
526 } else {
527 if ((i = open(name, O_WRONLY)) == -1)
528 mb.mb_perm = 0;
529 else
530 close(i);
532 if (shudclob) {
533 if (mb.mb_itf) {
534 fclose(mb.mb_itf);
535 mb.mb_itf = NULL;
537 if (mb.mb_otf) {
538 fclose(mb.mb_otf);
539 mb.mb_otf = NULL;
542 shudclob = 1;
543 edit = isedit;
544 initbox(name);
545 offset = 0;
546 flp.l_len = 0;
547 if (!edit && fcntl(fileno(ibuf), F_SETLKW, &flp) == -1) {/*TODO dotlock!*/
548 perror("Unable to lock mailbox");
549 rele_sigs();
550 goto jem1;
552 } else /* nmail */{
553 fseek(mb.mb_otf, 0L, SEEK_END);
554 fseek(ibuf, mailsize, SEEK_SET);
555 offset = mailsize;
556 omsgCount = msgCount;
557 flp.l_len = offset;
558 if (!edit && fcntl(fileno(ibuf), F_SETLKW, &flp) == -1) {/*TODO dotlock!*/
559 rele_sigs();
560 goto jnonmail;
563 mailsize = fsize(ibuf);
565 if (nmail && UICMP(z, mailsize, <=, offset)) {
566 rele_sigs();
567 goto jnonmail;
569 setptr(ibuf, offset);
570 setmsize(msgCount);
571 if (nmail && mb.mb_sorted) {
572 mb.mb_threaded = 0;
573 c_sort((void*)-1);
576 Fclose(ibuf);
577 ibuf = NULL;
578 rele_sigs();
579 if (!nmail)
580 sawcom = FAL0;
582 if ((!edit || nmail) && msgCount == 0) {
583 jnonmail:
584 if (!nmail) {
585 if (!ok_blook(emptystart))
586 jnomail:
587 fprintf(stderr, _("No mail for %s\n"), who);
589 rv = 1;
590 goto jleave;
592 if (nmail)
593 newmailinfo(omsgCount);
595 rv = 0;
596 jleave:
597 if (ibuf != NULL)
598 Fclose(ibuf);
599 NYD_LEAVE;
600 return rv;
601 jem1:
602 rv = -1;
603 goto jleave;
606 FL int
607 newmailinfo(int omsgCount)
609 int mdot, i;
610 NYD_ENTER;
612 for (i = 0; i < omsgCount; ++i)
613 message[i].m_flag &= ~MNEWEST;
614 if (msgCount > omsgCount) {
615 for (i = omsgCount; i < msgCount; ++i)
616 message[i].m_flag |= MNEWEST;
617 printf(_("New mail has arrived.\n"));
618 if ((i = msgCount - omsgCount) == 1)
619 printf(_("Loaded 1 new message.\n"));
620 else
621 printf(_("Loaded %d new messages.\n"), i);
622 } else
623 printf(_("Loaded %d messages.\n"), msgCount);
624 callhook(mailname, 1);
625 mdot = getmdot(1);
626 if (ok_blook(header))
627 print_headers(omsgCount + 1, msgCount, FAL0);
628 NYD_LEAVE;
629 return mdot;
632 FL void
633 commands(void)
635 struct eval_ctx ev;
636 int n;
637 NYD_ENTER;
639 if (!sourcing) {
640 if (safe_signal(SIGINT, SIG_IGN) != SIG_IGN)
641 safe_signal(SIGINT, onintr);
642 if (safe_signal(SIGHUP, SIG_IGN) != SIG_IGN)
643 safe_signal(SIGHUP, hangup);
644 /* TODO We do a lot of redundant signal handling, especially
645 * TODO with the command line editor(s); try to merge this */
646 safe_signal(SIGTSTP, stop);
647 safe_signal(SIGTTOU, stop);
648 safe_signal(SIGTTIN, stop);
650 _oldpipe = safe_signal(SIGPIPE, SIG_IGN);
651 safe_signal(SIGPIPE, _oldpipe);
653 memset(&ev, 0, sizeof ev);
655 setexit();
656 for (;;) {
657 interrupts = 0;
658 handlerstacktop = NULL;
660 if (!sourcing && (options & OPT_INTERACTIVE)) {
661 char *cp;
663 cp = ok_vlook(newmail);
664 if ((options & OPT_TTYIN) && (cp != NULL || mb.mb_type == MB_IMAP)) {
665 struct stat st;
667 n = (cp != NULL && strcmp(cp, "noimap") && strcmp(cp, "nopoll"));
668 if ((mb.mb_type == MB_FILE && !stat(mailname, &st) &&
669 st.st_size > mailsize) ||
670 #ifdef HAVE_IMAP
671 (mb.mb_type == MB_IMAP && imap_newmail(n) > (cp == NULL)) ||
672 #endif
673 (mb.mb_type == MB_MAILDIR && n != 0)) {
674 size_t odot = PTR2SIZE(dot - message);
675 bool_t odid = did_print_dot;
677 setfile(mailname, 1);
678 if (mb.mb_type != MB_IMAP) {
679 dot = message + odot;
680 did_print_dot = odid;
685 _reset_on_stop = 1;
686 exit_status = EXIT_OK;
689 #ifdef HAVE_COLOUR
690 colour_table = NULL; /* XXX intermediate hack */
691 #endif
692 if (temporary_localopts_store != NULL) /* XXX intermediate hack */
693 temporary_localopts_free(); /* XXX intermediate hack */
694 sreset(sourcing);
695 if (!sourcing) {
696 char *cp;
698 /* TODO Note: this buffer may contain a password. We should redefine
699 * TODO the code flow which has to do that */
700 if ((cp = termios_state.ts_linebuf) != NULL) {
701 termios_state.ts_linebuf = NULL;
702 termios_state.ts_linesize = 0;
703 free(cp); /* TODO pool give-back */
705 /* TODO Due to expand-on-tab of NCL the buffer may grow */
706 if (ev.ev_line.l > LINESIZE * 3) {
707 free(ev.ev_line.s); /* TODO pool! but what? */
708 ev.ev_line.s = NULL;
709 ev.ev_line.l = 0;
713 /* Read a line of commands and handle end of file specially */
714 jreadline:
715 ev.ev_line.l = ev.ev_line_size;
716 n = readline_input(NULL, TRU1, &ev.ev_line.s, &ev.ev_line.l,
717 ev.ev_new_content);
718 ev.ev_line_size = (ui32_t)ev.ev_line.l;
719 ev.ev_line.l = (ui32_t)n;
720 _reset_on_stop = 0;
721 if (n < 0) {
722 /* EOF */
723 if (loading)
724 break;
725 if (sourcing) {
726 unstack();
727 continue;
729 if ((options & OPT_INTERACTIVE) && ok_blook(ignoreeof)) {
730 printf(_("Use `quit' to quit.\n"));
731 continue;
733 break;
736 inhook = 0;
737 if (evaluate(&ev))
738 break;
739 if ((options & OPT_BATCH_FLAG) && ok_blook(batch_exit_on_error)) {
740 if (exit_status != EXIT_OK)
741 break;
742 /* TODO *batch-exit-on-error*: sourcing and loading MUST BE FLAGS!
743 * TODO the current behaviour is suboptimal AT BEST! */
744 if (exec_last_comm_error != 0 && !sourcing && !loading) {
745 exit_status = EXIT_ERR;
746 break;
749 if (!sourcing && (options & OPT_INTERACTIVE)) {
750 if (ev.ev_new_content != NULL)
751 goto jreadline;
752 tty_addhist(ev.ev_line.s, !ev.ev_add_history);
756 if (ev.ev_line.s != NULL)
757 free(ev.ev_line.s);
758 if (sourcing)
759 sreset(FAL0);
760 NYD_LEAVE;
763 FL int
764 execute(char *linebuf, int contxt, size_t linesize) /* XXX LEGACY */
766 struct eval_ctx ev;
767 #ifdef HAVE_COLOUR
768 struct colour_table *ct_save;
769 #endif
770 int rv;
771 NYD_ENTER;
773 /* TODO Maybe recursion from within collect.c! As long as we don't have
774 * TODO a value carrier that transports the entire state of a recursion
775 * TODO we need to save away also the colour table */
776 #ifdef HAVE_COLOUR
777 ct_save = colour_table;
778 colour_table = NULL;
779 #endif
781 memset(&ev, 0, sizeof ev);
782 ev.ev_line.s = linebuf;
783 ev.ev_line.l = linesize;
784 ev.ev_is_recursive = (contxt != 0);
785 rv = evaluate(&ev);
787 if (contxt)
788 tty_addhist(ev.ev_line.s, TRU1);
790 #ifdef HAVE_COLOUR
791 colour_table = ct_save;
792 #endif
793 NYD_LEAVE;
794 return rv;
797 FL int
798 evaluate(struct eval_ctx *evp)
800 struct str line;
801 char _wordbuf[2], *arglist[MAXARGC], *cp, *word;
802 struct cmd_ghost *cg = NULL;
803 struct cmd const *com = NULL;
804 int muvec[2], c, e = 1;
805 NYD_ENTER;
807 line = evp->ev_line; /* XXX don't change original (buffer pointer) */
808 evp->ev_add_history = FAL0;
809 evp->ev_new_content = NULL;
811 /* Command ghosts that refer to shell commands or macro expansion restart */
812 jrestart:
814 /* Strip the white space away from the beginning of the command */
815 for (cp = line.s; whitechar(*cp); ++cp)
817 line.l -= PTR2SIZE(cp - line.s);
819 /* Ignore comments */
820 if (*cp == '#')
821 goto jleave0;
823 /* Handle ! differently to get the correct lexical conventions */
824 if (*cp == '!') {
825 if (sourcing) {
826 fprintf(stderr, _("Can't `!' while sourcing\n"));
827 goto jleave;
829 c_shell(++cp);
830 evp->ev_add_history = TRU1;
831 goto jleave0;
834 /* Isolate the actual command; since it may not necessarily be
835 * separated from the arguments (as in `p1') we need to duplicate it to
836 * be able to create a NUL terminated version.
837 * We must be aware of several special one letter commands here */
838 arglist[0] = cp;
839 if ((cp = _lex_isolate(cp)) == arglist[0] &&
840 (*cp == '|' || *cp == '~' || *cp == '?'))
841 ++cp;
842 c = (int)PTR2SIZE(cp - arglist[0]);
843 line.l -= c;
844 word = UICMP(z, c, <, sizeof _wordbuf) ? _wordbuf : salloc(c +1);
845 memcpy(word, arglist[0], c);
846 word[c] = '\0';
848 /* Look up the command; if not found, bitch.
849 * Normally, a blank command would map to the first command in the
850 * table; while sourcing, however, we ignore blank lines to eliminate
851 * confusion; act just the same for ghosts */
852 if (*word == '\0') {
853 if (sourcing || cg != NULL)
854 goto jleave0;
855 com = _cmd_tab + 0;
856 goto jexec;
859 /* If this is the first evaluation, check command ghosts */
860 if (cg == NULL) {
861 /* TODO relink list head, so it's sorted on usage over time?
862 * TODO in fact, there should be one hashmap over all commands and ghosts
863 * TODO so that the lookup could be made much more efficient than it is
864 * TODO now (two adjacent list searches! */
865 for (cg = _cmd_ghosts; cg != NULL; cg = cg->next)
866 if (!strcmp(word, cg->name)) {
867 if (line.l > 0) {
868 size_t i = cg->cmd.l;
869 line.s = salloc(i + 1 + line.l +1);
870 memcpy(line.s, cg->cmd.s, i);
871 line.s[i++] = ' ';
872 memcpy(line.s + i, cp, line.l);
873 line.s[i += line.l] = '\0';
874 line.l = i;
875 } else {
876 line.s = cg->cmd.s;
877 line.l = cg->cmd.l;
879 goto jrestart;
883 if ((com = _lex(word)) == NULL || com->func == &c_cmdnotsupp) {
884 fprintf(stderr, _("Unknown command: `%s'\n"), word);
885 if (com != NULL) {
886 c_cmdnotsupp(NULL);
887 com = NULL;
889 goto jleave;
892 /* See if we should execute the command -- if a conditional we always
893 * execute it, otherwise, check the state of cond */
894 jexec:
895 if (!(com->argtype & ARG_F) && condstack_isskip())
896 goto jleave0;
898 /* Process the arguments to the command, depending on the type it expects,
899 * default to error. If we're sourcing an interactive command: error */
900 if ((options & OPT_SENDMODE) && !(com->argtype & ARG_M)) {
901 fprintf(stderr, _("May not execute `%s' while sending\n"),
902 com->name);
903 goto jleave;
905 if (sourcing && (com->argtype & ARG_I)) {
906 fprintf(stderr, _("May not execute `%s' while sourcing\n"),
907 com->name);
908 goto jleave;
910 if (!(mb.mb_perm & MB_DELE) && (com->argtype & ARG_W)) {
911 fprintf(stderr, _("May not execute `%s' -- "
912 "message file is read only\n"), com->name);
913 goto jleave;
915 if (evp->ev_is_recursive && (com->argtype & ARG_R)) {
916 fprintf(stderr, _("Cannot recursively invoke `%s'\n"), com->name);
917 goto jleave;
919 if (mb.mb_type == MB_VOID && (com->argtype & ARG_A)) {
920 fprintf(stderr, _("Cannot execute `%s' without active mailbox\n"),
921 com->name);
922 goto jleave;
925 if (com->argtype & ARG_V)
926 temporary_arg_v_store = NULL;
928 switch (com->argtype & ARG_ARGMASK) {
929 case ARG_MSGLIST:
930 /* Message list defaulting to nearest forward legal message */
931 if (_msgvec == NULL)
932 goto je96;
933 if ((c = getmsglist(cp, _msgvec, com->msgflag)) < 0)
934 break;
935 if (c == 0) {
936 *_msgvec = first(com->msgflag, com->msgmask);
937 if (*_msgvec != 0)
938 _msgvec[1] = 0;
940 if (*_msgvec == 0) {
941 if (!inhook)
942 printf(_("No applicable messages\n"));
943 break;
945 e = (*com->func)(_msgvec);
946 break;
948 case ARG_NDMLIST:
949 /* Message list with no defaults, but no error if none exist */
950 if (_msgvec == NULL) {
951 je96:
952 fprintf(stderr, _("Invalid use of `message list'\n"));
953 break;
955 if ((c = getmsglist(cp, _msgvec, com->msgflag)) < 0)
956 break;
957 e = (*com->func)(_msgvec);
958 break;
960 case ARG_STRLIST:
961 /* Just the straight string, with leading blanks removed */
962 while (whitechar(*cp))
963 ++cp;
964 e = (*com->func)(cp);
965 break;
967 case ARG_RAWLIST:
968 case ARG_ECHOLIST:
969 /* A vector of strings, in shell style */
970 if ((c = getrawlist(cp, line.l, arglist, NELEM(arglist),
971 ((com->argtype & ARG_ARGMASK) == ARG_ECHOLIST))) < 0)
972 break;
973 if (c < com->minargs) {
974 fprintf(stderr, _("`%s' requires at least %d arg(s)\n"),
975 com->name, com->minargs);
976 break;
978 if (c > com->maxargs) {
979 fprintf(stderr, _("`%s' takes no more than %d arg(s)\n"),
980 com->name, com->maxargs);
981 break;
983 e = (*com->func)(arglist);
984 break;
986 case ARG_NOLIST:
987 /* Just the constant zero, for exiting, eg. */
988 e = (*com->func)(0);
989 break;
991 default:
992 panic(_("Unknown argument type"));
995 if (e == 0 && (com->argtype & ARG_V) &&
996 (cp = temporary_arg_v_store) != NULL) {
997 temporary_arg_v_store = NULL;
998 evp->ev_new_content = cp;
999 goto jleave0;
1001 if (!(com->argtype & ARG_H) && !list_saw_numbers)
1002 evp->ev_add_history = TRU1;
1004 jleave:
1005 /* Exit the current source file on error */
1006 if ((exec_last_comm_error = (e != 0))) {
1007 if (e < 0 || loading) {
1008 e = 1;
1009 goto jret;
1011 if (sourcing)
1012 unstack();
1013 goto jret0;
1015 if (com == NULL)
1016 goto jret0;
1017 if ((com->argtype & ARG_P) && ok_blook(autoprint))
1018 if (visible(dot)) {
1019 muvec[0] = (int)PTR2SIZE(dot - message + 1);
1020 muvec[1] = 0;
1021 c_type(muvec); /* TODO what if error? re-eval! */
1023 if (!sourcing && !inhook && !(com->argtype & ARG_T))
1024 sawcom = TRU1;
1025 jleave0:
1026 exec_last_comm_error = 0;
1027 jret0:
1028 e = 0;
1029 jret:
1030 NYD_LEAVE;
1031 return e;
1034 FL void
1035 setmsize(int sz)
1037 NYD_ENTER;
1038 if (_msgvec != NULL)
1039 free(_msgvec);
1040 _msgvec = scalloc(sz + 1, sizeof *_msgvec);
1041 NYD_LEAVE;
1044 FL void
1045 print_header_summary(char const *Larg)
1047 size_t bot, top, i, j;
1048 NYD_ENTER;
1050 if (Larg != NULL) {
1051 /* Avoid any messages XXX add a make_mua_silent() and use it? */
1052 if ((options & (OPT_VERB | OPT_HEADERSONLY)) == OPT_HEADERSONLY) {
1053 freopen("/dev/null", "w", stdout);
1054 freopen("/dev/null", "w", stderr);
1056 assert(_msgvec != NULL);
1057 i = (getmsglist(/*TODO make arg const */UNCONST(Larg), _msgvec, 0) <= 0);
1058 if (options & OPT_HEADERSONLY) {
1059 exit_status = (int)i;
1060 goto jleave;
1062 if (i)
1063 goto jleave;
1064 for (bot = msgCount, top = 0, i = 0; (j = _msgvec[i]) != 0; ++i) {
1065 if (bot > j)
1066 bot = j;
1067 if (top < j)
1068 top = j;
1070 } else
1071 bot = 1, top = msgCount;
1072 print_headers(bot, top, (Larg != NULL)); /* TODO should take iterator!! */
1073 jleave:
1074 NYD_LEAVE;
1077 FL void
1078 onintr(int s)
1080 NYD_X; /* Signal handler */
1082 if (handlerstacktop != NULL) {
1083 handlerstacktop(s);
1084 return;
1086 safe_signal(SIGINT, onintr);
1087 noreset = 0;
1088 if (!_lex_inithdr)
1089 sawcom = TRU1;
1090 _lex_inithdr = 0;
1091 while (sourcing)
1092 unstack();
1094 termios_state_reset();
1095 close_all_files();
1097 if (image >= 0) {
1098 close(image);
1099 image = -1;
1101 if (interrupts != 1)
1102 fprintf(stderr, _("Interrupt\n"));
1103 safe_signal(SIGPIPE, _oldpipe);
1104 reset(0);
1107 FL void
1108 announce(int printheaders)
1110 int vec[2], mdot;
1111 NYD_ENTER;
1113 mdot = newfileinfo();
1114 vec[0] = mdot;
1115 vec[1] = 0;
1116 dot = message + mdot - 1;
1117 if (printheaders && msgCount > 0 && ok_blook(header)) {
1118 ++_lex_inithdr;
1119 c_headers(vec); /* XXX errors? */
1120 _lex_inithdr = 0;
1122 NYD_LEAVE;
1125 FL int
1126 newfileinfo(void)
1128 struct message *mp;
1129 int u, n, mdot, d, s, hidden, moved;
1130 NYD_ENTER;
1132 if (mb.mb_type == MB_VOID) {
1133 mdot = 1;
1134 goto jleave;
1137 mdot = getmdot(0);
1138 s = d = hidden = moved =0;
1139 for (mp = message, n = 0, u = 0; PTRCMP(mp, <, message + msgCount); ++mp) {
1140 if (mp->m_flag & MNEW)
1141 ++n;
1142 if ((mp->m_flag & MREAD) == 0)
1143 ++u;
1144 if ((mp->m_flag & (MDELETED | MSAVED)) == (MDELETED | MSAVED))
1145 ++moved;
1146 if ((mp->m_flag & (MDELETED | MSAVED)) == MDELETED)
1147 ++d;
1148 if ((mp->m_flag & (MDELETED | MSAVED)) == MSAVED)
1149 ++s;
1150 if (mp->m_flag & MHIDDEN)
1151 ++hidden;
1154 /* If displayname gets truncated the user effectively has no option to see
1155 * the full pathname of the mailbox, so print it at least for '? fi' */
1156 printf(_("\"%s\": "),
1157 (_update_mailname(NULL) ? displayname : mailname));
1158 if (msgCount == 1)
1159 printf(_("1 message"));
1160 else
1161 printf(_("%d messages"), msgCount);
1162 if (n > 0)
1163 printf(_(" %d new"), n);
1164 if (u-n > 0)
1165 printf(_(" %d unread"), u);
1166 if (d > 0)
1167 printf(_(" %d deleted"), d);
1168 if (s > 0)
1169 printf(_(" %d saved"), s);
1170 if (moved > 0)
1171 printf(_(" %d moved"), moved);
1172 if (hidden > 0)
1173 printf(_(" %d hidden"), hidden);
1174 if (mb.mb_type == MB_CACHE)
1175 printf(" [Disconnected]");
1176 else if (mb.mb_perm == 0)
1177 printf(_(" [Read only]"));
1178 printf("\n");
1179 jleave:
1180 NYD_LEAVE;
1181 return mdot;
1184 FL int
1185 getmdot(int nmail)
1187 struct message *mp;
1188 char *cp;
1189 int mdot;
1190 enum mflag avoid = MHIDDEN | MDELETED;
1191 NYD_ENTER;
1193 if (!nmail) {
1194 if (ok_blook(autothread))
1195 c_thread(NULL);
1196 else if ((cp = ok_vlook(autosort)) != NULL) {
1197 free(mb.mb_sorted);
1198 mb.mb_sorted = sstrdup(cp);
1199 c_sort(NULL);
1202 if (mb.mb_type == MB_VOID) {
1203 mdot = 1;
1204 goto jleave;
1207 if (nmail)
1208 for (mp = message; PTRCMP(mp, <, message + msgCount); ++mp)
1209 if ((mp->m_flag & (MNEWEST | avoid)) == MNEWEST)
1210 break;
1212 if (!nmail || PTRCMP(mp, >=, message + msgCount)) {
1213 if (mb.mb_threaded) {
1214 for (mp = threadroot; mp != NULL; mp = next_in_thread(mp))
1215 if ((mp->m_flag & (MNEW | avoid)) == MNEW)
1216 break;
1217 } else {
1218 for (mp = message; PTRCMP(mp, <, message + msgCount); ++mp)
1219 if ((mp->m_flag & (MNEW | avoid)) == MNEW)
1220 break;
1224 if ((mb.mb_threaded ? (mp == NULL) : PTRCMP(mp, >=, message + msgCount))) {
1225 if (mb.mb_threaded) {
1226 for (mp = threadroot; mp != NULL; mp = next_in_thread(mp))
1227 if (mp->m_flag & MFLAGGED)
1228 break;
1229 } else {
1230 for (mp = message; PTRCMP(mp, <, message + msgCount); ++mp)
1231 if (mp->m_flag & MFLAGGED)
1232 break;
1236 if ((mb.mb_threaded ? (mp == NULL) : PTRCMP(mp, >=, message + msgCount))) {
1237 if (mb.mb_threaded) {
1238 for (mp = threadroot; mp != NULL; mp = next_in_thread(mp))
1239 if (!(mp->m_flag & (MREAD | avoid)))
1240 break;
1241 } else {
1242 for (mp = message; PTRCMP(mp, <, message + msgCount); ++mp)
1243 if (!(mp->m_flag & (MREAD | avoid)))
1244 break;
1248 if ((mb.mb_threaded ? (mp != NULL) : PTRCMP(mp, <, message + msgCount)))
1249 mdot = (int)PTR2SIZE(mp - message + 1);
1250 else if (ok_blook(showlast)) {
1251 if (mb.mb_threaded) {
1252 for (mp = this_in_thread(threadroot, -1); mp;
1253 mp = prev_in_thread(mp))
1254 if (!(mp->m_flag & avoid))
1255 break;
1256 mdot = (mp != NULL) ? (int)PTR2SIZE(mp - message + 1) : msgCount;
1257 } else {
1258 for (mp = message + msgCount - 1; mp >= message; --mp)
1259 if (!(mp->m_flag & avoid))
1260 break;
1261 mdot = (mp >= message) ? (int)PTR2SIZE(mp - message + 1) : msgCount;
1263 } else if (mb.mb_threaded) {
1264 for (mp = threadroot; mp; mp = next_in_thread(mp))
1265 if (!(mp->m_flag & avoid))
1266 break;
1267 mdot = (mp != NULL) ? (int)PTR2SIZE(mp - message + 1) : 1;
1268 } else {
1269 for (mp = message; PTRCMP(mp, <, message + msgCount); ++mp)
1270 if (!(mp->m_flag & avoid))
1271 break;
1272 mdot = PTRCMP(mp, <, message + msgCount)
1273 ? (int)PTR2SIZE(mp - message + 1) : 1;
1275 jleave:
1276 NYD_LEAVE;
1277 return mdot;
1280 FL void
1281 initbox(char const *name)
1283 char *tempMesg;
1284 NYD_ENTER;
1286 if (mb.mb_type != MB_VOID)
1287 n_strlcpy(prevfile, mailname, PATH_MAX);
1289 _update_mailname((name != mailname) ? name : NULL);
1291 if ((mb.mb_otf = Ftmp(&tempMesg, "tmpbox", OF_WRONLY | OF_HOLDSIGS, 0600)) ==
1292 NULL) {
1293 perror(_("temporary mail message file"));
1294 exit(1);
1296 if ((mb.mb_itf = safe_fopen(tempMesg, "r", NULL)) == NULL) {
1297 perror(_("temporary mail message file"));
1298 exit(1);
1300 Ftmp_release(&tempMesg);
1302 message_reset();
1303 mb.mb_threaded = 0;
1304 if (mb.mb_sorted != NULL) {
1305 free(mb.mb_sorted);
1306 mb.mb_sorted = NULL;
1308 #ifdef HAVE_IMAP
1309 mb.mb_flags = MB_NOFLAGS;
1310 #endif
1311 prevdot = NULL;
1312 dot = NULL;
1313 did_print_dot = FAL0;
1314 NYD_LEAVE;
1317 #ifdef HAVE_DOCSTRINGS
1318 FL bool_t
1319 print_comm_docstr(char const *comm)
1321 bool_t rv = FAL0;
1322 struct cmd_ghost *cg;
1323 struct cmd const *cp;
1324 NYD_ENTER;
1326 /* Ghosts take precedence */
1327 for (cg = _cmd_ghosts; cg != NULL; cg = cg->next)
1328 if (!strcmp(comm, cg->name)) {
1329 printf("%s -> <%s>\n", comm, cg->cmd.s);
1330 rv = TRU1;
1331 goto jleave;
1334 for (cp = _cmd_tab; cp->name != NULL; ++cp) {
1335 if (cp->func == &c_cmdnotsupp)
1336 continue;
1337 if (!strcmp(comm, cp->name))
1338 printf("%s: %s\n", comm, V_(cp->doc));
1339 else if (is_prefix(comm, cp->name))
1340 printf("%s (%s): %s\n", comm, cp->name, V_(cp->doc));
1341 else
1342 continue;
1343 rv = TRU1;
1344 break;
1346 jleave:
1347 NYD_LEAVE;
1348 return rv;
1350 #endif
1352 /* vim:set fenc=utf-8:s-it-mode */