X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=48c07d2b3ff41d6c2244461bc417832546063161;hb=393020b6e48719d27699dea6b29e53025bbd5123;hp=f11094416066ed91a9f6bb6d358b4dcebea981c9;hpb=9ee0e8c5b5df0b114218e28753e6c0291cb356a3;p=pdclib diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index f110944..48c07d2 100644 --- a/functions/stdio/fopen.c +++ b/functions/stdio/fopen.c @@ -12,81 +12,59 @@ #ifndef REGTEST #include <_PDCLIB_glue.h> -static FILE * _PDCLIB_filelist = NULL; +extern struct _PDCLIB_file_t * _PDCLIB_filelist; -/* Helper function that parses the C-style mode string passed to fopen() into - the PDCLib flags.FREAD, FWRITE, FAPPEND, FRW (read-write) and FBIN ( - mode). -*/ -static unsigned int filemode( char const * const mode ) -{ - int rc = 0; - switch ( mode[0] ) - { - case 'r': - rc |= _PDCLIB_FREAD; - break; - case 'w': - rc |= _PDCLIB_FWRITE; - break; - case 'a': - rc |= _PDCLIB_FAPPEND; - break; - default: - /* Other than read, write, or append - invalid */ - return 0; - } - for ( size_t i = 1; i < 4; ++i ) - { - switch ( mode[1] ) - { - case '+': - if ( rc & _PDCLIB_FRW ) return 0; /* Duplicates are invalid */ - rc |= _PDCLIB_FRW; - break; - case 'b': - if ( rc & _PDCLIB_FBIN ) return 0; /* Duplicates are invalid */ - rc |= _PDCLIB_FBIN; - break; - case '\0': - /* End of mode */ - return rc; - default: - /* Other than read/write or binary - invalid. */ - return 0; - } - } - /* Longer than three chars - invalid. */ - return 0; -} - -FILE * fopen( const char * _PDCLIB_restrict filename, const char * _PDCLIB_restrict mode ) +struct _PDCLIB_file_t * fopen( const char * _PDCLIB_restrict filename, const char * _PDCLIB_restrict mode ) { - FILE * rc; + struct _PDCLIB_file_t * rc; if ( mode == NULL || filename == NULL || filename[0] == '\0' ) { /* Mode or filename invalid */ return NULL; } - if ( ( rc = calloc( 1, sizeof( FILE ) ) ) == NULL ) + if ( ( rc = calloc( 1, sizeof( struct _PDCLIB_file_t ) ) ) == NULL ) { /* no memory for another FILE */ return NULL; } - if ( ( rc->status = filemode( mode ) ) == 0 ) goto fail; /* invalid mode */ + if ( ( rc->status = _PDCLIB_filemode( mode ) ) == 0 ) + { + /* invalid mode */ + free( rc ); + return NULL; + } rc->handle = _PDCLIB_open( filename, rc->status ); - if ( rc->handle == _PDCLIB_NOHANDLE ) goto fail; /* OS open() failed */ - + if ( rc->handle == _PDCLIB_NOHANDLE ) + { + /* OS open() failed */ + free( rc ); + return NULL; + } /* Adding to list of open files */ rc->next = _PDCLIB_filelist; _PDCLIB_filelist = rc; - /* Setting buffer. TODO: Check for unbuffered? */ - if ( ( rc->buffer = malloc( BUFSIZ ) ) == NULL goto fail; + /* Setting buffer, and mark as internal. TODO: Check for unbuffered */ + if ( ( rc->buffer = malloc( BUFSIZ ) ) == NULL ) + { + free( rc ); + return NULL; + } + if ( ( rc->ungetbuf = malloc( _PDCLIB_UNGETCBUFSIZE ) ) == NULL ) + { + free( rc->buffer ); + free( rc ); + return NULL; + } + rc->bufsize = BUFSIZ; + rc->bufidx = 0; + rc->ungetidx = 0; + /* Setting buffer to _IOLBF because "when opened, a stream is fully + buffered if and only if it can be determined not to refer to an + interactive device." + */ + rc->status |= _PDCLIB_LIBBUFFER | _IOLBF; /* TODO: Setting mbstate */ return rc; -fail: - free( rc ); - return NULL; } #endif @@ -96,7 +74,20 @@ fail: int main( void ) { - TESTCASE( NO_TESTDRIVER ); + /* Some of the tests are not executed for regression tests, as the libc on + my system is at once less forgiving (segfaults on mode NULL) and more + forgiving (accepts undefined modes). + */ + remove( "testfile" ); + TESTCASE_NOREG( fopen( NULL, NULL ) == NULL ); + TESTCASE( fopen( NULL, "w" ) == NULL ); + TESTCASE_NOREG( fopen( "", NULL ) == NULL ); + TESTCASE( fopen( "", "w" ) == NULL ); + TESTCASE( fopen( "foo", "" ) == NULL ); + TESTCASE_NOREG( fopen( "testfile", "wq" ) == NULL ); /* Undefined mode */ + TESTCASE_NOREG( fopen( "testfile", "wr" ) == NULL ); /* Undefined mode */ + TESTCASE( fopen( "testfile", "w" ) != NULL ); + remove( "testfile" ); return TEST_RESULTS; }