dstr.h 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. /*
  2. * Copyright (c) 2013 Hugh Bailey <[email protected]>
  3. *
  4. * Permission to use, copy, modify, and distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #pragma once
  17. #include <string.h>
  18. #include <stdarg.h>
  19. #include "c99defs.h"
  20. #include "bmem.h"
  21. /*
  22. * Dynamic string
  23. *
  24. * Helper struct/functions for dynamically sizing string buffers.
  25. */
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. struct strref;
  30. struct dstr {
  31. char *array;
  32. size_t len; /* number of characters, excluding null terminator */
  33. size_t capacity;
  34. };
  35. #ifndef _MSC_VER
  36. #define PRINTFATTR(f, a) __attribute__((__format__(__printf__, f, a)))
  37. #else
  38. #define PRINTFATTR(f, a)
  39. #endif
  40. EXPORT int astrcmpi(const char *str1, const char *str2);
  41. EXPORT int wstrcmpi(const wchar_t *str1, const wchar_t *str2);
  42. EXPORT int astrcmp_n(const char *str1, const char *str2, size_t n);
  43. EXPORT int wstrcmp_n(const wchar_t *str1, const wchar_t *str2, size_t n);
  44. EXPORT int astrcmpi_n(const char *str1, const char *str2, size_t n);
  45. EXPORT int wstrcmpi_n(const wchar_t *str1, const wchar_t *str2, size_t n);
  46. EXPORT char *astrstri(const char *str, const char *find);
  47. EXPORT wchar_t *wstrstri(const wchar_t *str, const wchar_t *find);
  48. EXPORT char *strdepad(char *str);
  49. EXPORT wchar_t *wcsdepad(wchar_t *str);
  50. EXPORT char **strlist_split(const char *str, char split_ch, bool include_empty);
  51. EXPORT void strlist_free(char **strlist);
  52. static inline void dstr_init(struct dstr *dst);
  53. static inline void dstr_init_move(struct dstr *dst, struct dstr *src);
  54. static inline void dstr_init_move_array(struct dstr *dst, char *str);
  55. static inline void dstr_init_copy(struct dstr *dst, const char *src);
  56. static inline void dstr_init_copy_dstr(struct dstr *dst,
  57. const struct dstr *src);
  58. EXPORT void dstr_init_copy_strref(struct dstr *dst, const struct strref *src);
  59. static inline void dstr_free(struct dstr *dst);
  60. static inline void dstr_array_free(struct dstr *array, const size_t count);
  61. static inline void dstr_move(struct dstr *dst, struct dstr *src);
  62. static inline void dstr_move_array(struct dstr *dst, char *str);
  63. EXPORT void dstr_copy(struct dstr *dst, const char *array);
  64. static inline void dstr_copy_dstr(struct dstr *dst, const struct dstr *src);
  65. EXPORT void dstr_copy_strref(struct dstr *dst, const struct strref *src);
  66. EXPORT void dstr_ncopy(struct dstr *dst, const char *array, const size_t len);
  67. EXPORT void dstr_ncopy_dstr(struct dstr *dst, const struct dstr *src,
  68. const size_t len);
  69. static inline void dstr_resize(struct dstr *dst, const size_t num);
  70. static inline void dstr_reserve(struct dstr *dst, const size_t num);
  71. static inline bool dstr_is_empty(const struct dstr *str);
  72. static inline void dstr_cat(struct dstr *dst, const char *array);
  73. EXPORT void dstr_cat_dstr(struct dstr *dst, const struct dstr *str);
  74. EXPORT void dstr_cat_strref(struct dstr *dst, const struct strref *str);
  75. static inline void dstr_cat_ch(struct dstr *dst, char ch);
  76. EXPORT void dstr_ncat(struct dstr *dst, const char *array, const size_t len);
  77. EXPORT void dstr_ncat_dstr(struct dstr *dst, const struct dstr *str,
  78. const size_t len);
  79. EXPORT void dstr_insert(struct dstr *dst, const size_t idx, const char *array);
  80. EXPORT void dstr_insert_dstr(struct dstr *dst, const size_t idx,
  81. const struct dstr *str);
  82. EXPORT void dstr_insert_ch(struct dstr *dst, const size_t idx, const char ch);
  83. EXPORT void dstr_remove(struct dstr *dst, const size_t idx, const size_t count);
  84. PRINTFATTR(2, 3)
  85. EXPORT void dstr_printf(struct dstr *dst, const char *format, ...);
  86. PRINTFATTR(2, 3)
  87. EXPORT void dstr_catf(struct dstr *dst, const char *format, ...);
  88. EXPORT void dstr_vprintf(struct dstr *dst, const char *format, va_list args);
  89. EXPORT void dstr_vcatf(struct dstr *dst, const char *format, va_list args);
  90. EXPORT void dstr_safe_printf(struct dstr *dst, const char *format,
  91. const char *val1, const char *val2,
  92. const char *val3, const char *val4);
  93. static inline const char *dstr_find_i(const struct dstr *str, const char *find);
  94. static inline const char *dstr_find(const struct dstr *str, const char *find);
  95. EXPORT void dstr_replace(struct dstr *str, const char *find,
  96. const char *replace);
  97. static inline int dstr_cmp(const struct dstr *str1, const char *str2);
  98. static inline int dstr_cmpi(const struct dstr *str1, const char *str2);
  99. static inline int dstr_ncmp(const struct dstr *str1, const char *str2,
  100. const size_t n);
  101. static inline int dstr_ncmpi(const struct dstr *str1, const char *str2,
  102. const size_t n);
  103. EXPORT void dstr_depad(struct dstr *dst);
  104. EXPORT void dstr_left(struct dstr *dst, const struct dstr *str,
  105. const size_t pos);
  106. EXPORT void dstr_mid(struct dstr *dst, const struct dstr *str,
  107. const size_t start, const size_t count);
  108. EXPORT void dstr_right(struct dstr *dst, const struct dstr *str,
  109. const size_t pos);
  110. static inline char dstr_end(const struct dstr *str);
  111. EXPORT void dstr_from_mbs(struct dstr *dst, const char *mbstr);
  112. EXPORT char *dstr_to_mbs(const struct dstr *str);
  113. EXPORT void dstr_from_wcs(struct dstr *dst, const wchar_t *wstr);
  114. EXPORT wchar_t *dstr_to_wcs(const struct dstr *str);
  115. EXPORT void dstr_to_upper(struct dstr *str);
  116. EXPORT void dstr_to_lower(struct dstr *str);
  117. #undef PRINTFATTR
  118. /* ------------------------------------------------------------------------- */
  119. static inline void dstr_init(struct dstr *dst)
  120. {
  121. dst->array = NULL;
  122. dst->len = 0;
  123. dst->capacity = 0;
  124. }
  125. static inline void dstr_init_move_array(struct dstr *dst, char *str)
  126. {
  127. dst->array = str;
  128. dst->len = (!str) ? 0 : strlen(str);
  129. dst->capacity = dst->len + 1;
  130. }
  131. static inline void dstr_init_move(struct dstr *dst, struct dstr *src)
  132. {
  133. *dst = *src;
  134. dstr_init(src);
  135. }
  136. static inline void dstr_init_copy(struct dstr *dst, const char *str)
  137. {
  138. dstr_init(dst);
  139. dstr_copy(dst, str);
  140. }
  141. static inline void dstr_init_copy_dstr(struct dstr *dst, const struct dstr *src)
  142. {
  143. dstr_init(dst);
  144. dstr_copy_dstr(dst, src);
  145. }
  146. static inline void dstr_free(struct dstr *dst)
  147. {
  148. bfree(dst->array);
  149. dst->array = NULL;
  150. dst->len = 0;
  151. dst->capacity = 0;
  152. }
  153. static inline void dstr_array_free(struct dstr *array, const size_t count)
  154. {
  155. size_t i;
  156. for (i = 0; i < count; i++)
  157. dstr_free(array + i);
  158. }
  159. static inline void dstr_move_array(struct dstr *dst, char *str)
  160. {
  161. dstr_free(dst);
  162. dst->array = str;
  163. dst->len = (!str) ? 0 : strlen(str);
  164. dst->capacity = dst->len + 1;
  165. }
  166. static inline void dstr_move(struct dstr *dst, struct dstr *src)
  167. {
  168. dstr_free(dst);
  169. dstr_init_move(dst, src);
  170. }
  171. static inline void dstr_ensure_capacity(struct dstr *dst, const size_t new_size)
  172. {
  173. size_t new_cap;
  174. if (new_size <= dst->capacity)
  175. return;
  176. new_cap = (!dst->capacity) ? new_size : dst->capacity * 2;
  177. if (new_size > new_cap)
  178. new_cap = new_size;
  179. dst->array = (char *)brealloc(dst->array, new_cap);
  180. dst->capacity = new_cap;
  181. }
  182. static inline void dstr_copy_dstr(struct dstr *dst, const struct dstr *src)
  183. {
  184. dstr_free(dst);
  185. if (src->len) {
  186. dstr_ensure_capacity(dst, src->len + 1);
  187. memcpy(dst->array, src->array, src->len + 1);
  188. dst->len = src->len;
  189. }
  190. }
  191. static inline void dstr_reserve(struct dstr *dst, const size_t capacity)
  192. {
  193. if (capacity == 0 || capacity <= dst->len)
  194. return;
  195. dst->array = (char *)brealloc(dst->array, capacity);
  196. dst->capacity = capacity;
  197. }
  198. static inline void dstr_resize(struct dstr *dst, const size_t num)
  199. {
  200. if (!num) {
  201. dstr_free(dst);
  202. return;
  203. }
  204. dstr_ensure_capacity(dst, num + 1);
  205. dst->array[num] = 0;
  206. dst->len = num;
  207. }
  208. static inline bool dstr_is_empty(const struct dstr *str)
  209. {
  210. if (!str->array || !str->len)
  211. return true;
  212. if (!*str->array)
  213. return true;
  214. return false;
  215. }
  216. static inline void dstr_cat(struct dstr *dst, const char *array)
  217. {
  218. size_t len;
  219. if (!array || !*array)
  220. return;
  221. len = strlen(array);
  222. dstr_ncat(dst, array, len);
  223. }
  224. static inline void dstr_cat_ch(struct dstr *dst, char ch)
  225. {
  226. dstr_ensure_capacity(dst, ++dst->len + 1);
  227. dst->array[dst->len - 1] = ch;
  228. dst->array[dst->len] = 0;
  229. }
  230. static inline const char *dstr_find_i(const struct dstr *str, const char *find)
  231. {
  232. return astrstri(str->array, find);
  233. }
  234. static inline const char *dstr_find(const struct dstr *str, const char *find)
  235. {
  236. return strstr(str->array, find);
  237. }
  238. static inline int dstr_cmp(const struct dstr *str1, const char *str2)
  239. {
  240. return strcmp(str1->array, str2);
  241. }
  242. static inline int dstr_cmpi(const struct dstr *str1, const char *str2)
  243. {
  244. return astrcmpi(str1->array, str2);
  245. }
  246. static inline int dstr_ncmp(const struct dstr *str1, const char *str2,
  247. const size_t n)
  248. {
  249. return astrcmp_n(str1->array, str2, n);
  250. }
  251. static inline int dstr_ncmpi(const struct dstr *str1, const char *str2,
  252. const size_t n)
  253. {
  254. return astrcmpi_n(str1->array, str2, n);
  255. }
  256. static inline char dstr_end(const struct dstr *str)
  257. {
  258. if (dstr_is_empty(str))
  259. return 0;
  260. return str->array[str->len - 1];
  261. }
  262. #ifdef __cplusplus
  263. }
  264. #endif