123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611 |
- /******************************************************************************
- Copyright (c) 2013 by Hugh Bailey <[email protected]>
- This software is provided 'as-is', without any express or implied
- warranty. In no event will the authors be held liable for any damages
- arising from the use of this software.
- Permission is granted to anyone to use this software for any purpose,
- including commercial applications, and to alter it and redistribute it
- freely, subject to the following restrictions:
- 1. The origin of this software must not be misrepresented; you must not
- claim that you wrote the original software. If you use this software
- in a product, an acknowledgment in the product documentation would be
- appreciated but is not required.
- 2. Altered source versions must be plainly marked as such, and must not be
- misrepresented as being the original software.
- 3. This notice may not be removed or altered from any source
- distribution.
- ******************************************************************************/
- #include <stddef.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #include <assert.h>
- #include <ctype.h>
- #include <wchar.h>
- #include "c99defs.h"
- #include "dstr.h"
- #include "bmem.h"
- #include "utf8.h"
- #include "lexer.h"
- #include "platform.h"
- static const char *astrblank = "";
- static const wchar_t *wstrblank = L"";
- int astrcmpi(const char *str1, const char *str2)
- {
- if (!str1)
- str1 = astrblank;
- if (!str2)
- str2 = astrblank;
- do {
- char ch1 = toupper(*str1);
- char ch2 = toupper(*str2);
- if (ch1 < ch2)
- return -1;
- else if (ch1 > ch2)
- return 1;
- } while (*str1++ && *str2++);
- return 0;
- }
- int wstrcmpi(const wchar_t *str1, const wchar_t *str2)
- {
- if (!str1)
- str1 = wstrblank;
- if (!str2)
- str2 = wstrblank;
- do {
- wchar_t ch1 = towupper(*str1);
- wchar_t ch2 = towupper(*str2);
- if (ch1 < ch2)
- return -1;
- else if (ch1 > ch2)
- return 1;
- } while (*str1++ && *str2++);
- return 0;
- }
- int astrcmp_n(const char *str1, const char *str2, size_t n)
- {
- if (!n)
- return 0;
- if (!str1)
- str1 = astrblank;
- if (!str2)
- str2 = astrblank;
- do {
- char ch1 = *str1;
- char ch2 = *str2;
- if (ch1 < ch2)
- return -1;
- else if (ch1 > ch2)
- return 1;
- } while (*str1++ && *str2++ && --n);
- return 0;
- }
- int wstrcmp_n(const wchar_t *str1, const wchar_t *str2, size_t n)
- {
- if (!n)
- return 0;
- if (!str1)
- str1 = wstrblank;
- if (!str2)
- str2 = wstrblank;
- do {
- wchar_t ch1 = *str1;
- wchar_t ch2 = *str2;
- if (ch1 < ch2)
- return -1;
- else if (ch1 > ch2)
- return 1;
- } while (*str1++ && *str2++ && --n);
- return 0;
- }
- int astrcmpi_n(const char *str1, const char *str2, size_t n)
- {
- if (!n)
- return 0;
- if (!str1)
- str1 = astrblank;
- if (!str2)
- str2 = astrblank;
- do {
- char ch1 = toupper(*str1);
- char ch2 = toupper(*str2);
- if (ch1 < ch2)
- return -1;
- else if (ch1 > ch2)
- return 1;
- } while (*str1++ && *str2++ && --n);
- return 0;
- }
- int wstrcmpi_n(const wchar_t *str1, const wchar_t *str2, size_t n)
- {
- if (!n)
- return 0;
- if (!str1)
- str1 = wstrblank;
- if (!str2)
- str2 = wstrblank;
- do {
- wchar_t ch1 = towupper(*str1);
- wchar_t ch2 = towupper(*str2);
- if (ch1 < ch2)
- return -1;
- else if (ch1 > ch2)
- return 1;
- } while (*str1++ && *str2++ && --n);
- return 0;
- }
- char *strdepad(char *str)
- {
- char *temp;
- size_t len;
- if (!str)
- return str;
- if (!*str)
- return str;
- temp = str;
- /* remove preceding spaces/tabs */
- while (*temp == ' ' || *temp == '\t')
- ++temp;
- len = strlen(str);
- if (temp != str)
- memmove(str, temp, len + 1);
- if (len) {
- temp = str + (len-1);
- while (*temp == ' ' || *temp == '\t')
- *(temp--) = 0;
- }
- return str;
- }
- wchar_t *wcsdepad(wchar_t *str)
- {
- wchar_t *temp;
- size_t len;
- if (!str)
- return str;
- if (!*str)
- return str;
- temp = str;
- /* remove preceding spaces/tabs */
- while (*temp == ' ' || *temp == '\t')
- ++temp;
- len = wcslen(str);
- if (temp != str)
- memmove(str, temp, (len+1) * sizeof(wchar_t));
- if (len) {
- temp = str + (len-1);
- while (*temp == ' ' || *temp == '\t')
- *(temp--) = 0;
- }
- return str;
- }
- void dstr_init_strref(struct dstr *dst, const struct strref *src)
- {
- dstr_init(dst);
- dstr_copy_strref(dst, src);
- }
- void dstr_copy(struct dstr *dst, const char *array)
- {
- size_t len;
- if (!array || !*array) {
- dstr_free(dst);
- return;
- }
- len = strlen(array);
- dstr_ensure_capacity(dst, len + 1);
- memcpy(dst->array, array, len + 1);
- dst->len = len;
- }
- void dstr_copy_strref(struct dstr *dst, const struct strref *src)
- {
- if (dst->array)
- dstr_free(dst);
- dstr_ncopy(dst, src->array, src->len);
- }
- static inline size_t size_min(size_t a, size_t b)
- {
- return (a < b) ? a : b;
- }
- void dstr_ncopy(struct dstr *dst, const char *array, const size_t len)
- {
- if (dst->array)
- dstr_free(dst);
- if (!len)
- return;
- dst->array = bmemdup(array, len + 1);
- dst->len = len;
- dst->array[len] = 0;
- }
- void dstr_ncopy_dstr(struct dstr *dst, const struct dstr *str, const size_t len)
- {
- size_t newlen;
- if (dst->array)
- dstr_free(dst);
- if (!len)
- return;
- newlen = size_min(len, str->len);
- dst->array = bmemdup(str->array, newlen + 1);
- dst->len = newlen;
- dst->array[newlen] = 0;
- }
- void dstr_cat_dstr(struct dstr *dst, const struct dstr *str)
- {
- size_t new_len;
- if (!str->len)
- return;
- new_len = dst->len + str->len;
- dstr_ensure_capacity(dst, new_len + 1);
- memcpy(dst->array+dst->len, str->array, str->len + 1);
- dst->len = new_len;
- }
- void dstr_cat_strref(struct dstr *dst, const struct strref *str)
- {
- dstr_ncat(dst, str->array, str->len);
- }
- void dstr_ncat(struct dstr *dst, const char *array, const size_t len)
- {
- size_t new_len;
- if (!array || !*array || !len)
- return;
- new_len = dst->len + len;
- dstr_ensure_capacity(dst, new_len + 1);
- memcpy(dst->array+dst->len, array, len);
- dst->len = new_len;
- dst->array[new_len] = 0;
- }
- void dstr_ncat_dstr(struct dstr *dst, const struct dstr *str, const size_t len)
- {
- size_t new_len, in_len;
- if (!str->array || !*str->array || !len)
- return;
- in_len = size_min(len, str->len);
- new_len = dst->len + in_len;
- dstr_ensure_capacity(dst, new_len + 1);
- memcpy(dst->array+dst->len, str->array, in_len);
- dst->len = new_len;
- dst->array[new_len] = 0;
- }
- void dstr_insert(struct dstr *dst, const size_t idx, const char *array)
- {
- size_t new_len, len;
- if (!array || !*array)
- return;
- if (idx == dst->len) {
- dstr_cat(dst, array);
- return;
- }
- len = strlen(array);
- new_len = dst->len + len;
- dstr_ensure_capacity(dst, new_len + 1);
- dst->len = new_len;
- memmove(dst->array+idx+len, dst->array+idx, dst->len - idx + 1);
- memcpy(dst->array+idx, array, len);
- }
- void dstr_insert_dstr(struct dstr *dst, const size_t idx,
- const struct dstr *str)
- {
- size_t new_len;
- if (!str->len)
- return;
- if (idx == dst->len) {
- dstr_cat_dstr(dst, str);
- return;
- }
- new_len = dst->len + str->len;
- dstr_ensure_capacity(dst, (new_len+1));
- dst->len = new_len;
- memmove(dst->array+idx+str->len, dst->array+idx, dst->len - idx + 1);
- memcpy(dst->array+idx, str->array, str->len);
- }
- void dstr_insert_ch(struct dstr *dst, const size_t idx, const char ch)
- {
- if (idx == dst->len) {
- dstr_cat_ch(dst, ch);
- return;
- }
- dstr_ensure_capacity(dst, (++dst->len+1));
- memmove(dst->array+idx+1, dst->array+idx, dst->len - idx + 1);
- dst->array[idx] = ch;
- }
- void dstr_remove(struct dstr *dst, const size_t idx, const size_t count)
- {
- size_t end;
- if (!count)
- return;
- if (count == dst->len) {
- dstr_free(dst);
- return;
- }
- end = idx+count;
- if (end == dst->len)
- dst->array[idx] = 0;
- else
- memmove(dst->array+idx, dst->array+end, dst->len - end + 1);
- dst->len -= count;
- }
- void dstr_printf(struct dstr *dst, const char *format, ...)
- {
- va_list args;
- va_start(args, format);
- dstr_vprintf(dst, format, args);
- va_end(args);
- }
- void dstr_catf(struct dstr *dst, const char *format, ...)
- {
- va_list args;
- va_start(args, format);
- dstr_vcatf(dst, format, args);
- va_end(args);
- }
- void dstr_vprintf(struct dstr *dst, const char *format, va_list args)
- {
- dstr_ensure_capacity(dst, 4096);
- vsnprintf(dst->array, 4095, format, args);
- if (!*dst->array) {
- dstr_free(dst);
- return;
- }
- dst->len = strlen(dst->array);
- }
- void dstr_vcatf(struct dstr *dst, const char *format, va_list args)
- {
- struct dstr temp;
- dstr_init(&temp);
- dstr_vprintf(&temp, format, args);
- dstr_cat_dstr(dst, &temp);
- dstr_free(&temp);
- }
- void dstr_safe_printf(struct dstr *dst, const char *format,
- const char *val1, const char *val2, const char *val3,
- const char *val4)
- {
- dstr_copy(dst, format);
- if (val1)
- dstr_replace(dst, "$1", val1);
- if (val2)
- dstr_replace(dst, "$2", val2);
- if (val3)
- dstr_replace(dst, "$3", val3);
- if (val4)
- dstr_replace(dst, "$4", val4);
- }
- void dstr_replace(struct dstr *str, const char *find,
- const char *replace)
- {
- size_t find_len, replace_len;
- char *temp;
- if (!replace)
- replace = "";
- find_len = strlen(find);
- replace_len = strlen(replace);
- temp = str->array;
- if (replace_len < find_len) {
- int count = 0;
- while ((temp = strstr(temp, find)) != NULL) {
- char *end = temp+find_len;
- size_t end_len = strlen(end);
- if (end_len) {
- memmove(temp+replace_len, end, end_len + 1);
- if (replace_len)
- memcpy(temp, replace, replace_len);
- } else {
- strcpy(temp, replace);
- }
- temp += replace_len;
- ++count;
- }
- if (count)
- str->len += (replace_len-find_len) * count;
- } else if (replace_len > find_len) {
- int count = 0;
- while ((temp = strstr(temp, find)) != NULL) {
- temp += find_len;
- ++count;
- }
- if (!count)
- return;
- str->len += (replace_len-find_len) * count;
- dstr_ensure_capacity(str, str->len + 1);
- temp = str->array;
- while ((temp = strstr(temp, find)) != NULL) {
- char *end = temp+find_len;
- size_t end_len = strlen(end);
- if (end_len) {
- memmove(temp+replace_len, end, end_len + 1);
- memcpy(temp, replace, replace_len);
- } else {
- strcpy(temp, replace);
- }
- temp += replace_len;
- }
- } else {
- while ((temp = strstr(temp, find)) != NULL) {
- memcpy(temp, replace, replace_len);
- temp += replace_len;
- }
- }
- }
- void dstr_depad(struct dstr *str)
- {
- if (str->array) {
- str->array = strdepad(str->array);
- if (*str->array)
- str->len = strlen(str->array);
- else
- dstr_free(str);
- }
- }
- void dstr_left(struct dstr *dst, const struct dstr *str, const size_t pos)
- {
- dstr_resize(dst, pos);
- if (dst != str)
- memcpy(dst->array, str->array, pos);
- }
- void dstr_mid(struct dstr *dst, const struct dstr *str, const size_t start,
- const size_t count)
- {
- struct dstr temp;
- dstr_init(&temp);
- dstr_copy_dstr(&temp, str);
- dstr_ncopy(dst, temp.array+start, count);
- dstr_free(&temp);
- }
- void dstr_right(struct dstr *dst, const struct dstr *str, const size_t pos)
- {
- struct dstr temp;
- dstr_init(&temp);
- dstr_ncopy(&temp, str->array+pos, str->len-pos);
- dstr_copy_dstr(dst, &temp);
- dstr_free(&temp);
- }
- void dstr_from_mbs(struct dstr *dst, const char *mbstr)
- {
- dstr_free(dst);
- dst->len = os_mbs_to_utf8(mbstr, 0, &dst->array);
- }
- char *dstr_to_mbs(const struct dstr *str)
- {
- char *dst;
- os_mbs_to_utf8(str->array, str->len, &dst);
- return dst;
- }
- void dstr_from_wcs(struct dstr *dst, const wchar_t *wstr)
- {
- size_t len = wchar_to_utf8(wstr, 0, NULL, 0, 0);
- if (len) {
- dstr_resize(dst, len);
- wchar_to_utf8(wstr, 0, dst->array, len+1, 0);
- } else {
- dstr_free(dst);
- }
- }
- wchar_t *dstr_to_utf8(const struct dstr *str)
- {
- wchar_t *out = NULL;
- size_t len = utf8_to_wchar(str->array, str->len, NULL, 0, 0);
- if (len) {
- out = bmalloc((len+1) * sizeof(wchar_t));
- utf8_to_wchar(str->array, str->len, out, len+1, 0);
- out[len] = 0;
- }
- return out;
- }
|