]> pd.if.org Git - pdclib/blob - functions/stdio/fopen.c
4cce8fa891f51aa9254522b9addcefdbd87ddda5
[pdclib] / functions / stdio / fopen.c
1 /* fopen( const char *, const char * )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9
10 #ifndef REGTEST
11 #include <_PDCLIB_io.h>
12 #include <_PDCLIB_glue.h>
13 #include <string.h>
14 #include <errno.h>
15
16 extern FILE * _PDCLIB_filelist;
17
18 FILE * fopen( const char * _PDCLIB_restrict filename, 
19               const char * _PDCLIB_restrict mode )
20 {
21     int imode = _PDCLIB_filemode( mode );
22     
23     if( imode == 0 || filename == NULL )
24         return NULL;
25
26     _PDCLIB_fd_t              fd;
27     const _PDCLIB_fileops_t * ops;
28     if(!_PDCLIB_open( &fd, &ops, filename, imode )) {
29         return NULL;
30     }
31
32     FILE * f = _PDCLIB_fvopen( fd, ops, imode, filename );
33     if(!f) {
34         int saveErrno = errno;
35         ops->close(fd);
36         errno = saveErrno;
37     }
38     return f;
39 }
40
41 #endif
42
43 #ifdef TEST
44 #include <_PDCLIB_test.h>
45
46 int main( void )
47 {
48     /* Some of the tests are not executed for regression tests, as the libc on
49        my system is at once less forgiving (segfaults on mode NULL) and more
50        forgiving (accepts undefined modes).
51     */
52     FILE * fh;
53     remove( testfile );
54     TESTCASE_NOREG( fopen( NULL, NULL ) == NULL );
55     TESTCASE( fopen( NULL, "w" ) == NULL );
56     TESTCASE_NOREG( fopen( "", NULL ) == NULL );
57     TESTCASE( fopen( "", "w" ) == NULL );
58     TESTCASE( fopen( "foo", "" ) == NULL );
59     TESTCASE_NOREG( fopen( testfile, "wq" ) == NULL ); /* Undefined mode */
60     TESTCASE_NOREG( fopen( testfile, "wr" ) == NULL ); /* Undefined mode */
61     TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL );
62     TESTCASE( fclose( fh ) == 0 );
63     TESTCASE( remove( testfile ) == 0 );
64     return TEST_RESULTS;
65 }
66
67 #endif