freebsd-dev/contrib/libf2c/libI77/endfile.c

131 lines
2.4 KiB
C
Raw Normal View History

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"
2001-12-18 04:13:58 +00:00
#include <sys/types.h>
#include <unistd.h>
1999-09-18 10:51:31 +00:00
#undef abs
#undef min
#undef max
#include <stdlib.h>
#include <string.h>
extern char *f__r_mode[], *f__w_mode[];
2003-07-11 03:42:19 +00:00
integer
f_end (alist * a)
1999-09-18 10:51:31 +00:00
{
2003-07-11 03:42:19 +00:00
unit *b;
FILE *tf;
1999-09-18 10:51:31 +00:00
2003-07-11 03:42:19 +00:00
if (f__init & 2)
f__fatal (131, "I/O recursion");
if (a->aunit >= MXUNIT || a->aunit < 0)
err (a->aerr, 101, "endfile");
b = &f__units[a->aunit];
if (b->ufd == NULL)
{
char nbuf[10];
sprintf (nbuf, "fort.%ld", (long) a->aunit);
if ((tf = fopen (nbuf, f__w_mode[0])))
fclose (tf);
return (0);
}
b->uend = 1;
return (b->useek ? t_runc (a) : 0);
1999-09-18 10:51:31 +00:00
}
2001-12-18 04:13:58 +00:00
#ifndef HAVE_FTRUNCATE
2003-07-11 03:42:19 +00:00
static int
copy (FILE * from, register long len, FILE * to)
1999-09-18 10:51:31 +00:00
{
2003-07-11 03:42:19 +00:00
int len1;
char buf[BUFSIZ];
1999-09-18 10:51:31 +00:00
2003-07-11 03:42:19 +00:00
while (fread (buf, len1 = len > BUFSIZ ? BUFSIZ : (int) len, 1, from))
{
if (!fwrite (buf, len1, 1, to))
return 1;
if ((len -= len1) <= 0)
break;
}
return 0;
}
2001-12-18 04:13:58 +00:00
#endif /* !defined(HAVE_FTRUNCATE) */
1999-09-18 10:51:31 +00:00
2003-07-11 03:42:19 +00:00
int
t_runc (alist * a)
1999-09-18 10:51:31 +00:00
{
2003-07-11 03:42:19 +00:00
off_t loc, len;
unit *b;
int rc;
FILE *bf;
2001-12-18 04:13:58 +00:00
#ifndef HAVE_FTRUNCATE
2003-07-11 03:42:19 +00:00
FILE *tf;
2001-12-18 04:13:58 +00:00
#endif /* !defined(HAVE_FTRUNCATE) */
1999-09-18 10:51:31 +00:00
2003-07-11 03:42:19 +00:00
b = &f__units[a->aunit];
if (b->url)
return (0); /*don't truncate direct files */
loc = FTELL (bf = b->ufd);
FSEEK (bf, 0, SEEK_END);
len = FTELL (bf);
if (loc >= len || b->useek == 0 || b->ufnm == NULL)
return (0);
2001-12-18 04:13:58 +00:00
#ifndef HAVE_FTRUNCATE
2003-07-11 03:42:19 +00:00
rc = 0;
fclose (b->ufd);
if (!loc)
{
if (!(bf = fopen (b->ufnm, f__w_mode[b->ufmt])))
rc = 1;
if (b->uwrt)
b->uwrt = 1;
goto done;
}
if (!(bf = fopen (b->ufnm, f__r_mode[0])) || !(tf = tmpfile ()))
{
1999-09-19 05:59:11 +00:00
#ifdef NON_UNIX_STDIO
2003-07-11 03:42:19 +00:00
bad:
1999-09-19 05:59:11 +00:00
#endif
2003-07-11 03:42:19 +00:00
rc = 1;
goto done;
}
if (copy (bf, loc, tf))
{
bad1:
rc = 1;
goto done1;
}
if (!(bf = freopen (b->ufnm, f__w_mode[0], bf)))
goto bad1;
FSEEK (tf, 0, SEEK_SET);
if (copy (tf, loc, bf))
goto bad1;
b->uwrt = 1;
b->urw = 2;
1999-09-18 10:51:31 +00:00
#ifdef NON_UNIX_STDIO
2003-07-11 03:42:19 +00:00
if (b->ufmt)
{
fclose (bf);
if (!(bf = fopen (b->ufnm, f__w_mode[3])))
goto bad;
FSEEK (bf, 0, SEEK_END);
b->urw = 3;
}
1999-09-18 10:51:31 +00:00
#endif
done1:
2003-07-11 03:42:19 +00:00
fclose (tf);
1999-09-18 10:51:31 +00:00
done:
2003-07-11 03:42:19 +00:00
f__cf = b->ufd = bf;
#else /* !defined(HAVE_FTRUNCATE) */
fflush (b->ufd);
rc = ftruncate (fileno (b->ufd), loc);
FSEEK (bf, loc, SEEK_SET);
2001-12-18 04:13:58 +00:00
#endif /* !defined(HAVE_FTRUNCATE) */
2003-07-11 03:42:19 +00:00
if (rc)
err (a->aerr, 111, "endfile");
return 0;
}