/* SLV2 * Copyright (C) 2007-2011 David Robillard * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #define _XOPEN_SOURCE 500 #include #include #include #include #include "slv2/util.h" #include "slv2_internal.h" char* slv2_strjoin(const char* first, ...) { size_t len = strlen(first); char* result = malloc(len + 1); memcpy(result, first, len); va_list args; va_start(args, first); while (1) { const char* const s = va_arg(args, const char *); if (s == NULL) break; const size_t this_len = strlen(s); result = realloc(result, len + this_len + 1); memcpy(result + len, s, this_len); len += this_len; } va_end(args); result[len] = '\0'; return result; } const char* slv2_uri_to_path(const char* uri) { if (!strncmp(uri, "file://", (size_t)7)) return (char*)(uri + 7); else return NULL; } const char* slv2_get_lang() { static char lang[32]; lang[31] = '\0'; char* tmp = getenv("LANG"); if (!tmp) { lang[0] = '\0'; } else { strncpy(lang, tmp, 31); for (int i = 0; i < 31 && lang[i]; ++i) { if (lang[i] == '_') { lang[i] = '-'; } else if ( !(lang[i] >= 'a' && lang[i] <= 'z') && !(lang[i] >= 'A' && lang[i] <= 'Z')) { lang[i] = '\0'; break; } } } return lang; } char* slv2_qname_expand(SLV2Plugin p, const char* qname) { const size_t qname_len = strlen(qname); SerdNode qname_node = { SERD_CURIE, qname_len + 1, qname_len, (const uint8_t*)qname }; SerdChunk uri_prefix; SerdChunk uri_suffix; if (serd_env_expand(p->world->namespaces, &qname_node, &uri_prefix, &uri_suffix)) { const size_t uri_len = uri_prefix.len + uri_suffix.len; char* uri = malloc(uri_len + 1); memcpy(uri, uri_prefix.buf, uri_prefix.len); memcpy(uri + uri_prefix.len, uri_suffix.buf, uri_suffix.len); uri[uri_len] = '\0'; return uri; } else { SLV2_ERRORF("Failed to expand QName `%s'\n", qname); return NULL; } }