aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-10 20:14:24 +0200
committerDavid Robillard <d@drobilla.net>2019-12-19 20:52:31 -0500
commite9e850f798885c528ef9413fd8d12dd0ef9e06c1 (patch)
treeca53b045b92f58981c6e7352c883e8b1d4b93c5c /src/world.c
parent5e2a5940e17f498f4cbec37ee7380a42f511c82a (diff)
downloadserd-e9e850f798885c528ef9413fd8d12dd0ef9e06c1.tar.gz
serd-e9e850f798885c528ef9413fd8d12dd0ef9e06c1.tar.bz2
serd-e9e850f798885c528ef9413fd8d12dd0ef9e06c1.zip
Move error handling to world
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/world.c b/src/world.c
index 07439137..0210760d 100644
--- a/src/world.c
+++ b/src/world.c
@@ -16,8 +16,33 @@
#include "serd_internal.h"
+#include <stdarg.h>
+
#include "world.h"
+SerdStatus
+serd_world_error(const SerdWorld* world, const SerdError* e)
+{
+ if (world->error_sink) {
+ world->error_sink(world->error_handle, e);
+ } else {
+ fprintf(stderr, "error: %s:%u:%u: ", e->filename, e->line, e->col);
+ vfprintf(stderr, e->fmt, *e->args);
+ }
+ return e->status;
+}
+
+SerdStatus
+serd_world_errorf(const SerdWorld* world, SerdStatus st, const char* fmt, ...)
+{
+ va_list args;
+ va_start(args, fmt);
+ const SerdError e = { st, NULL, 0, 0, fmt, &args };
+ serd_world_error(world, &e);
+ va_end(args);
+ return st;
+}
+
SerdWorld*
serd_world_new(void)
{