diff options
author | David Robillard <d@drobilla.net> | 2018-02-04 20:49:28 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 16:27:02 -0500 |
commit | 1c59b863d8c2c2d7b5531866586baf232c0047a2 (patch) | |
tree | 2a464c22769631b28fbaf8fdb1f0c04e0b4034f9 /src/uri.c | |
parent | 14196632191339b69d9db3a242a1b8be3f960669 (diff) | |
download | serd-1c59b863d8c2c2d7b5531866586baf232c0047a2.tar.gz serd-1c59b863d8c2c2d7b5531866586baf232c0047a2.tar.bz2 serd-1c59b863d8c2c2d7b5531866586baf232c0047a2.zip |
Remove serd_uri_to_path()
Diffstat (limited to 'src/uri.c')
-rw-r--r-- | src/uri.c | 27 |
1 files changed, 1 insertions, 26 deletions
@@ -12,32 +12,6 @@ #include <stdlib.h> #include <string.h> -const uint8_t* -serd_uri_to_path(const uint8_t* uri) -{ - const uint8_t* path = uri; - if (!is_windows_path(uri) && serd_uri_string_has_scheme(uri)) { - if (!!strncmp((const char*)uri, "file:", 5)) { - fprintf(stderr, "Non-file URI '%s'\n", uri); - return NULL; - } - - if (!strncmp((const char*)uri, "file://localhost/", 17)) { - path = uri + 16; - } else if (!strncmp((const char*)uri, "file://", 7)) { - path = uri + 7; - } else { - fprintf(stderr, "Invalid file URI '%s'\n", uri); - return NULL; - } - - if (is_windows_path(path + 1)) { - ++path; // Special case for terrible Windows file URIs - } - } - return path; -} - uint8_t* serd_file_uri_parse(const uint8_t* const uri, uint8_t** const hostname) { @@ -45,6 +19,7 @@ serd_file_uri_parse(const uint8_t* const uri, uint8_t** const hostname) if (hostname) { *hostname = NULL; } + if (!strncmp((const char*)uri, "file://", 7)) { const uint8_t* auth = uri + 7; if (*auth == '/') { // No hostname |