summaryrefslogtreecommitdiff
path: root/src/stdio/__underflow.c
blob: b769f4e4133e6191a9977946b967abf123dee8e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "stdio_impl.h"

int __underflow(FILE *f)
{
	ssize_t cnt;

	/* Read from buffer (Do we ever get called when this is true??) */
	if (f->rpos < f->rstop) return *f->rpos;

	/* Initialize if we're not already reading */
	if (!f->rstop) {
		/* Fail immediately if unreadable, eof, or error state. */
		if (f->flags & (F_EOF|F_ERR|F_NORD)) return EOF;

		/* Set byte orientation -1,0=>-1; 1=>1 */
		f->mode |= f->mode-1;

		/* Flush any unwritten output; fail on error. */
		if (f->wpos > f->buf && __oflow(f)) return EOF;

		/* Disallow writes to buffer. */
		f->wstop = 0;
	}

	/* Perform the underlying read operation */
	if ((cnt=f->read(f, f->buf, f->buf_size)) + 1 <= 1) {
		/* Set flags and leave read mode */
		f->flags |= F_EOF | (cnt & F_ERR);
		f->rpos = f->rend = f->rstop = 0;
		return EOF;
	}

	/* Setup buffer pointers for reading from buffer */
	f->rpos = f->buf;
	f->rend = f->rstop = f->buf + cnt;

	return *f->rpos;
}