home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / bison / files.c < prev    next >
C/C++ Source or Header  |  1996-06-28  |  11KB  |  436 lines

  1. /* Open and close files for bison,
  2.    Copyright (C) 1984, 1986, 1989, 1992 Free Software Foundation, Inc.
  3.  
  4. This file is part of Bison, the GNU Compiler Compiler.
  5.  
  6. Bison is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. Bison is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with Bison; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. #if defined (VMS) & !defined (__VMS_POSIX)
  22. #include <ssdef.h>
  23. #define unlink delete
  24. #ifndef XPFILE
  25. #define XPFILE "GNU_BISON:[000000]BISON.SIMPLE"
  26. #endif
  27. #ifndef XPFILE1
  28. #define XPFILE1 "GNU_BISON:[000000]BISON.HAIRY"
  29. #endif
  30. #endif
  31.  
  32. #include <stdio.h>
  33. #include "system.h"
  34. #include "files.h"
  35. #include "new.h"
  36. #include "gram.h"
  37.  
  38. #if defined (_WIN32) && defined (NeXT_PDO)
  39. #define mktemp _mktemp
  40. #endif
  41.  
  42. FILE *finput = NULL;
  43. FILE *foutput = NULL;
  44. FILE *fdefines = NULL;
  45. FILE *ftable = NULL;
  46. FILE *fattrs = NULL;
  47. FILE *fguard = NULL;
  48. FILE *faction = NULL;
  49. FILE *fparser = NULL;
  50.  
  51. /* File name specified with -o for the output file, or 0 if no -o.  */
  52. char *spec_outfile;
  53.  
  54. char *infile;
  55. char *outfile;
  56. char *defsfile;
  57. char *tabfile;
  58. char *attrsfile;
  59. char *guardfile;
  60. char *actfile;
  61. char *tmpattrsfile;
  62. char *tmptabfile;
  63. char *tmpdefsfile;
  64.  
  65. extern int noparserflag;
  66.  
  67. extern char    *mktemp();    /* So the compiler won't complain */
  68. extern char    *getenv();
  69. extern void    perror();
  70. FILE    *tryopen();    /* This might be a good idea */
  71. void done();
  72.  
  73. extern char *program_name;
  74. extern int verboseflag;
  75. extern int definesflag;
  76. int fixed_outfiles = 0;
  77.  
  78.  
  79. char*
  80. stringappend(string1, end1, string2)
  81. char *string1;
  82. int end1;
  83. char *string2;
  84. {
  85.   register char *ostring;
  86.   register char *cp, *cp1;
  87.   register int i;
  88.  
  89.   cp = string2;  i = 0;
  90.   while (*cp++) i++;
  91.  
  92.   ostring = NEW2(i+end1+1, char);
  93.  
  94.   cp = ostring;
  95.   cp1 = string1;
  96.   for (i = 0; i < end1; i++)
  97.     *cp++ = *cp1++;
  98.  
  99.   cp1 = string2;
  100.   while (*cp++ = *cp1++) ;
  101.  
  102.   return ostring;
  103. }
  104.  
  105.  
  106. /* JF this has been hacked to death.  Nowaday it sets up the file names for
  107.    the output files, and opens the tmp files and the parser */
  108. void
  109. openfiles()
  110. {
  111.   char *name_base;
  112.   register char *cp;
  113.   char *filename;
  114.   int base_length;
  115.   int short_base_length;
  116.  
  117. #if defined (VMS) & !defined (__VMS_POSIX)
  118.   char *tmp_base = "sys$scratch:b_";
  119. #else
  120.   char *tmp_base = "/tmp/b.";
  121. #endif
  122.   int tmp_len;
  123.  
  124. #ifdef MSDOS
  125.   tmp_base = getenv ("TMP");
  126.   if (tmp_base == 0)
  127.     tmp_base = "";
  128.   strlwr (infile);
  129. #endif /* MSDOS */
  130. #if defined (_WIN32) && defined (NeXT_PDO)
  131.   char *tmp_dir = getenv ("TMP");
  132.   if (!tmp_dir)
  133.     tmp_dir = getenv ("TEMP");
  134.   tmp_base = xmalloc (tmp_dir ? strlen (tmp_dir) + 4 : 4);
  135.   sprintf (tmp_base, "%s/b.", tmp_dir ? tmp_dir : "");
  136. #endif
  137.  
  138.   tmp_len = strlen (tmp_base);
  139.  
  140.   if (spec_outfile)
  141.     {
  142.       /* -o was specified.  The precise -o name will be used for ftable.
  143.      For other output files, remove the ".c" or ".tab.c" suffix.  */
  144.       name_base = spec_outfile;
  145. #ifdef MSDOS
  146.       strlwr (name_base);
  147. #endif /* MSDOS */
  148.       /* BASE_LENGTH includes ".tab" but not ".c".  */
  149.       base_length = strlen (name_base);
  150.       if (!strcmp (name_base + base_length - 2, ".c"))
  151.     base_length -= 2;
  152.       /* SHORT_BASE_LENGTH includes neither ".tab" nor ".c".  */
  153.       short_base_length = base_length;
  154.       if (!strncmp (name_base + short_base_length - 4, ".tab", 4))
  155.     short_base_length -= 4;
  156.       else if (!strncmp (name_base + short_base_length - 4, "_tab", 4))
  157.     short_base_length -= 4;
  158.     }
  159.   else if (spec_file_prefix)
  160.     {
  161.       /* -b was specified.  Construct names from it.  */
  162.       /* SHORT_BASE_LENGTH includes neither ".tab" nor ".c".  */
  163.       short_base_length = strlen (spec_file_prefix);
  164.       /* Count room for `.tab'.  */
  165.       base_length = short_base_length + 4;
  166.       name_base = (char *) xmalloc (base_length + 1);
  167.       /* Append `.tab'.  */
  168.       strcpy (name_base, spec_file_prefix);
  169. #ifdef VMS
  170.       strcat (name_base, "_tab");
  171. #else
  172.       strcat (name_base, ".tab");
  173. #endif
  174. #ifdef MSDOS
  175.       strlwr (name_base);
  176. #endif /* MSDOS */
  177.     }
  178.   else
  179.     {
  180.       /* -o was not specified; compute output file name from input
  181.      or use y.tab.c, etc., if -y was specified.  */
  182.  
  183.       name_base = fixed_outfiles ? "y.y" : infile;
  184.  
  185.       /* BASE_LENGTH gets length of NAME_BASE, sans ".y" suffix if any.  */
  186.  
  187.       base_length = strlen (name_base);
  188.       if (!strcmp (name_base + base_length - 2, ".y"))
  189.     base_length -= 2;
  190.       short_base_length = base_length;
  191.  
  192. #ifdef VMS
  193.       name_base = stringappend(name_base, short_base_length, "_tab");
  194. #else
  195. #ifdef MSDOS
  196.       name_base = stringappend(name_base, short_base_length, "_tab");
  197. #else
  198.       name_base = stringappend(name_base, short_base_length, ".tab");
  199. #endif /* not MSDOS */
  200. #endif
  201.       base_length = short_base_length + 4;
  202.     }
  203.  
  204.   finput = tryopen(infile, "r");
  205.  
  206.   if (! noparserflag) 
  207.     {
  208.       filename = getenv("BISON_SIMPLE");
  209. #if defined (MSDOS) || (defined (_WIN32) && defined (NeXT_PDO))
  210.       /* File doesn't exist in current directory; try in INIT directory.  */
  211.       cp = getenv("INIT");
  212. #if defined (_WIN32) && defined (NeXT_PDO)
  213.       /* File doesn't exist in current directory;
  214.      try in NEXT_ROOT directory.  */
  215.       cp = getenv("NEXT_ROOT");
  216. #endif
  217.       if (filename == 0 && cp != NULL)
  218.         {
  219.           filename = xmalloc(strlen(cp) + strlen(PFILE) + 2);
  220.           strcpy(filename, cp);
  221.           cp = filename + strlen(filename);
  222.           *cp++ = '/';
  223.           strcpy(cp, PFILE);
  224.         }
  225. #endif /* MSDOS */
  226.       fparser = tryopen(filename ? filename : PFILE, "r");
  227.     }
  228.  
  229.   if (verboseflag)
  230.     {
  231. #ifdef MSDOS
  232.       outfile = stringappend(name_base, short_base_length, ".out");
  233. #else
  234.       /* We used to use just .out if spec_name_prefix (-p) was used,
  235.      but that conflicts with Posix.  */
  236.       outfile = stringappend(name_base, short_base_length, ".output");
  237. #endif
  238.       foutput = tryopen(outfile, "w");
  239.     }
  240.  
  241.   if (noparserflag)
  242.     {
  243.       /* use permanent name for actions file */
  244.       actfile = stringappend(name_base, short_base_length, ".act");
  245.       faction = tryopen(actfile, "w");
  246.     } 
  247.  
  248. #ifdef MSDOS
  249.   if (! noparserflag)
  250.     actfile = mktemp(stringappend(tmp_base, tmp_len, "acXXXXXX"));
  251.   tmpattrsfile = mktemp(stringappend(tmp_base, tmp_len, "atXXXXXX"));
  252.   tmptabfile = mktemp(stringappend(tmp_base, tmp_len, "taXXXXXX"));
  253.   tmpdefsfile = mktemp(stringappend(tmp_base, tmp_len, "deXXXXXX"));
  254. #else
  255.   if (! noparserflag)
  256.     actfile = mktemp(stringappend(tmp_base, tmp_len, "act.XXXXXX"));
  257.   tmpattrsfile = mktemp(stringappend(tmp_base, tmp_len, "attrs.XXXXXX"));
  258.   tmptabfile = mktemp(stringappend(tmp_base, tmp_len, "tab.XXXXXX"));
  259.   tmpdefsfile = mktemp(stringappend(tmp_base, tmp_len, "defs.XXXXXX"));
  260. #endif /* not MSDOS */
  261.  
  262.   if (! noparserflag)
  263.     faction = tryopen(actfile, "w+");
  264.   fattrs = tryopen(tmpattrsfile,"w+");
  265.   ftable = tryopen(tmptabfile, "w+");
  266.  
  267.   if (definesflag)
  268.     {
  269.       defsfile = stringappend(name_base, base_length, ".h");
  270.       fdefines = tryopen(tmpdefsfile, "w+");
  271.     }
  272.  
  273. #ifndef MSDOS
  274.   if (! noparserflag)
  275.     unlink(actfile);
  276.   unlink(tmpattrsfile);
  277.   unlink(tmptabfile);
  278.   unlink(tmpdefsfile);
  279. #endif
  280.  
  281.     /* These are opened by `done' or `open_extra_files', if at all */
  282.   if (spec_outfile)
  283.     tabfile = spec_outfile;
  284.   else
  285.     tabfile = stringappend(name_base, base_length, ".c");
  286.  
  287. #ifdef VMS
  288.   attrsfile = stringappend(name_base, short_base_length, "_stype.h");
  289.   guardfile = stringappend(name_base, short_base_length, "_guard.c");
  290. #else
  291. #ifdef MSDOS
  292.   attrsfile = stringappend(name_base, short_base_length, ".sth");
  293.   guardfile = stringappend(name_base, short_base_length, ".guc");
  294. #else
  295.   attrsfile = stringappend(name_base, short_base_length, ".stype.h");
  296.   guardfile = stringappend(name_base, short_base_length, ".guard.c");
  297. #endif /* not MSDOS */
  298. #endif /* not VMS */
  299. }
  300.  
  301.  
  302.  
  303. /* open the output files needed only for the semantic parser.
  304. This is done when %semantic_parser is seen in the declarations section.  */
  305.  
  306. void
  307. open_extra_files()
  308. {
  309.   FILE *ftmp;
  310.   int c;
  311.   char *filename, *cp;
  312.  
  313.   if (fparser)
  314.     fclose(fparser);
  315.  
  316.   if (! noparserflag) 
  317.     {
  318.       filename = (char *) getenv ("BISON_HAIRY");
  319. #if defined (MSDOS) || (defined (_WIN32) && defined (NeXT_PDO))
  320.       /* File doesn't exist in current directory; try in INIT directory.  */
  321.       cp = getenv("INIT");
  322. #if defined (_WIN32) && defined (NeXT_PDO)
  323.       /* File doesn't exist in current directory;
  324.      try in NEXT_ROOT directory.  */
  325.       cp = getenv("NEXT_ROOT");
  326. #endif
  327.       if (filename == 0 && cp != NULL)
  328.         {
  329.           filename = xmalloc(strlen(cp) + strlen(PFILE1) + 2);
  330.           strcpy(filename, cp);
  331.           cp = filename + strlen(filename);
  332.           *cp++ = '/';
  333.           strcpy(cp, PFILE1);
  334.         }
  335. #endif
  336.       fparser= tryopen(filename ? filename : PFILE1, "r");
  337.     }
  338.  
  339.         /* JF change from inline attrs file to separate one */
  340.   ftmp = tryopen(attrsfile, "w");
  341.   rewind(fattrs);
  342.   while((c=getc(fattrs))!=EOF)    /* Thank god for buffering */
  343.     putc(c,ftmp);
  344.   fclose(fattrs);
  345.   fattrs=ftmp;
  346.  
  347.   fguard = tryopen(guardfile, "w");
  348.  
  349. }
  350.  
  351.     /* JF to make file opening easier.  This func tries to open file
  352.        NAME with mode MODE, and prints an error message if it fails. */
  353. FILE *
  354. tryopen(name, mode)
  355. char *name;
  356. char *mode;
  357. {
  358.   FILE    *ptr;
  359.  
  360.   ptr = fopen(name, mode);
  361.   if (ptr == NULL)
  362.     {
  363.       fprintf(stderr, "%s: ", program_name);
  364.       perror(name);
  365.       done(2);
  366.     }
  367.   return ptr;
  368. }
  369.  
  370. void
  371. done(k)
  372. int k;
  373. {
  374.   if (faction)
  375.     fclose(faction);
  376.  
  377.   if (fattrs)
  378.     fclose(fattrs);
  379.  
  380.   if (fguard)
  381.     fclose(fguard);
  382.  
  383.   if (finput)
  384.     fclose(finput);
  385.  
  386.   if (fparser)
  387.     fclose(fparser);
  388.  
  389.   if (foutput)
  390.     fclose(foutput);
  391.  
  392.     /* JF write out the output file */
  393.   if (k == 0 && ftable)
  394.     {
  395.       FILE *ftmp;
  396.       register int c;
  397.  
  398.       ftmp=tryopen(tabfile, "w");
  399.       rewind(ftable);
  400.       while((c=getc(ftable)) != EOF)
  401.         putc(c,ftmp);
  402.       fclose(ftmp);
  403.       fclose(ftable);
  404.  
  405.       if (definesflag)
  406.         {
  407.           ftmp = tryopen(defsfile, "w");
  408.           fflush(fdefines);
  409.           rewind(fdefines);
  410.           while((c=getc(fdefines)) != EOF)
  411.             putc(c,ftmp);
  412.           fclose(ftmp);
  413.           fclose(fdefines);
  414.         }
  415.     }
  416.  
  417. #if defined (VMS) & !defined (__VMS_POSIX)
  418.   if (faction && ! noparserflag)
  419.     delete(actfile);
  420.   if (fattrs)
  421.     delete(tmpattrsfile);
  422.   if (ftable)
  423.     delete(tmptabfile);
  424.   if (k==0) sys$exit(SS$_NORMAL);
  425.   sys$exit(SS$_ABORT);
  426. #else
  427. #ifdef MSDOS
  428.   if (actfile && ! noparserflag) unlink(actfile);
  429.   if (tmpattrsfile) unlink(tmpattrsfile);
  430.   if (tmptabfile) unlink(tmptabfile);
  431.   if (tmpdefsfile) unlink(tmpdefsfile);
  432. #endif /* MSDOS */
  433.   exit(k);
  434. #endif /* not VMS, or __VMS_POSIX */
  435. }
  436.