postgresql/src/port/fseeko.c

85 lines
1.5 KiB
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* fseeko.c
* 64-bit versions of fseeko/ftello()
*
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
2010-09-20 22:08:53 +02:00
* src/port/fseeko.c
*
*-------------------------------------------------------------------------
*/
2002-10-28 01:00:25 +01:00
/*
* We have to use the native defines here because configure hasn't
* completed yet.
*/
#ifdef __NetBSD__
2002-10-24 06:33:46 +02:00
#include "c.h"
#include <sys/stat.h>
/*
* On NetBSD, off_t and fpos_t are the same. Standards
2002-10-24 05:11:05 +02:00
* say off_t is an arithmetic type, but not necessarily integral,
* while fpos_t might be neither.
*/
int
fseeko(FILE *stream, off_t offset, int whence)
{
2003-08-04 02:43:34 +02:00
off_t floc;
struct stat filestat;
switch (whence)
{
case SEEK_CUR:
if (fgetpos(stream, &floc) != 0)
2002-10-23 23:39:27 +02:00
goto failure;
floc += offset;
if (fsetpos(stream, &floc) != 0)
2002-10-23 23:39:27 +02:00
goto failure;
return 0;
break;
case SEEK_SET:
if (fsetpos(stream, &offset) != 0)
return -1;
return 0;
break;
case SEEK_END:
2004-08-29 07:07:03 +02:00
fflush(stream); /* force writes to fd for stat() */
if (fstat(fileno(stream), &filestat) != 0)
2002-10-23 23:39:27 +02:00
goto failure;
floc = filestat.st_size;
floc += offset;
if (fsetpos(stream, &floc) != 0)
2002-10-23 23:39:27 +02:00
goto failure;
return 0;
break;
default:
2003-08-04 02:43:34 +02:00
errno = EINVAL;
return -1;
}
2002-10-23 23:39:27 +02:00
failure:
return -1;
}
off_t
ftello(FILE *stream)
{
2003-08-04 02:43:34 +02:00
off_t floc;
if (fgetpos(stream, &floc) != 0)
return -1;
return floc;
}
2003-08-04 02:43:34 +02:00
#endif