From fd276bcf70bad4520ca1d6f3c73f88073b3b58cf Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 13 Nov 2020 10:52:56 +0100 Subject: Move fopen wrapper to world --- src/reader.c | 4 ++-- src/system.c | 24 +----------------------- src/system.h | 4 ---- src/world.c | 28 ++++++++++++++++++++++++++++ src/world.h | 6 ++++++ 5 files changed, 37 insertions(+), 29 deletions(-) (limited to 'src') diff --git a/src/reader.c b/src/reader.c index cfc43685..3be28a53 100644 --- a/src/reader.c +++ b/src/reader.c @@ -15,9 +15,9 @@ */ #include "reader.h" + #include "byte_source.h" #include "serd_internal.h" -#include "stack.h" #include "system.h" #include "world.h" @@ -260,7 +260,7 @@ serd_reader_start_file(SerdReader* reader, const char* uri, bool bulk) return SERD_ERR_BAD_ARG; } - FILE* fd = serd_fopen(path, "rb"); + FILE* fd = serd_world_fopen(reader->world, path, "rb"); free(path); if (!fd) { return SERD_ERR_UNKNOWN; diff --git a/src/system.c b/src/system.c index 6bc93ca6..4f6c37c6 100644 --- a/src/system.c +++ b/src/system.c @@ -14,41 +14,19 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define _POSIX_C_SOURCE 200809L /* for posix_memalign and posix_fadvise */ +#define _POSIX_C_SOURCE 200809L /* for posix_memalign */ #include "system.h" #include "serd_config.h" #include "serd_internal.h" -#if USE_POSIX_FADVISE && USE_FILENO -# include -#endif - #ifdef _WIN32 # include #endif -#include #include #include -#include - -FILE* -serd_fopen(const char* path, const char* mode) -{ - FILE* fd = fopen(path, mode); - if (!fd) { - fprintf( - stderr, "error: failed to open file %s (%s)\n", path, strerror(errno)); - return NULL; - } - -#if USE_POSIX_FADVISE && USE_FILENO - posix_fadvise(fileno(fd), 0, 0, POSIX_FADV_SEQUENTIAL); -#endif - return fd; -} void* serd_malloc_aligned(const size_t alignment, const size_t size) diff --git a/src/system.h b/src/system.h index 66546d6e..a5fb7459 100644 --- a/src/system.h +++ b/src/system.h @@ -22,10 +22,6 @@ #include #include -/// Open a file configured for fast sequential reading -FILE* -serd_fopen(const char* path, const char* mode); - /// Allocate a buffer aligned to `alignment` bytes SERD_I_MALLOC_FUNC void* diff --git a/src/world.c b/src/world.c index f74513da..73bc9927 100644 --- a/src/world.c +++ b/src/world.c @@ -14,11 +14,39 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#define _POSIX_C_SOURCE 200809L /* for posix_fadvise */ + #include "world.h" +#include "serd_config.h" + +#if defined(USE_POSIX_FADVISE) +# include +#endif + +#include #include #include #include +#include + +FILE* +serd_world_fopen(SerdWorld* world, const char* path, const char* mode) +{ + FILE* fd = fopen(path, mode); + if (!fd) { + serd_world_errorf(world, + SERD_ERR_INTERNAL, + "failed to open file %s (%s)\n", + path, + strerror(errno)); + return NULL; + } +#if defined(USE_POSIX_FADVISE) && defined(USE_FILENO) + posix_fadvise(fileno(fd), 0, 0, POSIX_FADV_SEQUENTIAL); +#endif + return fd; +} SerdStatus serd_world_error(const SerdWorld* world, const SerdError* e) diff --git a/src/world.h b/src/world.h index 08c351fe..ab7aad80 100644 --- a/src/world.h +++ b/src/world.h @@ -19,11 +19,17 @@ #include "serd/serd.h" +#include + struct SerdWorldImpl { SerdErrorFunc error_func; void* error_handle; }; +/// Open a file configured for fast sequential reading +FILE* +serd_world_fopen(SerdWorld* world, const char* path, const char* mode); + SerdStatus serd_world_error(const SerdWorld* world, const SerdError* e); -- cgit v1.2.1