From fc2114a10769349d38b3215bc95ded855a2be5b6 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 9 Aug 2021 18:28:35 -0400 Subject: [WIP] Preserve anonymous graph syntax in TriG [WIP] Untested --- src/read_trig.c | 1 + src/writer.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/read_trig.c b/src/read_trig.c index d710eaeb..e3d7a7e9 100644 --- a/src/read_trig.c +++ b/src/read_trig.c @@ -128,6 +128,7 @@ read_block(SerdReader* const reader, ReadContext* const ctx) } ctx->graph = token; + (*ctx->flags) |= (s_type == '[' ? SERD_EMPTY_G : 0U); return read_wrappedGraph(reader, ctx); } diff --git a/src/writer.c b/src/writer.c index 372e4279..940b22a0 100644 --- a/src/writer.c +++ b/src/writer.c @@ -923,7 +923,8 @@ write_blank(SerdWriter* const writer, } if ((field == SERD_SUBJECT && (flags & SERD_EMPTY_S)) || - (field == SERD_OBJECT && (flags & SERD_EMPTY_O))) { + (field == SERD_OBJECT && (flags & SERD_EMPTY_O)) || + (field == SERD_GRAPH && (flags & SERD_EMPTY_G))) { return esink("[]", 2, writer); } } -- cgit v1.2.1