aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.c
blob: 448ca7dff2e798eeb77e22b6ce062e7b1ed58869 (plain)
  1. #include <stdarg.h>
  2. #include <ctype.h>
  3. #include <string.h>
  4. #include <assert.h>
  5. #include <string.h>
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include "buffer.h"
  9. /* Used as default value for strbuf->ptr so that people can always
  10. * assume ptr is non-NULL and zero terminated even for new strbufs.
  11. */
  12. unsigned char cmark_strbuf__initbuf[1];
  13. unsigned char cmark_strbuf__oom[1];
  14. #define ENSURE_SIZE(b, d) \
  15. if ((d) > buf->asize && strbuf_grow(b, (d)) < 0) \
  16. return -1;
  17. #ifndef MIN
  18. #define MIN(x,y) ((x<y) ? x : y)
  19. #endif
  20. void cmark_strbuf_init(strbuf *buf, int initial_size)
  21. {
  22. buf->asize = 0;
  23. buf->size = 0;
  24. buf->ptr = cmark_strbuf__initbuf;
  25. if (initial_size)
  26. cmark_strbuf_grow(buf, initial_size);
  27. }
  28. int cmark_strbuf_try_grow(strbuf *buf, int target_size, bool mark_oom)
  29. {
  30. unsigned char *new_ptr;
  31. int new_size;
  32. if (buf->ptr == cmark_strbuf__oom)
  33. return -1;
  34. if (target_size <= buf->asize)
  35. return 0;
  36. if (buf->asize == 0) {
  37. new_size = target_size;
  38. new_ptr = NULL;
  39. } else {
  40. new_size = buf->asize;
  41. new_ptr = buf->ptr;
  42. }
  43. /* grow the buffer size by 1.5, until it's big enough
  44. * to fit our target size */
  45. while (new_size < target_size)
  46. new_size = (new_size << 1) - (new_size >> 1);
  47. /* round allocation up to multiple of 8 */
  48. new_size = (new_size + 7) & ~7;
  49. new_ptr = (unsigned char *)realloc(new_ptr, new_size);
  50. if (!new_ptr) {
  51. if (mark_oom)
  52. buf->ptr = cmark_strbuf__oom;
  53. return -1;
  54. }
  55. buf->asize = new_size;
  56. buf->ptr = new_ptr;
  57. /* truncate the existing buffer size if necessary */
  58. if (buf->size >= buf->asize)
  59. buf->size = buf->asize - 1;
  60. buf->ptr[buf->size] = '\0';
  61. return 0;
  62. }
  63. int cmark_strbuf_grow(cmark_strbuf *buf, int target_size)
  64. {
  65. return cmark_strbuf_try_grow(buf, target_size, true);
  66. }
  67. bool cmark_strbuf_oom(const cmark_strbuf *buf)
  68. {
  69. return (buf->ptr == cmark_strbuf__oom);
  70. }
  71. size_t cmark_strbuf_len(const cmark_strbuf *buf)
  72. {
  73. return buf->size;
  74. }
  75. void cmark_strbuf_free(strbuf *buf)
  76. {
  77. if (!buf) return;
  78. if (buf->ptr != cmark_strbuf__initbuf && buf->ptr != cmark_strbuf__oom)
  79. free(buf->ptr);
  80. cmark_strbuf_init(buf, 0);
  81. }
  82. void cmark_strbuf_clear(strbuf *buf)
  83. {
  84. buf->size = 0;
  85. if (buf->asize > 0)
  86. buf->ptr[0] = '\0';
  87. }
  88. int cmark_strbuf_set(strbuf *buf, const unsigned char *data, int len)
  89. {
  90. if (len <= 0 || data == NULL) {
  91. cmark_strbuf_clear(buf);
  92. } else {
  93. if (data != buf->ptr) {
  94. ENSURE_SIZE(buf, len + 1);
  95. memmove(buf->ptr, data, len);
  96. }
  97. buf->size = len;
  98. buf->ptr[buf->size] = '\0';
  99. }
  100. return 0;
  101. }
  102. int cmark_strbuf_sets(strbuf *buf, const char *string)
  103. {
  104. return cmark_strbuf_set(buf,
  105. (const unsigned char *)string,
  106. string ? strlen(string) : 0);
  107. }
  108. int cmark_strbuf_putc(strbuf *buf, int c)
  109. {
  110. ENSURE_SIZE(buf, buf->size + 2);
  111. buf->ptr[buf->size++] = c;
  112. buf->ptr[buf->size] = '\0';
  113. return 0;
  114. }
  115. int cmark_strbuf_put(strbuf *buf, const unsigned char *data, int len)
  116. {
  117. if (len <= 0)
  118. return 0;
  119. ENSURE_SIZE(buf, buf->size + len + 1);
  120. memmove(buf->ptr + buf->size, data, len);
  121. buf->size += len;
  122. buf->ptr[buf->size] = '\0';
  123. return 0;
  124. }
  125. int cmark_strbuf_puts(strbuf *buf, const char *string)
  126. {
  127. return cmark_strbuf_put(buf, (const unsigned char *)string, strlen(string));
  128. }
  129. int cmark_strbuf_vprintf(strbuf *buf, const char *format, va_list ap)
  130. {
  131. const int expected_size = buf->size + (strlen(format) * 2);
  132. int len;
  133. ENSURE_SIZE(buf, expected_size);
  134. while (1) {
  135. va_list args;
  136. va_copy(args, ap);
  137. len = vsnprintf(
  138. (char *)buf->ptr + buf->size,
  139. buf->asize - buf->size,
  140. format, args
  141. );
  142. if (len < 0) {
  143. free(buf->ptr);
  144. buf->ptr = cmark_strbuf__oom;
  145. return -1;
  146. }
  147. if (len + 1 <= buf->asize - buf->size) {
  148. buf->size += len;
  149. break;
  150. }
  151. ENSURE_SIZE(buf, buf->size + len + 1);
  152. }
  153. return 0;
  154. }
  155. int cmark_strbuf_printf(strbuf *buf, const char *format, ...)
  156. {
  157. int r;
  158. va_list ap;
  159. va_start(ap, format);
  160. r = cmark_strbuf_vprintf(buf, format, ap);
  161. va_end(ap);
  162. return r;
  163. }
  164. inline const char *cmark_strbuf_cstr(const cmark_strbuf *buf)
  165. {
  166. return (char *)buf->ptr;
  167. }
  168. void cmark_strbuf_copy_cstr(char *data, int datasize, const strbuf *buf)
  169. {
  170. int copylen;
  171. assert(data && datasize && buf);
  172. data[0] = '\0';
  173. if (buf->size == 0 || buf->asize <= 0)
  174. return;
  175. copylen = buf->size;
  176. if (copylen > datasize - 1)
  177. copylen = datasize - 1;
  178. memmove(data, buf->ptr, copylen);
  179. data[copylen] = '\0';
  180. }
  181. void cmark_strbuf_swap(strbuf *buf_a, strbuf *buf_b)
  182. {
  183. strbuf t = *buf_a;
  184. *buf_a = *buf_b;
  185. *buf_b = t;
  186. }
  187. unsigned char *cmark_strbuf_detach(strbuf *buf)
  188. {
  189. unsigned char *data = buf->ptr;
  190. if (buf->asize == 0 || buf->ptr == cmark_strbuf__oom) {
  191. /* return an empty string */
  192. return (unsigned char *)calloc(1, 1);
  193. }
  194. cmark_strbuf_init(buf, 0);
  195. return data;
  196. }
  197. void cmark_strbuf_attach(strbuf *buf, unsigned char *ptr, int asize)
  198. {
  199. cmark_strbuf_free(buf);
  200. if (ptr) {
  201. buf->ptr = ptr;
  202. buf->size = strlen((char *)ptr);
  203. if (asize)
  204. buf->asize = (asize < buf->size) ? buf->size + 1 : asize;
  205. else /* pass 0 to fall back on strlen + 1 */
  206. buf->asize = buf->size + 1;
  207. } else {
  208. cmark_strbuf_grow(buf, asize);
  209. }
  210. }
  211. int cmark_strbuf_cmp(const strbuf *a, const strbuf *b)
  212. {
  213. int result = memcmp(a->ptr, b->ptr, MIN(a->size, b->size));
  214. return (result != 0) ? result :
  215. (a->size < b->size) ? -1 : (a->size > b->size) ? 1 : 0;
  216. }
  217. int cmark_strbuf_strchr(const strbuf *buf, int c, int pos)
  218. {
  219. const unsigned char *p = (unsigned char *)memchr(buf->ptr + pos, c, buf->size - pos);
  220. if (!p)
  221. return -1;
  222. return (int)(p - (const unsigned char *)buf->ptr);
  223. }
  224. int cmark_strbuf_strrchr(const strbuf *buf, int c, int pos)
  225. {
  226. int i;
  227. for (i = pos; i >= 0; i--) {
  228. if (buf->ptr[i] == (unsigned char) c)
  229. return i;
  230. }
  231. return -1;
  232. }
  233. void cmark_strbuf_truncate(strbuf *buf, int len)
  234. {
  235. if (len < buf->size) {
  236. buf->size = len;
  237. buf->ptr[buf->size] = '\0';
  238. }
  239. }
  240. void cmark_strbuf_drop(strbuf *buf, int n)
  241. {
  242. if (n > 0) {
  243. buf->size = buf->size - n;
  244. if (buf->size)
  245. memmove(buf->ptr, buf->ptr + n, buf->size);
  246. buf->ptr[buf->size] = '\0';
  247. }
  248. }
  249. void cmark_strbuf_rtrim(strbuf *buf)
  250. {
  251. if (!buf->size)
  252. return;
  253. while (buf->size > 0) {
  254. if (!isspace(buf->ptr[buf->size - 1]))
  255. break;
  256. buf->size--;
  257. }
  258. buf->ptr[buf->size] = '\0';
  259. }
  260. void cmark_strbuf_trim(strbuf *buf)
  261. {
  262. int i = 0;
  263. if (!buf->size)
  264. return;
  265. while (i < buf->size && isspace(buf->ptr[i]))
  266. i++;
  267. cmark_strbuf_drop(buf, i);
  268. cmark_strbuf_rtrim(buf);
  269. }
  270. // Destructively modify string, collapsing consecutive
  271. // space and newline characters into a single space.
  272. void cmark_strbuf_normalize_whitespace(strbuf *s)
  273. {
  274. bool last_char_was_space = false;
  275. int r, w;
  276. for (r = 0, w = 0; r < s->size; ++r) {
  277. switch (s->ptr[r]) {
  278. case ' ':
  279. case '\n':
  280. if (last_char_was_space)
  281. break;
  282. s->ptr[w++] = ' ';
  283. last_char_was_space = true;
  284. break;
  285. default:
  286. s->ptr[w++] = s->ptr[r];
  287. last_char_was_space = false;
  288. }
  289. }
  290. cmark_strbuf_truncate(s, w);
  291. }
  292. // Destructively unescape a string: remove backslashes before punctuation chars.
  293. extern void cmark_strbuf_unescape(strbuf *buf)
  294. {
  295. int r, w;
  296. for (r = 0, w = 0; r < buf->size; ++r) {
  297. if (buf->ptr[r] == '\\' && ispunct(buf->ptr[r + 1]))
  298. continue;
  299. buf->ptr[w++] = buf->ptr[r];
  300. }
  301. cmark_strbuf_truncate(buf, w);
  302. }