Home | History | Annotate | Line # | Download | only in dist
main.c revision 1.20
      1  1.20  christos /*	$NetBSD: main.c,v 1.20 2021/02/21 00:36:06 christos Exp $	*/
      2  1.16  jakllsch 
      3  1.16  jakllsch #include "defs.h"
      4   1.4  christos 
      5  1.15  christos #include <sys/cdefs.h>
      6  1.20  christos __RCSID("$NetBSD: main.c,v 1.20 2021/02/21 00:36:06 christos Exp $");
      7  1.19  christos /* Id: main.c,v 1.70 2020/09/10 17:32:55 tom Exp  */
      8   1.5     joerg 
      9   1.1  christos #include <signal.h>
     10  1.19  christos #if !defined(_WIN32) || defined(__MINGW32__)
     11   1.1  christos #include <unistd.h>		/* for _exit() */
     12  1.10  christos #else
     13  1.10  christos #include <stdlib.h>		/* for _exit() */
     14  1.10  christos #endif
     15   1.1  christos 
     16   1.1  christos 
     17   1.8  christos #ifdef HAVE_MKSTEMP
     18   1.8  christos # define USE_MKSTEMP 1
     19   1.8  christos #elif defined(HAVE_FCNTL_H)
     20   1.8  christos # define USE_MKSTEMP 1
     21   1.8  christos # include <fcntl.h>		/* for open(), O_EXCL, etc. */
     22   1.7  christos #else
     23   1.7  christos # define USE_MKSTEMP 0
     24   1.7  christos #endif
     25   1.7  christos 
     26   1.7  christos #if USE_MKSTEMP
     27   1.7  christos #include <sys/types.h>
     28   1.7  christos #include <sys/stat.h>
     29   1.7  christos 
     30   1.7  christos typedef struct _my_tmpfiles
     31   1.7  christos {
     32   1.7  christos     struct _my_tmpfiles *next;
     33   1.7  christos     char *name;
     34   1.7  christos }
     35   1.7  christos MY_TMPFILES;
     36   1.7  christos 
     37   1.7  christos static MY_TMPFILES *my_tmpfiles;
     38   1.7  christos #endif /* USE_MKSTEMP */
     39   1.7  christos 
     40   1.1  christos char dflag;
     41  1.18  christos char dflag2;
     42   1.1  christos char gflag;
     43   1.7  christos char iflag;
     44   1.1  christos char lflag;
     45   1.4  christos static char oflag;
     46   1.1  christos char rflag;
     47   1.8  christos char sflag;
     48   1.1  christos char tflag;
     49   1.1  christos char vflag;
     50   1.1  christos 
     51   1.1  christos const char *symbol_prefix;
     52   1.1  christos const char *myname = "yacc";
     53   1.1  christos 
     54   1.1  christos int lineno;
     55   1.1  christos int outline;
     56   1.1  christos 
     57   1.4  christos static char default_file_prefix[] = "y";
     58   1.2  christos static int explicit_file_name;
     59   1.1  christos 
     60   1.4  christos static char *file_prefix = default_file_prefix;
     61   1.1  christos 
     62   1.1  christos char *code_file_name;
     63  1.13  christos char *input_file_name;
     64  1.13  christos size_t input_file_name_len = 0;
     65   1.7  christos char *defines_file_name;
     66   1.7  christos char *externs_file_name;
     67   1.7  christos 
     68   1.4  christos static char *graph_file_name;
     69   1.4  christos static char *output_file_name;
     70   1.4  christos static char *verbose_file_name;
     71   1.1  christos 
     72   1.1  christos FILE *action_file;	/*  a temp file, used to save actions associated    */
     73   1.1  christos 			/*  with rules until the parser is written          */
     74   1.1  christos FILE *code_file;	/*  y.code.c (used when the -r option is specified) */
     75   1.1  christos FILE *defines_file;	/*  y.tab.h                                         */
     76   1.7  christos FILE *externs_file;	/*  y.tab.i                                         */
     77   1.1  christos FILE *input_file;	/*  the input file                                  */
     78   1.1  christos FILE *output_file;	/*  y.tab.c                                         */
     79   1.1  christos FILE *text_file;	/*  a temp file, used to save text until all        */
     80   1.1  christos 			/*  symbols have been defined                       */
     81   1.1  christos FILE *union_file;	/*  a temp file, used to save the union             */
     82   1.1  christos 			/*  definition until all symbol have been           */
     83   1.1  christos 			/*  defined                                         */
     84   1.1  christos FILE *verbose_file;	/*  y.output                                        */
     85   1.1  christos FILE *graph_file;	/*  y.dot                                           */
     86   1.1  christos 
     87  1.10  christos Value_t nitems;
     88  1.10  christos Value_t nrules;
     89  1.10  christos Value_t nsyms;
     90  1.10  christos Value_t ntokens;
     91  1.10  christos Value_t nvars;
     92   1.1  christos 
     93   1.1  christos Value_t start_symbol;
     94   1.1  christos char **symbol_name;
     95   1.1  christos char **symbol_pname;
     96   1.1  christos Value_t *symbol_value;
     97  1.10  christos Value_t *symbol_prec;
     98   1.1  christos char *symbol_assoc;
     99   1.1  christos 
    100   1.4  christos int pure_parser;
    101   1.9  christos int token_table;
    102  1.11  christos int error_verbose;
    103  1.10  christos 
    104  1.10  christos #if defined(YYBTYACC)
    105  1.10  christos Value_t *symbol_pval;
    106  1.10  christos char **symbol_destructor;
    107  1.10  christos char **symbol_type_tag;
    108  1.10  christos int locations = 0;	/* default to no position processing */
    109  1.10  christos int backtrack = 0;	/* default is no backtracking */
    110  1.11  christos char *initial_action = NULL;
    111  1.10  christos #endif
    112  1.10  christos 
    113   1.1  christos int exit_code;
    114   1.1  christos 
    115   1.1  christos Value_t *ritem;
    116   1.1  christos Value_t *rlhs;
    117   1.1  christos Value_t *rrhs;
    118   1.1  christos Value_t *rprec;
    119   1.1  christos Assoc_t *rassoc;
    120   1.1  christos Value_t **derives;
    121   1.1  christos char *nullable;
    122   1.1  christos 
    123   1.1  christos /*
    124   1.1  christos  * Since fclose() is called via the signal handler, it might die.  Don't loop
    125   1.1  christos  * if there is a problem closing a file.
    126   1.1  christos  */
    127   1.1  christos #define DO_CLOSE(fp) \
    128   1.1  christos 	if (fp != 0) { \
    129   1.1  christos 	    FILE *use = fp; \
    130   1.1  christos 	    fp = 0; \
    131   1.1  christos 	    fclose(use); \
    132   1.1  christos 	}
    133   1.1  christos 
    134   1.1  christos static int got_intr = 0;
    135   1.1  christos 
    136   1.1  christos void
    137   1.1  christos done(int k)
    138   1.1  christos {
    139   1.1  christos     DO_CLOSE(input_file);
    140   1.1  christos     DO_CLOSE(output_file);
    141  1.10  christos     if (iflag)
    142  1.10  christos 	DO_CLOSE(externs_file);
    143  1.10  christos     if (rflag)
    144  1.10  christos 	DO_CLOSE(code_file);
    145   1.1  christos 
    146   1.1  christos     DO_CLOSE(action_file);
    147   1.1  christos     DO_CLOSE(defines_file);
    148   1.1  christos     DO_CLOSE(graph_file);
    149   1.1  christos     DO_CLOSE(text_file);
    150   1.1  christos     DO_CLOSE(union_file);
    151   1.1  christos     DO_CLOSE(verbose_file);
    152   1.1  christos 
    153   1.1  christos     if (got_intr)
    154   1.1  christos 	_exit(EXIT_FAILURE);
    155   1.1  christos 
    156   1.1  christos #ifdef NO_LEAKS
    157   1.1  christos     if (rflag)
    158   1.1  christos 	DO_FREE(code_file_name);
    159   1.1  christos 
    160  1.18  christos     if (dflag && !dflag2)
    161   1.1  christos 	DO_FREE(defines_file_name);
    162   1.1  christos 
    163   1.7  christos     if (iflag)
    164   1.7  christos 	DO_FREE(externs_file_name);
    165   1.7  christos 
    166   1.1  christos     if (oflag)
    167   1.1  christos 	DO_FREE(output_file_name);
    168   1.1  christos 
    169   1.1  christos     if (vflag)
    170   1.1  christos 	DO_FREE(verbose_file_name);
    171   1.1  christos 
    172   1.1  christos     if (gflag)
    173   1.1  christos 	DO_FREE(graph_file_name);
    174   1.1  christos 
    175   1.1  christos     lr0_leaks();
    176   1.1  christos     lalr_leaks();
    177   1.1  christos     mkpar_leaks();
    178  1.10  christos     mstring_leaks();
    179   1.1  christos     output_leaks();
    180   1.1  christos     reader_leaks();
    181   1.1  christos #endif
    182   1.1  christos 
    183   1.1  christos     exit(k);
    184   1.1  christos }
    185   1.1  christos 
    186   1.1  christos static void
    187   1.1  christos onintr(int sig GCC_UNUSED)
    188   1.1  christos {
    189   1.1  christos     got_intr = 1;
    190   1.1  christos     done(EXIT_FAILURE);
    191   1.1  christos }
    192   1.1  christos 
    193   1.1  christos static void
    194   1.1  christos set_signals(void)
    195   1.1  christos {
    196   1.1  christos #ifdef SIGINT
    197   1.1  christos     if (signal(SIGINT, SIG_IGN) != SIG_IGN)
    198   1.1  christos 	signal(SIGINT, onintr);
    199   1.1  christos #endif
    200   1.1  christos #ifdef SIGTERM
    201   1.1  christos     if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
    202   1.1  christos 	signal(SIGTERM, onintr);
    203   1.1  christos #endif
    204   1.1  christos #ifdef SIGHUP
    205   1.1  christos     if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
    206   1.1  christos 	signal(SIGHUP, onintr);
    207   1.1  christos #endif
    208   1.1  christos }
    209   1.1  christos 
    210   1.1  christos static void
    211   1.1  christos usage(void)
    212   1.1  christos {
    213   1.1  christos     static const char *msg[] =
    214   1.1  christos     {
    215   1.1  christos 	""
    216   1.1  christos 	,"Options:"
    217   1.1  christos 	,"  -b file_prefix        set filename prefix (default \"y.\")"
    218  1.10  christos 	,"  -B                    create a backtracking parser"
    219  1.10  christos 	,"  -d                    write definitions (" DEFINES_SUFFIX ")"
    220  1.18  christos 	,"  -H defines_file       write definitions to defines_file"
    221   1.7  christos 	,"  -i                    write interface (y.tab.i)"
    222   1.1  christos 	,"  -g                    write a graphical description"
    223   1.1  christos 	,"  -l                    suppress #line directives"
    224  1.10  christos 	,"  -L                    enable position processing, e.g., \"%locations\""
    225  1.10  christos 	,"  -o output_file        (default \"" OUTPUT_SUFFIX "\")"
    226   1.1  christos 	,"  -p symbol_prefix      set symbol prefix (default \"yy\")"
    227   1.4  christos 	,"  -P                    create a reentrant parser, e.g., \"%pure-parser\""
    228   1.1  christos 	,"  -r                    produce separate code and table files (y.code.c)"
    229   1.8  christos 	,"  -s                    suppress #define's for quoted names in %token lines"
    230   1.1  christos 	,"  -t                    add debugging support"
    231   1.1  christos 	,"  -v                    write description (y.output)"
    232   1.1  christos 	,"  -V                    show version information and exit"
    233   1.1  christos     };
    234   1.1  christos     unsigned n;
    235   1.1  christos 
    236   1.1  christos     fflush(stdout);
    237   1.1  christos     fprintf(stderr, "Usage: %s [options] filename\n", myname);
    238   1.1  christos     for (n = 0; n < sizeof(msg) / sizeof(msg[0]); ++n)
    239   1.1  christos 	fprintf(stderr, "%s\n", msg[n]);
    240   1.1  christos 
    241  1.18  christos     exit(EXIT_FAILURE);
    242   1.1  christos }
    243   1.1  christos 
    244   1.1  christos static void
    245   1.1  christos setflag(int ch)
    246   1.1  christos {
    247   1.1  christos     switch (ch)
    248   1.1  christos     {
    249  1.10  christos     case 'B':
    250  1.10  christos #if defined(YYBTYACC)
    251  1.10  christos 	backtrack = 1;
    252  1.10  christos #else
    253  1.10  christos 	unsupported_flag_warning("-B", "reconfigure with --enable-btyacc");
    254  1.10  christos #endif
    255  1.10  christos 	break;
    256  1.10  christos 
    257   1.1  christos     case 'd':
    258   1.1  christos 	dflag = 1;
    259  1.18  christos 	dflag2 = 0;
    260   1.1  christos 	break;
    261   1.1  christos 
    262   1.1  christos     case 'g':
    263   1.1  christos 	gflag = 1;
    264   1.1  christos 	break;
    265   1.1  christos 
    266   1.7  christos     case 'i':
    267   1.7  christos 	iflag = 1;
    268   1.7  christos 	break;
    269   1.7  christos 
    270   1.1  christos     case 'l':
    271   1.1  christos 	lflag = 1;
    272   1.1  christos 	break;
    273   1.1  christos 
    274  1.10  christos     case 'L':
    275  1.10  christos #if defined(YYBTYACC)
    276  1.10  christos 	locations = 1;
    277  1.10  christos #else
    278  1.14  christos 	unsupported_flag_warning("-L", "reconfigure with --enable-btyacc");
    279  1.10  christos #endif
    280  1.10  christos 	break;
    281  1.10  christos 
    282   1.4  christos     case 'P':
    283   1.4  christos 	pure_parser = 1;
    284   1.4  christos 	break;
    285   1.4  christos 
    286   1.1  christos     case 'r':
    287   1.1  christos 	rflag = 1;
    288   1.1  christos 	break;
    289   1.1  christos 
    290   1.8  christos     case 's':
    291   1.8  christos 	sflag = 1;
    292   1.8  christos 	break;
    293   1.8  christos 
    294   1.1  christos     case 't':
    295   1.1  christos 	tflag = 1;
    296   1.1  christos 	break;
    297   1.1  christos 
    298   1.1  christos     case 'v':
    299   1.1  christos 	vflag = 1;
    300   1.1  christos 	break;
    301   1.1  christos 
    302   1.1  christos     case 'V':
    303   1.1  christos 	printf("%s - %s\n", myname, VERSION);
    304   1.1  christos 	exit(EXIT_SUCCESS);
    305   1.1  christos 
    306   1.4  christos     case 'y':
    307   1.4  christos 	/* noop for bison compatibility. byacc is already designed to be posix
    308   1.4  christos 	 * yacc compatible. */
    309   1.4  christos 	break;
    310   1.4  christos 
    311   1.1  christos     default:
    312   1.1  christos 	usage();
    313   1.1  christos     }
    314   1.1  christos }
    315   1.1  christos 
    316   1.1  christos static void
    317   1.1  christos getargs(int argc, char *argv[])
    318   1.1  christos {
    319   1.1  christos     int i;
    320  1.19  christos #ifdef HAVE_GETOPT
    321  1.19  christos     int ch;
    322  1.19  christos 
    323  1.19  christos     if (argc > 0)
    324  1.19  christos 	myname = argv[0];
    325  1.19  christos 
    326  1.19  christos     while ((ch = getopt(argc, argv, "Bb:dgH:ilLo:Pp:rstVvy")) != -1)
    327  1.19  christos     {
    328  1.19  christos 	switch (ch)
    329  1.19  christos 	{
    330  1.19  christos 	case 'b':
    331  1.19  christos 	    file_prefix = optarg;
    332  1.19  christos 	    break;
    333  1.19  christos 	case 'H':
    334  1.19  christos 	    dflag = dflag2 = 1;
    335  1.19  christos 	    defines_file_name = optarg;
    336  1.19  christos 	    break;
    337  1.19  christos 	case 'o':
    338  1.19  christos 	    output_file_name = optarg;
    339  1.20  christos 	    explicit_file_name = 1;
    340  1.19  christos 	    break;
    341  1.19  christos 	case 'p':
    342  1.19  christos 	    symbol_prefix = optarg;
    343  1.19  christos 	    break;
    344  1.19  christos 	default:
    345  1.19  christos 	    setflag(ch);
    346  1.19  christos 	    break;
    347  1.19  christos 	}
    348  1.19  christos     }
    349  1.19  christos     if ((i = optind) < argc)
    350  1.19  christos     {
    351  1.19  christos 	/* getopt handles "--" specially, while we handle "-" specially */
    352  1.19  christos 	if (!strcmp(argv[i], "-"))
    353  1.19  christos 	{
    354  1.19  christos 	    if ((i + 1) < argc)
    355  1.19  christos 		usage();
    356  1.19  christos 	    input_file = stdin;
    357  1.19  christos 	    return;
    358  1.19  christos 	}
    359  1.19  christos     }
    360  1.19  christos #else
    361   1.1  christos     char *s;
    362   1.1  christos     int ch;
    363   1.1  christos 
    364   1.1  christos     if (argc > 0)
    365   1.1  christos 	myname = argv[0];
    366   1.1  christos 
    367   1.1  christos     for (i = 1; i < argc; ++i)
    368   1.1  christos     {
    369   1.1  christos 	s = argv[i];
    370   1.1  christos 	if (*s != '-')
    371   1.1  christos 	    break;
    372   1.1  christos 	switch (ch = *++s)
    373   1.1  christos 	{
    374   1.1  christos 	case '\0':
    375   1.1  christos 	    input_file = stdin;
    376   1.1  christos 	    if (i + 1 < argc)
    377   1.1  christos 		usage();
    378   1.1  christos 	    return;
    379   1.1  christos 
    380   1.1  christos 	case '-':
    381   1.1  christos 	    ++i;
    382   1.1  christos 	    goto no_more_options;
    383   1.1  christos 
    384   1.1  christos 	case 'b':
    385   1.1  christos 	    if (*++s)
    386   1.1  christos 		file_prefix = s;
    387   1.1  christos 	    else if (++i < argc)
    388   1.1  christos 		file_prefix = argv[i];
    389   1.1  christos 	    else
    390   1.1  christos 		usage();
    391   1.1  christos 	    continue;
    392   1.1  christos 
    393  1.18  christos 	case 'H':
    394  1.18  christos 	    dflag = dflag2 = 1;
    395  1.18  christos 	    if (*++s)
    396  1.18  christos 		defines_file_name = s;
    397  1.18  christos 	    else if (++i < argc)
    398  1.18  christos 		defines_file_name = argv[i];
    399  1.18  christos 	    else
    400  1.18  christos 		usage();
    401  1.18  christos 	    continue;
    402  1.18  christos 
    403   1.1  christos 	case 'o':
    404   1.1  christos 	    if (*++s)
    405   1.1  christos 		output_file_name = s;
    406   1.1  christos 	    else if (++i < argc)
    407   1.1  christos 		output_file_name = argv[i];
    408   1.1  christos 	    else
    409   1.1  christos 		usage();
    410   1.2  christos 	    explicit_file_name = 1;
    411   1.1  christos 	    continue;
    412   1.1  christos 
    413   1.1  christos 	case 'p':
    414   1.1  christos 	    if (*++s)
    415   1.1  christos 		symbol_prefix = s;
    416   1.1  christos 	    else if (++i < argc)
    417   1.1  christos 		symbol_prefix = argv[i];
    418   1.1  christos 	    else
    419   1.1  christos 		usage();
    420   1.1  christos 	    continue;
    421   1.1  christos 
    422   1.1  christos 	default:
    423   1.1  christos 	    setflag(ch);
    424   1.1  christos 	    break;
    425   1.1  christos 	}
    426   1.1  christos 
    427   1.1  christos 	for (;;)
    428   1.1  christos 	{
    429   1.1  christos 	    switch (ch = *++s)
    430   1.1  christos 	    {
    431   1.1  christos 	    case '\0':
    432   1.1  christos 		goto end_of_option;
    433   1.1  christos 
    434   1.1  christos 	    default:
    435   1.1  christos 		setflag(ch);
    436   1.1  christos 		break;
    437   1.1  christos 	    }
    438   1.1  christos 	}
    439   1.1  christos       end_of_option:;
    440   1.1  christos     }
    441   1.1  christos 
    442  1.19  christos   no_more_options:
    443  1.19  christos 
    444  1.19  christos #endif /* HAVE_GETOPT */
    445   1.1  christos     if (i + 1 != argc)
    446   1.1  christos 	usage();
    447  1.13  christos     input_file_name_len = strlen(argv[i]);
    448  1.13  christos     input_file_name = TMALLOC(char, input_file_name_len + 1);
    449  1.13  christos     NO_SPACE(input_file_name);
    450  1.13  christos     strcpy(input_file_name, argv[i]);
    451   1.1  christos }
    452   1.1  christos 
    453   1.7  christos void *
    454   1.4  christos allocate(size_t n)
    455   1.1  christos {
    456   1.7  christos     void *p;
    457   1.1  christos 
    458   1.1  christos     p = NULL;
    459   1.1  christos     if (n)
    460   1.1  christos     {
    461   1.1  christos 	p = CALLOC(1, n);
    462   1.4  christos 	NO_SPACE(p);
    463   1.1  christos     }
    464   1.1  christos     return (p);
    465   1.1  christos }
    466   1.1  christos 
    467   1.1  christos #define CREATE_FILE_NAME(dest, suffix) \
    468  1.10  christos 	dest = alloc_file_name(len, suffix)
    469  1.10  christos 
    470  1.10  christos static char *
    471  1.10  christos alloc_file_name(size_t len, const char *suffix)
    472  1.10  christos {
    473  1.10  christos     char *result = TMALLOC(char, len + strlen(suffix) + 1);
    474  1.10  christos     if (result == 0)
    475  1.10  christos 	no_space();
    476  1.10  christos     strcpy(result, file_prefix);
    477  1.10  christos     strcpy(result + len, suffix);
    478  1.10  christos     return result;
    479  1.10  christos }
    480   1.1  christos 
    481  1.13  christos static char *
    482  1.13  christos find_suffix(char *name, const char *suffix)
    483  1.13  christos {
    484  1.13  christos     size_t len = strlen(name);
    485  1.13  christos     size_t slen = strlen(suffix);
    486  1.13  christos     if (len >= slen)
    487  1.13  christos     {
    488  1.13  christos 	name += len - slen;
    489  1.13  christos 	if (strcmp(name, suffix) == 0)
    490  1.13  christos 	    return name;
    491  1.13  christos     }
    492  1.13  christos     return NULL;
    493  1.13  christos }
    494  1.13  christos 
    495   1.1  christos static void
    496   1.1  christos create_file_names(void)
    497   1.1  christos {
    498   1.1  christos     size_t len;
    499   1.1  christos     const char *defines_suffix;
    500   1.7  christos     const char *externs_suffix;
    501  1.13  christos     char *suffix;
    502   1.1  christos 
    503  1.13  christos     suffix = NULL;
    504   1.1  christos     defines_suffix = DEFINES_SUFFIX;
    505   1.7  christos     externs_suffix = EXTERNS_SUFFIX;
    506   1.1  christos 
    507   1.1  christos     /* compute the file_prefix from the user provided output_file_name */
    508   1.1  christos     if (output_file_name != 0)
    509   1.1  christos     {
    510  1.13  christos 	if (!(suffix = find_suffix(output_file_name, OUTPUT_SUFFIX))
    511  1.13  christos 	    && (suffix = find_suffix(output_file_name, ".c")))
    512   1.7  christos 	{
    513   1.1  christos 	    defines_suffix = ".h";
    514   1.7  christos 	    externs_suffix = ".i";
    515   1.7  christos 	}
    516   1.1  christos     }
    517   1.1  christos 
    518  1.13  christos     if (suffix != NULL)
    519   1.1  christos     {
    520  1.13  christos 	len = (size_t) (suffix - output_file_name);
    521   1.8  christos 	file_prefix = TMALLOC(char, len + 1);
    522   1.4  christos 	NO_SPACE(file_prefix);
    523   1.4  christos 	strncpy(file_prefix, output_file_name, len)[len] = 0;
    524   1.1  christos     }
    525   1.1  christos     else
    526   1.1  christos 	len = strlen(file_prefix);
    527   1.1  christos 
    528   1.1  christos     /* if "-o filename" was not given */
    529   1.1  christos     if (output_file_name == 0)
    530   1.1  christos     {
    531   1.1  christos 	oflag = 1;
    532   1.1  christos 	CREATE_FILE_NAME(output_file_name, OUTPUT_SUFFIX);
    533   1.1  christos     }
    534   1.1  christos 
    535   1.1  christos     if (rflag)
    536   1.1  christos     {
    537   1.1  christos 	CREATE_FILE_NAME(code_file_name, CODE_SUFFIX);
    538   1.1  christos     }
    539   1.1  christos     else
    540   1.1  christos 	code_file_name = output_file_name;
    541   1.1  christos 
    542  1.18  christos     if (dflag && !dflag2)
    543   1.1  christos     {
    544   1.2  christos 	if (explicit_file_name)
    545   1.2  christos 	{
    546  1.13  christos 	    char *xsuffix;
    547   1.2  christos 	    defines_file_name = strdup(output_file_name);
    548   1.2  christos 	    if (defines_file_name == 0)
    549   1.2  christos 		no_space();
    550   1.2  christos 	    /* does the output_file_name have a known suffix */
    551  1.13  christos             xsuffix = strrchr(output_file_name, '.');
    552  1.13  christos             if (xsuffix != 0 &&
    553  1.13  christos 		(!strcmp(xsuffix, ".c") ||   /* good, old-fashioned C */
    554  1.13  christos                  !strcmp(xsuffix, ".C") ||   /* C++, or C on Windows */
    555  1.13  christos                  !strcmp(xsuffix, ".cc") ||  /* C++ */
    556  1.13  christos                  !strcmp(xsuffix, ".cxx") || /* C++ */
    557  1.13  christos                  !strcmp(xsuffix, ".cpp")))  /* C++ (Windows) */
    558   1.2  christos             {
    559   1.2  christos                 strncpy(defines_file_name, output_file_name,
    560  1.13  christos                         xsuffix - output_file_name + 1);
    561  1.13  christos                 defines_file_name[xsuffix - output_file_name + 1] = 'h';
    562  1.13  christos                 defines_file_name[xsuffix - output_file_name + 2] = 0;
    563   1.2  christos             } else {
    564   1.2  christos                 fprintf(stderr,"%s: suffix of output file name %s"
    565   1.2  christos                                " not recognized, no -d file generated.\n",
    566   1.2  christos                         myname, output_file_name);
    567   1.2  christos                 dflag = 0;
    568   1.2  christos                 free(defines_file_name);
    569   1.2  christos                 defines_file_name = 0;
    570   1.2  christos             }
    571   1.3  christos 	} else {
    572   1.3  christos 	    CREATE_FILE_NAME(defines_file_name, defines_suffix);
    573   1.2  christos 	}
    574   1.1  christos     }
    575   1.1  christos 
    576   1.7  christos     if (iflag)
    577   1.7  christos     {
    578   1.7  christos 	CREATE_FILE_NAME(externs_file_name, externs_suffix);
    579   1.7  christos     }
    580   1.7  christos 
    581   1.1  christos     if (vflag)
    582   1.1  christos     {
    583   1.1  christos 	CREATE_FILE_NAME(verbose_file_name, VERBOSE_SUFFIX);
    584   1.1  christos     }
    585   1.1  christos 
    586   1.1  christos     if (gflag)
    587   1.1  christos     {
    588   1.1  christos 	CREATE_FILE_NAME(graph_file_name, GRAPH_SUFFIX);
    589   1.1  christos     }
    590   1.1  christos 
    591  1.13  christos     if (suffix != NULL)
    592   1.1  christos     {
    593   1.4  christos 	FREE(file_prefix);
    594   1.1  christos     }
    595   1.1  christos }
    596   1.1  christos 
    597   1.7  christos #if USE_MKSTEMP
    598   1.7  christos static void
    599   1.7  christos close_tmpfiles(void)
    600   1.7  christos {
    601   1.7  christos     while (my_tmpfiles != 0)
    602   1.7  christos     {
    603   1.7  christos 	MY_TMPFILES *next = my_tmpfiles->next;
    604   1.7  christos 
    605  1.10  christos 	(void)chmod(my_tmpfiles->name, 0644);
    606  1.10  christos 	(void)unlink(my_tmpfiles->name);
    607   1.7  christos 
    608   1.7  christos 	free(my_tmpfiles->name);
    609   1.7  christos 	free(my_tmpfiles);
    610   1.7  christos 
    611   1.7  christos 	my_tmpfiles = next;
    612   1.7  christos     }
    613   1.7  christos }
    614   1.7  christos 
    615   1.7  christos #ifndef HAVE_MKSTEMP
    616   1.7  christos static int
    617   1.7  christos my_mkstemp(char *temp)
    618   1.7  christos {
    619   1.7  christos     int fd;
    620   1.7  christos     char *dname;
    621   1.7  christos     char *fname;
    622   1.7  christos     char *name;
    623   1.7  christos 
    624   1.7  christos     /*
    625   1.7  christos      * Split-up to use tempnam, rather than tmpnam; the latter (like
    626   1.7  christos      * mkstemp) is unusable on Windows.
    627   1.7  christos      */
    628   1.7  christos     if ((fname = strrchr(temp, '/')) != 0)
    629   1.7  christos     {
    630   1.7  christos 	dname = strdup(temp);
    631   1.7  christos 	dname[++fname - temp] = '\0';
    632   1.7  christos     }
    633   1.7  christos     else
    634   1.7  christos     {
    635   1.7  christos 	dname = 0;
    636   1.7  christos 	fname = temp;
    637   1.7  christos     }
    638   1.7  christos     if ((name = tempnam(dname, fname)) != 0)
    639   1.7  christos     {
    640   1.7  christos 	fd = open(name, O_CREAT | O_EXCL | O_RDWR);
    641   1.7  christos 	strcpy(temp, name);
    642   1.7  christos     }
    643   1.7  christos     else
    644   1.7  christos     {
    645   1.7  christos 	fd = -1;
    646   1.7  christos     }
    647   1.7  christos 
    648   1.7  christos     if (dname != 0)
    649   1.7  christos 	free(dname);
    650   1.7  christos 
    651   1.7  christos     return fd;
    652   1.7  christos }
    653   1.7  christos #define mkstemp(s) my_mkstemp(s)
    654   1.7  christos #endif
    655   1.7  christos 
    656   1.7  christos #endif
    657   1.7  christos 
    658   1.7  christos /*
    659   1.7  christos  * tmpfile() should be adequate, except that it may require special privileges
    660   1.7  christos  * to use, e.g., MinGW and Windows 7 where it tries to use the root directory.
    661   1.7  christos  */
    662   1.7  christos static FILE *
    663   1.7  christos open_tmpfile(const char *label)
    664   1.7  christos {
    665  1.12  christos #define MY_FMT "%s/%.*sXXXXXX"
    666   1.7  christos     FILE *result;
    667   1.7  christos #if USE_MKSTEMP
    668   1.7  christos     const char *tmpdir;
    669   1.7  christos     char *name;
    670   1.7  christos 
    671  1.15  christos     if (((tmpdir = getenv("TMPDIR")) == 0 || access(tmpdir, W_OK) != 0) ||
    672  1.15  christos 	((tmpdir = getenv("TEMP")) == 0 || access(tmpdir, W_OK) != 0))
    673   1.7  christos     {
    674   1.7  christos #ifdef P_tmpdir
    675   1.7  christos 	tmpdir = P_tmpdir;
    676   1.7  christos #else
    677   1.7  christos 	tmpdir = "/tmp";
    678   1.7  christos #endif
    679   1.7  christos 	if (access(tmpdir, W_OK) != 0)
    680   1.7  christos 	    tmpdir = ".";
    681   1.7  christos     }
    682   1.7  christos 
    683  1.12  christos     /* The size of the format is guaranteed to be longer than the result from
    684  1.12  christos      * printing empty strings with it; this calculation accounts for the
    685  1.12  christos      * string-lengths as well.
    686  1.12  christos      */
    687  1.12  christos     name = malloc(strlen(tmpdir) + sizeof(MY_FMT) + strlen(label));
    688   1.7  christos 
    689   1.7  christos     result = 0;
    690   1.7  christos     if (name != 0)
    691   1.7  christos     {
    692  1.19  christos 	int fd;
    693  1.19  christos 	const char *mark;
    694  1.19  christos 
    695  1.10  christos 	mode_t save_umask = umask(0177);
    696  1.10  christos 
    697   1.7  christos 	if ((mark = strrchr(label, '_')) == 0)
    698   1.7  christos 	    mark = label + strlen(label);
    699   1.7  christos 
    700  1.12  christos 	sprintf(name, MY_FMT, tmpdir, (int)(mark - label), label);
    701   1.7  christos 	fd = mkstemp(name);
    702  1.19  christos 	if (fd >= 0
    703  1.19  christos 	    && (result = fdopen(fd, "w+")) != 0)
    704   1.7  christos 	{
    705  1.19  christos 	    MY_TMPFILES *item;
    706  1.19  christos 
    707  1.19  christos 	    if (my_tmpfiles == 0)
    708   1.7  christos 	    {
    709  1.19  christos 		atexit(close_tmpfiles);
    710  1.19  christos 	    }
    711   1.7  christos 
    712  1.19  christos 	    item = NEW(MY_TMPFILES);
    713  1.19  christos 	    NO_SPACE(item);
    714   1.7  christos 
    715  1.19  christos 	    item->name = name;
    716  1.19  christos 	    NO_SPACE(item->name);
    717   1.7  christos 
    718  1.19  christos 	    item->next = my_tmpfiles;
    719  1.19  christos 	    my_tmpfiles = item;
    720  1.19  christos 	}
    721  1.19  christos 	else
    722  1.19  christos 	{
    723  1.19  christos 	    FREE(name);
    724   1.7  christos 	}
    725  1.10  christos 	(void)umask(save_umask);
    726   1.7  christos     }
    727   1.7  christos #else
    728   1.7  christos     result = tmpfile();
    729   1.7  christos #endif
    730   1.7  christos 
    731   1.7  christos     if (result == 0)
    732   1.7  christos 	open_error(label);
    733   1.7  christos     return result;
    734  1.12  christos #undef MY_FMT
    735   1.7  christos }
    736   1.7  christos 
    737   1.1  christos static void
    738   1.1  christos open_files(void)
    739   1.1  christos {
    740   1.1  christos     create_file_names();
    741   1.1  christos 
    742   1.1  christos     if (input_file == 0)
    743   1.1  christos     {
    744   1.1  christos 	input_file = fopen(input_file_name, "r");
    745   1.1  christos 	if (input_file == 0)
    746   1.1  christos 	    open_error(input_file_name);
    747   1.1  christos     }
    748   1.1  christos 
    749   1.7  christos     action_file = open_tmpfile("action_file");
    750   1.7  christos     text_file = open_tmpfile("text_file");
    751   1.1  christos 
    752   1.1  christos     if (vflag)
    753   1.1  christos     {
    754   1.1  christos 	verbose_file = fopen(verbose_file_name, "w");
    755   1.1  christos 	if (verbose_file == 0)
    756   1.1  christos 	    open_error(verbose_file_name);
    757   1.1  christos     }
    758   1.1  christos 
    759   1.1  christos     if (gflag)
    760   1.1  christos     {
    761   1.1  christos 	graph_file = fopen(graph_file_name, "w");
    762   1.1  christos 	if (graph_file == 0)
    763   1.1  christos 	    open_error(graph_file_name);
    764   1.1  christos 	fprintf(graph_file, "digraph %s {\n", file_prefix);
    765   1.1  christos 	fprintf(graph_file, "\tedge [fontsize=10];\n");
    766   1.1  christos 	fprintf(graph_file, "\tnode [shape=box,fontsize=10];\n");
    767   1.1  christos 	fprintf(graph_file, "\torientation=landscape;\n");
    768   1.1  christos 	fprintf(graph_file, "\trankdir=LR;\n");
    769   1.1  christos 	fprintf(graph_file, "\t/*\n");
    770   1.1  christos 	fprintf(graph_file, "\tmargin=0.2;\n");
    771   1.1  christos 	fprintf(graph_file, "\tpage=\"8.27,11.69\"; // for A4 printing\n");
    772   1.1  christos 	fprintf(graph_file, "\tratio=auto;\n");
    773   1.1  christos 	fprintf(graph_file, "\t*/\n");
    774   1.1  christos     }
    775   1.1  christos 
    776  1.18  christos     if (dflag || dflag2)
    777   1.1  christos     {
    778   1.1  christos 	defines_file = fopen(defines_file_name, "w");
    779   1.1  christos 	if (defines_file == 0)
    780   1.1  christos 	    open_error(defines_file_name);
    781   1.7  christos 	union_file = open_tmpfile("union_file");
    782   1.7  christos     }
    783   1.7  christos 
    784   1.7  christos     if (iflag)
    785   1.7  christos     {
    786   1.7  christos 	externs_file = fopen(externs_file_name, "w");
    787   1.7  christos 	if (externs_file == 0)
    788   1.7  christos 	    open_error(externs_file_name);
    789   1.1  christos     }
    790   1.1  christos 
    791   1.1  christos     output_file = fopen(output_file_name, "w");
    792   1.1  christos     if (output_file == 0)
    793   1.1  christos 	open_error(output_file_name);
    794   1.1  christos 
    795   1.1  christos     if (rflag)
    796   1.1  christos     {
    797   1.1  christos 	code_file = fopen(code_file_name, "w");
    798   1.1  christos 	if (code_file == 0)
    799   1.1  christos 	    open_error(code_file_name);
    800   1.1  christos     }
    801   1.1  christos     else
    802   1.1  christos 	code_file = output_file;
    803   1.1  christos }
    804   1.1  christos 
    805   1.1  christos int
    806   1.1  christos main(int argc, char *argv[])
    807   1.1  christos {
    808   1.1  christos     SRexpect = -1;
    809   1.1  christos     RRexpect = -1;
    810   1.1  christos     exit_code = EXIT_SUCCESS;
    811   1.1  christos 
    812   1.1  christos     set_signals();
    813   1.1  christos     getargs(argc, argv);
    814   1.1  christos     open_files();
    815   1.1  christos     reader();
    816   1.1  christos     lr0();
    817   1.1  christos     lalr();
    818   1.1  christos     make_parser();
    819   1.1  christos     graph();
    820   1.1  christos     finalize_closure();
    821   1.1  christos     verbose();
    822   1.1  christos     output();
    823   1.1  christos     done(exit_code);
    824   1.1  christos     /*NOTREACHED */
    825   1.1  christos }
    826