mk-release.inc: fixes
[s-mailx.git] / lex_input.c
blob2c5b52ef1a252e5444753f456190cbfaa90e2ca4
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Command input, lexing and evaluation, resource file loading and `source'ing.
3 *@ TODO PS_ROBOT requires yet PS_SOURCING, which REALLY sucks.
4 *@ TODO Commands and ghosts deserve a hashmap. Or so.
6 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
7 * Copyright (c) 2012 - 2016 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
8 */
9 /*
10 * Copyright (c) 1980, 1993
11 * The Regents of the University of California. All rights reserved.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its contributors
22 * may be used to endorse or promote products derived from this software
23 * without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
37 #undef n_FILE
38 #define n_FILE lex_input
40 #ifndef HAVE_AMALGAMATION
41 # include "nail.h"
42 #endif
44 enum a_lex_input_flags{
45 a_LEX_NONE,
46 a_LEX_FREE = 1<<0, /* Structure was allocated, free() it */
47 a_LEX_PIPE = 1<<1, /* Open on a pipe */
48 a_LEX_MACRO = 1<<2, /* Running a macro */
49 a_LEX_MACRO_FREE_DATA = 1<<3, /* Lines are allocated, free(3) once done */
50 a_LEX_MACRO_X_OPTION = 1<<4, /* Macro indeed command line -X option */
51 a_LEX_MACRO_CMD = 1<<5, /* Macro indeed single-line: ~:COMMAND */
53 a_LEX_SUPER_MACRO = 1<<16 /* *Not* inheriting PS_SOURCING state */
56 struct a_lex_cmd{
57 char const *lc_name; /* Name of command */
58 int (*lc_func)(void*); /* Implementor of command */
59 enum argtype lc_argtype; /* Arglist type (see below) */
60 si16_t lc_msgflag; /* Required flags of msgs */
61 si16_t lc_msgmask; /* Relevant flags of msgs */
62 #ifdef HAVE_DOCSTRINGS
63 char const *lc_doc; /* One line doc for command */
64 #endif
66 /* Yechh, can't initialize unions */
67 #define lc_minargs lc_msgflag /* Minimum argcount for RAWLIST */
68 #define lc_maxargs lc_msgmask /* Max argcount for RAWLIST */
70 struct a_lex_ghost{
71 struct a_lex_ghost *lg_next;
72 struct str lg_cmd; /* Data follows after .lg_name */
73 char lg_name[VFIELD_SIZE(0)];
76 struct a_lex_eval_ctx{
77 struct str le_line; /* The terminated data to _evaluate() */
78 ui32_t le_line_size; /* May be used to store line memory size */
79 bool_t le_is_recursive; /* Evaluation in evaluation? (collect ~:) */
80 ui8_t __dummy[3];
81 bool_t le_add_history; /* Enter (final) command in history? */
82 char const *le_new_content; /* History: reenter line, start with this */
85 struct a_lex_input_stack{
86 struct a_lex_input_stack *li_outer;
87 FILE *li_file; /* File we were in */
88 void *li_cond; /* Saved state of conditional stack */
89 ui32_t li_flags; /* enum a_lex_input_flags */
90 ui32_t li_loff; /* Pseudo (macro): index in .li_lines */
91 char **li_lines; /* Pseudo content, lines unfolded */
92 char li_name[VFIELD_SIZE(0)]; /* Name of file or macro */
95 static sighandler_type a_lex_oldpipe;
96 static struct a_lex_ghost *a_lex_ghosts;
97 /* a_lex_cmd_tab[] after fun protos */
99 /* */
100 static struct a_lex_input_stack *a_lex_input;
102 /* Isolate the command from the arguments */
103 static char *a_lex_isolate(char const *comm);
105 /* Command ghost handling */
106 static int a_lex_c_ghost(void *v);
107 static int a_lex_c_unghost(void *v);
109 /* Print a list of all commands */
110 static int a_lex_c_list(void *v);
112 static int a_lex__pcmd_cmp(void const *s1, void const *s2);
114 /* `help' / `?' command */
115 static int a_lex_c_help(void *v);
117 /* `quit' command */
118 static int a_lex_c_quit(void *v);
120 /* Print the binaries version number */
121 static int a_lex_c_version(void *v);
123 static int a_lex__version_cmp(void const *s1, void const *s2);
125 /* PS_STATE_PENDMASK requires some actions */
126 static void a_lex_update_pstate(void);
128 /* Evaluate a single command.
129 * .le_add_history and .le_new_content will be updated upon success.
130 * Command functions return 0 for success, 1 for error, and -1 for abort.
131 * 1 or -1 aborts a load or source, a -1 aborts the interactive command loop */
132 static int a_lex_evaluate(struct a_lex_eval_ctx *evp);
134 /* Get first-fit, or NULL */
135 static struct a_lex_cmd const *a_lex__firstfit(char const *comm);
137 /* Branch here on hangup signal and simulate "exit" */
138 static void a_lex_hangup(int s);
140 /* The following gets called on receipt of an interrupt. Close all open files
141 * except 0, 1, 2, and the temporary. Also, unstack all source files */
142 static void a_lex_onintr(int s);
144 /* Pop the current input back to the previous level. Update the program state.
145 * If the argument is TRUM1 then we don't alert and error out if the stack
146 * doesn't exist at all */
147 static void a_lex_unstack(bool_t eval_error);
149 /* `source' and `source_if' (if silent_error: no pipes allowed, then) */
150 static bool_t a_lex_source_file(char const *file, bool_t silent_error);
152 /* System resource file load()ing or -X command line option array traversal */
153 static bool_t a_lex_load(struct a_lex_input_stack *lip);
155 /* A simplified command loop for recursed state machines */
156 static bool_t a_commands_recursive(enum n_lexinput_flags lif);
158 /* List of all commands, and list of commands which are specially treated
159 * and deduced in _evaluate(), but we need a list for _c_list() and
160 * print_comm_docstr() */
161 #ifdef HAVE_DOCSTRINGS
162 # define DS(S) , S
163 #else
164 # define DS(S)
165 #endif
166 static struct a_lex_cmd const a_lex_cmd_tab[] = {
167 #include "cmd_tab.h"
169 a_lex_special_cmd_tab[] = {
170 { "#", NULL, 0, 0, 0
171 DS(N_("Comment command: ignore remaining (continuable) line")) },
172 { "-", NULL, 0, 0, 0
173 DS(N_("Print out the preceding message")) }
175 #undef DS
177 static char *
178 a_lex_isolate(char const *comm){
179 NYD2_ENTER;
180 while(*comm != '\0' &&
181 strchr("~|? \t0123456789&%@$^.:/-+*'\",;(`", *comm) == NULL)
182 ++comm;
183 NYD2_LEAVE;
184 return UNCONST(comm);
187 static int
188 a_lex_c_ghost(void *v){
189 struct a_lex_ghost *lgp, *gp;
190 size_t i, cl, nl;
191 char *cp;
192 char const **argv;
193 NYD_ENTER;
195 argv = v;
197 /* Show the list? */
198 if(*argv == NULL){
199 FILE *fp;
201 if((fp = Ftmp(NULL, "ghost", OF_RDWR | OF_UNLINK | OF_REGISTER)) == NULL)
202 fp = stdout;
204 for(i = 0, gp = a_lex_ghosts; gp != NULL; gp = gp->lg_next)
205 fprintf(fp, "wysh ghost %s %s\n",
206 gp->lg_name, n_shexp_quote_cp(gp->lg_cmd.s, TRU1));
208 if(fp != stdout){
209 page_or_print(fp, i);
210 Fclose(fp);
212 goto jleave;
215 /* Verify the ghost name is a valid one */
216 if(*argv[0] == '\0' || *a_lex_isolate(argv[0]) != '\0'){
217 n_err(_("`ghost': can't canonicalize %s\n"),
218 n_shexp_quote_cp(argv[0], FAL0));
219 v = NULL;
220 goto jleave;
223 /* Show command of single ghost? */
224 if(argv[1] == NULL){
225 for(gp = a_lex_ghosts; gp != NULL; gp = gp->lg_next)
226 if(!strcmp(argv[0], gp->lg_name)){
227 printf("wysh ghost %s %s\n",
228 gp->lg_name, n_shexp_quote_cp(gp->lg_cmd.s, TRU1));
229 goto jleave;
231 n_err(_("`ghost': no such alias: %s\n"), argv[0]);
232 v = NULL;
233 goto jleave;
236 /* Define command for ghost: verify command content */
237 for(cl = 0, i = 1; (cp = UNCONST(argv[i])) != NULL; ++i)
238 if(*cp != '\0')
239 cl += strlen(cp) +1; /* SP or NUL */
240 if(cl == 0){
241 n_err(_("`ghost': empty command arguments after %s\n"), argv[0]);
242 v = NULL;
243 goto jleave;
246 /* If the ghost already exists, recreate */
247 for(lgp = NULL, gp = a_lex_ghosts; gp != NULL; lgp = gp, gp = gp->lg_next)
248 if(!strcmp(gp->lg_name, argv[0])){
249 if(lgp != NULL)
250 lgp->lg_next = gp->lg_next;
251 else
252 a_lex_ghosts = gp->lg_next;
253 free(gp);
254 break;
257 nl = strlen(argv[0]) +1;
258 gp = smalloc(sizeof(*gp) - VFIELD_SIZEOF(struct a_lex_ghost, lg_name) +
259 nl + cl);
260 gp->lg_next = a_lex_ghosts;
261 a_lex_ghosts = gp;
262 memcpy(gp->lg_name, argv[0], nl);
263 cp = gp->lg_cmd.s = gp->lg_name + nl;
264 gp->lg_cmd.l = --cl;
266 while(*++argv != NULL)
267 if((i = strlen(*argv)) > 0){
268 memcpy(cp, *argv, i);
269 cp += i;
270 *cp++ = ' ';
272 *--cp = '\0';
273 jleave:
274 NYD_LEAVE;
275 return v == NULL;
278 static int
279 a_lex_c_unghost(void *v){
280 struct a_lex_ghost *lgp, *gp;
281 char const **argv, *cp;
282 int rv;
283 NYD_ENTER;
285 rv = 0;
286 argv = v;
288 while((cp = *argv++) != NULL){
289 if(cp[0] == '*' && cp[1] == '\0'){
290 while((gp = a_lex_ghosts) != NULL){
291 a_lex_ghosts = gp->lg_next;
292 free(gp);
294 }else{
295 for(lgp = NULL, gp = a_lex_ghosts; gp != NULL;
296 lgp = gp, gp = gp->lg_next)
297 if(!strcmp(gp->lg_name, cp)){
298 if(lgp != NULL)
299 lgp->lg_next = gp->lg_next;
300 else
301 a_lex_ghosts = gp->lg_next;
302 free(gp);
303 goto jouter;
305 n_err(_("`unghost': no such alias: %s\n"),
306 n_shexp_quote_cp(cp, FAL0));
307 rv = 1;
308 jouter: ;
311 NYD_LEAVE;
312 return rv;
315 static int
316 a_lex_c_list(void *v){
317 FILE *fp;
318 struct a_lex_cmd const **cpa, *cp, **cursor;
319 size_t l, i;
320 NYD_ENTER;
322 i = NELEM(a_lex_cmd_tab) + NELEM(a_lex_special_cmd_tab) +1;
323 cpa = salloc(sizeof(cp) * i);
325 for(i = 0; i < NELEM(a_lex_cmd_tab); ++i)
326 cpa[i] = &a_lex_cmd_tab[i];
327 /* C99 */{
328 size_t j;
330 for(j = 0; j < NELEM(a_lex_special_cmd_tab); ++i, ++j)
331 cpa[i] = &a_lex_special_cmd_tab[j];
333 cpa[i] = NULL;
335 /* C99 */{
336 char const *xcp = v;
338 if(*xcp == '\0')
339 qsort(cpa, i, sizeof(xcp), &a_lex__pcmd_cmp);
342 if((fp = Ftmp(NULL, "list", OF_RDWR | OF_UNLINK | OF_REGISTER)) == NULL)
343 fp = stdout;
345 fprintf(fp, _("Commands are:\n"));
346 l = 1;
347 for(i = 0, cursor = cpa; (cp = *cursor++) != NULL;){
348 if(cp->lc_func == &c_cmdnotsupp)
349 continue;
350 if(options & OPT_D_V){
351 char const *argt;
353 switch(cp->lc_argtype & ARG_ARGMASK){
354 case ARG_MSGLIST: argt = N_("message-list"); break;
355 case ARG_STRLIST: argt = N_("a \"string\""); break;
356 case ARG_RAWLIST: argt = N_("old-style quoting"); break;
357 case ARG_NOLIST: argt = N_("no arguments"); break;
358 case ARG_NDMLIST: argt = N_("message-list (without a default)"); break;
359 case ARG_WYSHLIST: argt = N_("sh(1)ell-style quoting"); break;
360 default: argt = N_("`wysh' for sh(1)ell-style quoting"); break;
362 #ifdef HAVE_DOCSTRINGS
363 fprintf(fp, _("`%s'. Argument type: %s.\n\t%s\n"),
364 cp->lc_name, V_(argt), V_(cp->lc_doc));
365 l += 2;
366 #else
367 fprintf(fp, "`%s' (%s)\n", cp->lc_name, argt);
368 ++l;
369 #endif
370 }else{
371 size_t j = strlen(cp->lc_name) + 2;
373 if((i += j) > 72){
374 i = j;
375 fprintf(fp, "\n");
376 ++l;
378 fprintf(fp, (*cursor != NULL ? "%s, " : "%s\n"), cp->lc_name);
382 if(fp != stdout){
383 page_or_print(fp, l);
384 Fclose(fp);
386 NYD_LEAVE;
387 return 0;
390 static int
391 a_lex__pcmd_cmp(void const *s1, void const *s2){
392 struct a_lex_cmd const * const *cp1, * const *cp2;
393 int rv;
394 NYD2_ENTER;
396 cp1 = s1;
397 cp2 = s2;
398 rv = strcmp((*cp1)->lc_name, (*cp2)->lc_name);
399 NYD2_LEAVE;
400 return rv;
403 static int
404 a_lex_c_help(void *v){
405 int rv;
406 char *arg;
407 NYD_ENTER;
409 /* Help for a single command? */
410 if((arg = *(char**)v) != NULL){
411 struct a_lex_ghost const *gp;
412 struct a_lex_cmd const *cp, *cpmax;
414 /* Ghosts take precedence */
415 for(gp = a_lex_ghosts; gp != NULL; gp = gp->lg_next)
416 if(!strcmp(arg, gp->lg_name)){
417 printf("%s -> ", arg);
418 arg = gp->lg_cmd.s;
419 break;
422 cpmax = &(cp = a_lex_cmd_tab)[NELEM(a_lex_cmd_tab)];
423 jredo:
424 for(; PTRCMP(cp, <, cpmax); ++cp){
425 #ifdef HAVE_DOCSTRINGS
426 # define a_DS V_(cp->lc_doc)
427 #else
428 # define a_DS ""
429 #endif
430 if(!strcmp(arg, cp->lc_name))
431 printf("%s: %s", arg, a_DS);
432 else if(is_prefix(arg, cp->lc_name))
433 printf("%s (%s): %s", arg, cp->lc_name, a_DS);
434 else
435 continue;
437 if(options & OPT_D_V){
438 switch(cp->lc_argtype & ARG_ARGMASK){
439 case ARG_MSGLIST: arg = N_("message-list"); break;
440 case ARG_STRLIST: arg = N_("a \"string\""); break;
441 case ARG_RAWLIST: arg = N_("old-style quoting"); break;
442 case ARG_NOLIST: arg = N_("no arguments"); break;
443 case ARG_NDMLIST: arg = N_("message-list (no default)"); break;
444 case ARG_WYSHLIST: arg = N_("sh(1)ell-style quoting"); break;
445 default: arg = N_("`wysh' for sh(1)ell-style quoting"); break;
447 #ifdef HAVE_DOCSTRINGS
448 printf(_("\n\tArgument type: %s"), V_(arg));
449 #else
450 printf(_("argument type: %s"), V_(arg));
451 #endif
452 #undef a_DS
454 putchar('\n');
455 rv = 0;
456 goto jleave;
459 if(PTRCMP(cpmax, ==, &a_lex_cmd_tab[NELEM(a_lex_cmd_tab)])){
460 cpmax = &(cp = a_lex_special_cmd_tab)[NELEM(a_lex_special_cmd_tab)];
461 goto jredo;
464 if(gp != NULL){
465 printf("%s\n", n_shexp_quote_cp(arg, TRU1));
466 rv = 0;
467 }else{
468 n_err(_("Unknown command: `%s'\n"), arg);
469 rv = 1;
471 }else{
472 /* Very ugly, but take care for compiler supported string lengths :( */
473 fputs(progname, stdout);
474 fputs(_(
475 " commands -- <msglist> denotes message specifications,\n"
476 "e.g., 1-5, :n or ., separated by spaces:\n"), stdout);
477 fputs(_(
478 "\n"
479 "type <msglist> type (alias: `print') messages (honour `retain' etc.)\n"
480 "Type <msglist> like `type' but always show all headers\n"
481 "next goto and type next message\n"
482 "from <msglist> (search and) print header summary for the given list\n"
483 "headers header summary for messages surrounding \"dot\"\n"
484 "delete <msglist> delete messages (can be `undelete'd)\n"),
485 stdout);
487 fputs(_(
488 "\n"
489 "save <msglist> folder append messages to folder and mark as saved\n"
490 "copy <msglist> folder like `save', but don't mark them (`move' moves)\n"
491 "write <msglist> file write message contents to file (prompts for parts)\n"
492 "Reply <msglist> reply to message senders only\n"
493 "reply <msglist> like `Reply', but address all recipients\n"
494 "Lreply <msglist> forced mailing-list `reply' (see `mlist')\n"),
495 stdout);
497 fputs(_(
498 "\n"
499 "mail <recipients> compose a mail for the given recipients\n"
500 "file folder change to another mailbox\n"
501 "File folder like `file', but open readonly\n"
502 "quit quit and apply changes to the current mailbox\n"
503 "xit or exit like `quit', but discard changes\n"
504 "!shell command shell escape\n"
505 "list [<anything>] all available commands [in search order]\n"),
506 stdout);
508 rv = (ferror(stdout) != 0);
510 jleave:
511 NYD_LEAVE;
512 return rv;
515 static int
516 a_lex_c_quit(void *v){
517 NYD_ENTER;
518 UNUSED(v);
520 /* If we are PS_SOURCING, then return 1 so _evaluate() can handle it.
521 * Otherwise return -1 to abort command loop */
522 pstate |= PS_EXIT;
523 NYD_LEAVE;
524 return 0;
527 static int
528 a_lex_c_version(void *v){
529 int longest, rv;
530 char *iop;
531 char const *cp, **arr;
532 size_t i, i2;
533 NYD_ENTER;
534 UNUSED(v);
536 printf(_("%s version %s\nFeatures included (+) or not (-)\n"),
537 uagent, ok_vlook(version));
539 /* *features* starts with dummy byte to avoid + -> *folder* expansions */
540 i = strlen(cp = &ok_vlook(features)[1]) +1;
541 iop = salloc(i);
542 memcpy(iop, cp, i);
544 arr = salloc(sizeof(cp) * VAL_FEATURES_CNT);
545 for(longest = 0, i = 0; (cp = n_strsep(&iop, ',', TRU1)) != NULL; ++i){
546 arr[i] = cp;
547 i2 = strlen(cp);
548 longest = MAX(longest, (int)i2);
550 qsort(arr, i, sizeof(cp), &a_lex__version_cmp);
552 for(++longest, i2 = 0; i-- > 0;){
553 cp = *(arr++);
554 printf("%-*s ", longest, cp);
555 i2 += longest;
556 if(UICMP(z, ++i2 + longest, >=, scrnwidth) || i == 0){
557 i2 = 0;
558 putchar('\n');
562 if((rv = ferror(stdout) != 0))
563 clearerr(stdout);
564 NYD_LEAVE;
565 return rv;
568 static int
569 a_lex__version_cmp(void const *s1, void const *s2){
570 char const * const *cp1, * const *cp2;
571 int rv;
572 NYD2_ENTER;
574 cp1 = s1;
575 cp2 = s2;
576 rv = strcmp(&(*cp1)[1], &(*cp2)[1]);
577 NYD2_LEAVE;
578 return rv;
581 static void
582 a_lex_update_pstate(void){
583 NYD_ENTER;
585 if(pstate & PS_SIGWINCH_PEND){
586 char buf[32];
588 snprintf(buf, sizeof buf, "%d", scrnwidth);
589 ok_vset(COLUMNS, buf);
590 snprintf(buf, sizeof buf, "%d", scrnheight);
591 ok_vset(LINES, buf);
594 pstate &= ~PS_PSTATE_PENDMASK;
595 NYD_LEAVE;
598 static int
599 a_lex_evaluate(struct a_lex_eval_ctx *evp){
600 /* xxx old style(9), but also old code */
601 struct str line;
602 char _wordbuf[2], *arglist[MAXARGC], *cp, *word;
603 struct a_lex_ghost *gp;
604 struct a_lex_cmd const *cmd;
605 int c, e;
606 bool_t wysh;
607 NYD_ENTER;
609 wysh = FAL0;
610 e = 1;
611 cmd = NULL;
612 gp = NULL;
613 line = evp->le_line; /* XXX don't change original (buffer pointer) */
614 assert(line.s[line.l] == '\0');
615 evp->le_add_history = FAL0;
616 evp->le_new_content = NULL;
618 /* Command ghosts that refer to shell commands or macro expansion restart */
619 jrestart:
621 /* Strip the white space away from end and beginning of command */
622 if(line.l > 0){
623 size_t i = line.l;
625 for(cp = &line.s[i -1]; spacechar(*cp); --cp)
626 --i;
627 line.l = i;
629 for(cp = line.s; spacechar(*cp); ++cp)
631 line.l -= PTR2SIZE(cp - line.s);
633 /* Ignore null commands (comments) */
634 if(*cp == '#')
635 goto jleave0;
637 /* Handle ! differently to get the correct lexical conventions */
638 arglist[0] = cp;
639 if(*cp == '!')
640 ++cp;
641 /* Isolate the actual command; since it may not necessarily be
642 * separated from the arguments (as in `p1') we need to duplicate it to
643 * be able to create a NUL terminated version.
644 * We must be aware of several special one letter commands here */
645 else if((cp = a_lex_isolate(cp)) == arglist[0] &&
646 (*cp == '|' || *cp == '~' || *cp == '?'))
647 ++cp;
648 c = (int)PTR2SIZE(cp - arglist[0]);
649 line.l -= c;
650 word = UICMP(z, c, <, sizeof _wordbuf) ? _wordbuf : salloc(c +1);
651 memcpy(word, arglist[0], c);
652 word[c] = '\0';
654 /* Look up the command; if not found, bitch.
655 * Normally, a blank command would map to the first command in the
656 * table; while PS_SOURCING, however, we ignore blank lines to eliminate
657 * confusion; act just the same for ghosts */
658 if(*word == '\0'){
659 if((pstate & PS_ROBOT) || gp != NULL)
660 goto jleave0;
661 cmd = a_lex_cmd_tab + 0;
662 goto jexec;
665 /* XXX It may be the argument parse adjuster */
666 if(!wysh && c == sizeof("wysh") -1 && !asccasecmp(word, "wysh")){
667 wysh = TRU1;
668 line.s = cp;
669 goto jrestart;
672 /* If this is the first evaluation, check command ghosts */
673 if(gp == NULL){
674 /* TODO relink list head, so it's sorted on usage over time?
675 * TODO in fact, there should be one hashmap over all commands and ghosts
676 * TODO so that the lookup could be made much more efficient than it is
677 * TODO now (two adjacent list searches! */
678 for(gp = a_lex_ghosts; gp != NULL; gp = gp->lg_next)
679 if(!strcmp(word, gp->lg_name)){
680 if(line.l > 0){
681 size_t i;
683 i = gp->lg_cmd.l;
684 line.s = salloc(i + line.l +1);
685 memcpy(line.s, gp->lg_cmd.s, i);
686 memcpy(line.s + i, cp, line.l);
687 line.s[i += line.l] = '\0';
688 line.l = i;
689 }else{
690 line.s = gp->lg_cmd.s;
691 line.l = gp->lg_cmd.l;
693 goto jrestart;
697 if((cmd = a_lex__firstfit(word)) == NULL || cmd->lc_func == &c_cmdnotsupp){
698 bool_t s;
700 if(!(s = condstack_isskip()) || (options & OPT_D_V))
701 n_err(_("Unknown command%s: `%s'\n"),
702 (s ? _(" (ignored due to `if' condition)") : ""), word);
703 if(s)
704 goto jleave0;
705 if(cmd != NULL){
706 c_cmdnotsupp(NULL);
707 cmd = NULL;
709 goto jleave;
712 /* See if we should execute the command -- if a conditional we always
713 * execute it, otherwise, check the state of cond */
714 jexec:
715 if(!(cmd->lc_argtype & ARG_F) && condstack_isskip())
716 goto jleave0;
718 /* Process the arguments to the command, depending on the type it expects */
719 if(!(cmd->lc_argtype & ARG_M) && (options & OPT_SENDMODE)){
720 n_err(_("May not execute `%s' while sending\n"), cmd->lc_name);
721 goto jleave;
723 if((cmd->lc_argtype & ARG_S) && !(pstate & PS_STARTED)){
724 n_err(_("May not execute `%s' during startup\n"), cmd->lc_name);
725 goto jleave;
727 if((cmd->lc_argtype & ARG_I) &&
728 !(options & (OPT_INTERACTIVE | OPT_BATCH_FLAG))){
729 n_err(_("May not execute `%s' unless interactive or in batch mode\n"),
730 cmd->lc_name);
731 goto jleave;
733 if((cmd->lc_argtype & ARG_R) && (pstate & PS_RECURSED)){
734 n_err(_("Cannot invoke `%s' when in recursed mode (e.g., composing)\n"),
735 cmd->lc_name);
736 goto jleave;
739 if((cmd->lc_argtype & ARG_W) && !(mb.mb_perm & MB_DELE)){
740 n_err(_("May not execute `%s' -- message file is read only\n"),
741 cmd->lc_name);
742 goto jleave;
744 if((cmd->lc_argtype & ARG_A) && mb.mb_type == MB_VOID){
745 n_err(_("Cannot execute `%s' without active mailbox\n"), cmd->lc_name);
746 goto jleave;
749 if(cmd->lc_argtype & ARG_O)
750 OBSOLETE2(_("this command will be removed"), cmd->lc_name);
751 if(cmd->lc_argtype & ARG_V)
752 temporary_arg_v_store = NULL;
754 if(wysh && (cmd->lc_argtype & ARG_ARGMASK) != ARG_WYRALIST)
755 n_err(_("`wysh' prefix doesn't affect `%s'\n"), cmd->lc_name);
756 /* TODO v15: strip PS_ARGLIST_MASK off, just in case the actual command
757 * TODO doesn't use any of those list commands which strip this mask,
758 * TODO and for now we misuse bits for checking relation to history;
759 * TODO argument state should be property of a per-command carrier instead */
760 pstate &= ~PS_ARGLIST_MASK;
761 switch(cmd->lc_argtype & ARG_ARGMASK){
762 case ARG_MSGLIST:
763 /* Message list defaulting to nearest forward legal message */
764 if(n_msgvec == NULL)
765 goto je96;
766 if((c = getmsglist(cp, n_msgvec, cmd->lc_msgflag)) < 0)
767 break;
768 if(c == 0){
769 if((n_msgvec[0] = first(cmd->lc_msgflag, cmd->lc_msgmask)) != 0)
770 n_msgvec[1] = 0;
772 if(n_msgvec[0] == 0){
773 if(!(pstate & PS_HOOK_MASK))
774 printf(_("No applicable messages\n"));
775 break;
777 e = (*cmd->lc_func)(n_msgvec);
778 break;
780 case ARG_NDMLIST:
781 /* Message list with no defaults, but no error if none exist */
782 if(n_msgvec == NULL){
783 je96:
784 n_err(_("Invalid use of message list\n"));
785 break;
787 if((c = getmsglist(cp, n_msgvec, cmd->lc_msgflag)) < 0)
788 break;
789 e = (*cmd->lc_func)(n_msgvec);
790 break;
792 case ARG_STRLIST:
793 /* Just the straight string, with leading blanks removed */
794 while(whitechar(*cp))
795 ++cp;
796 e = (*cmd->lc_func)(cp);
797 break;
799 case ARG_WYSHLIST:
800 c = 1;
801 if(0){
802 /* FALLTHRU */
803 case ARG_WYRALIST:
804 c = wysh ? 1 : 0;
805 if(0){
806 case ARG_RAWLIST:
807 c = 0;
811 if((c = getrawlist((c != 0), arglist, NELEM(arglist), cp, line.l)) < 0){
812 n_err(_("Invalid argument list\n"));
813 break;
815 if(c < cmd->lc_minargs){
816 n_err(_("`%s' requires at least %d arg(s)\n"),
817 cmd->lc_name, cmd->lc_minargs);
818 break;
820 #undef lc_minargs
821 if(c > cmd->lc_maxargs){
822 n_err(_("`%s' takes no more than %d arg(s)\n"),
823 cmd->lc_name, cmd->lc_maxargs);
824 break;
826 #undef lc_maxargs
827 e = (*cmd->lc_func)(arglist);
828 break;
830 case ARG_NOLIST:
831 /* Just the constant zero, for exiting, eg. */
832 e = (*cmd->lc_func)(0);
833 break;
835 default:
836 DBG( n_panic(_("Implementation error: unknown argument type: %d"),
837 cmd->lc_argtype & ARG_ARGMASK); )
838 goto jleave0;
841 if(e == 0 && (cmd->lc_argtype & ARG_V) &&
842 (cp = temporary_arg_v_store) != NULL){
843 temporary_arg_v_store = NULL;
844 evp->le_new_content = cp;
845 goto jleave0;
847 /* TODO v15 with PS_MSGLIST_GABBY the history entry is at least gabby */
848 if(!(cmd->lc_argtype & ARG_H) && !(pstate & PS_MSGLIST_GABBY))
849 evp->le_add_history = TRU1;
851 jleave:
852 /* Exit the current source file on error TODO what a mess! */
853 if(e == 0)
854 pstate &= ~PS_EVAL_ERROR;
855 else{
856 pstate |= PS_EVAL_ERROR;
857 if(e < 0 || (pstate & PS_ROBOT)){ /* FIXME */
858 e = 1;
859 goto jret;
861 goto jret0;
864 if(cmd == NULL)
865 goto jret0;
866 if((cmd->lc_argtype & ARG_P) && ok_blook(autoprint))
867 if(visible(dot)){
868 line.s = savestr("type");
869 line.l = sizeof("type") -1;
870 gp = (struct a_lex_ghost*)-1; /* Avoid `ghost' interpretation */
871 goto jrestart;
874 if(!(pstate & (PS_SOURCING | PS_HOOK_MASK)) && !(cmd->lc_argtype & ARG_T))
875 pstate |= PS_SAW_COMMAND;
876 jleave0:
877 pstate &= ~PS_EVAL_ERROR;
878 jret0:
879 e = 0;
880 jret:
882 fprintf(stderr, "a_lex_evaluate returns %d for <%s>\n",e,line.s);
884 NYD_LEAVE;
885 return e;
888 static struct a_lex_cmd const *
889 a_lex__firstfit(char const *comm){ /* TODO *hashtable*! linear list search!!! */
890 struct a_lex_cmd const *cp;
891 NYD2_ENTER;
893 for(cp = a_lex_cmd_tab; PTRCMP(cp, <, &a_lex_cmd_tab[NELEM(a_lex_cmd_tab)]);
894 ++cp)
895 if(*comm == *cp->lc_name && is_prefix(comm, cp->lc_name))
896 goto jleave;
897 cp = NULL;
898 jleave:
899 NYD2_LEAVE;
900 return cp;
903 static void
904 a_lex_hangup(int s){
905 NYD_X; /* Signal handler */
906 UNUSED(s);
907 /* nothing to do? */
908 exit(EXIT_ERR);
911 static void
912 a_lex_onintr(int s){
913 NYD_X; /* Signal handler */
914 UNUSED(s);
916 safe_signal(SIGINT, a_lex_onintr);
917 noreset = 0;
918 a_lex_unstack(TRUM1);
920 termios_state_reset();
921 close_all_files(); /* FIXME .. to outer level ONLU! */
923 if(image >= 0){
924 close(image);
925 image = -1;
927 if(interrupts != 1)
928 n_err_sighdl(_("Interrupt\n"));
929 safe_signal(SIGPIPE, a_lex_oldpipe);
930 siglongjmp(srbuf, 0); /* FIXME get rid */
933 static void
934 a_lex_unstack(bool_t eval_error){
935 struct a_lex_input_stack *lip;
936 NYD_ENTER;
938 if((lip = a_lex_input) == NULL){
939 /* If called from a_lex_onintr(), be silent FIXME */
940 pstate &= ~(PS_SOURCING | PS_ROBOT);
941 if(eval_error == TRUM1 || !(pstate & PS_STARTED))
942 goto jleave;
943 goto jerr;
946 if(lip->li_flags & a_LEX_MACRO){
947 if(lip->li_flags & a_LEX_MACRO_FREE_DATA){
948 char **lp;
950 while(*(lp = &lip->li_lines[lip->li_loff]) != NULL){
951 free(*lp);
952 ++lip->li_loff;
954 /* Part of lip's memory chunk, then */
955 if(!(lip->li_flags & a_LEX_MACRO_CMD))
956 free(lip->li_lines);
958 }else{
959 if(lip->li_flags & a_LEX_PIPE)
960 /* XXX command manager should -TERM then -KILL instead of hoping
961 * XXX for exit of provider due to EPIPE / SIGPIPE */
962 Pclose(lip->li_file, TRU1);
963 else
964 Fclose(lip->li_file);
967 if(!condstack_take(lip->li_cond)){
968 n_err(_("Unmatched `if' at end of %s %s\n"),
969 ((lip->li_flags & a_LEX_MACRO
970 ? (lip->li_flags & a_LEX_MACRO_CMD ? _("command") : _("macro"))
971 : _("`source'd file"))),
972 lip->li_name);
973 eval_error = TRU1;
976 if((a_lex_input = lip->li_outer) == NULL){
977 pstate &= ~(PS_SOURCING | PS_ROBOT);
978 }else{
979 if((a_lex_input->li_flags & (a_LEX_MACRO | a_LEX_SUPER_MACRO)) ==
980 (a_LEX_MACRO | a_LEX_SUPER_MACRO))
981 pstate &= ~PS_SOURCING;
982 assert(pstate & PS_ROBOT);
985 if(eval_error)
986 goto jerr;
987 if(lip->li_flags & a_LEX_FREE)
988 free(lip);
989 jleave:
990 if(UNLIKELY(a_lex_input != NULL && eval_error == TRUM1))
991 a_lex_unstack(TRUM1);
992 NYD_LEAVE;
993 return;
995 jerr:
996 if(lip != NULL){
997 if(options & OPT_D_V)
998 n_alert(_("Stopped %s %s due to errors%s"),
999 (pstate & PS_STARTED
1000 ? (lip->li_flags & a_LEX_MACRO
1001 ? (lip->li_flags & a_LEX_MACRO_CMD
1002 ? _("evaluating command") : _("evaluating macro"))
1003 : (lip->li_flags & a_LEX_PIPE
1004 ? _("executing `source'd pipe")
1005 : _("loading `source'd file")))
1006 : (lip->li_flags & a_LEX_MACRO
1007 ? (lip->li_flags & a_LEX_MACRO_X_OPTION
1008 ? _("evaluating command line") : _("evaluating macro"))
1009 : _("loading initialization resource"))),
1010 lip->li_name,
1011 (options & OPT_DEBUG ? "" : _(" (enable *debug* for trace)")));
1012 if(lip->li_flags & a_LEX_FREE)
1013 free(lip);
1016 if(!(options & OPT_INTERACTIVE) && !(pstate & PS_STARTED)){
1017 if(options & OPT_D_V)
1018 n_alert(_("Non-interactive, bailing out due to errors "
1019 "in startup load phase"));
1020 exit(EXIT_ERR);
1022 goto jleave;
1025 static bool_t
1026 a_lex_source_file(char const *file, bool_t silent_error){
1027 struct a_lex_input_stack *lip;
1028 size_t nlen;
1029 char *nbuf;
1030 bool_t ispipe;
1031 FILE *fip;
1032 NYD_ENTER;
1034 fip = NULL;
1036 /* Being a command argument file is space-trimmed *//* TODO v15 with
1037 * TODO WYRALIST this is no longer necessary true, and for that we
1038 * TODO don't set _PARSE_TRIMSPACE because we cannot! -> cmd_tab.h!! */
1039 #if 0
1040 ((ispipe = (!silent_error && (nlen = strlen(file)) > 0 &&
1041 file[--nlen] == '|')))
1042 #else
1043 ispipe = FAL0;
1044 if(!silent_error)
1045 for(nlen = strlen(file); nlen > 0;){
1046 char c;
1048 c = file[--nlen];
1049 if(!blankchar(c)){
1050 if(c == '|'){
1051 nbuf = savestrbuf(file, nlen);
1052 ispipe = TRU1;
1053 break;
1057 #endif
1059 if(ispipe){
1060 if((fip = Popen(nbuf /* #if 0 above = savestrbuf(file, nlen)*/, "r",
1061 ok_vlook(SHELL), NULL, COMMAND_FD_NULL)) == NULL){
1062 if(!silent_error || (options & OPT_D_V))
1063 n_perr(nbuf, 0);
1064 goto jleave;
1066 }else if((nbuf = fexpand(file, FEXP_LOCAL)) == NULL)
1067 goto jleave;
1068 else if((fip = Fopen(nbuf, "r")) == NULL){
1069 if(!silent_error || (options & OPT_D_V))
1070 n_perr(nbuf, 0);
1071 goto jleave;
1074 lip = smalloc(sizeof(*lip) -
1075 VFIELD_SIZEOF(struct a_lex_input_stack, li_name) +
1076 (nlen = strlen(nbuf) +1));
1077 lip->li_outer = a_lex_input;
1078 lip->li_file = fip;
1079 lip->li_cond = condstack_release();
1080 lip->li_flags = (ispipe ? a_LEX_FREE | a_LEX_PIPE : a_LEX_FREE) |
1081 (a_lex_input != NULL && (a_lex_input->li_flags & a_LEX_SUPER_MACRO)
1082 ? a_LEX_SUPER_MACRO : 0);
1083 memcpy(lip->li_name, nbuf, nlen);
1085 pstate |= PS_SOURCING | PS_ROBOT;
1086 a_lex_input = lip;
1087 a_commands_recursive(n_LEXINPUT_NONE | n_LEXINPUT_NL_ESC);
1088 /* FIXME return TRUM1 if file can't be opened, FAL0 on eval error */
1089 jleave:
1090 NYD_LEAVE;
1091 return silent_error ? TRU1 : (fip != NULL);
1094 static bool_t
1095 a_lex_load(struct a_lex_input_stack *lip){
1096 bool_t rv;
1097 NYD2_ENTER;
1099 assert(!(pstate & PS_STARTED));
1100 assert(a_lex_input == NULL);
1102 /* POSIX:
1103 * Any errors in the start-up file shall either cause mailx to terminate
1104 * with a diagnostic message and a non-zero status or to continue after
1105 * writing a diagnostic message, ignoring the remainder of the lines in
1106 * the start-up file. */
1107 lip->li_cond = condstack_release();
1109 /* FIXME won't work for now (PS_ROBOT needs PS_SOURCING anyway)
1110 pstate |= PS_ROBOT |
1111 (lip->li_flags & a_LEX_MACRO_X_OPTION ? 0 : PS_SOURCING);
1113 pstate |= PS_ROBOT | PS_SOURCING;
1114 if(options & OPT_D_V)
1115 n_err(_("Loading %s\n"), n_shexp_quote_cp(lip->li_name, FAL0));
1116 a_lex_input = lip;
1117 if(!(rv = n_commands())){
1118 if(!(options & OPT_INTERACTIVE)){
1119 if(options & OPT_D_V)
1120 n_alert(_("Non-interactive program mode, forced exit"));
1121 exit(EXIT_ERR);
1124 /* PS_EXIT handled by callers */
1125 NYD2_LEAVE;
1126 return rv;
1129 static bool_t
1130 a_commands_recursive(enum n_lexinput_flags lif){
1131 struct a_lex_eval_ctx ev;
1132 bool_t rv;
1133 NYD2_ENTER;
1135 memset(&ev, 0, sizeof ev);
1137 /* FIXME sigkondom */
1138 n_COLOUR( n_colour_env_push(); )
1139 rv = TRU1;
1140 for(;;){
1141 int n;
1143 /* Read a line of commands and handle end of file specially */
1144 ev.le_line.l = ev.le_line_size;
1145 n = n_lex_input(lif, NULL, &ev.le_line.s, &ev.le_line.l,
1146 ev.le_new_content);
1147 ev.le_line_size = (ui32_t)ev.le_line.l;
1148 ev.le_line.l = (ui32_t)n;
1150 if(n < 0)
1151 break;
1153 if(a_lex_evaluate(&ev)){
1154 rv = FAL0;
1155 break;
1158 if((options & OPT_BATCH_FLAG) && ok_blook(batch_exit_on_error)){
1159 if(exit_status != EXIT_OK)
1160 break;
1163 a_lex_unstack(!rv);
1164 n_COLOUR( n_colour_env_pop(FAL0); )
1166 if(ev.le_line.s != NULL)
1167 free(ev.le_line.s);
1168 NYD2_LEAVE;
1169 return rv;
1172 FL bool_t
1173 n_commands(void){ /* FIXME */
1174 struct a_lex_eval_ctx ev;
1175 int n;
1176 bool_t volatile rv = TRU1;
1177 NYD_ENTER;
1179 if (!(pstate & PS_SOURCING)) {
1180 if (safe_signal(SIGINT, SIG_IGN) != SIG_IGN)
1181 safe_signal(SIGINT, &a_lex_onintr);
1182 if (safe_signal(SIGHUP, SIG_IGN) != SIG_IGN)
1183 safe_signal(SIGHUP, &a_lex_hangup);
1185 a_lex_oldpipe = safe_signal(SIGPIPE, SIG_IGN);
1186 safe_signal(SIGPIPE, a_lex_oldpipe);
1188 memset(&ev, 0, sizeof ev);
1190 (void)sigsetjmp(srbuf, 1); /* FIXME get rid */
1191 for (;;) {
1192 char *temporary_orig_line; /* XXX eval_ctx.le_line not yet constant */
1194 n_COLOUR( n_colour_env_pop(TRU1); )
1196 /* TODO Unless we have our signal manager (or however we do it) child
1197 * TODO processes may have time slots where their execution isn't
1198 * TODO protected by signal handlers (in between start and setup
1199 * TODO completed). close_all_files() is only called from onintr()
1200 * TODO so those may linger possibly forever */
1201 if(!(pstate & PS_SOURCING))
1202 close_all_files();
1204 interrupts = 0;
1206 temporary_localopts_free(); /* XXX intermediate hack */
1207 sreset((pstate & PS_SOURCING) != 0);
1208 if (!(pstate & PS_SOURCING)) {
1209 char *cp;
1211 /* TODO Note: this buffer may contain a password. We should redefine
1212 * TODO the code flow which has to do that */
1213 if ((cp = termios_state.ts_linebuf) != NULL) {
1214 termios_state.ts_linebuf = NULL;
1215 termios_state.ts_linesize = 0;
1216 free(cp); /* TODO pool give-back */
1218 /* TODO Due to expand-on-tab of NCL the buffer may grow */
1219 if (ev.le_line.l > LINESIZE * 3) {
1220 free(ev.le_line.s); /* TODO pool! but what? */
1221 ev.le_line.s = NULL;
1222 ev.le_line.l = ev.le_line_size = 0;
1226 if (!(pstate & PS_SOURCING) && (options & OPT_INTERACTIVE)) {
1227 char *cp;
1229 cp = ok_vlook(newmail);
1230 if ((options & OPT_TTYIN) && cp != NULL) {
1231 struct stat st;
1233 /* FIXME TEST WITH NOPOLL ETC. !!! */
1234 n = (cp != NULL && strcmp(cp, "nopoll"));
1235 if ((mb.mb_type == MB_FILE && !stat(mailname, &st) &&
1236 st.st_size > mailsize) ||
1237 (mb.mb_type == MB_MAILDIR && n != 0)) {
1238 size_t odot = PTR2SIZE(dot - message);
1239 ui32_t odid = (pstate & PS_DID_PRINT_DOT);
1241 if (setfile(mailname,
1242 FEDIT_NEWMAIL |
1243 ((mb.mb_perm & MB_DELE) ? 0 : FEDIT_RDONLY)) < 0) {
1244 exit_status |= EXIT_ERR;
1245 rv = FAL0;
1246 break;
1248 dot = message + odot;
1249 pstate |= odid;
1253 exit_status = EXIT_OK;
1256 /* Read a line of commands and handle end of file specially */
1257 jreadline:
1258 ev.le_line.l = ev.le_line_size;
1259 n = n_lex_input(n_LEXINPUT_CTX_BASE | n_LEXINPUT_NL_ESC, NULL,
1260 &ev.le_line.s, &ev.le_line.l, ev.le_new_content);
1261 ev.le_line_size = (ui32_t)ev.le_line.l;
1262 ev.le_line.l = (ui32_t)n;
1264 if (n < 0) {
1265 /* FIXME did unstack() when PS_SOURCING, only break with PS_LOADING*/
1266 if (!(pstate & PS_ROBOT) &&
1267 (options & OPT_INTERACTIVE) && ok_blook(ignoreeof)) {
1268 printf(_("*ignoreeof* set, use `quit' to quit.\n"));
1269 n_msleep(500, FAL0);
1270 continue;
1272 break;
1275 temporary_orig_line = ((pstate & PS_SOURCING) ||
1276 !(options & OPT_INTERACTIVE)) ? NULL
1277 : savestrbuf(ev.le_line.s, ev.le_line.l);
1278 pstate &= ~PS_HOOK_MASK;
1279 if (a_lex_evaluate(&ev)) {
1280 if (!(pstate & PS_STARTED)) /* TODO mess; join PS_EVAL_ERROR.. */
1281 rv = FAL0;
1282 break;
1285 if ((options & OPT_BATCH_FLAG) && ok_blook(batch_exit_on_error)) {
1286 if (exit_status != EXIT_OK)
1287 break;
1288 if ((pstate & (PS_SOURCING | PS_EVAL_ERROR)) == PS_EVAL_ERROR) {
1289 exit_status = EXIT_ERR;
1290 break;
1293 if (!(pstate & PS_SOURCING) && (options & OPT_INTERACTIVE)) {
1294 if (ev.le_new_content != NULL)
1295 goto jreadline;
1296 /* *Can* happen since _evaluate() n_unstack()s on error! XXX no more */
1297 if (temporary_orig_line != NULL)
1298 n_tty_addhist(temporary_orig_line, !ev.le_add_history);
1301 if(pstate & PS_EXIT)
1302 break;
1304 a_lex_unstack(!rv);
1306 if (ev.le_line.s != NULL)
1307 free(ev.le_line.s);
1308 if (pstate & PS_SOURCING)
1309 sreset(FAL0);
1310 NYD_LEAVE;
1311 return rv;
1314 FL int
1315 (n_lex_input)(enum n_lexinput_flags lif, char const *prompt, char **linebuf,
1316 size_t *linesize, char const *string SMALLOC_DEBUG_ARGS){
1317 /* TODO readline: linebuf pool!; n_lex_input should return si64_t */
1318 FILE *ifile;
1319 bool_t doprompt, dotty;
1320 char const *iftype;
1321 int n, nold;
1322 NYD2_ENTER;
1324 /* Special case macro mode: never need to prompt, lines have always been
1325 * unfolded already */
1326 if(a_lex_input != NULL && (a_lex_input->li_flags & a_LEX_MACRO)){
1327 if(*linebuf != NULL)
1328 free(*linebuf);
1330 if((*linebuf = a_lex_input->li_lines[a_lex_input->li_loff]) == NULL){
1331 *linesize = 0;
1332 n = -1;
1333 goto jleave;
1336 ++a_lex_input->li_loff;
1337 *linesize = strlen(*linebuf);
1338 if(!(a_lex_input->li_flags & a_LEX_MACRO_FREE_DATA))
1339 *linebuf = sbufdup(*linebuf, *linesize);
1341 iftype = (a_lex_input->li_flags & a_LEX_MACRO_X_OPTION)
1342 ? "-X OPTION" : "MACRO";
1343 n = (int)*linesize;
1344 pstate |= PS_READLINE_NL;
1345 goto jhave_dat;
1347 pstate &= ~PS_READLINE_NL;
1349 iftype = (!(pstate & PS_STARTED) ? "LOAD"
1350 : (pstate & PS_SOURCING) ? "SOURCE" : "READ");
1351 doprompt = ((pstate & (PS_STARTED | PS_ROBOT)) == PS_STARTED &&
1352 (options & OPT_INTERACTIVE));
1353 dotty = (doprompt && !ok_blook(line_editor_disable));
1354 if(!doprompt)
1355 prompt = NULL;
1356 else if(prompt == NULL)
1357 prompt = getprompt();
1359 /* Ensure stdout is flushed first anyway */
1360 if(!dotty && prompt == NULL)
1361 fflush(stdout);
1363 ifile = (a_lex_input != NULL) ? a_lex_input->li_file : stdin;
1364 assert(ifile != NULL);
1366 for(nold = n = 0;;){
1367 if(dotty){
1368 assert(ifile == stdin);
1369 if(string != NULL && (n = (int)strlen(string)) > 0){
1370 if(*linesize > 0)
1371 *linesize += n +1;
1372 else
1373 *linesize = (size_t)n + LINESIZE +1;
1374 *linebuf = (srealloc)(*linebuf, *linesize SMALLOC_DEBUG_ARGSCALL);
1375 memcpy(*linebuf, string, (size_t)n +1);
1377 string = NULL;
1378 /* TODO if nold>0, don't redisplay the entire line!
1379 * TODO needs complete redesign ... */
1380 n = (n_tty_readline)(lif, prompt, linebuf, linesize, n
1381 SMALLOC_DEBUG_ARGSCALL);
1382 }else{
1383 if(prompt != NULL) {
1384 if(*prompt != '\0')
1385 fputs(prompt, stdout);
1386 fflush(stdout);
1389 n = (readline_restart)(ifile, linebuf, linesize, n
1390 SMALLOC_DEBUG_ARGSCALL);
1392 if(n > 0 && nold > 0){
1393 int i = 0;
1394 char const *cp = *linebuf + nold;
1396 while(blankspacechar(*cp) && nold + i < n)
1397 ++cp, ++i;
1398 if(i > 0){
1399 memmove(*linebuf + nold, cp, n - nold - i);
1400 n -= i;
1401 (*linebuf)[n] = '\0';
1406 if(n <= 0)
1407 break;
1409 /* POSIX says:
1410 * An unquoted <backslash> at the end of a command line shall
1411 * be discarded and the next line shall continue the command */
1412 if(!(lif & n_LEXINPUT_NL_ESC) || (*linebuf)[n - 1] != '\\'){
1413 if(dotty)
1414 pstate |= PS_READLINE_NL;
1415 break;
1417 /* Definitely outside of quotes, thus the quoting rules are so that an
1418 * uneven number of successive backslashs at EOL is a continuation */
1419 if(n > 1){
1420 size_t i, j;
1422 for(j = 1, i = (size_t)n - 1; i-- > 0; ++j)
1423 if((*linebuf)[i] != '\\')
1424 break;
1425 if(!(j & 1))
1426 break;
1428 (*linebuf)[nold = --n] = '\0';
1429 if(prompt != NULL && *prompt != '\0')
1430 prompt = ".. "; /* XXX PS2 .. */
1433 if(n < 0)
1434 goto jleave;
1435 (*linebuf)[*linesize = n] = '\0';
1437 jhave_dat:
1438 #if 0
1439 if(lif & n_LEXINPUT_DROP_TRAIL_SPC){
1440 char *cp, c;
1441 size_t i;
1443 for(cp = &(*linebuf)[i = (size_t)n];; --i){
1444 c = *--cp;
1445 if(!blankspacechar(c))
1446 break;
1448 (*linebuf)[n = (int)i] = '\0';
1451 if(lif & n_LEXINPUT_DROP_LEAD_SPC){
1452 char *cp, c;
1453 size_t j, i;
1455 for(cp = &(*linebuf)[0], j = (size_t)n, i = 0; i < j; ++i){
1456 c = *cp++;
1457 if(!blankspacechar(c))
1458 break;
1460 if(i > 0){
1461 memcpy(&(*linebuf)[0], &(*linebuf)[i], j -= i);
1462 (*linebuf)[n = (int)j] = '\0';
1465 #endif /* 0 (notyet - must take care for backslash escaped space) */
1467 if(options & OPT_D_VV)
1468 n_err(_("%s %d bytes <%s>\n"), iftype, n, *linebuf);
1469 jleave:
1470 if (pstate & PS_PSTATE_PENDMASK)
1471 a_lex_update_pstate();
1472 NYD2_LEAVE;
1473 return n;
1476 FL char *
1477 n_lex_input_cp(enum n_lexinput_flags lif, char const *prompt,
1478 char const *string){
1479 /* FIXME n_lex_input_cp_addhist(): leaks on sigjmp without linepool */
1480 size_t linesize;
1481 char *linebuf, *rv;
1482 int n;
1483 NYD2_ENTER;
1485 linesize = 0;
1486 linebuf = NULL;
1487 rv = NULL;
1489 n = n_lex_input(lif, prompt, &linebuf, &linesize, string);
1490 if(n > 0 && *(rv = savestrbuf(linebuf, (size_t)n)) != '\0' &&
1491 (lif & n_LEXINPUT_HIST_ADD) && (options & OPT_INTERACTIVE))
1492 n_tty_addhist(rv, ((lif & n_LEXINPUT_HIST_GABBY) != 0));
1494 if(linebuf != NULL)
1495 free(linebuf);
1496 NYD2_LEAVE;
1497 return rv;
1500 FL void
1501 n_load(char const *name){
1502 struct a_lex_input_stack *lip;
1503 size_t i;
1504 FILE *fip;
1505 NYD_ENTER;
1507 if(name == NULL || *name == '\0' || (fip = Fopen(name, "r")) == NULL)
1508 goto jleave;
1510 i = strlen(name) +1;
1511 lip = scalloc(1, sizeof(*lip) -
1512 VFIELD_SIZEOF(struct a_lex_input_stack, li_name) + i);
1513 lip->li_file = fip;
1514 lip->li_flags = a_LEX_FREE;
1515 memcpy(lip->li_name, name, i);
1517 a_lex_load(lip);
1518 pstate &= ~PS_EXIT;
1519 jleave:
1520 NYD_LEAVE;
1523 FL void
1524 n_load_Xargs(char const **lines){
1525 static char const name[] = "-X";
1527 ui8_t buf[sizeof(struct a_lex_input_stack) + sizeof name];
1528 char const *srcp, *xsrcp;
1529 char *cp;
1530 size_t imax, i, len;
1531 struct a_lex_input_stack *lip;
1532 NYD_ENTER;
1534 memset(buf, 0, sizeof buf);
1535 lip = (void*)buf;
1536 lip->li_flags = a_LEX_MACRO | a_LEX_MACRO_FREE_DATA |
1537 a_LEX_MACRO_X_OPTION | a_LEX_SUPER_MACRO;
1538 memcpy(lip->li_name, name, sizeof name);
1540 /* The problem being that we want to support reverse solidus newline
1541 * escaping also within multiline -X, i.e., POSIX says:
1542 * An unquoted <backslash> at the end of a command line shall
1543 * be discarded and the next line shall continue the command
1544 * Therefore instead of "lip->li_lines = UNCONST(lines)", duplicate the
1545 * entire lines array and set _MACRO_FREE_DATA */
1546 for(imax = 0; lines[imax++] != NULL;)
1548 lip->li_lines = smalloc(sizeof(*lip->li_lines) * imax);
1550 /* For each of the input lines.. */
1551 for(i = len = 0, cp = NULL; (srcp = *lines) != NULL;){
1552 bool_t keep;
1553 size_t j;
1555 if((j = strlen(srcp)) == 0){
1556 ++lines;
1557 continue;
1560 /* Separate one line from a possible multiline input string */
1561 if((xsrcp = memchr(srcp, '\n', j)) != NULL){
1562 *lines = &xsrcp[1];
1563 j = PTR2SIZE(xsrcp - srcp);
1564 }else
1565 ++lines;
1567 /* The (separated) string may itself indicate soft newline escaping */
1568 if((keep = (srcp[j - 1] == '\\'))){
1569 size_t xj, xk;
1571 /* Need an uneven number of reverse solidus */
1572 for(xk = 1, xj = j - 1; xj-- > 0; ++xk)
1573 if(srcp[xj] != '\\')
1574 break;
1575 if(xk & 1)
1576 --j;
1577 else
1578 keep = FAL0;
1581 /* Strip any leading WS from follow lines, then */
1582 if(cp != NULL)
1583 while(j > 0 && blankspacechar(*srcp))
1584 ++srcp, --j;
1586 if(j > 0){
1587 if(i + 2 >= imax){ /* TODO need a vector (main.c, here, ++) */
1588 imax += 4;
1589 lip->li_lines = srealloc(lip->li_lines, sizeof(*lip->li_lines) *
1590 imax);
1592 lip->li_lines[i] = cp = srealloc(cp, len + j +1);
1593 memcpy(&cp[len], srcp, j);
1594 cp[len += j] = '\0';
1596 if(!keep)
1597 ++i;
1599 if(!keep)
1600 cp = NULL, len = 0;
1602 if(cp != NULL){
1603 assert(i + 1 < imax);
1604 lip->li_lines[i++] = cp;
1606 lip->li_lines[i] = NULL;
1608 a_lex_load(lip);
1609 if(pstate & PS_EXIT)
1610 exit(EXIT_OK);
1611 NYD_LEAVE;
1614 FL int
1615 c_source(void *v){
1616 int rv;
1617 NYD_ENTER;
1619 rv = (a_lex_source_file(*(char**)v, FAL0) == TRU1) ? 0 : 1;
1620 NYD_LEAVE;
1621 return rv;
1624 FL int
1625 c_source_if(void *v){ /* XXX obsolete?, support file tests in `if' etc.! */
1626 int rv;
1627 NYD_ENTER;
1629 rv = (a_lex_source_file(*(char**)v, TRU1) != FAL0) ? 0 : 1;
1630 NYD_LEAVE;
1631 return rv;
1634 FL bool_t
1635 n_source_macro(enum n_lexinput_flags lif, char const *name, char **lines){
1636 struct a_lex_input_stack *lip;
1637 size_t i;
1638 int rv;
1639 NYD_ENTER;
1641 lip = smalloc(sizeof(*lip) -
1642 VFIELD_SIZEOF(struct a_lex_input_stack, li_name) +
1643 (i = strlen(name) +1));
1644 lip->li_outer = a_lex_input;
1645 lip->li_file = NULL;
1646 lip->li_cond = condstack_release();
1647 lip->li_flags = a_LEX_FREE | a_LEX_MACRO | a_LEX_MACRO_FREE_DATA |
1648 (a_lex_input == NULL || (a_lex_input->li_flags & a_LEX_SUPER_MACRO)
1649 ? a_LEX_SUPER_MACRO : 0);
1650 lip->li_loff = 0;
1651 lip->li_lines = lines;
1652 memcpy(lip->li_name, name, i);
1654 pstate |= PS_ROBOT;
1655 a_lex_input = lip;
1656 rv = a_commands_recursive(lif);
1657 NYD_LEAVE;
1658 return rv;
1661 FL bool_t
1662 n_source_command(enum n_lexinput_flags lif, char const *cmd){
1663 struct a_lex_input_stack *lip;
1664 size_t i, ial;
1665 bool_t rv;
1666 NYD_ENTER;
1668 i = strlen(cmd);
1669 cmd = sbufdup(cmd, i++);
1670 ial = n_ALIGN(i);
1672 lip = smalloc(sizeof(*lip) -
1673 VFIELD_SIZEOF(struct a_lex_input_stack, li_name) +
1674 ial + 2*sizeof(char*));
1675 lip->li_outer = a_lex_input;
1676 lip->li_file = NULL;
1677 lip->li_cond = condstack_release();
1678 lip->li_flags = a_LEX_FREE | a_LEX_MACRO | a_LEX_MACRO_FREE_DATA |
1679 a_LEX_MACRO_CMD |
1680 (a_lex_input == NULL || (a_lex_input->li_flags & a_LEX_SUPER_MACRO)
1681 ? a_LEX_SUPER_MACRO : 0);
1682 lip->li_loff = 0;
1683 lip->li_lines = (void*)(lip->li_name + ial);
1684 lip->li_lines[0] = UNCONST(cmd); /* dup'ed above */
1685 lip->li_lines[1] = NULL;
1686 memcpy(lip->li_name, cmd, i);
1688 pstate |= PS_ROBOT;
1689 a_lex_input = lip;
1690 rv = a_commands_recursive(lif);
1691 NYD_LEAVE;
1692 return rv;
1695 FL bool_t
1696 n_source_may_yield_control(void){
1697 return ((options & OPT_INTERACTIVE) &&
1698 (pstate & PS_STARTED) &&
1699 (!(pstate & PS_ROBOT) || (pstate & PS_RECURSED)) && /* Ok for ~: */
1700 (a_lex_input == NULL || a_lex_input->li_outer == NULL));
1703 /* s-it-mode */