// Copyright 2011-2022 David Robillard // SPDX-License-Identifier: ISC #ifndef SERD_WORLD_H #define SERD_WORLD_H #include "serd/attributes.h" #include "serd/error.h" #include "serd/node.h" #include "serd/status.h" #include "zix/allocator.h" #include "zix/attributes.h" #include SERD_BEGIN_DECLS /** @defgroup serd_world World @ingroup serd_library @{ */ /// Global library state typedef struct SerdWorldImpl SerdWorld; /// Resource limits to control allocation typedef struct { size_t reader_stack_size; size_t writer_max_depth; } SerdLimits; /** Create a new Serd World. It is safe to use multiple worlds in one process, though no objects can be shared between worlds. */ SERD_MALLOC_API SerdWorld* ZIX_ALLOCATED serd_world_new(void); /// Free `world` SERD_API void serd_world_free(SerdWorld* ZIX_NULLABLE world); /** Return the current resource limits. These determine how much memory is allocated for reading and writing (where the required stack space depends on the input data. The defaults use about a megabyte and over 100 levels of nesting, which is more than enough for most data. */ SERD_PURE_API SerdLimits serd_world_limits(const SerdWorld* ZIX_NONNULL world); /** Set the current resource limits. This updates the "current" limits, that is, those that will be used after this call. It can be used to configure allocation sizes before calling some other function like serd_reader_new() that uses the current limits. */ SERD_API SerdStatus serd_world_set_limits(SerdWorld* ZIX_NONNULL world, SerdLimits limits); /** Return a unique blank node. The returned node is valid only until the next time serd_world_get_blank() is called or the world is destroyed. */ SERD_API const SerdNode* ZIX_NONNULL serd_world_get_blank(SerdWorld* ZIX_NONNULL world); /** Set a function to be called when errors occur. The `error_func` will be called with `handle` as its first argument. If no error function is set, errors are printed to stderr. */ SERD_API void serd_world_set_error_func(SerdWorld* ZIX_NONNULL world, SerdErrorFunc ZIX_NULLABLE error_func, void* ZIX_NULLABLE handle); /** @} */ SERD_END_DECLS #endif // SERD_WORLD_H