home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / f2c-1993.04.28-src.lha / f2c-1993.04.28 / src / io.c < prev    next >
C/C++ Source or Header  |  1993-04-28  |  29KB  |  1,421 lines

  1. /****************************************************************
  2. Copyright 1990, 1991, 1993 by AT&T Bell Laboratories and Bellcore.
  3.  
  4. Permission to use, copy, modify, and distribute this software
  5. and its documentation for any purpose and without fee is hereby
  6. granted, provided that the above copyright notice appear in all
  7. copies and that both that the copyright notice and this
  8. permission notice and warranty disclaimer appear in supporting
  9. documentation, and that the names of AT&T Bell Laboratories or
  10. Bellcore or any of their entities not be used in advertising or
  11. publicity pertaining to distribution of the software without
  12. specific, written prior permission.
  13.  
  14. AT&T and Bellcore disclaim all warranties with regard to this
  15. software, including all implied warranties of merchantability
  16. and fitness.  In no event shall AT&T or Bellcore be liable for
  17. any special, indirect or consequential damages or any damages
  18. whatsoever resulting from loss of use, data or profits, whether
  19. in an action of contract, negligence or other tortious action,
  20. arising out of or in connection with the use or performance of
  21. this software.
  22. ****************************************************************/
  23.  
  24. /* Routines to generate code for I/O statements.
  25.    Some corrections and improvements due to David Wasley, U. C. Berkeley
  26. */
  27.  
  28. /* TEMPORARY */
  29. #define TYIOINT TYLONG
  30. #define SZIOINT SZLONG
  31.  
  32. #include "defs.h"
  33. #include "names.h"
  34. #include "iob.h"
  35.  
  36. extern int inqmask;
  37.  
  38. LOCAL void dofclose(), dofinquire(), dofinquire(), dofmove(), dofopen(),
  39.     doiolist(), ioset(), ioseta(), iosetc(), iosetip(), iosetlc(),
  40.     putio(), putiocall();
  41.  
  42. iob_data *iob_list;
  43. Addrp io_structs[9];
  44.  
  45. LOCAL char ioroutine[12];
  46.  
  47. LOCAL long ioendlab;
  48. LOCAL long ioerrlab;
  49. LOCAL int endbit;
  50. LOCAL int errbit;
  51. LOCAL long jumplab;
  52. LOCAL long skiplab;
  53. LOCAL int ioformatted;
  54. LOCAL int statstruct = NO;
  55. LOCAL struct Labelblock *skiplabel;
  56. Addrp ioblkp;
  57.  
  58. #define UNFORMATTED 0
  59. #define FORMATTED 1
  60. #define LISTDIRECTED 2
  61. #define NAMEDIRECTED 3
  62.  
  63. #define V(z)    ioc[z].iocval
  64.  
  65. #define IOALL 07777
  66.  
  67. LOCAL struct Ioclist
  68. {
  69.     char *iocname;
  70.     int iotype;
  71.     expptr iocval;
  72. }
  73. ioc[ ] =
  74. {
  75.     { "", 0 },
  76.     { "unit", IOALL },
  77.     { "fmt", M(IOREAD) | M(IOWRITE) },
  78.     { "err", IOALL },
  79.     { "end", M(IOREAD) },
  80.     { "iostat", IOALL },
  81.     { "rec", M(IOREAD) | M(IOWRITE) },
  82.     { "recl", M(IOOPEN) | M(IOINQUIRE) },
  83.     { "file", M(IOOPEN) | M(IOINQUIRE) },
  84.     { "status", M(IOOPEN) | M(IOCLOSE) },
  85.     { "access", M(IOOPEN) | M(IOINQUIRE) },
  86.     { "form", M(IOOPEN) | M(IOINQUIRE) },
  87.     { "blank", M(IOOPEN) | M(IOINQUIRE) },
  88.     { "exist", M(IOINQUIRE) },
  89.     { "opened", M(IOINQUIRE) },
  90.     { "number", M(IOINQUIRE) },
  91.     { "named", M(IOINQUIRE) },
  92.     { "name", M(IOINQUIRE) },
  93.     { "sequential", M(IOINQUIRE) },
  94.     { "direct", M(IOINQUIRE) },
  95.     { "formatted", M(IOINQUIRE) },
  96.     { "unformatted", M(IOINQUIRE) },
  97.     { "nextrec", M(IOINQUIRE) },
  98.     { "nml", M(IOREAD) | M(IOWRITE) }
  99. };
  100.  
  101. #define NIOS (sizeof(ioc)/sizeof(struct Ioclist) - 1)
  102.  
  103. /* #define IOSUNIT 1 */
  104. /* #define IOSFMT 2 */
  105. #define IOSERR 3
  106. #define IOSEND 4
  107. #define IOSIOSTAT 5
  108. #define IOSREC 6
  109. #define IOSRECL 7
  110. #define IOSFILE 8
  111. #define IOSSTATUS 9
  112. #define IOSACCESS 10
  113. #define IOSFORM 11
  114. #define IOSBLANK 12
  115. #define IOSEXISTS 13
  116. #define IOSOPENED 14
  117. #define IOSNUMBER 15
  118. #define IOSNAMED 16
  119. #define IOSNAME 17
  120. #define IOSSEQUENTIAL 18
  121. #define IOSDIRECT 19
  122. #define IOSFORMATTED 20
  123. #define IOSUNFORMATTED 21
  124. #define IOSNEXTREC 22
  125. #define IOSNML 23
  126.  
  127. #define IOSTP V(IOSIOSTAT)
  128.  
  129.  
  130. /* offsets in generated structures */
  131.  
  132. #define SZFLAG SZIOINT
  133.  
  134. /* offsets for external READ and WRITE statements */
  135.  
  136. #define XERR 0
  137. #define XUNIT    SZFLAG
  138. #define XEND    SZFLAG + SZIOINT
  139. #define XFMT    2*SZFLAG + SZIOINT
  140. #define XREC    2*SZFLAG + SZIOINT + SZADDR
  141.  
  142. /* offsets for internal READ and WRITE statements */
  143.  
  144. #define XIUNIT    SZFLAG
  145. #define XIEND    SZFLAG + SZADDR
  146. #define XIFMT    2*SZFLAG + SZADDR
  147. #define XIRLEN    2*SZFLAG + 2*SZADDR
  148. #define XIRNUM    2*SZFLAG + 2*SZADDR + SZIOINT
  149. #define XIREC    2*SZFLAG + 2*SZADDR + 2*SZIOINT
  150.  
  151. /* offsets for OPEN statements */
  152.  
  153. #define XFNAME    SZFLAG + SZIOINT
  154. #define XFNAMELEN    SZFLAG + SZIOINT + SZADDR
  155. #define XSTATUS    SZFLAG + 2*SZIOINT + SZADDR
  156. #define XACCESS    SZFLAG + 2*SZIOINT + 2*SZADDR
  157. #define XFORMATTED    SZFLAG + 2*SZIOINT + 3*SZADDR
  158. #define XRECLEN    SZFLAG + 2*SZIOINT + 4*SZADDR
  159. #define XBLANK    SZFLAG + 3*SZIOINT + 4*SZADDR
  160.  
  161. /* offset for CLOSE statement */
  162.  
  163. #define XCLSTATUS    SZFLAG + SZIOINT
  164.  
  165. /* offsets for INQUIRE statement */
  166.  
  167. #define XFILE    SZFLAG + SZIOINT
  168. #define XFILELEN    SZFLAG + SZIOINT + SZADDR
  169. #define XEXISTS    SZFLAG + 2*SZIOINT + SZADDR
  170. #define XOPEN    SZFLAG + 2*SZIOINT + 2*SZADDR
  171. #define XNUMBER    SZFLAG + 2*SZIOINT + 3*SZADDR
  172. #define XNAMED    SZFLAG + 2*SZIOINT + 4*SZADDR
  173. #define XNAME    SZFLAG + 2*SZIOINT + 5*SZADDR
  174. #define XNAMELEN    SZFLAG + 2*SZIOINT + 6*SZADDR
  175. #define XQACCESS    SZFLAG + 3*SZIOINT + 6*SZADDR
  176. #define XQACCLEN    SZFLAG + 3*SZIOINT + 7*SZADDR
  177. #define XSEQ    SZFLAG + 4*SZIOINT + 7*SZADDR
  178. #define XSEQLEN    SZFLAG + 4*SZIOINT + 8*SZADDR
  179. #define XDIRECT    SZFLAG + 5*SZIOINT + 8*SZADDR
  180. #define XDIRLEN    SZFLAG + 5*SZIOINT + 9*SZADDR
  181. #define XFORM    SZFLAG + 6*SZIOINT + 9*SZADDR
  182. #define XFORMLEN    SZFLAG + 6*SZIOINT + 10*SZADDR
  183. #define XFMTED    SZFLAG + 7*SZIOINT + 10*SZADDR
  184. #define XFMTEDLEN    SZFLAG + 7*SZIOINT + 11*SZADDR
  185. #define XUNFMT    SZFLAG + 8*SZIOINT + 11*SZADDR
  186. #define XUNFMTLEN    SZFLAG + 8*SZIOINT + 12*SZADDR
  187. #define XQRECL    SZFLAG + 9*SZIOINT + 12*SZADDR
  188. #define XNEXTREC    SZFLAG + 9*SZIOINT + 13*SZADDR
  189. #define XQBLANK    SZFLAG + 9*SZIOINT + 14*SZADDR
  190. #define XQBLANKLEN    SZFLAG + 9*SZIOINT + 15*SZADDR
  191.  
  192. LOCAL char *cilist_names[] = {
  193.     "cilist",
  194.     "cierr",
  195.     "ciunit",
  196.     "ciend",
  197.     "cifmt",
  198.     "cirec"
  199.     };
  200. LOCAL char *icilist_names[] = {
  201.     "icilist",
  202.     "icierr",
  203.     "iciunit",
  204.     "iciend",
  205.     "icifmt",
  206.     "icirlen",
  207.     "icirnum"
  208.     };
  209. LOCAL char *olist_names[] = {
  210.     "olist",
  211.     "oerr",
  212.     "ounit",
  213.     "ofnm",
  214.     "ofnmlen",
  215.     "osta",
  216.     "oacc",
  217.     "ofm",
  218.     "orl",
  219.     "oblnk"
  220.     };
  221. LOCAL char *cllist_names[] = {
  222.     "cllist",
  223.     "cerr",
  224.     "cunit",
  225.     "csta"
  226.     };
  227. LOCAL char *alist_names[] = {
  228.     "alist",
  229.     "aerr",
  230.     "aunit"
  231.     };
  232. LOCAL char *inlist_names[] = {
  233.     "inlist",
  234.     "inerr",
  235.     "inunit",
  236.     "infile",
  237.     "infilen",
  238.     "inex",
  239.     "inopen",
  240.     "innum",
  241.     "innamed",
  242.     "inname",
  243.     "innamlen",
  244.     "inacc",
  245.     "inacclen",
  246.     "inseq",
  247.     "inseqlen",
  248.     "indir",
  249.     "indirlen",
  250.     "infmt",
  251.     "infmtlen",
  252.     "inform",
  253.     "informlen",
  254.     "inunf",
  255.     "inunflen",
  256.     "inrecl",
  257.     "innrec",
  258.     "inblank",
  259.     "inblanklen"
  260.     };
  261.  
  262. LOCAL char **io_fields;
  263.  
  264. #define zork(n,t) n, sizeof(n)/sizeof(char *) - 1, t
  265.  
  266. LOCAL io_setup io_stuff[] = {
  267.     zork(cilist_names, TYCILIST),    /* external read/write */
  268.     zork(inlist_names, TYINLIST),    /* inquire */
  269.     zork(olist_names,  TYOLIST),    /* open */
  270.     zork(cllist_names, TYCLLIST),    /* close */
  271.     zork(alist_names,  TYALIST),    /* rewind */
  272.     zork(alist_names,  TYALIST),    /* backspace */
  273.     zork(alist_names,  TYALIST),    /* endfile */
  274.     zork(icilist_names,TYICILIST),    /* internal read */
  275.     zork(icilist_names,TYICILIST)    /* internal write */
  276.     };
  277.  
  278. #undef zork
  279.  
  280.  
  281. fmtstmt(lp)
  282. register struct Labelblock *lp;
  283. {
  284.     if(lp == NULL)
  285.     {
  286.         execerr("unlabeled format statement" , CNULL);
  287.         return(-1);
  288.     }
  289.     if(lp->labtype == LABUNKNOWN)
  290.     {
  291.         lp->labtype = LABFORMAT;
  292.         lp->labelno = newlabel();
  293.     }
  294.     else if(lp->labtype != LABFORMAT)
  295.     {
  296.         execerr("bad format number", CNULL);
  297.         return(-1);
  298.     }
  299.     return(lp->labelno);
  300. }
  301.  
  302.  
  303. setfmt(lp)
  304. struct Labelblock *lp;
  305. {
  306.     int n;
  307.     char *s0, *lexline();
  308.     register char *s, *se, *t;
  309.     register k;
  310.  
  311.     s0 = s = lexline(&n);
  312.     se = t = s + n;
  313.  
  314.     /* warn of trivial errors, e.g. "  11 CONTINUE" (one too few spaces) */
  315.     /* following FORMAT... */
  316.  
  317.     if (n <= 0)
  318.         warn("No (...) after FORMAT");
  319.     else if (*s != '(')
  320.         warni("%c rather than ( after FORMAT", *s);
  321.     else if (se[-1] != ')') {
  322.         *se = 0;
  323.         while(--t > s && *t != ')') ;
  324.         if (t <= s)
  325.             warn("No ) at end of FORMAT statement");
  326.         else if (se - t > 30)
  327.             warn1("Extraneous text at end of FORMAT: ...%s", se-12);
  328.         else
  329.             warn1("Extraneous text at end of FORMAT: %s", t+1);
  330.         t = se;
  331.         }
  332.  
  333.     /* fix MYQUOTES (\002's) and \\'s */
  334.  
  335.     while(s < se)
  336.         switch(*s++) {
  337.             case 2:
  338.                 t += 3; break;
  339.             case '"':
  340.             case '\\':
  341.                 t++; break;
  342.             }
  343.     s = s0;
  344.     if (lp) {
  345.         lp->fmtstring = t = mem((int)(t - s + 1), 0);
  346.         while(s < se)
  347.             switch(k = *s++) {
  348.                 case 2:
  349.                     t[0] = '\\';
  350.                     t[1] = '0';
  351.                     t[2] = '0';
  352.                     t[3] = '2';
  353.