]>
git.saurik.com Git - apple/shell_cmds.git/blob - sh/mknodes.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 const copyright
[] =
36 "@(#) Copyright (c) 1991, 1993\n\
37 The Regents of the University of California. All rights reserved.\n";
41 static char sccsid
[] = "@(#)mknodes.c 8.2 (Berkeley) 5/4/95";
44 #include <sys/cdefs.h>
45 __FBSDID("$FreeBSD$");
48 * This program reads the nodetypes file and nodes.c.pat file. It generates
49 * the files nodes.h and nodes.c.
58 // When building for iOS, we don't have a new enough OS X SDK.
60 #define __printf0like(fmtarg, firstvararg) \
61 __attribute__((__format__ (__printf0__, fmtarg, firstvararg)))
64 #define MAXTYPES 50 /* max number of node types */
65 #define MAXFIELDS 20 /* max fields in a structure */
66 #define BUFLEN 100 /* size of character buffers */
69 #define T_NODE 1 /* union node *field */
70 #define T_NODELIST 2 /* struct nodelist *field */
72 #define T_INT 4 /* int field */
73 #define T_OTHER 5 /* other */
74 #define T_TEMP 6 /* don't copy this field */
77 struct field
{ /* a structure field */
78 char *name
; /* name of field */
79 int type
; /* type of field */
80 char *decl
; /* declaration of field */
84 struct str
{ /* struct representing a node structure */
85 char *tag
; /* structure tag */
86 int nfields
; /* number of fields in the structure */
87 struct field field
[MAXFIELDS
]; /* the fields of the structure */
88 int done
; /* set if fully parsed */
92 static int ntypes
; /* number of node types */
93 static char *nodename
[MAXTYPES
]; /* names of the nodes */
94 static struct str
*nodestr
[MAXTYPES
]; /* type of structure used by the node */
95 static int nstr
; /* number of structures */
96 static struct str str
[MAXTYPES
]; /* the structures */
97 static struct str
*curstr
; /* current structure */
99 static char line
[1024];
103 static void parsenode(void);
104 static void parsefield(void);
105 static void output(char *);
106 static void outsizes(FILE *);
107 static void outfunc(FILE *, int);
108 static void indent(int, FILE *);
109 static int nextfield(char *);
110 static void skipbl(void);
111 static int readline(void);
112 static void error(const char *, ...) __printf0like(1, 2) __dead2
;
113 static char *savestr(const char *);
117 main(int argc
, char *argv
[])
120 error("usage: mknodes file");
122 if ((infp
= fopen(argv
[1], "r")) == NULL
)
123 error("Can't open %s: %s", argv
[1], strerror(errno
));
125 if (line
[0] == ' ' || line
[0] == '\t')
127 else if (line
[0] != '\0')
143 if (curstr
&& curstr
->nfields
> 0)
146 if (! nextfield(tag
))
147 error("Tag expected");
149 error("Garbage at end of line");
150 nodename
[ntypes
] = savestr(name
);
151 for (sp
= str
; sp
< str
+ nstr
; sp
++) {
152 if (strcmp(sp
->tag
, tag
) == 0)
155 if (sp
>= str
+ nstr
) {
156 sp
->tag
= savestr(tag
);
161 nodestr
[ntypes
] = sp
;
171 char decl
[2 * BUFLEN
];
174 if (curstr
== NULL
|| curstr
->done
)
175 error("No current structure to add field to");
176 if (! nextfield(name
))
177 error("No field name");
178 if (! nextfield(type
))
179 error("No field type");
180 fp
= &curstr
->field
[curstr
->nfields
];
181 fp
->name
= savestr(name
);
182 if (strcmp(type
, "nodeptr") == 0) {
184 sprintf(decl
, "union node *%s", name
);
185 } else if (strcmp(type
, "nodelist") == 0) {
186 fp
->type
= T_NODELIST
;
187 sprintf(decl
, "struct nodelist *%s", name
);
188 } else if (strcmp(type
, "string") == 0) {
190 sprintf(decl
, "char *%s", name
);
191 } else if (strcmp(type
, "int") == 0) {
193 sprintf(decl
, "int %s", name
);
194 } else if (strcmp(type
, "other") == 0) {
196 } else if (strcmp(type
, "temp") == 0) {
199 error("Unknown type %s", type
);
201 if (fp
->type
== T_OTHER
|| fp
->type
== T_TEMP
) {
203 fp
->decl
= savestr(linep
);
206 error("Garbage at end of line");
207 fp
->decl
= savestr(decl
);
213 static const char writer
[] = "\
215 * This file was generated by the mknodes program.\n\
230 if ((patfile
= fopen(file
, "r")) == NULL
)
231 error("Can't open %s: %s", file
, strerror(errno
));
232 if ((hfile
= fopen("nodes.h", "w")) == NULL
)
233 error("Can't create nodes.h: %s", strerror(errno
));
234 if ((cfile
= fopen("nodes.c", "w")) == NULL
)
235 error("Can't create nodes.c");
236 fputs(writer
, hfile
);
237 for (i
= 0 ; i
< ntypes
; i
++)
238 fprintf(hfile
, "#define %s %d\n", nodename
[i
], i
);
239 fputs("\n\n\n", hfile
);
240 for (sp
= str
; sp
< &str
[nstr
] ; sp
++) {
241 fprintf(hfile
, "struct %s {\n", sp
->tag
);
242 for (i
= sp
->nfields
, fp
= sp
->field
; --i
>= 0 ; fp
++) {
243 fprintf(hfile
, " %s;\n", fp
->decl
);
245 fputs("};\n\n\n", hfile
);
247 fputs("union node {\n", hfile
);
248 fprintf(hfile
, " int type;\n");
249 for (sp
= str
; sp
< &str
[nstr
] ; sp
++) {
250 fprintf(hfile
, " struct %s %s;\n", sp
->tag
, sp
->tag
);
252 fputs("};\n\n\n", hfile
);
253 fputs("struct nodelist {\n", hfile
);
254 fputs("\tstruct nodelist *next;\n", hfile
);
255 fputs("\tunion node *n;\n", hfile
);
256 fputs("};\n\n\n", hfile
);
257 fputs("struct funcdef;\n", hfile
);
258 fputs("struct funcdef *copyfunc(union node *);\n", hfile
);
259 fputs("union node *getfuncnode(struct funcdef *);\n", hfile
);
260 fputs("void reffunc(struct funcdef *);\n", hfile
);
261 fputs("void unreffunc(struct funcdef *);\n", hfile
);
263 fputs(writer
, cfile
);
264 while (fgets(line
, sizeof line
, patfile
) != NULL
) {
265 for (p
= line
; *p
== ' ' || *p
== '\t' ; p
++);
266 if (strcmp(p
, "%SIZES\n") == 0)
268 else if (strcmp(p
, "%CALCSIZE\n") == 0)
270 else if (strcmp(p
, "%COPY\n") == 0)
280 outsizes(FILE *cfile
)
284 fprintf(cfile
, "static const short nodesize[%d] = {\n", ntypes
);
285 for (i
= 0 ; i
< ntypes
; i
++) {
286 fprintf(cfile
, " ALIGN(sizeof (struct %s)),\n", nodestr
[i
]->tag
);
288 fprintf(cfile
, "};\n");
293 outfunc(FILE *cfile
, int calcsize
)
299 fputs(" if (n == NULL)\n", cfile
);
301 fputs(" return;\n", cfile
);
303 fputs(" return NULL;\n", cfile
);
305 fputs(" funcblocksize += nodesize[n->type];\n", cfile
);
307 fputs(" new = funcblock;\n", cfile
);
308 fputs(" funcblock = (char *)funcblock + nodesize[n->type];\n", cfile
);
310 fputs(" switch (n->type) {\n", cfile
);
311 for (sp
= str
; sp
< &str
[nstr
] ; sp
++) {
312 for (i
= 0 ; i
< ntypes
; i
++) {
313 if (nodestr
[i
] == sp
)
314 fprintf(cfile
, " case %s:\n", nodename
[i
]);
316 for (i
= sp
->nfields
; --i
>= 1 ; ) {
322 fprintf(cfile
, "calcsize(n->%s.%s);\n",
326 fprintf(cfile
, "new->%s.%s = copynode(n->%s.%s);\n",
327 sp
->tag
, fp
->name
, sp
->tag
, fp
->name
);
333 fprintf(cfile
, "sizenodelist(n->%s.%s);\n",
337 fprintf(cfile
, "new->%s.%s = copynodelist(n->%s.%s);\n",
338 sp
->tag
, fp
->name
, sp
->tag
, fp
->name
);
344 fprintf(cfile
, "funcstringsize += strlen(n->%s.%s) + 1;\n",
348 fprintf(cfile
, "new->%s.%s = nodesavestr(n->%s.%s);\n",
349 sp
->tag
, fp
->name
, sp
->tag
, fp
->name
);
356 fprintf(cfile
, "new->%s.%s = n->%s.%s;\n",
357 sp
->tag
, fp
->name
, sp
->tag
, fp
->name
);
363 fputs("break;\n", cfile
);
365 fputs(" };\n", cfile
);
367 fputs(" new->type = n->type;\n", cfile
);
372 indent(int amount
, FILE *fp
)
374 while (amount
>= 8) {
378 while (--amount
>= 0) {
390 while (*p
== ' ' || *p
== '\t')
393 while (*p
!= ' ' && *p
!= '\t' && *p
!= '\0')
404 while (*linep
== ' ' || *linep
== '\t')
414 if (fgets(line
, 1024, infp
) == NULL
)
416 for (p
= line
; *p
!= '#' && *p
!= '\n' && *p
!= '\0' ; p
++);
417 while (p
> line
&& (p
[-1] == ' ' || p
[-1] == '\t'))
422 if (p
- line
> BUFLEN
)
423 error("Line too long");
430 error(const char *msg
, ...)
435 (void) fprintf(stderr
, "line %d: ", linno
);
436 (void) vfprintf(stderr
, msg
, va
);
437 (void) fputc('\n', stderr
);
447 savestr(const char *s
)
451 if ((p
= malloc(strlen(s
) + 1)) == NULL
)
452 error("Out of space");