mksyntax.c revision 114433
11556Srgrimes/*-
21556Srgrimes * Copyright (c) 1991, 1993
31556Srgrimes *	The Regents of the University of California.  All rights reserved.
41556Srgrimes *
51556Srgrimes * This code is derived from software contributed to Berkeley by
61556Srgrimes * Kenneth Almquist.
71556Srgrimes *
81556Srgrimes * Redistribution and use in source and binary forms, with or without
91556Srgrimes * modification, are permitted provided that the following conditions
101556Srgrimes * are met:
111556Srgrimes * 1. Redistributions of source code must retain the above copyright
121556Srgrimes *    notice, this list of conditions and the following disclaimer.
131556Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
141556Srgrimes *    notice, this list of conditions and the following disclaimer in the
151556Srgrimes *    documentation and/or other materials provided with the distribution.
161556Srgrimes * 3. All advertising materials mentioning features or use of this software
171556Srgrimes *    must display the following acknowledgement:
181556Srgrimes *	This product includes software developed by the University of
191556Srgrimes *	California, Berkeley and its contributors.
201556Srgrimes * 4. Neither the name of the University nor the names of its contributors
211556Srgrimes *    may be used to endorse or promote products derived from this software
221556Srgrimes *    without specific prior written permission.
231556Srgrimes *
241556Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
251556Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
261556Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
271556Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
281556Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
291556Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
301556Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
311556Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
321556Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
331556Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
341556Srgrimes * SUCH DAMAGE.
351556Srgrimes */
361556Srgrimes
37114433Sobrien#if 0
381556Srgrimes#ifndef lint
3920425Sstevestatic char const copyright[] =
401556Srgrimes"@(#) Copyright (c) 1991, 1993\n\
411556Srgrimes	The Regents of the University of California.  All rights reserved.\n";
421556Srgrimes#endif /* not lint */
431556Srgrimes
441556Srgrimes#ifndef lint
4536150Scharnierstatic char sccsid[] = "@(#)mksyntax.c	8.2 (Berkeley) 5/4/95";
46114433Sobrien#endif /* not lint */
4736150Scharnier#endif
4899110Sobrien#include <sys/cdefs.h>
4999110Sobrien__FBSDID("$FreeBSD: head/bin/sh/mksyntax.c 114433 2003-05-01 16:58:57Z obrien $");
501556Srgrimes
511556Srgrimes/*
521556Srgrimes * This program creates syntax.h and syntax.c.
531556Srgrimes */
541556Srgrimes
551556Srgrimes#include <stdio.h>
5678469Sdes#include <stdlib.h>
5717987Speter#include <string.h>
581556Srgrimes#include "parser.h"
591556Srgrimes
601556Srgrimes
611556Srgrimesstruct synclass {
621556Srgrimes	char *name;
631556Srgrimes	char *comment;
641556Srgrimes};
651556Srgrimes
661556Srgrimes/* Syntax classes */
671556Srgrimesstruct synclass synclass[] = {
6817987Speter	{ "CWORD",	"character is nothing special" },
6917987Speter	{ "CNL",	"newline character" },
7017987Speter	{ "CBACK",	"a backslash character" },
7117987Speter	{ "CSQUOTE",	"single quote" },
7217987Speter	{ "CDQUOTE",	"double quote" },
7317987Speter	{ "CENDQUOTE",	"a terminating quote" },
7417987Speter	{ "CBQUOTE",	"backwards single quote" },
7517987Speter	{ "CVAR",	"a dollar sign" },
7617987Speter	{ "CENDVAR",	"a '}' character" },
7717987Speter	{ "CLP",	"a left paren in arithmetic" },
7817987Speter	{ "CRP",	"a right paren in arithmetic" },
7917987Speter	{ "CEOF",	"end of file" },
8017987Speter	{ "CCTL",	"like CWORD, except it must be escaped" },
8117987Speter	{ "CSPCL",	"these terminate a word" },
8217987Speter	{ NULL,		NULL }
831556Srgrimes};
841556Srgrimes
851556Srgrimes
861556Srgrimes/*
871556Srgrimes * Syntax classes for is_ functions.  Warning:  if you add new classes
881556Srgrimes * you may have to change the definition of the is_in_name macro.
891556Srgrimes */
901556Srgrimesstruct synclass is_entry[] = {
9117987Speter	{ "ISDIGIT",	"a digit" },
9217987Speter	{ "ISUPPER",	"an upper case letter" },
9317987Speter	{ "ISLOWER",	"a lower case letter" },
9417987Speter	{ "ISUNDER",	"an underscore" },
9517987Speter	{ "ISSPECL",	"the name of a special parameter" },
9617987Speter	{ NULL, 	NULL }
971556Srgrimes};
981556Srgrimes
9917987Speterstatic char writer[] = "\
1001556Srgrimes/*\n\
1011556Srgrimes * This file was generated by the mksyntax program.\n\
1021556Srgrimes */\n\
1031556Srgrimes\n";
1041556Srgrimes
1051556Srgrimes
10617987Speterstatic FILE *cfile;
10717987Speterstatic FILE *hfile;
10817987Speterstatic char *syntax[513];
10917987Speterstatic int base;
11017987Speterstatic int size;	/* number of values which a char variable can have */
11117987Speterstatic int nbits;	/* number of bits in a character */
11217987Speterstatic int digit_contig;/* true if digits are contiguous */
1131556Srgrimes
11490111Simpstatic void filltable(char *);
11590111Simpstatic void init(void);
11690111Simpstatic void add(char *, char *);
11790111Simpstatic void print(char *);
11890111Simpstatic void output_type_macros(void);
11990111Simpstatic void digit_convert(void);
1201556Srgrimes
12117987Speterint
12290111Simpmain(int argc __unused, char **argv __unused)
12317987Speter{
1241556Srgrimes	char c;
1251556Srgrimes	char d;
1261556Srgrimes	int sign;
1271556Srgrimes	int i;
1281556Srgrimes	char buf[80];
1291556Srgrimes	int pos;
1301556Srgrimes	static char digit[] = "0123456789";
1311556Srgrimes
1321556Srgrimes	/* Create output files */
1331556Srgrimes	if ((cfile = fopen("syntax.c", "w")) == NULL) {
1341556Srgrimes		perror("syntax.c");
1351556Srgrimes		exit(2);
1361556Srgrimes	}
1371556Srgrimes	if ((hfile = fopen("syntax.h", "w")) == NULL) {
1381556Srgrimes		perror("syntax.h");
1391556Srgrimes		exit(2);
1401556Srgrimes	}
1411556Srgrimes	fputs(writer, hfile);
1421556Srgrimes	fputs(writer, cfile);
1431556Srgrimes
1441556Srgrimes	/* Determine the characteristics of chars. */
1451556Srgrimes	c = -1;
1461556Srgrimes	if (c < 0)
1471556Srgrimes		sign = 1;
1481556Srgrimes	else
1491556Srgrimes		sign = 0;
1501556Srgrimes	for (nbits = 1 ; ; nbits++) {
1511556Srgrimes		d = (1 << nbits) - 1;
1521556Srgrimes		if (d == c)
1531556Srgrimes			break;
1541556Srgrimes	}
15520425Ssteve#if 0
1561556Srgrimes	printf("%s %d bit chars\n", sign? "signed" : "unsigned", nbits);
15720425Ssteve#endif
1581556Srgrimes	if (nbits > 9) {
1591556Srgrimes		fputs("Characters can't have more than 9 bits\n", stderr);
1601556Srgrimes		exit(2);
1611556Srgrimes	}
1621556Srgrimes	size = (1 << nbits) + 1;
1631556Srgrimes	base = 1;
1641556Srgrimes	if (sign)
1651556Srgrimes		base += 1 << (nbits - 1);
1661556Srgrimes	digit_contig = 1;
1671556Srgrimes	for (i = 0 ; i < 10 ; i++) {
1681556Srgrimes		if (digit[i] != '0' + i)
1691556Srgrimes			digit_contig = 0;
1701556Srgrimes	}
1711556Srgrimes
17220425Ssteve	fputs("#include <sys/cdefs.h>\n", hfile);
17317525Sache	fputs("#include <ctype.h>\n", hfile);
1741556Srgrimes
1751556Srgrimes	/* Generate the #define statements in the header file */
1761556Srgrimes	fputs("/* Syntax classes */\n", hfile);
1771556Srgrimes	for (i = 0 ; synclass[i].name ; i++) {
1781556Srgrimes		sprintf(buf, "#define %s %d", synclass[i].name, i);
1791556Srgrimes		fputs(buf, hfile);
18017987Speter		for (pos = strlen(buf) ; pos < 32 ; pos = (pos + 8) & ~07)
1811556Srgrimes			putc('\t', hfile);
1821556Srgrimes		fprintf(hfile, "/* %s */\n", synclass[i].comment);
1831556Srgrimes	}
1841556Srgrimes	putc('\n', hfile);
1851556Srgrimes	fputs("/* Syntax classes for is_ functions */\n", hfile);
1861556Srgrimes	for (i = 0 ; is_entry[i].name ; i++) {
1871556Srgrimes		sprintf(buf, "#define %s %#o", is_entry[i].name, 1 << i);
1881556Srgrimes		fputs(buf, hfile);
18917987Speter		for (pos = strlen(buf) ; pos < 32 ; pos = (pos + 8) & ~07)
1901556Srgrimes			putc('\t', hfile);
1911556Srgrimes		fprintf(hfile, "/* %s */\n", is_entry[i].comment);
1921556Srgrimes	}
1931556Srgrimes	putc('\n', hfile);
1941556Srgrimes	fprintf(hfile, "#define SYNBASE %d\n", base);
1951556Srgrimes	fprintf(hfile, "#define PEOF %d\n\n", -base);
1961556Srgrimes	putc('\n', hfile);
1971556Srgrimes	fputs("#define BASESYNTAX (basesyntax + SYNBASE)\n", hfile);
1981556Srgrimes	fputs("#define DQSYNTAX (dqsyntax + SYNBASE)\n", hfile);
1991556Srgrimes	fputs("#define SQSYNTAX (sqsyntax + SYNBASE)\n", hfile);
2001556Srgrimes	fputs("#define ARISYNTAX (arisyntax + SYNBASE)\n", hfile);
2011556Srgrimes	putc('\n', hfile);
2021556Srgrimes	output_type_macros();		/* is_digit, etc. */
2031556Srgrimes	putc('\n', hfile);
2041556Srgrimes
2051556Srgrimes	/* Generate the syntax tables. */
2061556Srgrimes	fputs("#include \"shell.h\"\n", cfile);
2071556Srgrimes	fputs("#include \"syntax.h\"\n\n", cfile);
2081556Srgrimes	init();
2091556Srgrimes	fputs("/* syntax table used when not in quotes */\n", cfile);
2101556Srgrimes	add("\n", "CNL");
2111556Srgrimes	add("\\", "CBACK");
2121556Srgrimes	add("'", "CSQUOTE");
2131556Srgrimes	add("\"", "CDQUOTE");
2141556Srgrimes	add("`", "CBQUOTE");
2151556Srgrimes	add("$", "CVAR");
2161556Srgrimes	add("}", "CENDVAR");
2171556Srgrimes	add("<>();&| \t", "CSPCL");
2181556Srgrimes	print("basesyntax");
2191556Srgrimes	init();
2201556Srgrimes	fputs("\n/* syntax table used when in double quotes */\n", cfile);
2211556Srgrimes	add("\n", "CNL");
2221556Srgrimes	add("\\", "CBACK");
2231556Srgrimes	add("\"", "CENDQUOTE");
2241556Srgrimes	add("`", "CBQUOTE");
2251556Srgrimes	add("$", "CVAR");
2261556Srgrimes	add("}", "CENDVAR");
22717987Speter	/* ':/' for tilde expansion, '-' for [a\-x] pattern ranges */
22817987Speter	add("!*?[=~:/-", "CCTL");
2291556Srgrimes	print("dqsyntax");
2301556Srgrimes	init();
2311556Srgrimes	fputs("\n/* syntax table used when in single quotes */\n", cfile);
2321556Srgrimes	add("\n", "CNL");
2331556Srgrimes	add("'", "CENDQUOTE");
23417987Speter	/* ':/' for tilde expansion, '-' for [a\-x] pattern ranges */
23517987Speter	add("!*?[=~:/-", "CCTL");
2361556Srgrimes	print("sqsyntax");
2371556Srgrimes	init();
2381556Srgrimes	fputs("\n/* syntax table used when in arithmetic */\n", cfile);
2391556Srgrimes	add("\n", "CNL");
2401556Srgrimes	add("\\", "CBACK");
2411556Srgrimes	add("`", "CBQUOTE");
2421556Srgrimes	add("'", "CSQUOTE");
2431556Srgrimes	add("\"", "CDQUOTE");
2441556Srgrimes	add("$", "CVAR");
2451556Srgrimes	add("}", "CENDVAR");
2461556Srgrimes	add("(", "CLP");
2471556Srgrimes	add(")", "CRP");
2481556Srgrimes	print("arisyntax");
2491556Srgrimes	filltable("0");
2501556Srgrimes	fputs("\n/* character classification table */\n", cfile);
2511556Srgrimes	add("0123456789", "ISDIGIT");
2521556Srgrimes	add("abcdefghijklmnopqrstucvwxyz", "ISLOWER");
2531556Srgrimes	add("ABCDEFGHIJKLMNOPQRSTUCVWXYZ", "ISUPPER");
2541556Srgrimes	add("_", "ISUNDER");
2551556Srgrimes	add("#?$!-*@", "ISSPECL");
2561556Srgrimes	print("is_type");
2571556Srgrimes	if (! digit_contig)
2581556Srgrimes		digit_convert();
2591556Srgrimes	exit(0);
2601556Srgrimes}
2611556Srgrimes
2621556Srgrimes
2631556Srgrimes
2641556Srgrimes/*
2651556Srgrimes * Clear the syntax table.
2661556Srgrimes */
2671556Srgrimes
26817987Speterstatic void
26990111Simpfilltable(char *dftval)
27017987Speter{
2711556Srgrimes	int i;
2721556Srgrimes
2731556Srgrimes	for (i = 0 ; i < size ; i++)
2741556Srgrimes		syntax[i] = dftval;
2751556Srgrimes}
2761556Srgrimes
2771556Srgrimes
2781556Srgrimes/*
2791556Srgrimes * Initialize the syntax table with default values.
2801556Srgrimes */
2811556Srgrimes
28217987Speterstatic void
28390111Simpinit(void)
28417987Speter{
2851556Srgrimes	filltable("CWORD");
2861556Srgrimes	syntax[0] = "CEOF";
2871556Srgrimes	syntax[base + CTLESC] = "CCTL";
2881556Srgrimes	syntax[base + CTLVAR] = "CCTL";
2891556Srgrimes	syntax[base + CTLENDVAR] = "CCTL";
2901556Srgrimes	syntax[base + CTLBACKQ] = "CCTL";
2911556Srgrimes	syntax[base + CTLBACKQ + CTLQUOTE] = "CCTL";
2921556Srgrimes	syntax[base + CTLARI] = "CCTL";
2931556Srgrimes	syntax[base + CTLENDARI] = "CCTL";
29438887Stegge	syntax[base + CTLQUOTEMARK] = "CCTL";
2951556Srgrimes}
2961556Srgrimes
2971556Srgrimes
2981556Srgrimes/*
2991556Srgrimes * Add entries to the syntax table.
3001556Srgrimes */
3011556Srgrimes
30217987Speterstatic void
30390111Simpadd(char *p, char *type)
30417987Speter{
3051556Srgrimes	while (*p)
3061556Srgrimes		syntax[*p++ + base] = type;
3071556Srgrimes}
3081556Srgrimes
3091556Srgrimes
3101556Srgrimes
3111556Srgrimes/*
3121556Srgrimes * Output the syntax table.
3131556Srgrimes */
3141556Srgrimes
31517987Speterstatic void
31690111Simpprint(char *name)
31717987Speter{
3181556Srgrimes	int i;
3191556Srgrimes	int col;
3201556Srgrimes
3211556Srgrimes	fprintf(hfile, "extern const char %s[];\n", name);
3221556Srgrimes	fprintf(cfile, "const char %s[%d] = {\n", name, size);
3231556Srgrimes	col = 0;
3241556Srgrimes	for (i = 0 ; i < size ; i++) {
3251556Srgrimes		if (i == 0) {
3261556Srgrimes			fputs("      ", cfile);
3271556Srgrimes		} else if ((i & 03) == 0) {
3281556Srgrimes			fputs(",\n      ", cfile);
3291556Srgrimes			col = 0;
3301556Srgrimes		} else {
3311556Srgrimes			putc(',', cfile);
3321556Srgrimes			while (++col < 9 * (i & 03))
3331556Srgrimes				putc(' ', cfile);
3341556Srgrimes		}
3351556Srgrimes		fputs(syntax[i], cfile);
3361556Srgrimes		col += strlen(syntax[i]);
3371556Srgrimes	}
3381556Srgrimes	fputs("\n};\n", cfile);
3391556Srgrimes}
3401556Srgrimes
3411556Srgrimes
3421556Srgrimes
3431556Srgrimes/*
3441556Srgrimes * Output character classification macros (e.g. is_digit).  If digits are
3451556Srgrimes * contiguous, we can test for them quickly.
3461556Srgrimes */
3471556Srgrimes
34817987Speterstatic char *macro[] = {
34984936Stegge	"#define is_digit(c)\t((is_type+SYNBASE)[c] & ISDIGIT)",
35083674Stegge	"#define is_alpha(c)\t((c) != PEOF && ((c) < CTLESC || (c) > CTLQUOTEMARK) && isalpha((unsigned char) (c)))",
35183674Stegge	"#define is_name(c)\t((c) != PEOF && ((c) < CTLESC || (c) > CTLQUOTEMARK) && ((c) == '_' || isalpha((unsigned char) (c))))",
35283674Stegge	"#define is_in_name(c)\t((c) != PEOF && ((c) < CTLESC || (c) > CTLQUOTEMARK) && ((c) == '_' || isalnum((unsigned char) (c))))",
3531556Srgrimes	"#define is_special(c)\t((is_type+SYNBASE)[c] & (ISSPECL|ISDIGIT))",
3541556Srgrimes	NULL
3551556Srgrimes};
3561556Srgrimes
35717987Speterstatic void
35890111Simpoutput_type_macros(void)
35917987Speter{
3601556Srgrimes	char **pp;
3611556Srgrimes
3621556Srgrimes	if (digit_contig)
3631556Srgrimes		macro[0] = "#define is_digit(c)\t((unsigned)((c) - '0') <= 9)";
3641556Srgrimes	for (pp = macro ; *pp ; pp++)
3651556Srgrimes		fprintf(hfile, "%s\n", *pp);
3661556Srgrimes	if (digit_contig)
3671556Srgrimes		fputs("#define digit_val(c)\t((c) - '0')\n", hfile);
3681556Srgrimes	else
3691556Srgrimes		fputs("#define digit_val(c)\t(digit_value[c])\n", hfile);
3701556Srgrimes}
3711556Srgrimes
3721556Srgrimes
3731556Srgrimes
3741556Srgrimes/*
3751556Srgrimes * Output digit conversion table (if digits are not contiguous).
3761556Srgrimes */
3771556Srgrimes
37817987Speterstatic void
37990111Simpdigit_convert(void)
38017987Speter{
3811556Srgrimes	int maxdigit;
3821556Srgrimes	static char digit[] = "0123456789";
3831556Srgrimes	char *p;
3841556Srgrimes	int i;
3851556Srgrimes
3861556Srgrimes	maxdigit = 0;
3871556Srgrimes	for (p = digit ; *p ; p++)
3881556Srgrimes		if (*p > maxdigit)
3891556Srgrimes			maxdigit = *p;
3901556Srgrimes	fputs("extern const char digit_value[];\n", hfile);
3911556Srgrimes	fputs("\n\nconst char digit_value[] = {\n", cfile);
3921556Srgrimes	for (i = 0 ; i <= maxdigit ; i++) {
3931556Srgrimes		for (p = digit ; *p && *p != i ; p++);
3941556Srgrimes		if (*p == '\0')
3951556Srgrimes			p = digit;
396104367Stjr		fprintf(cfile, "      %d,\n", (int)(p - digit));
3971556Srgrimes	}
3981556Srgrimes	fputs("};\n", cfile);
3991556Srgrimes}
400