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>.
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
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
38 #define n_FILE lex_input
40 #ifndef HAVE_AMALGAMATION
44 enum a_lex_input_flags
{
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 */
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 */
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 */
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 ~:) */
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 */
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
);
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
166 static struct a_lex_cmd
const a_lex_cmd_tab
[] = {
169 a_lex_special_cmd_tab
[] = {
171 DS(N_("Comment command: ignore remaining (continuable) line")) },
173 DS(N_("Print out the preceding message")) }
178 a_lex_isolate(char const *comm
){
180 while(*comm
!= '\0' &&
181 strchr("~|? \t0123456789&%@$^.:/-+*'\",;(`", *comm
) == NULL
)
184 return UNCONST(comm
);
188 a_lex_c_ghost(void *v
){
189 struct a_lex_ghost
*lgp
, *gp
;
201 if((fp
= Ftmp(NULL
, "ghost", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) == NULL
)
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
));
209 page_or_print(fp
, i
);
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
));
223 /* Show command of single ghost? */
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
));
231 n_err(_("`ghost': no such alias: %s\n"), argv
[0]);
236 /* Define command for ghost: verify command content */
237 for(cl
= 0, i
= 1; (cp
= UNCONST(argv
[i
])) != NULL
; ++i
)
239 cl
+= strlen(cp
) +1; /* SP or NUL */
241 n_err(_("`ghost': empty command arguments after %s\n"), argv
[0]);
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])){
250 lgp
->lg_next
= gp
->lg_next
;
252 a_lex_ghosts
= gp
->lg_next
;
257 nl
= strlen(argv
[0]) +1;
258 gp
= smalloc(sizeof(*gp
) - VFIELD_SIZEOF(struct a_lex_ghost
, lg_name
) +
260 gp
->lg_next
= a_lex_ghosts
;
262 memcpy(gp
->lg_name
, argv
[0], nl
);
263 cp
= gp
->lg_cmd
.s
= gp
->lg_name
+ nl
;
266 while(*++argv
!= NULL
)
267 if((i
= strlen(*argv
)) > 0){
268 memcpy(cp
, *argv
, i
);
279 a_lex_c_unghost(void *v
){
280 struct a_lex_ghost
*lgp
, *gp
;
281 char const **argv
, *cp
;
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
;
295 for(lgp
= NULL
, gp
= a_lex_ghosts
; gp
!= NULL
;
296 lgp
= gp
, gp
= gp
->lg_next
)
297 if(!strcmp(gp
->lg_name
, cp
)){
299 lgp
->lg_next
= gp
->lg_next
;
301 a_lex_ghosts
= gp
->lg_next
;
305 n_err(_("`unghost': no such alias: %s\n"),
306 n_shexp_quote_cp(cp
, FAL0
));
316 a_lex_c_list(void *v
){
318 struct a_lex_cmd
const **cpa
, *cp
, **cursor
;
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
];
330 for(j
= 0; j
< NELEM(a_lex_special_cmd_tab
); ++i
, ++j
)
331 cpa
[i
] = &a_lex_special_cmd_tab
[j
];
339 qsort(cpa
, i
, sizeof(xcp
), &a_lex__pcmd_cmp
);
342 if((fp
= Ftmp(NULL
, "list", OF_RDWR
| OF_UNLINK
| OF_REGISTER
)) == NULL
)
345 fprintf(fp
, _("Commands are:\n"));
347 for(i
= 0, cursor
= cpa
; (cp
= *cursor
++) != NULL
;){
348 if(cp
->lc_func
== &c_cmdnotsupp
)
350 if(options
& OPT_D_V
){
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
));
367 fprintf(fp
, "`%s' (%s)\n", cp
->lc_name
, argt
);
371 size_t j
= strlen(cp
->lc_name
) + 2;
378 fprintf(fp
, (*cursor
!= NULL
? "%s, " : "%s\n"), cp
->lc_name
);
383 page_or_print(fp
, l
);
391 a_lex__pcmd_cmp(void const *s1
, void const *s2
){
392 struct a_lex_cmd
const * const *cp1
, * const *cp2
;
398 rv
= strcmp((*cp1
)->lc_name
, (*cp2
)->lc_name
);
404 a_lex_c_help(void *v
){
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
);
422 cpmax
= &(cp
= a_lex_cmd_tab
)[NELEM(a_lex_cmd_tab
)];
424 for(; PTRCMP(cp
, <, cpmax
); ++cp
){
425 #ifdef HAVE_DOCSTRINGS
426 # define a_DS V_(cp->lc_doc)
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
);
437 if(options
& OPT_D_V
){
440 switch(cp
->lc_argtype
& ARG_ARGMASK
){
441 case ARG_MSGLIST
: atp
= N_("message-list"); break;
442 case ARG_STRLIST
: atp
= N_("a \"string\""); break;
443 case ARG_RAWLIST
: atp
= N_("old-style quoting"); break;
444 case ARG_NOLIST
: atp
= N_("no arguments"); break;
445 case ARG_NDMLIST
: atp
= N_("message-list (no default)"); break;
446 case ARG_WYSHLIST
: atp
= N_("sh(1)ell-style quoting"); break;
447 default: atp
= N_("`wysh' for sh(1)ell-style quoting"); break;
449 #ifdef HAVE_DOCSTRINGS
450 printf(_("\n\tArgument type: %s"), V_(atp
));
452 printf(_("argument type: %s"), V_(atp
));
461 if(PTRCMP(cpmax
, ==, &a_lex_cmd_tab
[NELEM(a_lex_cmd_tab
)])){
462 cpmax
= &(cp
= a_lex_special_cmd_tab
)[NELEM(a_lex_special_cmd_tab
)];
467 printf("%s\n", n_shexp_quote_cp(arg
, TRU1
));
470 n_err(_("Unknown command: `%s'\n"), arg
);
474 /* Very ugly, but take care for compiler supported string lengths :( */
475 fputs(progname
, stdout
);
477 " commands -- <msglist> denotes message specifications,\n"
478 "e.g., 1-5, :n or ., separated by spaces:\n"), stdout
);
481 "type <msglist> type (alias: `print') messages (honour `retain' etc.)\n"
482 "Type <msglist> like `type' but always show all headers\n"
483 "next goto and type next message\n"
484 "from <msglist> (search and) print header summary for the given list\n"
485 "headers header summary for messages surrounding \"dot\"\n"
486 "delete <msglist> delete messages (can be `undelete'd)\n"),
491 "save <msglist> folder append messages to folder and mark as saved\n"
492 "copy <msglist> folder like `save', but don't mark them (`move' moves)\n"
493 "write <msglist> file write message contents to file (prompts for parts)\n"
494 "Reply <msglist> reply to message senders only\n"
495 "reply <msglist> like `Reply', but address all recipients\n"
496 "Lreply <msglist> forced mailing-list `reply' (see `mlist')\n"),
501 "mail <recipients> compose a mail for the given recipients\n"
502 "file folder change to another mailbox\n"
503 "File folder like `file', but open readonly\n"
504 "quit quit and apply changes to the current mailbox\n"
505 "xit or exit like `quit', but discard changes\n"
506 "!shell command shell escape\n"
507 "list [<anything>] all available commands [in search order]\n"),
510 rv
= (ferror(stdout
) != 0);
518 a_lex_c_quit(void *v
){
522 /* If we are PS_SOURCING, then return 1 so _evaluate() can handle it.
523 * Otherwise return -1 to abort command loop */
530 a_lex_c_version(void *v
){
533 char const *cp
, **arr
;
538 printf(_("%s version %s\nFeatures included (+) or not (-)\n"),
539 uagent
, ok_vlook(version
));
541 /* *features* starts with dummy byte to avoid + -> *folder* expansions */
542 i
= strlen(cp
= &ok_vlook(features
)[1]) +1;
546 arr
= salloc(sizeof(cp
) * VAL_FEATURES_CNT
);
547 for(longest
= 0, i
= 0; (cp
= n_strsep(&iop
, ',', TRU1
)) != NULL
; ++i
){
550 longest
= MAX(longest
, (int)i2
);
552 qsort(arr
, i
, sizeof(cp
), &a_lex__version_cmp
);
554 for(++longest
, i2
= 0; i
-- > 0;){
556 printf("%-*s ", longest
, cp
);
558 if(UICMP(z
, ++i2
+ longest
, >=, scrnwidth
) || i
== 0){
564 if((rv
= ferror(stdout
) != 0))
571 a_lex__version_cmp(void const *s1
, void const *s2
){
572 char const * const *cp1
, * const *cp2
;
578 rv
= strcmp(&(*cp1
)[1], &(*cp2
)[1]);
584 a_lex_update_pstate(void){
587 if(pstate
& PS_SIGWINCH_PEND
){
590 snprintf(buf
, sizeof buf
, "%d", scrnwidth
);
591 ok_vset(COLUMNS
, buf
);
592 snprintf(buf
, sizeof buf
, "%d", scrnheight
);
596 pstate
&= ~PS_PSTATE_PENDMASK
;
601 a_lex_evaluate(struct a_lex_eval_ctx
*evp
){
602 /* xxx old style(9), but also old code */
604 char _wordbuf
[2], *arglist
[MAXARGC
], *cp
, *word
;
605 struct a_lex_ghost
*gp
;
606 struct a_lex_cmd
const *cmd
;
615 line
= evp
->le_line
; /* XXX don't change original (buffer pointer) */
616 assert(line
.s
[line
.l
] == '\0');
617 evp
->le_add_history
= FAL0
;
618 evp
->le_new_content
= NULL
;
620 /* Command ghosts that refer to shell commands or macro expansion restart */
623 /* Strip the white space away from end and beginning of command */
627 for(cp
= &line
.s
[i
-1]; spacechar(*cp
); --cp
)
631 for(cp
= line
.s
; spacechar(*cp
); ++cp
)
633 line
.l
-= PTR2SIZE(cp
- line
.s
);
635 /* Ignore null commands (comments) */
639 /* Handle ! differently to get the correct lexical conventions */
643 /* Isolate the actual command; since it may not necessarily be
644 * separated from the arguments (as in `p1') we need to duplicate it to
645 * be able to create a NUL terminated version.
646 * We must be aware of several special one letter commands here */
647 else if((cp
= a_lex_isolate(cp
)) == arglist
[0] &&
648 (*cp
== '|' || *cp
== '~' || *cp
== '?'))
650 c
= (int)PTR2SIZE(cp
- arglist
[0]);
652 word
= UICMP(z
, c
, <, sizeof _wordbuf
) ? _wordbuf
: salloc(c
+1);
653 memcpy(word
, arglist
[0], c
);
656 /* Look up the command; if not found, bitch.
657 * Normally, a blank command would map to the first command in the
658 * table; while PS_SOURCING, however, we ignore blank lines to eliminate
659 * confusion; act just the same for ghosts */
661 if((pstate
& PS_ROBOT
) || gp
!= NULL
)
663 cmd
= a_lex_cmd_tab
+ 0;
667 /* XXX It may be the argument parse adjuster */
668 if(!wysh
&& c
== sizeof("wysh") -1 && !asccasecmp(word
, "wysh")){
674 /* If this is the first evaluation, check command ghosts */
676 /* TODO relink list head, so it's sorted on usage over time?
677 * TODO in fact, there should be one hashmap over all commands and ghosts
678 * TODO so that the lookup could be made much more efficient than it is
679 * TODO now (two adjacent list searches! */
680 for(gp
= a_lex_ghosts
; gp
!= NULL
; gp
= gp
->lg_next
)
681 if(!strcmp(word
, gp
->lg_name
)){
686 line
.s
= salloc(i
+ line
.l
+1);
687 memcpy(line
.s
, gp
->lg_cmd
.s
, i
);
688 memcpy(line
.s
+ i
, cp
, line
.l
);
689 line
.s
[i
+= line
.l
] = '\0';
692 line
.s
= gp
->lg_cmd
.s
;
693 line
.l
= gp
->lg_cmd
.l
;
699 if((cmd
= a_lex__firstfit(word
)) == NULL
|| cmd
->lc_func
== &c_cmdnotsupp
){
702 if(!(s
= condstack_isskip()) || (options
& OPT_D_V
))
703 n_err(_("Unknown command%s: `%s'\n"),
704 (s
? _(" (ignored due to `if' condition)") : ""), word
);
714 /* See if we should execute the command -- if a conditional we always
715 * execute it, otherwise, check the state of cond */
717 if(!(cmd
->lc_argtype
& ARG_F
) && condstack_isskip())
720 /* Process the arguments to the command, depending on the type it expects */
721 if(!(cmd
->lc_argtype
& ARG_M
) && (options
& OPT_SENDMODE
)){
722 n_err(_("May not execute `%s' while sending\n"), cmd
->lc_name
);
725 if((cmd
->lc_argtype
& ARG_S
) && !(pstate
& PS_STARTED
)){
726 n_err(_("May not execute `%s' during startup\n"), cmd
->lc_name
);
729 if((cmd
->lc_argtype
& ARG_I
) &&
730 !(options
& (OPT_INTERACTIVE
| OPT_BATCH_FLAG
))){
731 n_err(_("May not execute `%s' unless interactive or in batch mode\n"),
735 if((cmd
->lc_argtype
& ARG_R
) && (pstate
& PS_RECURSED
)){
736 n_err(_("Cannot invoke `%s' when in recursed mode (e.g., composing)\n"),
741 if((cmd
->lc_argtype
& ARG_W
) && !(mb
.mb_perm
& MB_DELE
)){
742 n_err(_("May not execute `%s' -- message file is read only\n"),
746 if((cmd
->lc_argtype
& ARG_A
) && mb
.mb_type
== MB_VOID
){
747 n_err(_("Cannot execute `%s' without active mailbox\n"), cmd
->lc_name
);
751 if(cmd
->lc_argtype
& ARG_O
)
752 OBSOLETE2(_("this command will be removed"), cmd
->lc_name
);
753 if(cmd
->lc_argtype
& ARG_V
)
754 temporary_arg_v_store
= NULL
;
756 if(wysh
&& (cmd
->lc_argtype
& ARG_ARGMASK
) != ARG_WYRALIST
)
757 n_err(_("`wysh' prefix doesn't affect `%s'\n"), cmd
->lc_name
);
758 /* TODO v15: strip PS_ARGLIST_MASK off, just in case the actual command
759 * TODO doesn't use any of those list commands which strip this mask,
760 * TODO and for now we misuse bits for checking relation to history;
761 * TODO argument state should be property of a per-command carrier instead */
762 pstate
&= ~PS_ARGLIST_MASK
;
763 switch(cmd
->lc_argtype
& ARG_ARGMASK
){
765 /* Message list defaulting to nearest forward legal message */
768 if((c
= getmsglist(cp
, n_msgvec
, cmd
->lc_msgflag
)) < 0)
771 if((n_msgvec
[0] = first(cmd
->lc_msgflag
, cmd
->lc_msgmask
)) != 0)
774 if(n_msgvec
[0] == 0){
775 if(!(pstate
& PS_HOOK_MASK
))
776 printf(_("No applicable messages\n"));
779 e
= (*cmd
->lc_func
)(n_msgvec
);
783 /* Message list with no defaults, but no error if none exist */
784 if(n_msgvec
== NULL
){
786 n_err(_("Invalid use of message list\n"));
789 if((c
= getmsglist(cp
, n_msgvec
, cmd
->lc_msgflag
)) < 0)
791 e
= (*cmd
->lc_func
)(n_msgvec
);
795 /* Just the straight string, with leading blanks removed */
796 while(whitechar(*cp
))
798 e
= (*cmd
->lc_func
)(cp
);
813 if((c
= getrawlist((c
!= 0), arglist
, NELEM(arglist
), cp
, line
.l
)) < 0){
814 n_err(_("Invalid argument list\n"));
817 if(c
< cmd
->lc_minargs
){
818 n_err(_("`%s' requires at least %d arg(s)\n"),
819 cmd
->lc_name
, cmd
->lc_minargs
);
823 if(c
> cmd
->lc_maxargs
){
824 n_err(_("`%s' takes no more than %d arg(s)\n"),
825 cmd
->lc_name
, cmd
->lc_maxargs
);
829 e
= (*cmd
->lc_func
)(arglist
);
833 /* Just the constant zero, for exiting, eg. */
834 e
= (*cmd
->lc_func
)(0);
838 DBG( n_panic(_("Implementation error: unknown argument type: %d"),
839 cmd
->lc_argtype
& ARG_ARGMASK
); )
843 if(e
== 0 && (cmd
->lc_argtype
& ARG_V
) &&
844 (cp
= temporary_arg_v_store
) != NULL
){
845 temporary_arg_v_store
= NULL
;
846 evp
->le_new_content
= cp
;
849 /* TODO v15 with PS_MSGLIST_GABBY the history entry is at least gabby */
850 if(!(cmd
->lc_argtype
& ARG_H
) && !(pstate
& PS_MSGLIST_GABBY
))
851 evp
->le_add_history
= TRU1
;
854 /* Exit the current source file on error TODO what a mess! */
856 pstate
&= ~PS_EVAL_ERROR
;
858 pstate
|= PS_EVAL_ERROR
;
859 if(e
< 0 || (pstate
& PS_ROBOT
)){ /* FIXME */
868 if((cmd
->lc_argtype
& ARG_P
) && ok_blook(autoprint
))
870 line
.s
= savestr("type");
871 line
.l
= sizeof("type") -1;
872 gp
= (struct a_lex_ghost
*)-1; /* Avoid `ghost' interpretation */
876 if(!(pstate
& (PS_SOURCING
| PS_HOOK_MASK
)) && !(cmd
->lc_argtype
& ARG_T
))
877 pstate
|= PS_SAW_COMMAND
;
879 pstate
&= ~PS_EVAL_ERROR
;
884 fprintf(stderr, "a_lex_evaluate returns %d for <%s>\n",e,line.s);
890 static struct a_lex_cmd
const *
891 a_lex__firstfit(char const *comm
){ /* TODO *hashtable*! linear list search!!! */
892 struct a_lex_cmd
const *cp
;
895 for(cp
= a_lex_cmd_tab
; PTRCMP(cp
, <, &a_lex_cmd_tab
[NELEM(a_lex_cmd_tab
)]);
897 if(*comm
== *cp
->lc_name
&& is_prefix(comm
, cp
->lc_name
))
907 NYD_X
; /* Signal handler */
915 NYD_X
; /* Signal handler */
918 safe_signal(SIGINT
, a_lex_onintr
);
920 a_lex_unstack(TRUM1
);
922 termios_state_reset();
923 close_all_files(); /* FIXME .. to outer level ONLU! */
930 n_err_sighdl(_("Interrupt\n"));
931 safe_signal(SIGPIPE
, a_lex_oldpipe
);
932 siglongjmp(srbuf
, 0); /* FIXME get rid */
936 a_lex_unstack(bool_t eval_error
){
937 struct a_lex_input_stack
*lip
;
940 if((lip
= a_lex_input
) == NULL
){
941 /* If called from a_lex_onintr(), be silent FIXME */
942 pstate
&= ~(PS_SOURCING
| PS_ROBOT
);
943 if(eval_error
== TRUM1
|| !(pstate
& PS_STARTED
))
948 if(lip
->li_flags
& a_LEX_MACRO
){
949 if(lip
->li_flags
& a_LEX_MACRO_FREE_DATA
){
952 while(*(lp
= &lip
->li_lines
[lip
->li_loff
]) != NULL
){
956 /* Part of lip's memory chunk, then */
957 if(!(lip
->li_flags
& a_LEX_MACRO_CMD
))
961 if(lip
->li_flags
& a_LEX_PIPE
)
962 /* XXX command manager should -TERM then -KILL instead of hoping
963 * XXX for exit of provider due to EPIPE / SIGPIPE */
964 Pclose(lip
->li_file
, TRU1
);
966 Fclose(lip
->li_file
);
969 if(!condstack_take(lip
->li_cond
)){
970 n_err(_("Unmatched `if' at end of %s %s\n"),
971 ((lip
->li_flags
& a_LEX_MACRO
972 ? (lip
->li_flags
& a_LEX_MACRO_CMD
? _("command") : _("macro"))
973 : _("`source'd file"))),
978 if((a_lex_input
= lip
->li_outer
) == NULL
){
979 pstate
&= ~(PS_SOURCING
| PS_ROBOT
);
981 if((a_lex_input
->li_flags
& (a_LEX_MACRO
| a_LEX_SUPER_MACRO
)) ==
982 (a_LEX_MACRO
| a_LEX_SUPER_MACRO
))
983 pstate
&= ~PS_SOURCING
;
984 assert(pstate
& PS_ROBOT
);
989 if(lip
->li_flags
& a_LEX_FREE
)
992 if(UNLIKELY(a_lex_input
!= NULL
&& eval_error
== TRUM1
))
993 a_lex_unstack(TRUM1
);
999 if(options
& OPT_D_V
)
1000 n_alert(_("Stopped %s %s due to errors%s"),
1001 (pstate
& PS_STARTED
1002 ? (lip
->li_flags
& a_LEX_MACRO
1003 ? (lip
->li_flags
& a_LEX_MACRO_CMD
1004 ? _("evaluating command") : _("evaluating macro"))
1005 : (lip
->li_flags
& a_LEX_PIPE
1006 ? _("executing `source'd pipe")
1007 : _("loading `source'd file")))
1008 : (lip
->li_flags
& a_LEX_MACRO
1009 ? (lip
->li_flags
& a_LEX_MACRO_X_OPTION
1010 ? _("evaluating command line") : _("evaluating macro"))
1011 : _("loading initialization resource"))),
1013 (options
& OPT_DEBUG
? "" : _(" (enable *debug* for trace)")));
1014 if(lip
->li_flags
& a_LEX_FREE
)
1018 if(!(options
& OPT_INTERACTIVE
) && !(pstate
& PS_STARTED
)){
1019 if(options
& OPT_D_V
)
1020 n_alert(_("Non-interactive, bailing out due to errors "
1021 "in startup load phase"));
1028 a_lex_source_file(char const *file
, bool_t silent_error
){
1029 struct a_lex_input_stack
*lip
;
1038 /* Being a command argument file is space-trimmed *//* TODO v15 with
1039 * TODO WYRALIST this is no longer necessary true, and for that we
1040 * TODO don't set _PARSE_TRIMSPACE because we cannot! -> cmd_tab.h!! */
1042 ((ispipe
= (!silent_error
&& (nlen
= strlen(file
)) > 0 &&
1043 file
[--nlen
] == '|')))
1047 for(nlen
= strlen(file
); nlen
> 0;){
1053 nbuf
= savestrbuf(file
, nlen
);
1062 if((fip
= Popen(nbuf
/* #if 0 above = savestrbuf(file, nlen)*/, "r",
1063 ok_vlook(SHELL
), NULL
, COMMAND_FD_NULL
)) == NULL
){
1064 if(!silent_error
|| (options
& OPT_D_V
))
1068 }else if((nbuf
= fexpand(file
, FEXP_LOCAL
)) == NULL
)
1070 else if((fip
= Fopen(nbuf
, "r")) == NULL
){
1071 if(!silent_error
|| (options
& OPT_D_V
))
1076 lip
= smalloc(sizeof(*lip
) -
1077 VFIELD_SIZEOF(struct a_lex_input_stack
, li_name
) +
1078 (nlen
= strlen(nbuf
) +1));
1079 lip
->li_outer
= a_lex_input
;
1081 lip
->li_cond
= condstack_release();
1082 lip
->li_flags
= (ispipe
? a_LEX_FREE
| a_LEX_PIPE
: a_LEX_FREE
) |
1083 (a_lex_input
!= NULL
&& (a_lex_input
->li_flags
& a_LEX_SUPER_MACRO
)
1084 ? a_LEX_SUPER_MACRO
: 0);
1085 memcpy(lip
->li_name
, nbuf
, nlen
);
1087 pstate
|= PS_SOURCING
| PS_ROBOT
;
1089 a_commands_recursive(n_LEXINPUT_NONE
| n_LEXINPUT_NL_ESC
);
1090 /* FIXME return TRUM1 if file can't be opened, FAL0 on eval error */
1093 return silent_error
? TRU1
: (fip
!= NULL
);
1097 a_lex_load(struct a_lex_input_stack
*lip
){
1101 assert(!(pstate
& PS_STARTED
));
1102 assert(a_lex_input
== NULL
);
1105 * Any errors in the start-up file shall either cause mailx to terminate
1106 * with a diagnostic message and a non-zero status or to continue after
1107 * writing a diagnostic message, ignoring the remainder of the lines in
1108 * the start-up file. */
1109 lip
->li_cond
= condstack_release();
1111 /* FIXME won't work for now (PS_ROBOT needs PS_SOURCING anyway)
1112 pstate |= PS_ROBOT |
1113 (lip->li_flags & a_LEX_MACRO_X_OPTION ? 0 : PS_SOURCING);
1115 pstate
|= PS_ROBOT
| PS_SOURCING
;
1116 if(options
& OPT_D_V
)
1117 n_err(_("Loading %s\n"), n_shexp_quote_cp(lip
->li_name
, FAL0
));
1119 if(!(rv
= n_commands())){
1120 if(!(options
& OPT_INTERACTIVE
)){
1121 if(options
& OPT_D_V
)
1122 n_alert(_("Non-interactive program mode, forced exit"));
1126 /* PS_EXIT handled by callers */
1132 a_commands_recursive(enum n_lexinput_flags lif
){
1133 struct a_lex_eval_ctx ev
;
1137 memset(&ev
, 0, sizeof ev
);
1139 /* FIXME sigkondom */
1140 n_COLOUR( n_colour_env_push(); )
1145 /* Read a line of commands and handle end of file specially */
1146 ev
.le_line
.l
= ev
.le_line_size
;
1147 n
= n_lex_input(lif
, NULL
, &ev
.le_line
.s
, &ev
.le_line
.l
,
1149 ev
.le_line_size
= (ui32_t
)ev
.le_line
.l
;
1150 ev
.le_line
.l
= (ui32_t
)n
;
1155 if(a_lex_evaluate(&ev
)){
1160 if((options
& OPT_BATCH_FLAG
) && ok_blook(batch_exit_on_error
)){
1161 if(exit_status
!= EXIT_OK
)
1166 n_COLOUR( n_colour_env_pop(FAL0
); )
1168 if(ev
.le_line
.s
!= NULL
)
1175 n_commands(void){ /* FIXME */
1176 struct a_lex_eval_ctx ev
;
1178 bool_t
volatile rv
= TRU1
;
1181 if (!(pstate
& PS_SOURCING
)) {
1182 if (safe_signal(SIGINT
, SIG_IGN
) != SIG_IGN
)
1183 safe_signal(SIGINT
, &a_lex_onintr
);
1184 if (safe_signal(SIGHUP
, SIG_IGN
) != SIG_IGN
)
1185 safe_signal(SIGHUP
, &a_lex_hangup
);
1187 a_lex_oldpipe
= safe_signal(SIGPIPE
, SIG_IGN
);
1188 safe_signal(SIGPIPE
, a_lex_oldpipe
);
1190 memset(&ev
, 0, sizeof ev
);
1192 (void)sigsetjmp(srbuf
, 1); /* FIXME get rid */
1194 char *temporary_orig_line
; /* XXX eval_ctx.le_line not yet constant */
1196 n_COLOUR( n_colour_env_pop(TRU1
); )
1198 /* TODO Unless we have our signal manager (or however we do it) child
1199 * TODO processes may have time slots where their execution isn't
1200 * TODO protected by signal handlers (in between start and setup
1201 * TODO completed). close_all_files() is only called from onintr()
1202 * TODO so those may linger possibly forever */
1203 if(!(pstate
& PS_SOURCING
))
1208 temporary_localopts_free(); /* XXX intermediate hack */
1209 sreset((pstate
& PS_SOURCING
) != 0);
1210 if (!(pstate
& PS_SOURCING
)) {
1213 /* TODO Note: this buffer may contain a password. We should redefine
1214 * TODO the code flow which has to do that */
1215 if ((cp
= termios_state
.ts_linebuf
) != NULL
) {
1216 termios_state
.ts_linebuf
= NULL
;
1217 termios_state
.ts_linesize
= 0;
1218 free(cp
); /* TODO pool give-back */
1220 /* TODO Due to expand-on-tab of NCL the buffer may grow */
1221 if (ev
.le_line
.l
> LINESIZE
* 3) {
1222 free(ev
.le_line
.s
); /* TODO pool! but what? */
1223 ev
.le_line
.s
= NULL
;
1224 ev
.le_line
.l
= ev
.le_line_size
= 0;
1228 if (!(pstate
& PS_SOURCING
) && (options
& OPT_INTERACTIVE
)) {
1231 cp
= ok_vlook(newmail
);
1232 if ((options
& OPT_TTYIN
) && cp
!= NULL
) {
1235 /* FIXME TEST WITH NOPOLL ETC. !!! */
1236 n
= (cp
!= NULL
&& strcmp(cp
, "nopoll"));
1237 if ((mb
.mb_type
== MB_FILE
&& !stat(mailname
, &st
) &&
1238 st
.st_size
> mailsize
) ||
1239 (mb
.mb_type
== MB_MAILDIR
&& n
!= 0)) {
1240 size_t odot
= PTR2SIZE(dot
- message
);
1241 ui32_t odid
= (pstate
& PS_DID_PRINT_DOT
);
1243 if (setfile(mailname
,
1245 ((mb
.mb_perm
& MB_DELE
) ? 0 : FEDIT_RDONLY
)) < 0) {
1246 exit_status
|= EXIT_ERR
;
1250 dot
= message
+ odot
;
1255 exit_status
= EXIT_OK
;
1258 /* Read a line of commands and handle end of file specially */
1260 ev
.le_line
.l
= ev
.le_line_size
;
1261 n
= n_lex_input(n_LEXINPUT_CTX_BASE
| n_LEXINPUT_NL_ESC
, NULL
,
1262 &ev
.le_line
.s
, &ev
.le_line
.l
, ev
.le_new_content
);
1263 ev
.le_line_size
= (ui32_t
)ev
.le_line
.l
;
1264 ev
.le_line
.l
= (ui32_t
)n
;
1267 /* FIXME did unstack() when PS_SOURCING, only break with PS_LOADING*/
1268 if (!(pstate
& PS_ROBOT
) &&
1269 (options
& OPT_INTERACTIVE
) && ok_blook(ignoreeof
)) {
1270 printf(_("*ignoreeof* set, use `quit' to quit.\n"));
1271 n_msleep(500, FAL0
);
1277 temporary_orig_line
= ((pstate
& PS_SOURCING
) ||
1278 !(options
& OPT_INTERACTIVE
)) ? NULL
1279 : savestrbuf(ev
.le_line
.s
, ev
.le_line
.l
);
1280 pstate
&= ~PS_HOOK_MASK
;
1281 if (a_lex_evaluate(&ev
)) {
1282 if (!(pstate
& PS_STARTED
)) /* TODO mess; join PS_EVAL_ERROR.. */
1287 if ((options
& OPT_BATCH_FLAG
) && ok_blook(batch_exit_on_error
)) {
1288 if (exit_status
!= EXIT_OK
)
1290 if ((pstate
& (PS_SOURCING
| PS_EVAL_ERROR
)) == PS_EVAL_ERROR
) {
1291 exit_status
= EXIT_ERR
;
1295 if (!(pstate
& PS_SOURCING
) && (options
& OPT_INTERACTIVE
)) {
1296 if (ev
.le_new_content
!= NULL
)
1298 /* *Can* happen since _evaluate() n_unstack()s on error! XXX no more */
1299 if (temporary_orig_line
!= NULL
)
1300 n_tty_addhist(temporary_orig_line
, !ev
.le_add_history
);
1303 if(pstate
& PS_EXIT
)
1308 if (ev
.le_line
.s
!= NULL
)
1310 if (pstate
& PS_SOURCING
)
1317 (n_lex_input
)(enum n_lexinput_flags lif
, char const *prompt
, char **linebuf
,
1318 size_t *linesize
, char const *string SMALLOC_DEBUG_ARGS
){
1319 /* TODO readline: linebuf pool!; n_lex_input should return si64_t */
1321 bool_t doprompt
, dotty
;
1326 /* Special case macro mode: never need to prompt, lines have always been
1327 * unfolded already */
1328 if(a_lex_input
!= NULL
&& (a_lex_input
->li_flags
& a_LEX_MACRO
)){
1329 if(*linebuf
!= NULL
)
1332 if((*linebuf
= a_lex_input
->li_lines
[a_lex_input
->li_loff
]) == NULL
){
1338 ++a_lex_input
->li_loff
;
1339 *linesize
= strlen(*linebuf
);
1340 if(!(a_lex_input
->li_flags
& a_LEX_MACRO_FREE_DATA
))
1341 *linebuf
= sbufdup(*linebuf
, *linesize
);
1343 iftype
= (a_lex_input
->li_flags
& a_LEX_MACRO_X_OPTION
)
1344 ? "-X OPTION" : "MACRO";
1346 pstate
|= PS_READLINE_NL
;
1349 pstate
&= ~PS_READLINE_NL
;
1351 iftype
= (!(pstate
& PS_STARTED
) ? "LOAD"
1352 : (pstate
& PS_SOURCING
) ? "SOURCE" : "READ");
1353 doprompt
= ((pstate
& (PS_STARTED
| PS_ROBOT
)) == PS_STARTED
&&
1354 (options
& OPT_INTERACTIVE
));
1355 dotty
= (doprompt
&& !ok_blook(line_editor_disable
));
1358 else if(prompt
== NULL
)
1359 prompt
= getprompt();
1361 /* Ensure stdout is flushed first anyway */
1362 if(!dotty
&& prompt
== NULL
)
1365 ifile
= (a_lex_input
!= NULL
) ? a_lex_input
->li_file
: stdin
;
1366 assert(ifile
!= NULL
);
1368 for(nold
= n
= 0;;){
1370 assert(ifile
== stdin
);
1371 if(string
!= NULL
&& (n
= (int)strlen(string
)) > 0){
1375 *linesize
= (size_t)n
+ LINESIZE
+1;
1376 *linebuf
= (srealloc
)(*linebuf
, *linesize SMALLOC_DEBUG_ARGSCALL
);
1377 memcpy(*linebuf
, string
, (size_t)n
+1);
1380 /* TODO if nold>0, don't redisplay the entire line!
1381 * TODO needs complete redesign ... */
1382 n
= (n_tty_readline
)(lif
, prompt
, linebuf
, linesize
, n
1383 SMALLOC_DEBUG_ARGSCALL
);
1385 if(prompt
!= NULL
) {
1387 fputs(prompt
, stdout
);
1391 n
= (readline_restart
)(ifile
, linebuf
, linesize
, n
1392 SMALLOC_DEBUG_ARGSCALL
);
1394 if(n
> 0 && nold
> 0){
1396 char const *cp
= *linebuf
+ nold
;
1398 while(blankspacechar(*cp
) && nold
+ i
< n
)
1401 memmove(*linebuf
+ nold
, cp
, n
- nold
- i
);
1403 (*linebuf
)[n
] = '\0';
1412 * An unquoted <backslash> at the end of a command line shall
1413 * be discarded and the next line shall continue the command */
1414 if(!(lif
& n_LEXINPUT_NL_ESC
) || (*linebuf
)[n
- 1] != '\\'){
1416 pstate
|= PS_READLINE_NL
;
1419 /* Definitely outside of quotes, thus the quoting rules are so that an
1420 * uneven number of successive backslashs at EOL is a continuation */
1424 for(j
= 1, i
= (size_t)n
- 1; i
-- > 0; ++j
)
1425 if((*linebuf
)[i
] != '\\')
1430 (*linebuf
)[nold
= --n
] = '\0';
1431 if(prompt
!= NULL
&& *prompt
!= '\0')
1432 prompt
= ".. "; /* XXX PS2 .. */
1437 (*linebuf
)[*linesize
= n
] = '\0';
1441 if(lif
& n_LEXINPUT_DROP_TRAIL_SPC
){
1445 for(cp
= &(*linebuf
)[i
= (size_t)n
];; --i
){
1447 if(!blankspacechar(c
))
1450 (*linebuf
)[n
= (int)i
] = '\0';
1453 if(lif
& n_LEXINPUT_DROP_LEAD_SPC
){
1457 for(cp
= &(*linebuf
)[0], j
= (size_t)n
, i
= 0; i
< j
; ++i
){
1459 if(!blankspacechar(c
))
1463 memcpy(&(*linebuf
)[0], &(*linebuf
)[i
], j
-= i
);
1464 (*linebuf
)[n
= (int)j
] = '\0';
1467 #endif /* 0 (notyet - must take care for backslash escaped space) */
1469 if(options
& OPT_D_VV
)
1470 n_err(_("%s %d bytes <%s>\n"), iftype
, n
, *linebuf
);
1472 if (pstate
& PS_PSTATE_PENDMASK
)
1473 a_lex_update_pstate();
1479 n_lex_input_cp(enum n_lexinput_flags lif
, char const *prompt
,
1480 char const *string
){
1481 /* FIXME n_lex_input_cp_addhist(): leaks on sigjmp without linepool */
1491 n
= n_lex_input(lif
, prompt
, &linebuf
, &linesize
, string
);
1492 if(n
> 0 && *(rv
= savestrbuf(linebuf
, (size_t)n
)) != '\0' &&
1493 (lif
& n_LEXINPUT_HIST_ADD
) && (options
& OPT_INTERACTIVE
))
1494 n_tty_addhist(rv
, ((lif
& n_LEXINPUT_HIST_GABBY
) != 0));
1503 n_load(char const *name
){
1504 struct a_lex_input_stack
*lip
;
1509 if(name
== NULL
|| *name
== '\0' || (fip
= Fopen(name
, "r")) == NULL
)
1512 i
= strlen(name
) +1;
1513 lip
= scalloc(1, sizeof(*lip
) -
1514 VFIELD_SIZEOF(struct a_lex_input_stack
, li_name
) + i
);
1516 lip
->li_flags
= a_LEX_FREE
;
1517 memcpy(lip
->li_name
, name
, i
);
1526 n_load_Xargs(char const **lines
){
1527 static char const name
[] = "-X";
1529 ui8_t buf
[sizeof(struct a_lex_input_stack
) + sizeof name
];
1530 char const *srcp
, *xsrcp
;
1532 size_t imax
, i
, len
;
1533 struct a_lex_input_stack
*lip
;
1536 memset(buf
, 0, sizeof buf
);
1538 lip
->li_flags
= a_LEX_MACRO
| a_LEX_MACRO_FREE_DATA
|
1539 a_LEX_MACRO_X_OPTION
| a_LEX_SUPER_MACRO
;
1540 memcpy(lip
->li_name
, name
, sizeof name
);
1542 /* The problem being that we want to support reverse solidus newline
1543 * escaping also within multiline -X, i.e., POSIX says:
1544 * An unquoted <backslash> at the end of a command line shall
1545 * be discarded and the next line shall continue the command
1546 * Therefore instead of "lip->li_lines = UNCONST(lines)", duplicate the
1547 * entire lines array and set _MACRO_FREE_DATA */
1548 for(imax
= 0; lines
[imax
++] != NULL
;)
1550 lip
->li_lines
= smalloc(sizeof(*lip
->li_lines
) * imax
);
1552 /* For each of the input lines.. */
1553 for(i
= len
= 0, cp
= NULL
; (srcp
= *lines
) != NULL
;){
1557 if((j
= strlen(srcp
)) == 0){
1562 /* Separate one line from a possible multiline input string */
1563 if((xsrcp
= memchr(srcp
, '\n', j
)) != NULL
){
1565 j
= PTR2SIZE(xsrcp
- srcp
);
1569 /* The (separated) string may itself indicate soft newline escaping */
1570 if((keep
= (srcp
[j
- 1] == '\\'))){
1573 /* Need an uneven number of reverse solidus */
1574 for(xk
= 1, xj
= j
- 1; xj
-- > 0; ++xk
)
1575 if(srcp
[xj
] != '\\')
1583 /* Strip any leading WS from follow lines, then */
1585 while(j
> 0 && blankspacechar(*srcp
))
1589 if(i
+ 2 >= imax
){ /* TODO need a vector (main.c, here, ++) */
1591 lip
->li_lines
= srealloc(lip
->li_lines
, sizeof(*lip
->li_lines
) *
1594 lip
->li_lines
[i
] = cp
= srealloc(cp
, len
+ j
+1);
1595 memcpy(&cp
[len
], srcp
, j
);
1596 cp
[len
+= j
] = '\0';
1605 assert(i
+ 1 < imax
);
1606 lip
->li_lines
[i
++] = cp
;
1608 lip
->li_lines
[i
] = NULL
;
1611 if(pstate
& PS_EXIT
)
1621 rv
= (a_lex_source_file(*(char**)v
, FAL0
) == TRU1
) ? 0 : 1;
1627 c_source_if(void *v
){ /* XXX obsolete?, support file tests in `if' etc.! */
1631 rv
= (a_lex_source_file(*(char**)v
, TRU1
) != FAL0
) ? 0 : 1;
1637 n_source_macro(enum n_lexinput_flags lif
, char const *name
, char **lines
){
1638 struct a_lex_input_stack
*lip
;
1643 lip
= smalloc(sizeof(*lip
) -
1644 VFIELD_SIZEOF(struct a_lex_input_stack
, li_name
) +
1645 (i
= strlen(name
) +1));
1646 lip
->li_outer
= a_lex_input
;
1647 lip
->li_file
= NULL
;
1648 lip
->li_cond
= condstack_release();
1649 lip
->li_flags
= a_LEX_FREE
| a_LEX_MACRO
| a_LEX_MACRO_FREE_DATA
|
1650 (a_lex_input
== NULL
|| (a_lex_input
->li_flags
& a_LEX_SUPER_MACRO
)
1651 ? a_LEX_SUPER_MACRO
: 0);
1653 lip
->li_lines
= lines
;
1654 memcpy(lip
->li_name
, name
, i
);
1658 rv
= a_commands_recursive(lif
);
1664 n_source_command(enum n_lexinput_flags lif
, char const *cmd
){
1665 struct a_lex_input_stack
*lip
;
1671 cmd
= sbufdup(cmd
, i
++);
1674 lip
= smalloc(sizeof(*lip
) -
1675 VFIELD_SIZEOF(struct a_lex_input_stack
, li_name
) +
1676 ial
+ 2*sizeof(char*));
1677 lip
->li_outer
= a_lex_input
;
1678 lip
->li_file
= NULL
;
1679 lip
->li_cond
= condstack_release();
1680 lip
->li_flags
= a_LEX_FREE
| a_LEX_MACRO
| a_LEX_MACRO_FREE_DATA
|
1682 (a_lex_input
== NULL
|| (a_lex_input
->li_flags
& a_LEX_SUPER_MACRO
)
1683 ? a_LEX_SUPER_MACRO
: 0);
1685 lip
->li_lines
= (void*)(lip
->li_name
+ ial
);
1686 lip
->li_lines
[0] = UNCONST(cmd
); /* dup'ed above */
1687 lip
->li_lines
[1] = NULL
;
1688 memcpy(lip
->li_name
, cmd
, i
);
1692 rv
= a_commands_recursive(lif
);
1698 n_source_may_yield_control(void){
1699 return ((options
& OPT_INTERACTIVE
) &&
1700 (pstate
& PS_STARTED
) &&
1701 (!(pstate
& PS_ROBOT
) || (pstate
& PS_RECURSED
)) && /* Ok for ~: */
1702 (a_lex_input
== NULL
|| a_lex_input
->li_outer
== NULL
));