aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-04-29 15:24:05 +0200
committerDavid Robillard <d@drobilla.net>2018-11-25 15:58:21 +0100
commitbcf32f9b340083c97dc2c2b144b971bb1de06a23 (patch)
tree9f9726c0e6bae3dc50fba8c0be0c3fbd9876444f /src/writer.c
parentf2a19949d0da60465e2d68b5e66a52e0d970ebd1 (diff)
downloadserd-bcf32f9b340083c97dc2c2b144b971bb1de06a23.tar.gz
serd-bcf32f9b340083c97dc2c2b144b971bb1de06a23.tar.bz2
serd-bcf32f9b340083c97dc2c2b144b971bb1de06a23.zip
Add SerdWorld for shared library state
Diffstat (limited to 'src/writer.c')
-rw-r--r--src/writer.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/writer.c b/src/writer.c
index e817c023..3d9f63ad 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -89,6 +89,7 @@ static const SepRule rules[] = {
};
struct SerdWriterImpl {
+ SerdWorld* world;
SerdSink iface;
SerdSyntax syntax;
SerdStyle style;
@@ -144,7 +145,7 @@ w_err(SerdWriter* writer, SerdStatus st, const char* fmt, ...)
va_list args;
va_start(args, fmt);
const SerdError e = { st, NULL, 0, 0, fmt, &args };
- serd_error(writer->error_sink, writer->error_handle, &e);
+ serd_error(writer->world, &e);
va_end(args);
}
@@ -873,7 +874,8 @@ serd_writer_finish(SerdWriter* writer)
}
SerdWriter*
-serd_writer_new(SerdSyntax syntax,
+serd_writer_new(SerdWorld* world,
+ SerdSyntax syntax,
SerdStyle style,
SerdEnv* env,
const SerdURI* base_uri,
@@ -882,6 +884,7 @@ serd_writer_new(SerdSyntax syntax,
{
const WriteContext context = WRITE_CONTEXT_NULL;
SerdWriter* writer = (SerdWriter*)calloc(1, sizeof(SerdWriter));
+ writer->world = world;
writer->syntax = syntax;
writer->style = style;
writer->env = env;
@@ -905,15 +908,6 @@ serd_writer_new(SerdSyntax syntax,
}
void
-serd_writer_set_error_sink(SerdWriter* writer,
- SerdErrorSink error_sink,
- void* error_handle)
-{
- writer->error_sink = error_sink;
- writer->error_handle = error_handle;
-}
-
-void
serd_writer_chop_blank_prefix(SerdWriter* writer,
const char* prefix)
{