aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.c
blob: c7b784acd231238d5d1f6d53b55ed0377d153c5d (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. len = vsnprintf(
  136. (char *)buf->ptr + buf->size,
  137. buf->asize - buf->size,
  138. format, ap
  139. );
  140. if (len < 0) {
  141. free(buf->ptr);
  142. buf->ptr = cmark_strbuf__oom;
  143. return -1;
  144. }
  145. if (len + 1 <= buf->asize - buf->size) {
  146. buf->size += len;
  147. break;
  148. }
  149. ENSURE_SIZE(buf, buf->size + len + 1);
  150. }
  151. return 0;
  152. }
  153. int cmark_strbuf_printf(strbuf *buf, const char *format, ...)
  154. {
  155. int r;
  156. va_list ap;
  157. va_start(ap, format);
  158. r = cmark_strbuf_vprintf(buf, format, ap);
  159. va_end(ap);
  160. return r;
  161. }
  162. inline const char *cmark_strbuf_cstr(const cmark_strbuf *buf)
  163. {
  164. return (char *)buf->ptr;
  165. }
  166. void cmark_strbuf_copy_cstr(char *data, int datasize, const strbuf *buf)
  167. {
  168. int copylen;
  169. assert(data && datasize && buf);
  170. data[0] = '\0';
  171. if (buf->size == 0 || buf->asize <= 0)
  172. return;
  173. copylen = buf->size;
  174. if (copylen > datasize - 1)
  175. copylen = datasize - 1;
  176. memmove(data, buf->ptr, copylen);
  177. data[copylen] = '\0';
  178. }
  179. void cmark_strbuf_swap(strbuf *buf_a, strbuf *buf_b)
  180. {
  181. strbuf t = *buf_a;
  182. *buf_a = *buf_b;
  183. *buf_b = t;
  184. }
  185. unsigned char *cmark_strbuf_detach(strbuf *buf)
  186. {
  187. unsigned char *data = buf->ptr;
  188. if (buf->asize == 0 || buf->ptr == cmark_strbuf__oom) {
  189. /* return an empty string */
  190. return (unsigned char *)calloc(1, 1);
  191. }
  192. cmark_strbuf_init(buf, 0);
  193. return data;
  194. }
  195. void cmark_strbuf_attach(strbuf *buf, unsigned char *ptr, int asize)
  196. {
  197. cmark_strbuf_free(buf);
  198. if (ptr) {
  199. buf->ptr = ptr;
  200. buf->size = strlen((char *)ptr);
  201. if (asize)
  202. buf->asize = (asize < buf->size) ? buf->size + 1 : asize;
  203. else /* pass 0 to fall back on strlen + 1 */
  204. buf->asize = buf->size + 1;
  205. } else {
  206. cmark_strbuf_grow(buf, asize);
  207. }
  208. }
  209. int cmark_strbuf_cmp(const strbuf *a, const strbuf *b)
  210. {
  211. int result = memcmp(a->ptr, b->ptr, MIN(a->size, b->size));
  212. return (result != 0) ? result :
  213. (a->size < b->size) ? -1 : (a->size > b->size) ? 1 : 0;
  214. }
  215. int cmark_strbuf_strchr(const strbuf *buf, int c, int pos)
  216. {
  217. const unsigned char *p = (unsigned char *)memchr(buf->ptr + pos, c, buf->size - pos);
  218. if (!p)
  219. return -1;
  220. return (int)(p - (const unsigned char *)buf->ptr);
  221. }
  222. int cmark_strbuf_strrchr(const strbuf *buf, int c, int pos)
  223. {
  224. int i;
  225. for (i = pos; i >= 0; i--) {
  226. if (buf->ptr[i] == (unsigned char) c)
  227. return i;
  228. }
  229. return -1;
  230. }
  231. void cmark_strbuf_truncate(strbuf *buf, int len)
  232. {
  233. if (len < buf->size) {
  234. buf->size = len;
  235. buf->ptr[buf->size] = '\0';
  236. }
  237. }
  238. void cmark_strbuf_drop(strbuf *buf, int n)
  239. {
  240. if (n > 0) {
  241. buf->size = buf->size - n;
  242. if (buf->size)
  243. memmove(buf->ptr, buf->ptr + n, buf->size);
  244. buf->ptr[buf->size] = '\0';
  245. }
  246. }
  247. void cmark_strbuf_rtrim(strbuf *buf)
  248. {
  249. if (!buf->size)
  250. return;
  251. while (buf->size > 0) {
  252. if (!isspace(buf->ptr[buf->size - 1]))
  253. break;
  254. buf->size--;
  255. }
  256. buf->ptr[buf->size] = '\0';
  257. }
  258. void cmark_strbuf_trim(strbuf *buf)
  259. {
  260. int i = 0;
  261. if (!buf->size)
  262. return;
  263. while (i < buf->size && isspace(buf->ptr[i]))
  264. i++;
  265. cmark_strbuf_drop(buf, i);
  266. cmark_strbuf_rtrim(buf);
  267. }
  268. // Destructively modify string, collapsing consecutive
  269. // space and newline characters into a single space.
  270. void cmark_strbuf_normalize_whitespace(strbuf *s)
  271. {
  272. bool last_char_was_space = false;
  273. int r, w;
  274. for (r = 0, w = 0; r < s->size; ++r) {
  275. switch (s->ptr[r]) {
  276. case ' ':
  277. case '\n':
  278. if (last_char_was_space)
  279. break;
  280. s->ptr[w++] = ' ';
  281. last_char_was_space = true;
  282. break;
  283. default:
  284. s->ptr[w++] = s->ptr[r];
  285. last_char_was_space = false;
  286. }
  287. }
  288. cmark_strbuf_truncate(s, w);
  289. }
  290. // Destructively unescape a string: remove backslashes before punctuation chars.
  291. extern void cmark_strbuf_unescape(strbuf *buf)
  292. {
  293. int r, w;
  294. for (r = 0, w = 0; r < buf->size; ++r) {
  295. if (buf->ptr[r] == '\\' && ispunct(buf->ptr[r + 1]))
  296. continue;
  297. buf->ptr[w++] = buf->ptr[r];
  298. }
  299. cmark_strbuf_truncate(buf, w);
  300. }