aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-07-08 18:46:38 +0200
committerDavid Robillard <d@drobilla.net>2019-04-13 19:15:32 +0200
commit9aa551a5bada683db9272937ab73ae43882cb978 (patch)
treee17ee753336b1b715bc3bfedbadc74f121cc32f1 /src/writer.c
parent52a0e3cc05f0e865bd2652f5c956a853fb86dc0c (diff)
downloadserd-9aa551a5bada683db9272937ab73ae43882cb978.tar.gz
serd-9aa551a5bada683db9272937ab73ae43882cb978.tar.bz2
serd-9aa551a5bada683db9272937ab73ae43882cb978.zip
Expose SerdByteSink in public API
Diffstat (limited to 'src/writer.c')
-rw-r--r--src/writer.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/writer.c b/src/writer.c
index 17b11008..4af3adf4 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -14,7 +14,6 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include "byte_sink.h"
#include "env.h"
#include "node.h"
#include "serd_internal.h"
@@ -96,7 +95,7 @@ struct SerdWriterImpl {
SerdNode* root_node;
SerdURI root_uri;
SerdStack anon_stack;
- SerdByteSink byte_sink;
+ SerdByteSink* byte_sink;
SerdErrorSink error_sink;
void* error_handle;
WriteContext context;
@@ -161,7 +160,7 @@ ctx(SerdWriter* writer, const SerdField field)
static inline size_t
sink(const void* buf, size_t len, SerdWriter* writer)
{
- return serd_byte_sink_write(buf, len, &writer->byte_sink);
+ return serd_byte_sink_write(buf, 1, len, writer->byte_sink);
}
// Write a single character, as an escape for single byte characters
@@ -857,7 +856,7 @@ serd_writer_finish(SerdWriter* writer)
if (ctx(writer, SERD_GRAPH)) {
write_sep(writer, SEP_GRAPH_END);
}
- serd_byte_sink_flush(&writer->byte_sink);
+ serd_byte_sink_flush(writer->byte_sink);
free_context(writer);
writer->indent = 0;
writer->context = WRITE_CONTEXT_NULL;
@@ -975,7 +974,7 @@ serd_writer_free(SerdWriter* writer)
serd_writer_finish(writer);
serd_stack_free(&writer->anon_stack);
free(writer->bprefix);
- serd_byte_sink_free(&writer->byte_sink);
+ serd_byte_sink_free(writer->byte_sink);
serd_node_free(writer->root_node);
free(writer);
}