home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / c / compilers / Bison.sit.hqx / Bison / Source / files.c < prev    next >
Text File  |  1992-08-21  |  12KB  |  486 lines

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