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 * 3. 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 const copyright
[] =
36 "@(#) Copyright (c) 1991, 1993\n\
37 The Regents of the University of California. All rights reserved.\n";
41 static char sccsid
[] = "@(#)mksyntax.c 8.2 (Berkeley) 5/4/95";
44 #include <sys/cdefs.h>
45 __FBSDID("$FreeBSD$");
48 * This program creates syntax.h and syntax.c.
63 static const struct synclass synclass
[] = {
64 { "CWORD", "character is nothing special" },
65 { "CNL", "newline character" },
66 { "CBACK", "a backslash character" },
67 { "CSBACK", "a backslash character in single quotes" },
68 { "CSQUOTE", "single quote" },
69 { "CDQUOTE", "double quote" },
70 { "CENDQUOTE", "a terminating quote" },
71 { "CBQUOTE", "backwards single quote" },
72 { "CVAR", "a dollar sign" },
73 { "CENDVAR", "a '}' character" },
74 { "CLP", "a left paren in arithmetic" },
75 { "CRP", "a right paren in arithmetic" },
76 { "CEOF", "end of file" },
77 { "CCTL", "like CWORD, except it must be escaped" },
78 { "CSPCL", "these terminate a word" },
79 { "CIGN", "character should be ignored" },
85 * Syntax classes for is_ functions. Warning: if you add new classes
86 * you may have to change the definition of the is_in_name macro.
88 static const struct synclass is_entry
[] = {
89 { "ISDIGIT", "a digit" },
90 { "ISUPPER", "an upper case letter" },
91 { "ISLOWER", "a lower case letter" },
92 { "ISUNDER", "an underscore" },
93 { "ISSPECL", "the name of a special parameter" },
97 static const char writer
[] = "\
99 * This file was generated by the mksyntax program.\n\
107 static void add_default(void);
108 static void finish(void);
109 static void init(const char *);
110 static void add(const char *, const char *);
111 static void output_type_macros(void);
114 main(int argc __unused
, char **argv __unused
)
120 /* Create output files */
121 if ((cfile
= fopen("syntax.c", "w")) == NULL
) {
125 if ((hfile
= fopen("syntax.h", "w")) == NULL
) {
129 fputs(writer
, hfile
);
130 fputs(writer
, cfile
);
132 fputs("#include <sys/cdefs.h>\n", hfile
);
133 fputs("#include <limits.h>\n\n", hfile
);
135 /* Generate the #define statements in the header file */
136 fputs("/* Syntax classes */\n", hfile
);
137 for (i
= 0 ; synclass
[i
].name
; i
++) {
138 sprintf(buf
, "#define %s %d", synclass
[i
].name
, i
);
140 for (pos
= strlen(buf
) ; pos
< 32 ; pos
= (pos
+ 8) & ~07)
142 fprintf(hfile
, "/* %s */\n", synclass
[i
].comment
);
145 fputs("/* Syntax classes for is_ functions */\n", hfile
);
146 for (i
= 0 ; is_entry
[i
].name
; i
++) {
147 sprintf(buf
, "#define %s %#o", is_entry
[i
].name
, 1 << i
);
149 for (pos
= strlen(buf
) ; pos
< 32 ; pos
= (pos
+ 8) & ~07)
151 fprintf(hfile
, "/* %s */\n", is_entry
[i
].comment
);
154 fputs("#define SYNBASE (1 - CHAR_MIN)\n", hfile
);
155 fputs("#define PEOF -SYNBASE\n\n", hfile
);
157 fputs("#define BASESYNTAX (basesyntax + SYNBASE)\n", hfile
);
158 fputs("#define DQSYNTAX (dqsyntax + SYNBASE)\n", hfile
);
159 fputs("#define SQSYNTAX (sqsyntax + SYNBASE)\n", hfile
);
160 fputs("#define ARISYNTAX (arisyntax + SYNBASE)\n", hfile
);
162 output_type_macros(); /* is_digit, etc. */
165 /* Generate the syntax tables. */
166 fputs("#include \"parser.h\"\n", cfile
);
167 fputs("#include \"shell.h\"\n", cfile
);
168 fputs("#include \"syntax.h\"\n\n", cfile
);
170 fputs("/* syntax table used when not in quotes */\n", cfile
);
176 add("\"", "CDQUOTE");
180 add("<>();&| \t", "CSPCL");
183 fputs("\n/* syntax table used when in double quotes */\n", cfile
);
188 add("\"", "CENDQUOTE");
192 /* ':/' for tilde expansion, '-^]' for [a\-x] pattern ranges */
193 add("!*?[]=~:/-^", "CCTL");
196 fputs("\n/* syntax table used when in single quotes */\n", cfile
);
201 add("'", "CENDQUOTE");
202 /* ':/' for tilde expansion, '-^]' for [a\-x] pattern ranges */
203 add("!*?[]=~:/-^", "CCTL");
206 fputs("\n/* syntax table used when in arithmetic */\n", cfile
);
219 fputs("\n/* character classification table */\n", cfile
);
221 add("0123456789", "ISDIGIT");
222 add("abcdefghijklmnopqrstuvwxyz", "ISLOWER");
223 add("ABCDEFGHIJKLMNOPQRSTUVWXYZ", "ISUPPER");
225 add("#?$!-*@", "ISSPECL");
233 * Output the header and declaration of a syntax table.
237 init(const char *name
)
239 fprintf(hfile
, "extern const char %s[];\n", name
);
240 fprintf(cfile
, "const char %s[SYNBASE + CHAR_MAX + 1] = {\n", name
);
245 add_one(const char *key
, const char *type
)
247 fprintf(cfile
, "\t[SYNBASE + %s] = %s,\n", key
, type
);
252 * Add default values to the syntax table.
258 add_one("PEOF", "CEOF");
259 add_one("CTLESC", "CCTL");
260 add_one("CTLVAR", "CCTL");
261 add_one("CTLENDVAR", "CCTL");
262 add_one("CTLBACKQ", "CCTL");
263 add_one("CTLBACKQ + CTLQUOTE", "CCTL");
264 add_one("CTLARI", "CCTL");
265 add_one("CTLENDARI", "CCTL");
266 add_one("CTLQUOTEMARK", "CCTL");
267 add_one("CTLQUOTEEND", "CCTL");
272 * Output the footer of a syntax table.
278 fputs("};\n", cfile
);
283 * Add entries to the syntax table.
287 add(const char *p
, const char *type
)
292 case '\t': c
= 't'; break;
293 case '\n': c
= 'n'; break;
294 case '\'': c
= '\''; break;
295 case '\\': c
= '\\'; break;
298 fprintf(cfile
, "\t[SYNBASE + '%c'] = %s,\n", c
, type
);
301 fprintf(cfile
, "\t[SYNBASE + '\\%c'] = %s,\n", c
, type
);
307 * Output character classification macros (e.g. is_digit). If digits are
308 * contiguous, we can test for them quickly.
311 static const char *macro
[] = {
312 "#define is_digit(c)\t((unsigned int)((c) - '0') <= 9)",
313 "#define is_eof(c)\t((c) == PEOF)",
314 "#define is_alpha(c)\t((is_type+SYNBASE)[(int)c] & (ISUPPER|ISLOWER))",
315 "#define is_name(c)\t((is_type+SYNBASE)[(int)c] & (ISUPPER|ISLOWER|ISUNDER))",
316 "#define is_in_name(c)\t((is_type+SYNBASE)[(int)c] & (ISUPPER|ISLOWER|ISUNDER|ISDIGIT))",
317 "#define is_special(c)\t((is_type+SYNBASE)[(int)c] & (ISSPECL|ISDIGIT))",
318 "#define digit_val(c)\t((c) - '0')",
323 output_type_macros(void)
327 for (pp
= macro
; *pp
; pp
++)
328 fprintf(hfile
, "%s\n", *pp
);