aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-03-16 16:54:49 -0400
committerDavid Robillard <d@drobilla.net>2018-12-30 17:56:22 -0500
commitcedc9530cee8518f92d949984d173be1e707e31e (patch)
tree71ef784f07a444789a5074d075f33339128b998d
parent65efdce71c3f77286a9416dc81b6041c51584b77 (diff)
downloadserd-cedc9530cee8518f92d949984d173be1e707e31e.tar.gz
serd-cedc9530cee8518f92d949984d173be1e707e31e.tar.bz2
serd-cedc9530cee8518f92d949984d173be1e707e31e.zip
Rename SerdChunk to SerdSlice
-rw-r--r--serd/serd.h26
-rw-r--r--src/env.c10
-rw-r--r--src/serd_internal.h6
-rw-r--r--src/uri.c2
-rw-r--r--src/writer.c6
-rw-r--r--tests/serd_test.c2
6 files changed, 26 insertions, 26 deletions
diff --git a/serd/serd.h b/serd/serd.h
index db15cfc8..3895f93d 100644
--- a/serd/serd.h
+++ b/serd/serd.h
@@ -221,12 +221,12 @@ typedef struct {
} SerdNode;
/**
- An unterminated string fragment.
+ An unterminated immutable slice of a string.
*/
typedef struct {
const char* buf; /**< Start of chunk */
size_t len; /**< Length of chunk in bytes */
-} SerdChunk;
+} SerdSlice;
/**
A mutable buffer in memory.
@@ -251,17 +251,17 @@ typedef struct {
/**
A parsed URI.
- This struct directly refers to chunks in other strings, it does not own any
+ This struct directly refers to slices in other strings, it does not own any
memory itself. Thus, URIs can be parsed and/or resolved against a base URI
in-place without allocating memory.
*/
typedef struct {
- SerdChunk scheme; /**< Scheme */
- SerdChunk authority; /**< Authority */
- SerdChunk path_base; /**< Path prefix if relative */
- SerdChunk path; /**< Path suffix */
- SerdChunk query; /**< Query */
- SerdChunk fragment; /**< Fragment */
+ SerdSlice scheme; /**< Scheme */
+ SerdSlice authority; /**< Authority */
+ SerdSlice path_base; /**< Path prefix if relative */
+ SerdSlice path; /**< Path suffix */
+ SerdSlice query; /**< Query */
+ SerdSlice fragment; /**< Fragment */
} SerdURI;
/**
@@ -731,7 +731,7 @@ bool
serd_env_qualify(const SerdEnv* env,
const SerdNode* uri,
SerdNode* prefix,
- SerdChunk* suffix);
+ SerdSlice* suffix);
/**
Expand `curie`.
@@ -743,8 +743,8 @@ SERD_API
SerdStatus
serd_env_expand(const SerdEnv* env,
const SerdNode* curie,
- SerdChunk* uri_prefix,
- SerdChunk* uri_suffix);
+ SerdSlice* uri_prefix,
+ SerdSlice* uri_suffix);
/**
Expand `node`, which must be a CURIE or URI, to a full URI.
@@ -987,7 +987,7 @@ size_t
serd_buffer_sink(const void* buf, size_t len, void* stream);
/**
- Finish a serialisation to a chunk with serd_buffer_sink().
+ Finish a serialisation to a buffer with serd_buffer_sink().
The returned string is the result of the serialisation, which is NULL
terminated (by this function) and owned by the caller.
diff --git a/src/env.c b/src/env.c
index a27e342e..d0998d1b 100644
--- a/src/env.c
+++ b/src/env.c
@@ -158,7 +158,7 @@ bool
serd_env_qualify(const SerdEnv* env,
const SerdNode* uri,
SerdNode* prefix,
- SerdChunk* suffix)
+ SerdSlice* suffix)
{
for (size_t i = 0; i < env->n_prefixes; ++i) {
const SerdNode* const prefix_uri = &env->prefixes[i].uri;
@@ -179,8 +179,8 @@ serd_env_qualify(const SerdEnv* env,
SerdStatus
serd_env_expand(const SerdEnv* env,
const SerdNode* curie,
- SerdChunk* uri_prefix,
- SerdChunk* uri_suffix)
+ SerdSlice* uri_prefix,
+ SerdSlice* uri_suffix)
{
const char* const colon = (const char*)memchr(
curie->buf, ':', curie->n_bytes + 1);
@@ -206,8 +206,8 @@ serd_env_expand_node(const SerdEnv* env,
{
switch (node->type) {
case SERD_CURIE: {
- SerdChunk prefix;
- SerdChunk suffix;
+ SerdSlice prefix;
+ SerdSlice suffix;
if (serd_env_expand(env, node, &prefix, &suffix)) {
return SERD_NODE_NULL;
}
diff --git a/src/serd_internal.h b/src/serd_internal.h
index 3ffb9d4d..cccb321b 100644
--- a/src/serd_internal.h
+++ b/src/serd_internal.h
@@ -436,7 +436,7 @@ parse_utf8_char(const uint8_t* utf8, size_t* size)
/* URI utilities */
static inline bool
-chunk_equals(const SerdChunk* a, const SerdChunk* b)
+slice_equals(const SerdSlice* a, const SerdSlice* b)
{
return a->len == b->len
&& !strncmp((const char*)a->buf, (const char*)b->buf, a->len);
@@ -466,8 +466,8 @@ static inline size_t
uri_rooted_index(const SerdURI* uri, const SerdURI* root)
{
if (!root || !root->scheme.len ||
- !chunk_equals(&root->scheme, &uri->scheme) ||
- !chunk_equals(&root->authority, &uri->authority)) {
+ !slice_equals(&root->scheme, &uri->scheme) ||
+ !slice_equals(&root->authority, &uri->authority)) {
return 0;
}
diff --git a/src/uri.c b/src/uri.c
index 0dbbcb4f..a891c6df 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -280,7 +280,7 @@ remove_dot_segments(const char* path, size_t len, size_t* up)
/// Merge `base` and `path` in-place
static void
-merge(SerdChunk* base, SerdChunk* path)
+merge(SerdSlice* base, SerdSlice* path)
{
size_t up;
const char* begin = remove_dot_segments(path->buf, path->len, &up);
diff --git a/src/writer.c b/src/writer.c
index 3f198a93..242b42e3 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -481,7 +481,7 @@ write_uri_node(SerdWriter* const writer,
const SerdStatementFlags flags)
{
SerdNode prefix;
- SerdChunk suffix;
+ SerdSlice suffix;
if (is_inline_start(writer, field, flags)) {
++writer->indent;
@@ -538,8 +538,8 @@ write_curie(SerdWriter* const writer,
const Field field,
const SerdStatementFlags flags)
{
- SerdChunk prefix;
- SerdChunk suffix;
+ SerdSlice prefix;
+ SerdSlice suffix;
SerdStatus st;
switch (writer->syntax) {
case SERD_NTRIPLES:
diff --git a/tests/serd_test.c b/tests/serd_test.c
index ff864b96..d41bbfc1 100644
--- a/tests/serd_test.c
+++ b/tests/serd_test.c
@@ -363,7 +363,7 @@ main(void)
assert(serd_env_set_base_uri(env, &node));
assert(serd_node_equals(serd_env_get_base_uri(env, NULL), &node));
- SerdChunk prefix, suffix;
+ SerdSlice prefix, suffix;
assert(serd_env_expand(env, &b, &prefix, &suffix));
SerdNode xnode = serd_env_expand_node(env, &node);