home *** CD-ROM | disk | FTP | other *** search
/ Carousel / CAROUSEL.cdr / mactosh / lang / bison.sit / files.c < prev    next >
Text File  |  1988-11-19  |  8KB  |  315 lines

  1. /* Open and close files for bison,
  2.    Copyright (C) 1984, 1986 Bob Corbett and Free Software Foundation, Inc.
  3.  
  4. BISON is distributed in the hope that it will be useful, but WITHOUT ANY
  5. WARRANTY.  No author or distributor accepts responsibility to anyone
  6. for the consequences of using it or for whether it serves any
  7. particular purpose or works at all, unless he says so in writing.
  8. Refer to the BISON General Public License for full details.
  9.  
  10. Everyone is granted permission to copy, modify and redistribute BISON,
  11. but only under the conditions described in the BISON General Public
  12. License.  A copy of this license is supposed to have been given to you
  13. along with BISON so you can know your rights and responsibilities.  It
  14. should be in a file named COPYING.  Among other things, the copyright
  15. notice and this notice must be preserved on all copies.
  16.  
  17.  In other words, you are welcome to use, share and improve this program.
  18.  You are forbidden to forbid anyone else to use, share and improve
  19.  what you give them.   Help stamp out software-hoarding!  */
  20.  
  21. #ifdef VMS
  22. #include <ssdef.h>
  23. #define unlink delete
  24. #define XPFILE "GNU_BISON:[000000]BISON.SIMPLE"
  25. #define XPFILE1 "GNU_BISON:[000000]BISON.HAIRY"
  26. #endif
  27.  
  28. #include <stdio.h>
  29. #include "files.h"
  30. #include "new.h"
  31. #include "gram.h"
  32.  
  33. FILE *finput = NULL;
  34. FILE *foutput = NULL;
  35. FILE *fdefines = NULL;
  36. FILE *ftable = NULL;
  37. FILE *fattrs = NULL;
  38. FILE *fguard = NULL;
  39. FILE *faction = NULL;
  40. FILE *fparser = NULL;
  41.  
  42. /* File name specified with -o for the output file, or 0 if no -o.  */
  43. char *spec_outfile;
  44.  
  45. char *infile;
  46. char *outfile;
  47. char *defsfile;
  48. char *tabfile;
  49. char *attrsfile;
  50. char *guardfile;
  51. char *actfile;
  52. char *tmpattrsfile;
  53. char *tmptabfile;
  54.  
  55. #ifdef macintosh
  56. #define mktemp(a) (a)
  57. #else
  58. char    *mktemp();    /* So the compiler won't complain */
  59. #endif
  60. FILE    *tryopen();    /* This might be a good idea */
  61.  
  62. extern int verboseflag;
  63. extern int definesflag;
  64. int fixed_outfiles = 0;
  65.  
  66.  
  67. char*
  68. stringappend(string1, end1, string2)
  69. char *string1;
  70. int end1;
  71. char *string2;
  72. {
  73.   register char *ostring;
  74.   register char *cp, *cp1;
  75.   register int i;
  76.  
  77.   cp = string2;  i = 0;
  78.   while (*cp++) i++;
  79.  
  80.   ostring = NEW2(i+end1+1, char);
  81.  
  82.   cp = ostring;
  83.   cp1 = string1;
  84.   for (i = 0; i < end1; i++)
  85.     *cp++ = *cp1++;
  86.  
  87.   cp1 = string2;
  88.   while (*cp++ = *cp1++) ;
  89.  
  90.   return ostring;
  91. }
  92.  
  93.  
  94. /* JF this has been hacked to death.  Nowaday it sets up the file names for
  95.    the output files, and opens the tmp files and the parser */
  96. openfiles()
  97. {
  98.   char *name_base;
  99.   register char *cp;
  100.   char *filename;
  101.   int base_length;
  102.   int short_base_length;
  103.   char *getenv();
  104.  
  105. #ifdef VMS
  106.   char *tmp_base = "sys$scratch:b_";
  107. #else
  108.   char *tmp_base = "/tmp/b.";
  109. #endif
  110.   int tmp_len = strlen (tmp_base);
  111.  
  112.   if (spec_outfile)
  113.     {
  114.       /* -o was specified.  The precise -o name will be used for ftable.
  115.      For other output files, remove the ".c" or ".tab.c" suffix.  */
  116.       name_base = spec_outfile;
  117.       /* BASE_LENGTH includes ".tab" but not ".c".  */
  118.       base_length = strlen (name_base);
  119.       if (!strcmp (name_base + base_length - 2, ".c"))
  120.     base_length -= 2;
  121.       /* SHORT_BASE_LENGTH includes neither ".tab" nor ".c".  */
  122.       short_base_length = base_length;
  123.       if (!strcmp (name_base + short_base_length - 4, ".tab"))
  124.     short_base_length -= 4;
  125.       else if (!strcmp (name_base + short_base_length - 4, "_tab"))
  126.     short_base_length -= 4;
  127.     }
  128.   else
  129.     {
  130.       /* -o was not specified; compute output file name from input
  131.      or use y.tab.c, etc., if -y was specified.  */
  132.  
  133.       name_base = fixed_outfiles ? "y.y" : infile;
  134.  
  135.       /* Discard any directory names from the input file name
  136.      to make the base of the output.  */
  137.       cp = name_base;
  138.       while (*cp)
  139.     {
  140.       if (*cp == '/')
  141.         name_base = cp+1;
  142.       cp++;
  143.     }
  144.  
  145.       /* BASE_LENGTH gets length of NAME_BASE, sans ".y" suffix if any.  */
  146.  
  147.       base_length = strlen (name_base);
  148.       if (!strcmp (name_base + base_length - 2, ".y"))
  149.     base_length -= 2;
  150.       short_base_length = base_length;
  151.  
  152. #ifdef VMS
  153.       name_base = stringappend(name_base, short_base_length, "_tab");
  154. #else
  155.       name_base = stringappend(name_base, short_base_length, ".tab");
  156. #endif
  157.       base_length = short_base_length + 4;
  158.     }
  159.  
  160.   finput = tryopen(infile, "r");
  161.  
  162.   filename = (char *) getenv ("BISON_SIMPLE");
  163.   fparser = tryopen(filename ? filename : PFILE, "r");
  164.  
  165.   if (verboseflag)
  166.     {
  167.       outfile = stringappend(name_base, short_base_length, ".output");
  168.       foutput = tryopen(outfile, "w");
  169.     }
  170.  
  171.   if (definesflag)
  172.     {
  173.       defsfile = stringappend(name_base, base_length, ".h");
  174.       fdefines = tryopen(defsfile, "w");
  175.     }
  176.  
  177.   actfile = mktemp(stringappend(tmp_base, tmp_len, "act.XXXXXX"));
  178.   faction = tryopen(actfile, "w+");
  179.   unlink(actfile);
  180.  
  181.   tmpattrsfile = mktemp(stringappend(tmp_base, tmp_len, "attrs.XXXXXX"));
  182.   fattrs = tryopen(tmpattrsfile,"w+");
  183.   unlink(tmpattrsfile);
  184.  
  185.   tmptabfile = mktemp(stringappend(tmp_base, tmp_len, "tab.XXXXXX"));
  186.   ftable = tryopen(tmptabfile, "w+");
  187.   unlink(tmptabfile);
  188.  
  189.     /* These are opened by `done' or `open_extra_files', if at all */
  190.   if (spec_outfile)
  191.     tabfile = spec_outfile;
  192.   else
  193.     tabfile = stringappend(name_base, base_length, ".c");
  194.  
  195. #ifdef VMS
  196.   attrsfile = stringappend(name_base, short_base_length, "_stype.h");
  197.   guardfile = stringappend(name_base, short_base_length, "_guard.c");
  198. #else
  199.   attrsfile = stringappend(name_base, short_base_length, ".stype.h");
  200.   guardfile = stringappend(name_base, short_base_length, ".guard.c");
  201. #endif
  202. }
  203.  
  204.  
  205.  
  206. /* open the output files needed only for the semantic parser.
  207. This is done when %semantic_parser is seen in the declarations section.  */
  208. open_extra_files()
  209. {
  210.   FILE *ftmp;
  211.   int c;
  212.   char *filename;
  213.         /* JF change open parser file */
  214.   fclose(fparser);
  215.   filename = (char *) getenv ("BISON_HAIRY");
  216.   fparser= tryopen(filename ? filename : PFILE1, "r");
  217.  
  218.         /* JF change from inline attrs file to separate one */
  219.   ftmp = tryopen(attrsfile, "w");
  220.   rewind(fattrs);
  221.   while((c=getc(fattrs))!=EOF)    /* Thank god for buffering */
  222.     putc(c,ftmp);
  223.   fclose(fattrs);
  224.   fattrs=ftmp;
  225.  
  226.   fguard = tryopen(guardfile, "w");
  227.  
  228. }
  229.  
  230.     /* JF to make file opening easier.  This func tries to open file
  231.        NAME with mode MODE, and prints an error message if it fails. */
  232. FILE *
  233. tryopen(name, mode)
  234. char *name;
  235. char *mode;
  236. {
  237.   FILE    *ptr;
  238.  
  239. #ifdef macintosh
  240.   if(mode[0] == 'w' && mode[1] == '\0')
  241.     Create(name,0,'MPS ','TEXT');
  242. #endif
  243.   ptr = fopen(name, mode);
  244.   if (ptr == NULL)
  245.     {
  246.       fprintf(stderr, "bison: ");
  247. #ifdef macintosh
  248.       fprintf(stderr, name);
  249. #else
  250.       perror(name);
  251. #endif
  252.       done(2);
  253.     }
  254.   return ptr;
  255. }
  256.  
  257. done(k)
  258. int k;
  259. {
  260.   if (faction)
  261.     fclose(faction);
  262.  
  263.   if (fattrs)
  264.     fclose(fattrs);
  265.  
  266.   if (fguard)
  267.     fclose(fguard);
  268.  
  269.   if (finput)
  270.     fclose(finput);
  271.  
  272.   if (fparser)
  273.     fclose(fparser);
  274.  
  275. /* JF we don't need this anymore
  276.   if (fparser1)
  277.     fclose(fparser1); */
  278.  
  279.   if (foutput)
  280.     fclose(foutput);
  281.  
  282.     /* JF write out the output file */
  283.   if (k == 0 && ftable)
  284.     {
  285.       FILE *ftmp;
  286.       register int c;
  287.  
  288.       ftmp=tryopen(tabfile, "w");
  289.       rewind(ftable);
  290.       while((c=getc(ftable)) != EOF)
  291.         putc(c,ftmp);
  292.       fclose(ftmp);
  293.       fclose(ftable);
  294.     }
  295. /*
  296.  * Macintosh does not have a real unlink().  The routine provided
  297.  * by MPW is pretty much the same as VMS delete().
  298.  */
  299. #ifdef macintosh
  300.   unlink(actfile);
  301.   unlink(tmpattrsfile);
  302.   unlink(tmptabfile);
  303. #endif
  304.  
  305. #ifdef VMS
  306.   delete(actfile);
  307.   delete(tmpattrsfile);
  308.   delete(tmptabfile);
  309.   if (k==0) sys$exit(SS$_NORMAL);
  310.   sys$exit(SS$_ABORT);
  311. #else
  312.   exit(k);
  313. #endif
  314. }
  315.