aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.c
blob: b508310441fd15e4e125178d473f70a659ceb476 (plain)
  1. #include <stdarg.h>
  2. #include <string.h>
  3. #include <assert.h>
  4. #include <string.h>
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include "cmark_ctype.h"
  8. #include "buffer.h"
  9. /* Used as default value for cmark_strbuf->ptr so that people can always
  10. * assume ptr is non-NULL and zero terminated even for new cmark_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 && cmark_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(cmark_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(cmark_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(cmark_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(cmark_strbuf *buf)
  83. {
  84. buf->size = 0;
  85. if (buf->asize > 0)
  86. buf->ptr[0] = '\0';
  87. }
  88. int cmark_strbuf_set(cmark_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(cmark_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(cmark_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(cmark_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(cmark_strbuf *buf, const char *string)
  126. {
  127. return cmark_strbuf_put(buf, (const unsigned char *)string, strlen(string));
  128. }
  129. int cmark_strbuf_vprintf(cmark_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(cmark_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. void cmark_strbuf_copy_cstr(char *data, int datasize, const cmark_strbuf *buf)
  165. {
  166. int copylen;
  167. assert(data && datasize && buf);
  168. data[0] = '\0';
  169. if (buf->size == 0 || buf->asize <= 0)
  170. return;
  171. copylen = buf->size;
  172. if (copylen > datasize - 1)
  173. copylen = datasize - 1;
  174. memmove(data, buf->ptr, copylen);
  175. data[copylen] = '\0';
  176. }
  177. void cmark_strbuf_swap(cmark_strbuf *buf_a, cmark_strbuf *buf_b)
  178. {
  179. cmark_strbuf t = *buf_a;
  180. *buf_a = *buf_b;
  181. *buf_b = t;
  182. }
  183. unsigned char *cmark_strbuf_detach(cmark_strbuf *buf)
  184. {
  185. unsigned char *data = buf->ptr;
  186. if (buf->asize == 0 || buf->ptr == cmark_strbuf__oom) {
  187. /* return an empty string */
  188. return (unsigned char *)calloc(1, 1);
  189. }
  190. cmark_strbuf_init(buf, 0);
  191. return data;
  192. }
  193. void cmark_strbuf_attach(cmark_strbuf *buf, unsigned char *ptr, int asize)
  194. {
  195. cmark_strbuf_free(buf);
  196. if (ptr) {
  197. buf->ptr = ptr;
  198. buf->size = strlen((char *)ptr);
  199. if (asize)
  200. buf->asize = (asize < buf->size) ? buf->size + 1 : asize;
  201. else /* pass 0 to fall back on strlen + 1 */
  202. buf->asize = buf->size + 1;
  203. } else {
  204. cmark_strbuf_grow(buf, asize);
  205. }
  206. }
  207. int cmark_strbuf_cmp(const cmark_strbuf *a, const cmark_strbuf *b)
  208. {
  209. int result = memcmp(a->ptr, b->ptr, MIN(a->size, b->size));
  210. return (result != 0) ? result :
  211. (a->size < b->size) ? -1 : (a->size > b->size) ? 1 : 0;
  212. }
  213. int cmark_strbuf_strchr(const cmark_strbuf *buf, int c, int pos)
  214. {
  215. const unsigned char *p = (unsigned char *)memchr(buf->ptr + pos, c, buf->size - pos);
  216. if (!p)
  217. return -1;
  218. return (int)(p - (const unsigned char *)buf->ptr);
  219. }
  220. int cmark_strbuf_strrchr(const cmark_strbuf *buf, int c, int pos)
  221. {
  222. int i;
  223. for (i = pos; i >= 0; i--) {
  224. if (buf->ptr[i] == (unsigned char) c)
  225. return i;
  226. }
  227. return -1;
  228. }
  229. void cmark_strbuf_truncate(cmark_strbuf *buf, int len)
  230. {
  231. if (len < buf->size) {
  232. buf->size = len;
  233. buf->ptr[buf->size] = '\0';
  234. }
  235. }
  236. void cmark_strbuf_drop(cmark_strbuf *buf, int n)
  237. {
  238. if (n > 0) {
  239. buf->size = buf->size - n;
  240. if (buf->size)
  241. memmove(buf->ptr, buf->ptr + n, buf->size);
  242. buf->ptr[buf->size] = '\0';
  243. }
  244. }
  245. void cmark_strbuf_rtrim(cmark_strbuf *buf)
  246. {
  247. if (!buf->size)
  248. return;
  249. while (buf->size > 0) {
  250. if (!cmark_isspace(buf->ptr[buf->size - 1]))
  251. break;
  252. buf->size--;
  253. }
  254. buf->ptr[buf->size] = '\0';
  255. }
  256. void cmark_strbuf_trim(cmark_strbuf *buf)
  257. {
  258. int i = 0;
  259. if (!buf->size)
  260. return;
  261. while (i < buf->size && cmark_isspace(buf->ptr[i]))
  262. i++;
  263. cmark_strbuf_drop(buf, i);
  264. cmark_strbuf_rtrim(buf);
  265. }
  266. // Destructively modify string, collapsing consecutive
  267. // space and newline characters into a single space.
  268. void cmark_strbuf_normalize_whitespace(cmark_strbuf *s)
  269. {
  270. bool last_char_was_space = false;
  271. int r, w;
  272. for (r = 0, w = 0; r < s->size; ++r) {
  273. switch (s->ptr[r]) {
  274. case ' ':
  275. case '\n':
  276. if (last_char_was_space)
  277. break;
  278. s->ptr[w++] = ' ';
  279. last_char_was_space = true;
  280. break;
  281. default:
  282. s->ptr[w++] = s->ptr[r];
  283. last_char_was_space = false;
  284. }
  285. }
  286. cmark_strbuf_truncate(s, w);
  287. }
  288. // Destructively unescape a string: remove backslashes before punctuation chars.
  289. extern void cmark_strbuf_unescape(cmark_strbuf *buf)
  290. {
  291. int r, w;
  292. for (r = 0, w = 0; r < buf->size; ++r) {
  293. if (buf->ptr[r] == '\\' && cmark_ispunct(buf->ptr[r + 1]))
  294. continue;
  295. buf->ptr[w++] = buf->ptr[r];
  296. }
  297. cmark_strbuf_truncate(buf, w);
  298. }