]>
git.saurik.com Git - apple/shell_cmds.git/blob - sh/input.c
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static char sccsid
[] = "@(#)input.c 8.3 (Berkeley) 6/9/95";
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD$");
41 #include <stdio.h> /* defines BUFSIZ */
49 * This file implements the input routines used by the parser.
62 #include "myhistedit.h"
65 #define EOF_NLEFT -99 /* value of parsenleft when EOF pushed back */
68 struct strpush
*prev
; /* preceding string on stack */
69 const char *prevstring
;
72 struct alias
*ap
; /* if push was associated with an alias */
76 * The parsefile structure pointed to by the global variable parsefile
77 * contains information about the current file being read.
81 struct parsefile
*prev
; /* preceding file on stack */
82 int linno
; /* current line */
83 int fd
; /* file descriptor (or -1 if string) */
84 int nleft
; /* number of chars left in this line */
85 int lleft
; /* number of lines left in this buffer */
86 const char *nextc
; /* next char in buffer */
87 char *buf
; /* input buffer */
88 struct strpush
*strpush
; /* for pushing strings at this level */
89 struct strpush basestrpush
; /* so pushing one is fast */
93 int plinno
= 1; /* input line number */
94 int parsenleft
; /* copy of parsefile->nleft */
95 static int parselleft
; /* copy of parsefile->lleft */
96 const char *parsenextc
; /* copy of parsefile->nextc */
97 static char basebuf
[BUFSIZ
+ 1];/* buffer for top level input file */
98 static struct parsefile basepf
= { /* top level input file */
102 static struct parsefile
*parsefile
= &basepf
; /* current input file */
103 int whichprompt
; /* 1 == PS1, 2 == PS2 */
106 EditLine
*el
; /* cookie for editline package */
107 #endif /* !__APPLE__ */
109 static void pushfile(void);
110 static int preadfd(void);
111 static void popstring(void);
117 parselleft
= parsenleft
= 0; /* clear input buffer */
123 * Read a character from the script, returning PEOF on end of file.
124 * Nul characters in the input are silently discarded.
130 return pgetc_macro();
138 parsenextc
= parsefile
->buf
;
142 if (parsefile
->fd
== 0 && el
) {
143 static const char *rl_cp
;
148 rl_cp
= el_gets(el
, &el_len
);
151 nr
= el_len
== 0 ? 0 : -1;
156 memcpy(parsefile
->buf
, rl_cp
, nr
);
165 nr
= read(parsefile
->fd
, parsefile
->buf
, BUFSIZ
);
171 if (parsefile
->fd
== 0 && errno
== EWOULDBLOCK
) {
172 int flags
= fcntl(0, F_GETFL
, 0);
173 if (flags
>= 0 && flags
& O_NONBLOCK
) {
174 flags
&=~ O_NONBLOCK
;
175 if (fcntl(0, F_SETFL
, flags
) >= 0) {
176 out2fmt_flush("sh: turning off NDELAY mode\n");
188 * Refill the input buffer and return the next input character:
190 * 1) If a string was pushed back on the input, pop it;
191 * 2) If an EOF was pushed back (parsenleft == EOF_NLEFT) or we are reading
192 * from a string so we can't refill the buffer, return EOF.
193 * 3) If there is more in this buffer, use it else call read to fill it.
194 * 4) Process input up to the next newline, deleting nul characters.
204 while (parsefile
->strpush
) {
206 * Add a space to the end of an alias to ensure that the
207 * alias remains in use while parsing its last word.
208 * This avoids alias recursions.
210 if (parsenleft
== -1 && parsefile
->strpush
->ap
!= NULL
)
213 if (--parsenleft
>= 0)
214 return (*parsenextc
++);
216 if (parsenleft
== EOF_NLEFT
|| parsefile
->buf
== NULL
)
222 if (parselleft
<= 0) {
223 if ((parselleft
= preadfd()) == -1) {
224 parselleft
= parsenleft
= EOF_NLEFT
;
229 q
= p
= parsefile
->buf
+ (parsenextc
- parsefile
->buf
);
231 /* delete nul characters */
232 for (more
= 1; more
;) {
239 parsenleft
= q
- parsenextc
;
240 more
= 0; /* Stop processing here */
249 if (--parselleft
<= 0) {
250 parsenleft
= q
- parsenextc
- 1;
262 if (parsefile
->fd
== 0 && hist
&&
263 parsenextc
[strspn(parsenextc
, " \t\n")] != '\0') {
266 history(hist
, &he
, whichprompt
== 1 ? H_ENTER
: H_ADD
,
279 return *parsenextc
++;
283 * Returns if we are certain we are at EOF. Does not cause any more input
284 * to be read from the outside world.
292 if (parsefile
->strpush
)
294 if (parsenleft
== EOF_NLEFT
|| parsefile
->buf
== NULL
)
300 * Undo the last call to pgetc. Only one character may be pushed back.
301 * PEOF may be pushed back.
312 * Push a string back onto the input at this current parsefile level.
313 * We handle aliases this way.
316 pushstring(const char *s
, int len
, struct alias
*ap
)
321 /*out2fmt_flush("*** calling pushstring: %s, %d\n", s, len);*/
322 if (parsefile
->strpush
) {
323 sp
= ckmalloc(sizeof (struct strpush
));
324 sp
->prev
= parsefile
->strpush
;
325 parsefile
->strpush
= sp
;
327 sp
= parsefile
->strpush
= &(parsefile
->basestrpush
);
328 sp
->prevstring
= parsenextc
;
329 sp
->prevnleft
= parsenleft
;
330 sp
->prevlleft
= parselleft
;
333 ap
->flag
|= ALIASINUSE
;
342 struct strpush
*sp
= parsefile
->strpush
;
346 if (parsenextc
!= sp
->ap
->val
&&
347 (parsenextc
[-1] == ' ' || parsenextc
[-1] == '\t'))
349 sp
->ap
->flag
&= ~ALIASINUSE
;
351 parsenextc
= sp
->prevstring
;
352 parsenleft
= sp
->prevnleft
;
353 parselleft
= sp
->prevlleft
;
354 /*out2fmt_flush("*** calling popstring: restoring to '%s'\n", parsenextc);*/
355 parsefile
->strpush
= sp
->prev
;
356 if (sp
!= &(parsefile
->basestrpush
))
362 * Set the input to take input from a file. If push is set, push the
363 * old input onto the stack first.
367 setinputfile(const char *fname
, int push
)
373 if ((fd
= open(fname
, O_RDONLY
| O_CLOEXEC
)) < 0)
374 error("cannot open %s: %s", fname
, strerror(errno
));
376 fd2
= fcntl(fd
, F_DUPFD_CLOEXEC
, 10);
379 error("Out of file descriptors");
382 setinputfd(fd
, push
);
388 * Like setinputfile, but takes an open file descriptor (which should have
389 * its FD_CLOEXEC flag already set). Call this with interrupts off.
393 setinputfd(int fd
, int push
)
397 parsefile
->buf
= ckmalloc(BUFSIZ
+ 1);
399 if (parsefile
->fd
> 0)
400 close(parsefile
->fd
);
402 if (parsefile
->buf
== NULL
)
403 parsefile
->buf
= ckmalloc(BUFSIZ
+ 1);
404 parselleft
= parsenleft
= 0;
410 * Like setinputfile, but takes input from a string.
414 setinputstring(const char *string
, int push
)
420 parselleft
= parsenleft
= strlen(string
);
421 parsefile
->buf
= NULL
;
429 * To handle the "." command, a stack of input files is used. Pushfile
430 * adds a new entry to the stack and popfile restores the previous level.
436 struct parsefile
*pf
;
438 parsefile
->nleft
= parsenleft
;
439 parsefile
->lleft
= parselleft
;
440 parsefile
->nextc
= parsenextc
;
441 parsefile
->linno
= plinno
;
442 pf
= (struct parsefile
*)ckmalloc(sizeof (struct parsefile
));
443 pf
->prev
= parsefile
;
446 pf
->basestrpush
.prev
= NULL
;
454 struct parsefile
*pf
= parsefile
;
463 parsefile
= pf
->prev
;
465 parsenleft
= parsefile
->nleft
;
466 parselleft
= parsefile
->lleft
;
467 parsenextc
= parsefile
->nextc
;
468 plinno
= parsefile
->linno
;
474 * Return current file (to go back to it later using popfilesupto()).
485 * Pop files until the given file is on top again. Useful for regular
486 * builtins that read shell commands from files or strings.
487 * If the given file is not an active file, an error is raised.
491 popfilesupto(struct parsefile
*file
)
493 while (parsefile
!= file
&& parsefile
!= &basepf
)
495 if (parsefile
!= file
)
496 error("popfilesupto() misused");
500 * Return to top level.
506 while (parsefile
!= &basepf
)
513 * Close the file(s) that the shell is reading commands from. Called
514 * after a fork is done.
521 if (parsefile
->fd
> 0) {
522 close(parsefile
->fd
);