aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-06-03 19:47:07 +0200
committerDavid Robillard <d@drobilla.net>2018-12-31 11:37:47 -0500
commit6413746068d35e8e88111f930cbaadc56e2cf0cf (patch)
treeac2fdc094ed1e0409a5b2fdcdda3ec4034a3ab14 /src/writer.c
parent39fabf4d292f674f4d669b98e446e66d8ef11aa0 (diff)
downloadserd-6413746068d35e8e88111f930cbaadc56e2cf0cf.tar.gz
serd-6413746068d35e8e88111f930cbaadc56e2cf0cf.tar.bz2
serd-6413746068d35e8e88111f930cbaadc56e2cf0cf.zip
Make statement sink take a statement rather than nodes
This makes the interface more extensible, towards associating more information with statements. The serd_sink_write_nodes wrapper remains so that user code does not need to allocate in order to write statement.
Diffstat (limited to 'src/writer.c')
-rw-r--r--src/writer.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/writer.c b/src/writer.c
index 3f39a6c9..3480b746 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -684,13 +684,15 @@ write_list_obj(SerdWriter* writer,
}
static SerdStatus
-serd_writer_write_statement(SerdWriter* writer,
- SerdStatementFlags flags,
- const SerdNode* graph,
- const SerdNode* subject,
- const SerdNode* predicate,
- const SerdNode* object)
+serd_writer_write_statement(SerdWriter* writer,
+ SerdStatementFlags flags,
+ const SerdStatement* statement)
{
+ const SerdNode* const subject = serd_statement_get_subject(statement);
+ const SerdNode* const predicate = serd_statement_get_predicate(statement);
+ const SerdNode* const object = serd_statement_get_object(statement);
+ const SerdNode* const graph = serd_statement_get_graph(statement);
+
if (!subject || !predicate || !object ||
!is_resource(subject) || !is_resource(predicate)) {
return SERD_ERR_BAD_ARG;