3 * Copyright 1986, 1987, 1988
4 * by MIT Student Information Processing Board.
6 * For copyright info, see "mit-sipb-cr.h".
11 #include <afsconfig.h>
12 #include <afs/param.h>
17 #include "mit-sipb-cr.h"
22 static const char copyright[] =
23 "Copyright 1987,1988 by MIT Student Information Processing Board";
26 extern char *current_token;
27 extern int table_number, current;
29 char *table_name = NULL;
30 FILE *hfile, *cfile, *msfile;
44 xmalloc(unsigned int size)
46 char *p = malloc(size);
55 check_arg(char const *const *str_list, char const *arg)
58 if (!strcmp(arg, *str_list++))
63 static const char *const debug_args[] = {
69 static const char *const lang_args[] = {
75 static const char *const language_names[] = {
82 static const char *const c_src_prolog[] = {
83 "#include <afsconfig.h>\n",
84 "#include <afs/param.h>\n",
85 "#include <afs/error_table.h>\n",
86 "static const char * const text[] = {\n",
90 static const char *const krc_src_prolog[] = {
92 "#define NOARGS void\n",
97 "#include <afs/param.h>\n",
98 "#include <afs/error_table.h>\n",
99 "static const char * const text[] = {\n",
103 static const char warning[] =
104 "/*\n * %s:\n * This file is automatically generated; please do not edit it.\n */\n";
106 static const char msf_warning[] =
107 "$ \n$ %s:\n$ This file is automatically generated; please do not edit it.\n$ \n$set 1\n";
110 char c_file[MAXPATHLEN]; /* output file */
111 char h_file[MAXPATHLEN]; /* output */
112 char msf_file[MAXPATHLEN];
113 char et_file[MAXPATHLEN]; /* full path to input file */
119 "%s: usage: %s ERROR_TABLE [-debug] [-language LANG] [-h INCLUDE] [-p prefix] [-v version]\n",
125 dup_err(char const *type, char const *one, char const *two)
127 fprintf(stderr, "%s: multiple %s specified: `%s' and `%s'\n", whoami,
132 #include "AFS_component_version_number.c"
135 main(int argc, char **argv)
138 char const *const *cpp;
139 int got_language = 0;
140 char *got_include = 0;
141 char *got_prefix = ".";
146 * The following signal action for AIX is necessary so that in case of a
147 * crash (i.e. core is generated) we can include the user's data section
148 * in the core dump. Unfortunately, by default, only a partial core is
149 * generated which, in many cases, isn't too useful.
151 struct sigaction nsa;
153 sigemptyset(&nsa.sa_mask);
154 nsa.sa_handler = SIG_DFL;
155 nsa.sa_flags = SA_FULLDUMP;
156 sigaction(SIGSEGV, &nsa, NULL);
158 /* argument parsing */
162 p = strrchr(whoami, '/');
169 dup_err("filenames", filename, arg);
173 if (check_arg(debug_args, arg))
175 else if (check_arg(lang_args, arg)) {
182 dup_err("languanges", language_names[(int)language], arg);
184 #define check_lang(x,v) if (!strcasecmp(arg,x)) language = v
185 check_lang("c", lang_C);
186 check_lang("ansi_c", lang_C);
187 check_lang("ansi-c", lang_C);
188 check_lang("krc", lang_KRC);
189 check_lang("kr_c", lang_KRC);
190 check_lang("kr-c", lang_KRC);
191 check_lang("k&r-c", lang_KRC);
192 check_lang("k&r_c", lang_KRC);
193 check_lang("c++", lang_CPP);
194 check_lang("cplusplus", lang_CPP);
195 check_lang("c-plus-plus", lang_CPP);
199 fprintf(stderr, "%s: unknown language name `%s'\n",
201 fprintf(stderr, "\tpick one of: C K&R-C\n");
204 } else if (strcmp(arg, "h") == 0) {
210 } else if (strcmp(arg, "p") == 0) {
216 } else if (strcmp(arg, "v") == 0) {
220 fprintf(stderr, "%s: -v option requires an argument\n",
226 if (version != 1 && version != 2) {
227 fprintf(stderr, "%s: unknown control argument -`%s'\n",
235 fprintf(stderr, "%s: unknown control argument -`%s'\n",
245 else if (language == lang_CPP) {
246 fprintf(stderr, "%s: Sorry, C++ support is not yet finished.\n",
252 p = strrchr(filename, '/');
257 ename = xmalloc(strlen(p) + 5);
260 /* Now, flush .et suffix if it exists. */
261 p = strrchr(ename, '.');
263 if (strcmp(p, ".et") == 0)
268 sprintf(msf_file, "%s.msf", ename);
270 sprintf(c_file, "%s.c", ename);
273 sprintf(h_file, "%s.h", got_include);
275 sprintf(h_file, "%s.h", ename);
277 p = strrchr(filename, '.');
279 p = xmalloc(strlen(filename) + 4);
280 sprintf(p, "%s.et", filename);
284 sprintf(et_file, "%s/%s", got_prefix, filename);
286 yyin = fopen(et_file, "r");
292 /* on NT, yyout is not initialized to stdout */
297 hfile = fopen(h_file, "w");
302 fprintf(hfile, warning, h_file);
305 char prolog_h_file[MAXPATHLEN];
309 strcpy(prolog_h_file, got_prefix);
310 strcat(prolog_h_file, "/");
311 strcat(prolog_h_file, got_include);
312 strcat(prolog_h_file, ".p.h");
313 prolog_hfile = fopen(prolog_h_file, "r");
315 fprintf(stderr, "Including %s at beginning of %s file.\n",
316 prolog_h_file, h_file);
317 fprintf(hfile, "/* Including %s at beginning of %s file. */\n\n",
318 prolog_h_file, h_file);
321 fread(buffer, sizeof(char), sizeof(buffer), prolog_hfile);
323 perror(prolog_h_file);
326 written = fwrite(buffer, sizeof(char), count, hfile);
327 if (count != written) {
328 perror(prolog_h_file);
332 fprintf(hfile, "\n/* End of prolog file %s. */\n\n",
338 msfile = fopen(msf_file, "w");
339 if (msfile == NULL) {
343 fprintf(msfile, msf_warning, msf_file);
345 cfile = fopen(c_file, "w");
350 fprintf(cfile, warning, c_file);
353 if (language == lang_C)
355 else if (language == lang_KRC)
356 cpp = krc_src_prolog;
360 fputs(*cpp++, cfile);
365 fclose(yyin); /* bye bye input file */
368 fputs(" 0\n};\n\n", cfile);
370 "static const struct error_table et = { text, %ldL, %d };\n\n",
371 (long int)table_number, current);
372 fputs("static struct et_list etlink = { 0, &et};\n\n", cfile);
373 fprintf(cfile, "void initialize_%s_error_table(void) {\n",
375 fputs(" afs_add_to_error_table(&etlink);\n", cfile);
380 fprintf(hfile, "extern void initialize_%s_error_table(void);\n",
383 fprintf(hfile, "#define initialize_%s_error_table(void)\n",
387 fprintf(hfile, "#define ERROR_TABLE_BASE_%s (%ldL)\n", table_name,
388 (long int)table_number);
389 /* compatibility... */
390 fprintf(hfile, "\n/* for compatibility with older versions... */\n");
391 fprintf(hfile, "#define init_%s_err_tbl initialize_%s_error_table\n",
392 table_name, table_name);
393 fprintf(hfile, "#define %s_err_base ERROR_TABLE_BASE_%s\n", table_name,
395 fprintf(hfile, "\n/* for compatibility with other users... */\n");
396 lcstring(lcname, table_name, sizeof(lcname));
397 fprintf(hfile, "#define ERROR_TABLE_BASE_%s (%ldL)\n", lcname,
398 (long int)table_number);
399 fprintf(hfile, "#define init_%s_err_tbl initialize_%s_error_table\n",
402 "#define initialize_%s_error_table initialize_%s_error_table\n",
404 fprintf(hfile, "#define %s_err_base ERROR_TABLE_BASE_%s\n", lcname,
406 fclose(hfile); /* bye bye include file */
413 yyerror(const char *s)
416 fprintf(stderr, "\nLine number %d; last token was '%s'\n", yylineno,