aboutsummaryrefslogtreecommitdiffstats
path: root/src/uri.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-12-24 21:35:05 +0000
committerDavid Robillard <d@drobilla.net>2011-12-24 21:35:05 +0000
commite2099741e85475b47be9edaa07d82de3689d6b32 (patch)
tree3d956a6520cc671dc3b6cdc8b67ad1d17f3da79a /src/uri.c
parent4bce0925039b3791779149ec7bec69b5359b3e56 (diff)
downloadserd-e2099741e85475b47be9edaa07d82de3689d6b32.tar.gz
serd-e2099741e85475b47be9edaa07d82de3689d6b32.tar.bz2
serd-e2099741e85475b47be9edaa07d82de3689d6b32.zip
Separate remove_dot_segments from serd_uri_resolve.
git-svn-id: http://svn.drobilla.net/serd/trunk@267 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'src/uri.c')
-rw-r--r--src/uri.c135
1 files changed, 73 insertions, 62 deletions
diff --git a/src/uri.c b/src/uri.c
index cd89d818..1366ef43 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -211,6 +211,72 @@ end:
return SERD_SUCCESS;
}
+/**
+ Remove leading dot components from @c path.
+ See http://tools.ietf.org/html/rfc3986#section-5.2.3
+ @param up Set to the number of up-references (e.g. "../") trimmed
+ @return A pointer to the new start of @path
+*/
+static const uint8_t*
+remove_dot_segments(const uint8_t* path, size_t len, size_t* up)
+{
+ const uint8_t* begin = path;
+ const uint8_t* const end = path + len;
+
+ *up = 0;
+ while (begin < end) {
+ switch (begin[0]) {
+ case '.':
+ switch (begin[1]) {
+ case '/':
+ begin += 2; // Chop leading "./"
+ break;
+ case '.':
+ switch (begin[2]) {
+ case '\0':
+ ++*up;
+ begin += 2; // Chop input ".."
+ break;
+ case '/':
+ ++*up;
+ begin += 3; // Chop leading "../"
+ break;
+ default:
+ return begin;
+ }
+ break;
+ case '\0':
+ ++begin; // Chop input "." (and fall-through)
+ default:
+ return begin;
+ }
+ break;
+ case '/':
+ switch (begin[1]) {
+ case '.':
+ switch (begin[2]) {
+ case '/':
+ begin += 2; // Leading "/./" => "/"
+ break;
+ case '.':
+ switch (begin[3]) {
+ case '/':
+ ++*up;
+ begin += 3; // Leading "/../" => "/"
+ }
+ break;
+ default:
+ return begin;
+ }
+ } // else fall through
+ default:
+ return begin; // Finished chopping dot components
+ }
+ }
+
+ return begin;
+}
+
SERD_API
void
serd_uri_resolve(const SerdURI* r, const SerdURI* base, SerdURI* t)
@@ -291,69 +357,14 @@ serd_uri_serialise(const SerdURI* uri, SerdSink sink, void* stream)
if (!uri->path.buf && (uri->fragment.buf || uri->query.buf)) {
WRITE_COMPONENT("", uri->path_base, "");
} else if (uri->path.buf) {
- /* Merge paths, removing dot components.
- See http://tools.ietf.org/html/rfc3986#section-5.2.3
- */
- const uint8_t* begin = uri->path.buf;
- size_t up = 1;
-
- // Count and skip leading dot components
- const uint8_t* end = uri->path.buf + uri->path.len;
- for (bool done = false; !done && (begin < end);) {
- switch (begin[0]) {
- case '.':
- switch (begin[1]) {
- case '/':
- begin += 2; // Chop leading "./"
- break;
- case '.':
- switch (begin[2]) {
- case '\0':
- ++up;
- begin += 2; // Chop input ".."
- done = true;
- break;
- case '/':
- ++up;
- begin += 3; // Chop leading "../"
- break;
- default:
- done = true;
- break;
- }
- break;
- case '\0':
- ++begin; // Chop input "." (and fall-through)
- default:
- done = true;
- break;
- }
- break;
- case '/':
- switch (begin[1]) {
- case '.':
- switch (begin[2]) {
- case '/':
- begin += 2; // Leading "/./" => "/"
- break;
- case '.':
- switch (begin[3]) {
- case '/':
- ++up;
- begin += 3; // Leading "/../" => "/"
- }
- break;
- default:
- done = true;
- break;
- }
- } // else fall through
- default:
- done = true; // Finished chopping dot components
- }
- }
+ const uint8_t* begin = uri->path.buf;
+ const uint8_t* const end = uri->path.buf + uri->path.len;
+
+ size_t up;
+ begin = remove_dot_segments(uri->path.buf, uri->path.len, &up);
+ ++up;
- if (uri->path.buf && uri->path_base.buf) {
+ if (uri->path_base.buf) {
// Find the up'th last slash
const uint8_t* base_last = (uri->path_base.buf
+ uri->path_base.len - 1);