4 int prefixcmp(const char *str, const char *prefix)
6 for (; ; str++, prefix++)
9 else if (*str != *prefix)
10 return (unsigned char)*prefix - (unsigned char)*str;
13 int suffixcmp(const char *str, const char *suffix)
15 int len = strlen(str), suflen = strlen(suffix);
19 return strcmp(str + len - suflen, suffix);
23 * Used as the default ->buf value, so that people can always assume
24 * buf is non NULL and ->buf is NUL terminated even for a freshly
27 char strbuf_slopbuf[1];
29 void strbuf_init(struct strbuf *sb, size_t hint)
31 sb->alloc = sb->len = 0;
32 sb->buf = strbuf_slopbuf;
34 strbuf_grow(sb, hint);
37 void strbuf_release(struct strbuf *sb)
45 char *strbuf_detach(struct strbuf *sb, size_t *sz)
56 void strbuf_attach(struct strbuf *sb, void *buf, size_t len, size_t alloc)
63 sb->buf[sb->len] = '\0';
66 void strbuf_grow(struct strbuf *sb, size_t extra)
68 int new_buf = !sb->alloc;
69 if (unsigned_add_overflows(extra, 1) ||
70 unsigned_add_overflows(sb->len, extra + 1))
71 die("you want to use way too much memory");
74 ALLOC_GROW(sb->buf, sb->len + extra + 1, sb->alloc);
79 void strbuf_trim(struct strbuf *sb)
82 while (sb->len > 0 && isspace((unsigned char)sb->buf[sb->len - 1]))
84 while (sb->len > 0 && isspace(*b)) {
88 memmove(sb->buf, b, sb->len);
89 sb->buf[sb->len] = '\0';
91 void strbuf_rtrim(struct strbuf *sb)
93 while (sb->len > 0 && isspace((unsigned char)sb->buf[sb->len - 1]))
95 sb->buf[sb->len] = '\0';
98 void strbuf_ltrim(struct strbuf *sb)
101 while (sb->len > 0 && isspace(*b)) {
105 memmove(sb->buf, b, sb->len);
106 sb->buf[sb->len] = '\0';
109 struct strbuf **strbuf_split_buf(const char *str, size_t slen,
110 int terminator, int max)
112 struct strbuf **ret = NULL;
113 size_t nr = 0, alloc = 0;
118 if (max <= 0 || nr + 1 < max) {
119 const char *end = memchr(str, terminator, slen);
123 t = xmalloc(sizeof(struct strbuf));
125 strbuf_add(t, str, len);
126 ALLOC_GROW(ret, nr + 2, alloc);
131 ALLOC_GROW(ret, nr + 1, alloc); /* In case string was empty */
136 void strbuf_list_free(struct strbuf **sbs)
138 struct strbuf **s = sbs;
147 int strbuf_cmp(const struct strbuf *a, const struct strbuf *b)
149 int len = a->len < b->len ? a->len: b->len;
150 int cmp = memcmp(a->buf, b->buf, len);
153 return a->len < b->len ? -1: a->len != b->len;
156 void strbuf_splice(struct strbuf *sb, size_t pos, size_t len,
157 const void *data, size_t dlen)
159 if (unsigned_add_overflows(pos, len))
160 die("you want to use way too much memory");
162 die("`pos' is too far after the end of the buffer");
163 if (pos + len > sb->len)
164 die("`pos + len' is too far after the end of the buffer");
167 strbuf_grow(sb, dlen - len);
168 memmove(sb->buf + pos + dlen,
170 sb->len - pos - len);
171 memcpy(sb->buf + pos, data, dlen);
172 strbuf_setlen(sb, sb->len + dlen - len);
175 void strbuf_insert(struct strbuf *sb, size_t pos, const void *data, size_t len)
177 strbuf_splice(sb, pos, 0, data, len);
180 void strbuf_remove(struct strbuf *sb, size_t pos, size_t len)
182 strbuf_splice(sb, pos, len, NULL, 0);
185 void strbuf_add(struct strbuf *sb, const void *data, size_t len)
187 strbuf_grow(sb, len);
188 memcpy(sb->buf + sb->len, data, len);
189 strbuf_setlen(sb, sb->len + len);
192 void strbuf_adddup(struct strbuf *sb, size_t pos, size_t len)
194 strbuf_grow(sb, len);
195 memcpy(sb->buf + sb->len, sb->buf + pos, len);
196 strbuf_setlen(sb, sb->len + len);
199 void strbuf_addf(struct strbuf *sb, const char *fmt, ...)
203 strbuf_vaddf(sb, fmt, ap);
207 static void add_lines(struct strbuf *out,
210 const char *buf, size_t size)
214 const char *next = memchr(buf, '\n', size);
215 next = next ? (next + 1) : (buf + size);
217 prefix = (prefix2 && buf[0] == '\n') ? prefix2 : prefix1;
218 strbuf_addstr(out, prefix);
219 strbuf_add(out, buf, next - buf);
223 strbuf_complete_line(out);
226 void strbuf_add_commented_lines(struct strbuf *out, const char *buf, size_t size)
228 static char prefix1[3];
229 static char prefix2[2];
231 if (prefix1[0] != comment_line_char) {
232 sprintf(prefix1, "%c ", comment_line_char);
233 sprintf(prefix2, "%c", comment_line_char);
235 add_lines(out, prefix1, prefix2, buf, size);
238 void strbuf_commented_addf(struct strbuf *sb, const char *fmt, ...)
241 struct strbuf buf = STRBUF_INIT;
242 int incomplete_line = sb->len && sb->buf[sb->len - 1] != '\n';
244 va_start(params, fmt);
245 strbuf_vaddf(&buf, fmt, params);
248 strbuf_add_commented_lines(sb, buf.buf, buf.len);
250 sb->buf[--sb->len] = '\0';
252 strbuf_release(&buf);
255 void strbuf_vaddf(struct strbuf *sb, const char *fmt, va_list ap)
260 if (!strbuf_avail(sb))
263 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, cp);
266 die("BUG: your vsnprintf is broken (returned %d)", len);
267 if (len > strbuf_avail(sb)) {
268 strbuf_grow(sb, len);
269 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, ap);
270 if (len > strbuf_avail(sb))
271 die("BUG: your vsnprintf is broken (insatiable)");
273 strbuf_setlen(sb, sb->len + len);
276 void strbuf_expand(struct strbuf *sb, const char *format, expand_fn_t fn,
283 percent = strchrnul(format, '%');
284 strbuf_add(sb, format, percent - format);
287 format = percent + 1;
289 if (*format == '%') {
290 strbuf_addch(sb, '%');
295 consumed = fn(sb, format, context);
299 strbuf_addch(sb, '%');
303 size_t strbuf_expand_dict_cb(struct strbuf *sb, const char *placeholder,
306 struct strbuf_expand_dict_entry *e = context;
309 for (; e->placeholder && (len = strlen(e->placeholder)); e++) {
310 if (!strncmp(placeholder, e->placeholder, len)) {
312 strbuf_addstr(sb, e->value);
319 void strbuf_addbuf_percentquote(struct strbuf *dst, const struct strbuf *src)
321 int i, len = src->len;
323 for (i = 0; i < len; i++) {
324 if (src->buf[i] == '%')
325 strbuf_addch(dst, '%');
326 strbuf_addch(dst, src->buf[i]);
330 size_t strbuf_fread(struct strbuf *sb, size_t size, FILE *f)
333 size_t oldalloc = sb->alloc;
335 strbuf_grow(sb, size);
336 res = fread(sb->buf + sb->len, 1, size, f);
338 strbuf_setlen(sb, sb->len + res);
339 else if (oldalloc == 0)
344 ssize_t strbuf_read(struct strbuf *sb, int fd, size_t hint)
346 size_t oldlen = sb->len;
347 size_t oldalloc = sb->alloc;
349 strbuf_grow(sb, hint ? hint : 8192);
353 cnt = xread(fd, sb->buf + sb->len, sb->alloc - sb->len - 1);
358 strbuf_setlen(sb, oldlen);
364 strbuf_grow(sb, 8192);
367 sb->buf[sb->len] = '\0';
368 return sb->len - oldlen;
371 #define STRBUF_MAXLINK (2*PATH_MAX)
373 int strbuf_readlink(struct strbuf *sb, const char *path, size_t hint)
375 size_t oldalloc = sb->alloc;
380 while (hint < STRBUF_MAXLINK) {
383 strbuf_grow(sb, hint);
384 len = readlink(path, sb->buf, hint);
388 } else if (len < hint) {
389 strbuf_setlen(sb, len);
393 /* .. the buffer was too small - try again */
401 int strbuf_getwholeline(struct strbuf *sb, FILE *fp, int term)
409 while ((ch = fgetc(fp)) != EOF) {
411 sb->buf[sb->len++] = ch;
415 if (ch == EOF && sb->len == 0)
418 sb->buf[sb->len] = '\0';
422 int strbuf_getline(struct strbuf *sb, FILE *fp, int term)
424 if (strbuf_getwholeline(sb, fp, term))
426 if (sb->buf[sb->len-1] == term)
427 strbuf_setlen(sb, sb->len-1);
431 int strbuf_getwholeline_fd(struct strbuf *sb, int fd, int term)
437 ssize_t len = xread(fd, &ch, 1);
440 strbuf_addch(sb, ch);
447 int strbuf_read_file(struct strbuf *sb, const char *path, size_t hint)
451 fd = open(path, O_RDONLY);
454 len = strbuf_read(sb, fd, hint);
462 void strbuf_add_lines(struct strbuf *out, const char *prefix,
463 const char *buf, size_t size)
465 add_lines(out, prefix, NULL, buf, size);
468 void strbuf_addstr_xml_quoted(struct strbuf *buf, const char *s)
471 size_t len = strcspn(s, "\"<>&");
472 strbuf_add(buf, s, len);
476 strbuf_addstr(buf, """);
479 strbuf_addstr(buf, "<");
482 strbuf_addstr(buf, ">");
485 strbuf_addstr(buf, "&");
494 static int is_rfc3986_reserved(char ch)
497 case '!': case '*': case '\'': case '(': case ')': case ';':
498 case ':': case '@': case '&': case '=': case '+': case '$':
499 case ',': case '/': case '?': case '#': case '[': case ']':
505 static int is_rfc3986_unreserved(char ch)
507 return isalnum(ch) ||
508 ch == '-' || ch == '_' || ch == '.' || ch == '~';
511 static void strbuf_add_urlencode(struct strbuf *sb, const char *s, size_t len,
514 strbuf_grow(sb, len);
517 if (is_rfc3986_unreserved(ch) ||
518 (!reserved && is_rfc3986_reserved(ch)))
519 strbuf_addch(sb, ch);
521 strbuf_addf(sb, "%%%02x", ch);
525 void strbuf_addstr_urlencode(struct strbuf *sb, const char *s,
528 strbuf_add_urlencode(sb, s, strlen(s), reserved);
531 void strbuf_humanise_bytes(struct strbuf *buf, off_t bytes)
533 if (bytes > 1 << 30) {
534 strbuf_addf(buf, "%u.%2.2u GiB",
536 (int)(bytes & ((1 << 30) - 1)) / 10737419);
537 } else if (bytes > 1 << 20) {
538 int x = bytes + 5243; /* for rounding */
539 strbuf_addf(buf, "%u.%2.2u MiB",
540 x >> 20, ((x & ((1 << 20) - 1)) * 100) >> 20);
541 } else if (bytes > 1 << 10) {
542 int x = bytes + 5; /* for rounding */
543 strbuf_addf(buf, "%u.%2.2u KiB",
544 x >> 10, ((x & ((1 << 10) - 1)) * 100) >> 10);
546 strbuf_addf(buf, "%u bytes", (int)bytes);
550 int printf_ln(const char *fmt, ...)
555 ret = vprintf(fmt, ap);
557 if (ret < 0 || putchar('\n') == EOF)
562 int fprintf_ln(FILE *fp, const char *fmt, ...)
567 ret = vfprintf(fp, fmt, ap);
569 if (ret < 0 || putc('\n', fp) == EOF)