sc/uri/sc_uri.c
Sergi Vladykin 2fa40dd436
Zig CC cross-compilation support for Windows on Linux host. (#128)
Zig CC cross-compilation support for Windows on Linux host
2023-12-21 10:50:39 +03:00

189 lines
5.2 KiB
C

/*
* BSD-3-Clause
*
* Copyright 2021 Ozan Tezcan
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "sc_uri.h"
#include <errno.h>
#include <stdio.h>
#include <string.h>
#ifdef _MSC_VER
#pragma warning(disable : 4996)
#endif
struct sc_uri *sc_uri_create(const char *str)
{
const char *s1 = "%.*s%.*s%.*s%.*s%.*s%.*s%.*s%.*s";
const char *s2 = "%.*s%c%.*s%c%.*s%c%.*s%c%.*s%c%.*s%c%.*s%c";
const char *authority = "//";
int diff, ret;
unsigned long val;
size_t full_len, parts_len;
size_t scheme_len, authority_len = 0, userinfo_len = 0;
size_t host_len = 0, port_len = 0, path_len;
size_t query_len = 0, fragment_len = 0;
char *scheme, *userinfo = "", *host = "", *port = "";
char *path, *query = "", *fragment = "";
char *ptr, *dest, *parse_end;
char *pos = (char *) str;
struct sc_uri *uri;
if (str == NULL || (ptr = strstr(pos, ":")) == NULL) {
return NULL;
}
scheme = pos;
scheme_len = ptr - str + 1;
pos = ptr + 1;
if (*pos == '/' && *(pos + 1) == '/') {
authority_len = 2;
pos += authority_len;
ptr = strchr(pos, '@');
if (ptr != NULL) {
userinfo = pos;
userinfo_len = ptr - pos + strlen("@");
pos = ptr + 1;
}
ptr = pos + strcspn(pos, *pos == '[' ? "]" : ":/?#");
host = pos;
host_len = ptr - pos + (*host == '[');
pos = host + host_len;
if (*host == '[' && *(host + host_len - 1) != ']') {
return NULL;
}
ptr = strchr(pos, ':');
if (ptr != NULL) {
if (*(ptr + 1) == '\0') {
return NULL;
}
errno = 0;
val = strtoul(ptr + 1, &parse_end, 10);
if (errno != 0 || val > 65536) {
return NULL;
}
port = ptr;
port_len = parse_end - ptr;
pos = port + port_len;
}
}
path = pos;
path_len = strcspn(path, "?#");
pos = path + path_len;
ptr = strchr(pos, '?');
if (ptr != NULL) {
query = ptr;
query_len = strcspn(query, "#");
pos = query + query_len;
}
if (*pos == '#') {
fragment = pos;
fragment_len = strlen(pos);
}
full_len = scheme_len + authority_len + userinfo_len + host_len +
port_len + path_len + query_len + fragment_len + 1;
parts_len = full_len - authority_len;
parts_len += 7; // NULL characters for each part.
parts_len -= (scheme_len != 0);
parts_len -= (userinfo_len != 0);
parts_len -= (port_len != 0);
parts_len -= (query_len != 0);
parts_len -= (fragment_len != 0);
uri = sc_uri_malloc(sizeof(*uri) + parts_len + full_len);
if (uri == NULL) {
return NULL;
}
ret = snprintf(uri->buf, full_len, s1, scheme_len, scheme,
authority_len, authority, userinfo_len, userinfo,
host_len, host, port_len, port, path_len, path,
query_len, query, fragment_len, fragment);
if (ret < 0 || (size_t) ret != full_len - 1) {
goto error;
}
dest = uri->buf + strlen(uri->buf) + 1;
scheme_len -= (scheme_len != 0); // Skip ":"
userinfo_len -= (userinfo_len != 0); // Skip "@"
diff = port_len != 0;
port_len -= diff; // Skip ":"
port += diff; // Skip ":"
diff = (query_len != 0);
query_len -= diff; // Skip "?"
query += diff; // Skip "?"
diff = (fragment_len != 0);
fragment_len -= diff; // Skip "#"
fragment += diff; // Skip "#"
ret = snprintf(dest, parts_len, s2, scheme_len, scheme, 0,
userinfo_len, userinfo, 0, host_len, host, 0, port_len,
port, 0, path_len, path, 0, query_len, query, 0,
fragment_len, fragment, 0);
if (ret < 0 || (size_t) ret != parts_len - 1) {
goto error;
}
uri->str = uri->buf;
uri->scheme = dest;
uri->userinfo = dest + scheme_len + 1;
uri->host = uri->userinfo + userinfo_len + 1;
uri->port = uri->host + host_len + 1;
uri->path = uri->port + port_len + 1;
uri->query = uri->path + path_len + 1;
uri->fragment = uri->query + query_len + 1;
return uri;
error:
sc_uri_free(uri);
return NULL;
}
void sc_uri_destroy(struct sc_uri *uri)
{
sc_uri_free(uri);
}