From d94fa6a5e5599a7dcfda89bc582df36a0cd7f42e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 26 Dec 2018 14:21:37 -0500 Subject: Expose the node cache in the world --- serd/serd.h | 11 +++++++++++ src/world.c | 6 ++++++ 2 files changed, 17 insertions(+) diff --git a/serd/serd.h b/serd/serd.h index e6fc5e86..fa63e0de 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -913,6 +913,17 @@ SERD_API void serd_world_free(SerdWorld* world); +/** + Return the nodes cache in `world`. + + The returned cache is owned by the world and contains various nodes used + frequently by the implementation. For convenience, it may be used to store + additional nodes which will be freed when the world is freed. +*/ +SERD_API +SerdNodes* +serd_world_get_nodes(SerdWorld* world); + /** Return a unique blank node. diff --git a/src/world.c b/src/world.c index 7b8ea5b7..16e89566 100644 --- a/src/world.c +++ b/src/world.c @@ -109,6 +109,12 @@ serd_world_free(SerdWorld* world) free(world); } +SerdNodes* +serd_world_get_nodes(SerdWorld* world) +{ + return world->nodes; +} + const SerdNode* serd_world_get_blank(SerdWorld* world) { -- cgit v1.2.1