ack/lang/cem/libcc.ansi/sys/stdio/fillbuf.c

84 lines
1.4 KiB
C
Raw Normal View History

1989-05-30 13:34:25 +00:00
/*
* fillbuf.c - fill a buffer
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1989-05-30 13:34:25 +00:00
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include "loc_incl.h"
1989-05-30 13:34:25 +00:00
2018-06-23 16:54:40 +00:00
#if ACKCONF_WANT_STDIO
2018-06-21 20:33:47 +00:00
int __fillbuf(register FILE* stream)
1989-05-30 13:34:25 +00:00
{
static unsigned char ch[FOPEN_MAX];
register int i;
1989-05-30 13:34:25 +00:00
stream->_count = 0;
2018-06-21 20:33:47 +00:00
if (fileno(stream) < 0)
return EOF;
if (io_testflag(stream, _IOEOF))
return EOF;
if (!io_testflag(stream, _IOREAD))
{
stream->_flags |= _IOERR;
return EOF;
}
2018-06-21 20:33:47 +00:00
if (io_testflag(stream, _IOWRITING))
{
stream->_flags |= _IOERR;
return EOF;
}
1989-05-30 13:34:25 +00:00
1989-06-26 10:37:05 +00:00
if (!io_testflag(stream, _IOREADING))
stream->_flags |= _IOREADING;
2018-06-21 20:33:47 +00:00
if (!io_testflag(stream, _IONBF) && !stream->_buf)
{
stream->_buf = (unsigned char*)malloc(BUFSIZ);
if (!stream->_buf)
{
1989-05-30 13:34:25 +00:00
stream->_flags |= _IONBF;
}
2018-06-21 20:33:47 +00:00
else
{
1989-05-30 13:34:25 +00:00
stream->_flags |= _IOMYBUF;
stream->_bufsiz = BUFSIZ;
}
}
/* flush line-buffered output when filling an input buffer */
2018-06-21 20:33:47 +00:00
for (i = 0; i < FOPEN_MAX; i++)
{
if (__iotab[i] && io_testflag(__iotab[i], _IOLBF))
if (io_testflag(__iotab[i], _IOWRITING))
2018-06-21 20:33:47 +00:00
(void)fflush(__iotab[i]);
1989-12-18 15:04:14 +00:00
}
2018-06-21 20:33:47 +00:00
if (!stream->_buf)
{
1989-05-30 13:34:25 +00:00
stream->_buf = &ch[fileno(stream)];
stream->_bufsiz = 1;
}
stream->_ptr = stream->_buf;
2018-06-21 20:33:47 +00:00
stream->_count = read(stream->_fd, (char*)stream->_buf, stream->_bufsiz);
1989-05-30 13:34:25 +00:00
2018-06-21 20:33:47 +00:00
if (stream->_count <= 0)
{
if (stream->_count == 0)
{
1989-05-30 13:34:25 +00:00
stream->_flags |= _IOEOF;
}
2018-06-21 20:33:47 +00:00
else
1989-05-30 13:34:25 +00:00
stream->_flags |= _IOERR;
1989-06-26 10:37:05 +00:00
return EOF;
1989-05-30 13:34:25 +00:00
}
stream->_count--;
return *stream->_ptr++;
}
2018-06-23 16:54:40 +00:00
#endif