]> pd.if.org Git - pdclib/blob - platform/example/functions/_PDCLIB/stdinit.c
Merged branch stdio_rewrite back into trunk.
[pdclib] / platform / example / functions / _PDCLIB / stdinit.c
1 /* $Id$ */
2
3 /* _PDCLIB_stdinit
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 /* This is an example initialization of stdin, stdout and stderr to the integer
10    file descriptors 0, 1, and 2, respectively. This applies for a great variety
11    of operating systems, including POSIX compliant ones.
12 */
13
14 #include <stdio.h>
15
16 #ifndef REGTEST
17
18 /* In a POSIX system, stdin / stdout / stderr are equivalent to the (int) file
19    descriptors 0, 1, and 2 respectively.
20 */
21 /* TODO: This is proof-of-concept, requires finetuning. */
22 static char _PDCLIB_sin_buffer[BUFSIZ];
23 static char _PDCLIB_sout_buffer[BUFSIZ];
24 static char _PDCLIB_serr_buffer[BUFSIZ];
25
26 static unsigned char _PDCLIB_sin_ungetbuf[_PDCLIB_UNGETCBUFSIZE];
27 static unsigned char _PDCLIB_sout_ungetbuf[_PDCLIB_UNGETCBUFSIZE];
28 static unsigned char _PDCLIB_serr_ungetbuf[_PDCLIB_UNGETCBUFSIZE];
29
30 /* FIXME: serr should handle one character. Buffering on out / in? */
31 static struct _PDCLIB_file_t _PDCLIB_serr = { 2, _PDCLIB_serr_buffer, BUFSIZ, 0, 0, { 0, 0 }, 0, _PDCLIB_serr_ungetbuf, _IONBF | _PDCLIB_FWRITE, NULL, NULL };
32 static struct _PDCLIB_file_t _PDCLIB_sout = { 1, _PDCLIB_sout_buffer, BUFSIZ, 0, 0, { 0, 0 }, 0, _PDCLIB_sout_ungetbuf, _IOLBF | _PDCLIB_FWRITE, NULL, &_PDCLIB_serr };
33 static struct _PDCLIB_file_t _PDCLIB_sin  = { 0, _PDCLIB_sin_buffer, BUFSIZ, 0, 0, { 0, 0 }, 0, _PDCLIB_sin_ungetbuf, _IOLBF | _PDCLIB_FREAD, NULL, &_PDCLIB_sout };
34
35 struct _PDCLIB_file_t * stdin  = &_PDCLIB_sin;
36 struct _PDCLIB_file_t * stdout = &_PDCLIB_sout;
37 struct _PDCLIB_file_t * stderr = &_PDCLIB_serr;
38
39 /* FIXME: This approach is a possible attack vector. */
40 struct _PDCLIB_file_t * _PDCLIB_filelist = &_PDCLIB_sin;
41
42 #endif
43
44 #ifdef TEST
45 #include <_PDCLIB_test.h>
46
47 int main( void )
48 {
49     /* Testing covered by several other testdrivers using stdin / stdout / 
50        stderr.
51     */
52     return TEST_RESULTS;
53 }
54
55 #endif