#include <f2c_config.h>
#include <stdlib.h>
#if defined(_MSC_VER) || defined(__MINGW32__)
# include <io.h>
# include <stdio.h>
#else
# ifdef HAVE_ISATTY
# include <unistd.h>
# else
# define isatty(x) 0
# endif
#endif
#include "f2c.h"
#include "fio.h"
#include "fmt.h"
unit f__units[MXUNIT];
flag f__init;
cilist *f__elist;
icilist *f__svic;
flag f__reading;
flag f__cplus,f__cblank;
const char *f__fmtbuf;
flag f__external;
int (*f__getn)(void);
void (*f__putn)(int);
int (*f__doed)(struct syl*, char*, ftnlen),(*f__doned)(struct syl*);
int (*f__dorevert)(void),(*f__donewrec)(void),(*f__doend)(void);
flag f__sequential;
flag f__formatted;
FILE *f__cf;
unit *f__curunit;
int f__recpos;
OFF_T f__cursor, f__hiwater;
int f__scale;
char *f__icptr;
const char *F_err[] =
{
"error in format",
"illegal unit number",
"formatted io not allowed",
"unformatted io not allowed",
"direct io not allowed",
"sequential io not allowed",
"can't backspace file",
"null file name",
"can't stat file",
"unit not connected",
"off end of record",
"truncation failed in endfile",
"incomprehensible list input",
"out of free space",
"unit not connected",
"read unexpected character",
"bad logical input field",
"bad variable type",
"bad namelist name",
"variable not in namelist",
"no end record",
"variable count incorrect",
"subscript for scalar variable",
"invalid array section",
"substring out of bounds",
"subscript out of bounds",
"can't read file",
"can't write file",
"'new' file exists",
"can't append to file",
"non-positive record number",
"nmLbuf overflow"
};
#define MAXERR (sizeof(F_err)/sizeof(char *)+100)
#if defined(_MSC_VER) || defined(__MINGW32__)
#undef isatty
#define isatty _isatty
#undef fileno
#define fileno _fileno
#endif
int f__canseek(FILE *f)
{
#ifdef NON_UNIX_STDIO
return !isatty(fileno(f));
#else
struct stat x;
if (fstat(fileno(f),&x) < 0)
return(0);
#ifdef S_IFMT
switch(x.st_mode & S_IFMT) {
case S_IFDIR:
case S_IFREG:
if(x.st_nlink > 0)
return(1);
else
return(0);
case S_IFCHR:
if(isatty(fileno(f)))
return(0);
return(1);
#ifdef S_IFBLK
case S_IFBLK:
return(1);
#endif
}
#else
#ifdef S_ISDIR
if (S_ISREG(x.st_mode) || S_ISDIR(x.st_mode)) {
if(x.st_nlink > 0)
return(1);
else
return(0);
}
if (S_ISCHR(x.st_mode)) {
if(isatty(fileno(f)))
return(0);
return(1);
}
if (S_ISBLK(x.st_mode))
return(1);
#else
Help! How does fstat work on this system?
#endif
#endif
return(0);
#endif
}
void f__fatal(int n, const char *s)
{
if(n<100 && n>=0) perror(s);
else if(n >= (int)MAXERR || n < -1)
{ fprintf(stderr,"%s: illegal error number %d\n",s,n);
}
else if(n == -1) fprintf(stderr,"%s: end of file\n",s);
else
fprintf(stderr,"%s: %s\n",s,F_err[n-100]);
if (f__curunit) {
fprintf(stderr,"apparent state: unit %d ",
(int)(f__curunit-f__units));
fprintf(stderr, f__curunit->ufnm ? "named %s\n" : "(unnamed)\n",
f__curunit->ufnm);
}
else
fprintf(stderr,"apparent state: internal I/O\n");
if (f__fmtbuf)
fprintf(stderr,"last format: %s\n",f__fmtbuf);
fprintf(stderr,"lately %s %s %s %s",f__reading?"reading":"writing",
f__sequential?"sequential":"direct",f__formatted?"formatted":"unformatted",
f__external?"external":"internal");
sig_die(" IO", 1);
}
void f_init(void)
{ unit *p;
f__init=1;
p= &f__units[0];
p->ufd=stderr;
p->useek=f__canseek(stderr);
p->ufmt=1;
p->uwrt=1;
p = &f__units[5];
p->ufd=stdin;
p->useek=f__canseek(stdin);
p->ufmt=1;
p->uwrt=0;
p= &f__units[6];
p->ufd=stdout;
p->useek=f__canseek(stdout);
p->ufmt=1;
p->uwrt=1;
}
int f__nowreading(unit *x)
{
OFF_T loc;
int ufmt, urw;
if (x->urw & 1)
goto done;
if (!x->ufnm)
goto cantread;
ufmt = x->url ? 0 : x->ufmt;
loc = FTELL(x->ufd);
urw = 3;
if (!freopen(x->ufnm, f__w_mode[ufmt|2], x->ufd)) {
urw = 1;
if(!freopen(x->ufnm, f__r_mode[ufmt], x->ufd)) {
cantread:
errno = 126;
return 1;
}
}
FSEEK(x->ufd,loc,SEEK_SET);
x->urw = urw;
done:
x->uwrt = 0;
return 0;
}
int f__nowwriting(unit *x)
{
OFF_T loc;
int ufmt;
if (x->urw & 2) {
if (x->urw & 1)
FSEEK(x->ufd, (OFF_T)0, SEEK_CUR);
goto done;
}
if (!x->ufnm)
goto cantwrite;
ufmt = x->url ? 0 : x->ufmt;
if (x->uwrt == 3) {
if (!(f__cf = x->ufd =
freopen(x->ufnm,f__w_mode[ufmt],x->ufd)))
goto cantwrite;
x->urw = 2;
}
else {
loc=FTELL(x->ufd);
if (!(f__cf = x->ufd =
freopen(x->ufnm, f__w_mode[ufmt | 2], x->ufd)))
{
x->ufd = NULL;
cantwrite:
errno = 127;
return(1);
}
x->urw = 3;
FSEEK(x->ufd,loc,SEEK_SET);
}
done:
x->uwrt = 1;
return 0;
}
int err__fl(int f, int m, const char *s)
{
if (!f)
f__fatal(m, s);
if (f__doend)
(*f__doend)();
return errno = m;
}