aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-12-26 19:25:51 -0500
committerDavid Robillard <d@drobilla.net>2019-12-19 20:52:34 -0500
commite61d7f710465ca8c87274d9664afeb0b125597a4 (patch)
treee90661112ed48f7e0e44932b21f59c2c148f1e25 /src/world.c
parent5522f5ff705374d8d7bba3d21a05674640967c3e (diff)
downloadserd-e61d7f710465ca8c87274d9664afeb0b125597a4.tar.gz
serd-e61d7f710465ca8c87274d9664afeb0b125597a4.tar.bz2
serd-e61d7f710465ca8c87274d9664afeb0b125597a4.zip
Hide fopen wrapper and use reader interface consistently
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/world.c b/src/world.c
index 0210760d..7ec483e8 100644
--- a/src/world.c
+++ b/src/world.c
@@ -14,12 +14,35 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#define _POSIX_C_SOURCE 200809L /* for posix_fadvise */
+
#include "serd_internal.h"
+#include "serd_config.h"
#include <stdarg.h>
+#include <stdio.h>
+#if defined(HAVE_POSIX_FADVISE)
+# include <fcntl.h>
+#endif
#include "world.h"
+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(HAVE_POSIX_FADVISE) && defined(HAVE_FILENO)
+ posix_fadvise(fileno(fd), 0, 0, POSIX_FADV_SEQUENTIAL);
+#endif
+ return fd;
+}
+
SerdStatus
serd_world_error(const SerdWorld* world, const SerdError* e)
{