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>2019-04-13 19:15:32 +0200
commit63edb5d1665e7b7a9a4750c063d27a8ae7d75a77 (patch)
tree77867d26bffa81fa64f8c6b97798134b0327b4e9 /src/writer.c
parent6938e50cc21b5acdfbf526e221ac4823f17dba3a (diff)
downloadserd-63edb5d1665e7b7a9a4750c063d27a8ae7d75a77.tar.gz
serd-63edb5d1665e7b7a9a4750c063d27a8ae7d75a77.tar.bz2
serd-63edb5d1665e7b7a9a4750c063d27a8ae7d75a77.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 b58260a1..692139a6 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -685,13 +685,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;