home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / f2csrc.zip / f2csrc / libI77 / open.c < prev    next >
C/C++ Source or Header  |  1994-07-28  |  5KB  |  238 lines

  1. #ifndef NON_UNIX_STDIO
  2. #include "sys/types.h"
  3. #include "sys/stat.h"
  4. #endif
  5. #include "f2c.h"
  6. #include "fio.h"
  7. #include "string.h"
  8. #include "rawio.h"
  9.  
  10. #ifdef KR_headers
  11. extern char *malloc(), *mktemp();
  12. extern integer f_clos();
  13. #else
  14. #undef abs
  15. #undef min
  16. #undef max
  17. #include "stdlib.h"
  18. extern int f__canseek(FILE*);
  19. extern integer f_clos(cllist*);
  20. #endif
  21.  
  22. #ifdef NON_ANSI_RW_MODES
  23. char *f__r_mode[2] = {"r", "r"};
  24. char *f__w_mode[4] = {"w", "w", "r+w", "r+w"};
  25. #else
  26. char *f__r_mode[2] = {"rb", "r"};
  27. char *f__w_mode[4] = {"wb", "w", "r+b", "r+"};
  28. #endif
  29.  
  30. #ifdef KR_headers
  31. f__isdev(s) char *s;
  32. #else
  33. f__isdev(char *s)
  34. #endif
  35. {
  36. #ifdef NON_UNIX_STDIO
  37.     int i, j;
  38.  
  39.     i = open(s,O_RDONLY);
  40.     if (i == -1)
  41.         return 0;
  42.     j = isatty(i);
  43.     close(i);
  44.     return j;
  45. #else
  46.     struct stat x;
  47.  
  48.     if(stat(s, &x) == -1) return(0);
  49. #ifdef S_IFMT
  50.     switch(x.st_mode&S_IFMT) {
  51.         case S_IFREG:
  52.         case S_IFDIR:
  53.             return(0);
  54.         }
  55. #else
  56. #ifdef S_ISREG
  57.     /* POSIX version */
  58.     if(S_ISREG(x.st_mode) || S_ISDIR(x.st_mode))
  59.         return(0);
  60.     else
  61. #else
  62.     Help! How does stat work on this system?
  63. #endif
  64. #endif
  65.         return(1);
  66. #endif
  67. }
  68. #ifdef KR_headers
  69. integer f_open(a) olist *a;
  70. #else
  71. integer f_open(olist *a)
  72. #endif
  73. {    unit *b;
  74.     integer rv;
  75.     char buf[256], *s;
  76.     cllist x;
  77.     int ufmt;
  78. #ifdef NON_UNIX_STDIO
  79.     FILE *tf;
  80. #else
  81.     int n;
  82.     struct stat stb;
  83. #endif
  84.     if(a->ounit>=MXUNIT || a->ounit<0)
  85.         err(a->oerr,101,"open")
  86.     f__curunit = b = &f__units[a->ounit];
  87.     if(b->ufd) {
  88.         if(a->ofnm==0)
  89.         {
  90.         same:    if (a->oblnk)
  91.                 b->ublnk = *a->oblnk == 'z' || *a->oblnk == 'Z';
  92.             return(0);
  93.         }
  94. #ifdef NON_UNIX_STDIO
  95.         if (b->ufnm
  96.          && strlen(b->ufnm) == a->ofnmlen
  97.          && !strncmp(b->ufnm, b->ufnm, (unsigned)a->ofnmlen))
  98.             goto same;
  99. #else
  100.         g_char(a->ofnm,a->ofnmlen,buf);
  101.         if (f__inode(buf,&n) == b->uinode && n == b->udev)
  102.             goto same;
  103. #endif
  104.         x.cunit=a->ounit;
  105.         x.csta=0;
  106.         x.cerr=a->oerr;
  107.         if ((rv = f_clos(&x)) != 0)
  108.             return rv;
  109.         }
  110.     b->url = (int)a->orl;
  111.     b->ublnk = a->oblnk && (*a->oblnk == 'z' || *a->oblnk == 'Z');
  112.     if(a->ofm==0)
  113.     {    if(b->url>0) b->ufmt=0;
  114.         else b->ufmt=1;
  115.     }
  116.     else if(*a->ofm=='f' || *a->ofm == 'F') b->ufmt=1;
  117.     else b->ufmt=0;
  118.     ufmt = b->ufmt;
  119. #ifdef url_Adjust
  120.     if (b->url && !ufmt)
  121.         url_Adjust(b->url);
  122. #endif
  123.     if (a->ofnm) {
  124.         g_char(a->ofnm,a->ofnmlen,buf);
  125.         if (!buf[0])
  126.             err(a->oerr,107,"open")
  127.         }
  128.     else
  129.         sprintf(buf, "fort.%ld", a->ounit);
  130.     b->uscrtch = 0;
  131.     switch(a->osta ? *a->osta : 'u')
  132.     {
  133.     case 'o':
  134.     case 'O':
  135. #ifdef NON_UNIX_STDIO
  136.         if(access(buf,0))
  137. #else
  138.         if(stat(buf,&stb))
  139. #endif
  140.             err(a->oerr,errno,"open")
  141.         break;
  142.      case 's':
  143.      case 'S':
  144.         b->uscrtch=1;
  145. #ifdef _POSIX_SOURCE
  146.         tmpnam(buf);
  147. #else
  148.         (void) strcpy(buf,"tmp.FXXXXXX");
  149.         (void) mktemp(buf);
  150. #endif
  151.         goto replace;
  152.     case 'n':
  153.     case 'N':
  154. #ifdef NON_UNIX_STDIO
  155.         if(!access(buf,0))
  156. #else
  157.         if(!stat(buf,&stb))
  158. #endif
  159.             err(a->oerr,128,"open")
  160.         /* no break */
  161.     case 'r':    /* Fortran 90 replace option */
  162.     case 'R':
  163.  replace:
  164. #ifdef NON_UNIX_STDIO
  165.         if (tf = fopen(buf,f__w_mode[0]))
  166.             fclose(tf);
  167. #else
  168.         (void) close(creat(buf, 0666));
  169. #endif
  170.     }
  171.  
  172.     b->ufnm=(char *) malloc((unsigned int)(strlen(buf)+1));
  173.     if(b->ufnm==NULL) err(a->oerr,113,"no space");
  174.     (void) strcpy(b->ufnm,buf);
  175.     b->uend=0;
  176.     b->uwrt = 0;
  177. #ifdef NON_UNIX_STDIO
  178.     if ((s = a->oacc) && (*s == 'd' || *s == 'D'))
  179.         ufmt = 0;
  180. #endif
  181.     if(f__isdev(buf))
  182.     {    b->ufd = fopen(buf,f__r_mode[ufmt]);
  183.         if(b->ufd==NULL) err(a->oerr,errno,buf)
  184.     }
  185.     else {
  186.         if(!(b->ufd = fopen(buf, f__r_mode[ufmt]))) {
  187. #ifdef NON_UNIX_STDIO
  188.             if (b->ufd = fopen(buf, f__w_mode[ufmt|2]))
  189.                 b->uwrt = 2;
  190.             else if (b->ufd = fopen(buf, f__w_mode[ufmt]))
  191.                 b->uwrt = 1;
  192.             else
  193. #else
  194.             if ((n = open(buf,O_WRONLY)) >= 0)
  195.                 b->uwrt = 2;
  196.             else {
  197.                 n = creat(buf, 0666);
  198.                 b->uwrt = 1;
  199.                 }
  200.             if (n < 0
  201.             || (b->ufd = fdopen(n, f__w_mode[ufmt])) == NULL)
  202. #endif
  203.                 err(a->oerr, errno, "open");
  204.             }
  205.     }
  206.     b->useek=f__canseek(b->ufd);
  207. #ifndef NON_UNIX_STDIO
  208.     if((b->uinode=f__inode(buf,&b->udev))==-1)
  209.         err(a->oerr,108,"open")
  210. #endif
  211.     if(b->useek)
  212.         if (a->orl)
  213.             rewind(b->ufd);
  214.         else if ((s = a->oacc) && (*s == 'a' || *s == 'A')
  215.             && fseek(b->ufd, 0L, SEEK_END))
  216.                 err(a->oerr,129,"open");
  217.     return(0);
  218. }
  219. #ifdef KR_headers
  220. fk_open(seq,fmt,n) ftnint n;
  221. #else
  222. fk_open(int seq, int fmt, ftnint n)
  223. #endif
  224. {    char nbuf[10];
  225.     olist a;
  226.     (void) sprintf(nbuf,"fort.%ld",n);
  227.     a.oerr=1;
  228.     a.ounit=n;
  229.     a.ofnm=nbuf;
  230.     a.ofnmlen=strlen(nbuf);
  231.     a.osta=NULL;
  232.     a.oacc= seq==SEQ?"s":"d";
  233.     a.ofm = fmt==FMT?"f":"u";
  234.     a.orl = seq==DIR?1:0;
  235.     a.oblnk=NULL;
  236.     return(f_open(&a));
  237. }
  238.