1 /* $NetBSD: parse.c,v 1.15 2002/03/18 16:00:56 christos Exp $ */
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Christos Zoulas of Cornell University.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 #if !defined(lint) && !defined(SCCSID)
42 static char sccsid
[] = "@(#)parse.c 8.1 (Berkeley) 6/4/93";
44 __RCSID("$NetBSD: parse.c,v 1.15 2002/03/18 16:00:56 christos Exp $");
46 #endif /* not lint && not SCCSID */
49 * parse.c: parse an editline extended command
62 #include "tokenizer.h"
65 private const struct {
67 int (*func
)(EditLine
*, int, const char **);
70 { "echotc", term_echotc
},
71 { "edit", el_editmode
},
72 { "history", hist_list
},
73 { "telltc", term_telltc
},
74 { "settc", term_settc
},
75 { "setty", tty_stty
},
81 * Parse a line and dispatch it
84 parse_line(EditLine
*el
, const char *line
)
91 tok_line(tok
, line
, &argc
, &argv
);
92 argc
= el_parse(el
, argc
, argv
);
102 el_parse(EditLine
*el
, int argc
, const char *argv
[])
109 ptr
= strchr(argv
[0], ':');
116 l
= ptr
- argv
[0] - 1;
117 tprog
= (char *) el_malloc(l
+ 1);
120 (void) strncpy(tprog
, argv
[0], l
);
123 l
= el_match(el
->el_prog
, tprog
);
130 for (i
= 0; cmds
[i
].name
!= NULL
; i
++)
131 if (strcmp(cmds
[i
].name
, ptr
) == 0) {
132 i
= (*cmds
[i
].func
) (el
, argc
, argv
);
140 * Parse a string of the form ^<char> \<odigit> \<char> and return
141 * the appropriate character or -1 if the escape is not valid
144 parse__escape(const char **const ptr
)
158 c
= '\007'; /* Bell */
161 c
= '\010'; /* Backspace */
164 c
= '\011'; /* Horizontal Tab */
167 c
= '\012'; /* New Line */
170 c
= '\013'; /* Vertical Tab */
173 c
= '\014'; /* Form Feed */
176 c
= '\015'; /* Carriage Return */
179 c
= '\033'; /* Escape */
192 for (cnt
= 0, c
= 0; cnt
< 3; cnt
++) {
194 if (ch
< '0' || ch
> '7') {
198 c
= (c
<< 3) | (ch
- '0');
200 if ((c
& 0xffffff00) != 0)
209 } else if (*p
== '^' && isalpha((unsigned char) p
[1])) {
211 c
= (*p
== '?') ? '\177' : (*p
& 0237);
218 * Parse the escapes from in and put the raw string out
221 parse__string(char *out
, const char *in
)
234 if ((n
= parse__escape(&in
)) == -1)
247 * Return the command number for the command string given
248 * or -1 if one is not found
251 parse_cmd(EditLine
*el
, const char *cmd
)
255 for (b
= el
->el_map
.help
; b
->name
!= NULL
; b
++)
256 if (strcmp(b
->name
, cmd
) == 0)