From 744a0946735fe975db9625e9ff598b7201293f80 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 21 Oct 2018 20:57:33 +0200 Subject: Simplify streaming API and improve pretty printing This removes the obligation from the caller to correctly maintain flags to describe the current anonymous context, instead making the writer handle this itself as much as possible. Flags remain for the cases the writer can not infer from context: the start of anonymous subject and object nodes. --- include/serd/serd.h | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'include/serd') diff --git a/include/serd/serd.h b/include/serd/serd.h index 7b279517..3d06c4a0 100644 --- a/include/serd/serd.h +++ b/include/serd/serd.h @@ -132,14 +132,11 @@ typedef enum { /// Flags indicating inline abbreviation information for a statement typedef enum { - SERD_EMPTY_S = 1u << 1u, ///< Empty blank node subject - SERD_EMPTY_O = 1u << 2u, ///< Empty blank node object - SERD_ANON_S_BEGIN = 1u << 3u, ///< Start of anonymous subject - SERD_ANON_O_BEGIN = 1u << 4u, ///< Start of anonymous object - SERD_ANON_CONT = 1u << 5u, ///< Continuation of anonymous node - SERD_LIST_S_BEGIN = 1u << 6u, ///< Start of list subject - SERD_LIST_O_BEGIN = 1u << 7u, ///< Start of list object - SERD_LIST_CONT = 1u << 8u ///< Continuation of list + SERD_EMPTY_S = 1u << 0u, ///< Empty blank node subject + SERD_ANON_S_BEGIN = 1u << 1u, ///< Start of anonymous subject + SERD_ANON_O_BEGIN = 1u << 2u, ///< Start of anonymous object + SERD_LIST_S_BEGIN = 1u << 3u, ///< Start of list subject + SERD_LIST_O_BEGIN = 1u << 4u, ///< Start of list object } SerdStatementFlag; /// Bitwise OR of SerdStatementFlag values -- cgit v1.2.1