2001-12-18 04:13:58 +00:00
|
|
|
#include "config.h"
|
1999-09-18 10:51:31 +00:00
|
|
|
#include "f2c.h"
|
|
|
|
#include "fio.h"
|
|
|
|
|
2003-07-11 03:42:19 +00:00
|
|
|
int
|
|
|
|
c_due (cilist * a)
|
1999-09-18 10:51:31 +00:00
|
|
|
{
|
2003-07-11 03:42:19 +00:00
|
|
|
if (f__init != 1)
|
|
|
|
f_init ();
|
|
|
|
f__init = 3;
|
|
|
|
if (a->ciunit >= MXUNIT || a->ciunit < 0)
|
|
|
|
err (a->cierr, 101, "startio");
|
|
|
|
f__sequential = f__formatted = f__recpos = 0;
|
|
|
|
f__external = 1;
|
|
|
|
f__curunit = &f__units[a->ciunit];
|
|
|
|
if (a->ciunit >= MXUNIT || a->ciunit < 0)
|
|
|
|
err (a->cierr, 101, "startio");
|
|
|
|
f__elist = a;
|
|
|
|
if (f__curunit->ufd == NULL && fk_open (DIR, UNF, a->ciunit))
|
|
|
|
err (a->cierr, 104, "due");
|
|
|
|
f__cf = f__curunit->ufd;
|
|
|
|
if (f__curunit->ufmt)
|
|
|
|
err (a->cierr, 102, "cdue");
|
|
|
|
if (!f__curunit->useek)
|
|
|
|
err (a->cierr, 104, "cdue");
|
|
|
|
if (f__curunit->ufd == NULL)
|
|
|
|
err (a->cierr, 114, "cdue");
|
|
|
|
if (a->cirec <= 0)
|
|
|
|
err (a->cierr, 130, "due");
|
|
|
|
FSEEK (f__cf, (off_t) (a->cirec - 1) * f__curunit->url, SEEK_SET);
|
|
|
|
f__curunit->uend = 0;
|
|
|
|
return (0);
|
1999-09-18 10:51:31 +00:00
|
|
|
}
|
2003-07-11 03:42:19 +00:00
|
|
|
|
|
|
|
integer
|
|
|
|
s_rdue (cilist * a)
|
1999-09-18 10:51:31 +00:00
|
|
|
{
|
2003-07-11 03:42:19 +00:00
|
|
|
int n;
|
|
|
|
f__reading = 1;
|
|
|
|
if ((n = c_due (a)))
|
|
|
|
return (n);
|
|
|
|
if (f__curunit->uwrt && f__nowreading (f__curunit))
|
|
|
|
err (a->cierr, errno, "read start");
|
|
|
|
return (0);
|
1999-09-18 10:51:31 +00:00
|
|
|
}
|
2003-07-11 03:42:19 +00:00
|
|
|
|
|
|
|
integer
|
|
|
|
s_wdue (cilist * a)
|
1999-09-18 10:51:31 +00:00
|
|
|
{
|
2003-07-11 03:42:19 +00:00
|
|
|
int n;
|
|
|
|
f__reading = 0;
|
|
|
|
if ((n = c_due (a)))
|
|
|
|
return (n);
|
|
|
|
if (f__curunit->uwrt != 1 && f__nowwriting (f__curunit))
|
|
|
|
err (a->cierr, errno, "write start");
|
|
|
|
return (0);
|
1999-09-18 10:51:31 +00:00
|
|
|
}
|
2003-07-11 03:42:19 +00:00
|
|
|
|
|
|
|
integer
|
|
|
|
e_rdue (void)
|
1999-09-18 10:51:31 +00:00
|
|
|
{
|
2003-07-11 03:42:19 +00:00
|
|
|
f__init = 1;
|
|
|
|
if (f__curunit->url == 1 || f__recpos == f__curunit->url)
|
|
|
|
return (0);
|
|
|
|
FSEEK (f__cf, (off_t) (f__curunit->url - f__recpos), SEEK_CUR);
|
|
|
|
if (FTELL (f__cf) % f__curunit->url)
|
|
|
|
err (f__elist->cierr, 200, "syserr");
|
|
|
|
return (0);
|
1999-09-18 10:51:31 +00:00
|
|
|
}
|
2003-07-11 03:42:19 +00:00
|
|
|
|
|
|
|
integer
|
|
|
|
e_wdue (void)
|
1999-09-18 10:51:31 +00:00
|
|
|
{
|
2003-07-11 03:42:19 +00:00
|
|
|
f__init = 1;
|
1999-09-18 10:51:31 +00:00
|
|
|
#ifdef ALWAYS_FLUSH
|
2003-07-11 03:42:19 +00:00
|
|
|
if (fflush (f__cf))
|
|
|
|
err (f__elist->cierr, errno, "write end");
|
1999-09-18 10:51:31 +00:00
|
|
|
#endif
|
2003-07-11 03:42:19 +00:00
|
|
|
return (e_rdue ());
|
1999-09-18 10:51:31 +00:00
|
|
|
}
|