aboutsummaryrefslogtreecommitdiffstats
path: root/serd
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-12 20:39:23 +0200
committerDavid Robillard <d@drobilla.net>2019-12-19 20:52:40 -0500
commitb6368f061770629493391da74b9dbf3b5777c07d (patch)
tree666a8e686032d3684b3b0fdd8a7515ea13fc389d /serd
parentd7c7506a6f4af1918ba06d7730568b7858c11539 (diff)
downloadserd-b6368f061770629493391da74b9dbf3b5777c07d.tar.gz
serd-b6368f061770629493391da74b9dbf3b5777c07d.tar.bz2
serd-b6368f061770629493391da74b9dbf3b5777c07d.zip
Use a fixed-size reader stack
This improves performance, and makes the reader more suitable for embedded or network-facing applications, at the cost of requiring the user to specify a maximum stack size.
Diffstat (limited to 'serd')
-rw-r--r--serd/serd.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/serd/serd.h b/serd/serd.h
index 9bbe6812..7de0de2c 100644
--- a/serd/serd.h
+++ b/serd/serd.h
@@ -99,7 +99,8 @@ typedef enum {
SERD_ERR_NOT_FOUND, /**< Not found */
SERD_ERR_ID_CLASH, /**< Encountered clashing blank node IDs */
SERD_ERR_BAD_CURIE, /**< Invalid CURIE (e.g. prefix does not exist) */
- SERD_ERR_INTERNAL /**< Unexpected internal error (should not happen) */
+ SERD_ERR_INTERNAL, /**< Unexpected internal error (should not happen) */
+ SERD_ERR_OVERFLOW /**< Stack overflow */
} SerdStatus;
/**
@@ -904,7 +905,10 @@ serd_env_foreach(const SerdEnv* env,
*/
SERD_API
SerdReader*
-serd_reader_new(SerdWorld* world, SerdSyntax syntax, const SerdSink* sink);
+serd_reader_new(SerdWorld* world,
+ SerdSyntax syntax,
+ const SerdSink* sink,
+ size_t stack_size);
/**
Enable or disable strict parsing.