aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-02-24 15:49:21 -0500
committerDavid Robillard <d@drobilla.net>2022-01-13 15:33:54 -0500
commit0826bb1ac3fd669e1aad4062988edc4bdee4e1d9 (patch)
tree510ecfafbfe359b5cc5457cf7364208dd075be52
parent40588864972d1de767c669c8e5e9b50e652a459b (diff)
downloadserd-0826bb1ac3fd669e1aad4062988edc4bdee4e1d9.tar.gz
serd-0826bb1ac3fd669e1aad4062988edc4bdee4e1d9.tar.bz2
serd-0826bb1ac3fd669e1aad4062988edc4bdee4e1d9.zip
Add serd_node_uri_view()
-rw-r--r--include/serd/serd.h15
-rw-r--r--src/node.c12
2 files changed, 27 insertions, 0 deletions
diff --git a/include/serd/serd.h b/include/serd/serd.h
index acda6ae0..31b631b1 100644
--- a/include/serd/serd.h
+++ b/include/serd/serd.h
@@ -584,6 +584,21 @@ SERD_PURE_API
SerdStringView
serd_node_string_view(const SerdNode* SERD_NONNULL node);
+/**
+ Return a parsed view of the URI in a node.
+
+ It is best to check the node type before calling this function, though it is
+ safe to call on non-URI nodes. In that case, it will return a null view
+ with all fields zero.
+
+ Note that this parses the URI string contained in the node, so it is a good
+ idea to keep the value if you will be using it several times in the same
+ scope.
+*/
+SERD_API
+SerdURIView
+serd_node_uri_view(const SerdNode* SERD_NONNULL node);
+
/// Return the flags (string properties) of a node
SERD_PURE_API
SerdNodeFlags
diff --git a/src/node.c b/src/node.c
index fcaf0e34..07010684 100644
--- a/src/node.c
+++ b/src/node.c
@@ -458,6 +458,18 @@ serd_node_string_view(const SerdNode* const node)
return r;
}
+SerdURIView
+serd_node_uri_view(const SerdNode* const node)
+{
+ SerdURIView result = SERD_URI_NULL;
+
+ if (node->type == SERD_URI) {
+ serd_uri_parse(serd_node_string(node), &result);
+ }
+
+ return result;
+}
+
SerdNodeFlags
serd_node_flags(const SerdNode* const node)
{