aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/world.c27
-rw-r--r--src/world.h3
2 files changed, 28 insertions, 2 deletions
diff --git a/src/world.c b/src/world.c
index e14a04c9..4413f433 100644
--- a/src/world.c
+++ b/src/world.c
@@ -16,6 +16,7 @@
#include "world.h"
+#include "node.h"
#include "serd_config.h"
#include "system.h"
@@ -27,6 +28,9 @@
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
+
+#define BLANK_CHARS 12
FILE*
serd_world_fopen(SerdWorld* world, const char* path, const char* mode)
@@ -81,13 +85,32 @@ serd_world_errorf(const SerdWorld* const world,
SerdWorld*
serd_world_new(void)
{
- return (SerdWorld*)calloc(1, sizeof(SerdWorld));
+ SerdWorld* world = (SerdWorld*)calloc(1, sizeof(SerdWorld));
+
+ world->blank_node = serd_new_blank(SERD_STRING("b00000000000"));
+
+ return world;
}
void
serd_world_free(SerdWorld* const world)
{
- free(world);
+ if (world) {
+ serd_node_free(world->blank_node);
+ free(world);
+ }
+}
+
+const SerdNode*
+serd_world_get_blank(SerdWorld* const world)
+{
+ char* buf = serd_node_buffer(world->blank_node);
+ memset(buf, 0, BLANK_CHARS + 1);
+
+ world->blank_node->length =
+ (size_t)snprintf(buf, BLANK_CHARS + 1, "b%u", ++world->next_blank_id);
+
+ return world->blank_node;
}
void
diff --git a/src/world.h b/src/world.h
index ab7aad80..99f0c92d 100644
--- a/src/world.h
+++ b/src/world.h
@@ -19,11 +19,14 @@
#include "serd/serd.h"
+#include <stdint.h>
#include <stdio.h>
struct SerdWorldImpl {
SerdErrorFunc error_func;
void* error_handle;
+ uint32_t next_blank_id;
+ SerdNode* blank_node;
};
/// Open a file configured for fast sequential reading