object-store-ll.h: split this header out of object-store.h
[alt-git.git] / strbuf.c
blobd070e007f8a35c420e50c20c6d8d2983841e0af0
1 #include "git-compat-util.h"
2 #include "abspath.h"
3 #include "alloc.h"
4 #include "environment.h"
5 #include "gettext.h"
6 #include "hex.h"
7 #include "object-name.h"
8 #include "refs.h"
9 #include "path.h"
10 #include "repository.h"
11 #include "string-list.h"
12 #include "utf8.h"
13 #include "date.h"
14 #include "wrapper.h"
16 int starts_with(const char *str, const char *prefix)
18 for (; ; str++, prefix++)
19 if (!*prefix)
20 return 1;
21 else if (*str != *prefix)
22 return 0;
25 int istarts_with(const char *str, const char *prefix)
27 for (; ; str++, prefix++)
28 if (!*prefix)
29 return 1;
30 else if (tolower(*str) != tolower(*prefix))
31 return 0;
34 int skip_to_optional_arg_default(const char *str, const char *prefix,
35 const char **arg, const char *def)
37 const char *p;
39 if (!skip_prefix(str, prefix, &p))
40 return 0;
42 if (!*p) {
43 if (arg)
44 *arg = def;
45 return 1;
48 if (*p != '=')
49 return 0;
51 if (arg)
52 *arg = p + 1;
53 return 1;
57 * Used as the default ->buf value, so that people can always assume
58 * buf is non NULL and ->buf is NUL terminated even for a freshly
59 * initialized strbuf.
61 char strbuf_slopbuf[1];
63 void strbuf_init(struct strbuf *sb, size_t hint)
65 struct strbuf blank = STRBUF_INIT;
66 memcpy(sb, &blank, sizeof(*sb));
67 if (hint)
68 strbuf_grow(sb, hint);
71 void strbuf_release(struct strbuf *sb)
73 if (sb->alloc) {
74 free(sb->buf);
75 strbuf_init(sb, 0);
79 char *strbuf_detach(struct strbuf *sb, size_t *sz)
81 char *res;
82 strbuf_grow(sb, 0);
83 res = sb->buf;
84 if (sz)
85 *sz = sb->len;
86 strbuf_init(sb, 0);
87 return res;
90 void strbuf_attach(struct strbuf *sb, void *buf, size_t len, size_t alloc)
92 strbuf_release(sb);
93 sb->buf = buf;
94 sb->len = len;
95 sb->alloc = alloc;
96 strbuf_grow(sb, 0);
97 sb->buf[sb->len] = '\0';
100 void strbuf_grow(struct strbuf *sb, size_t extra)
102 int new_buf = !sb->alloc;
103 if (unsigned_add_overflows(extra, 1) ||
104 unsigned_add_overflows(sb->len, extra + 1))
105 die("you want to use way too much memory");
106 if (new_buf)
107 sb->buf = NULL;
108 ALLOC_GROW(sb->buf, sb->len + extra + 1, sb->alloc);
109 if (new_buf)
110 sb->buf[0] = '\0';
113 void strbuf_trim(struct strbuf *sb)
115 strbuf_rtrim(sb);
116 strbuf_ltrim(sb);
119 void strbuf_rtrim(struct strbuf *sb)
121 while (sb->len > 0 && isspace((unsigned char)sb->buf[sb->len - 1]))
122 sb->len--;
123 sb->buf[sb->len] = '\0';
126 void strbuf_trim_trailing_dir_sep(struct strbuf *sb)
128 while (sb->len > 0 && is_dir_sep((unsigned char)sb->buf[sb->len - 1]))
129 sb->len--;
130 sb->buf[sb->len] = '\0';
133 void strbuf_trim_trailing_newline(struct strbuf *sb)
135 if (sb->len > 0 && sb->buf[sb->len - 1] == '\n') {
136 if (--sb->len > 0 && sb->buf[sb->len - 1] == '\r')
137 --sb->len;
138 sb->buf[sb->len] = '\0';
142 void strbuf_ltrim(struct strbuf *sb)
144 char *b = sb->buf;
145 while (sb->len > 0 && isspace(*b)) {
146 b++;
147 sb->len--;
149 memmove(sb->buf, b, sb->len);
150 sb->buf[sb->len] = '\0';
153 int strbuf_reencode(struct strbuf *sb, const char *from, const char *to)
155 char *out;
156 size_t len;
158 if (same_encoding(from, to))
159 return 0;
161 out = reencode_string_len(sb->buf, sb->len, to, from, &len);
162 if (!out)
163 return -1;
165 strbuf_attach(sb, out, len, len);
166 return 0;
169 void strbuf_tolower(struct strbuf *sb)
171 char *p = sb->buf, *end = sb->buf + sb->len;
172 for (; p < end; p++)
173 *p = tolower(*p);
176 struct strbuf **strbuf_split_buf(const char *str, size_t slen,
177 int terminator, int max)
179 struct strbuf **ret = NULL;
180 size_t nr = 0, alloc = 0;
181 struct strbuf *t;
183 while (slen) {
184 int len = slen;
185 if (max <= 0 || nr + 1 < max) {
186 const char *end = memchr(str, terminator, slen);
187 if (end)
188 len = end - str + 1;
190 t = xmalloc(sizeof(struct strbuf));
191 strbuf_init(t, len);
192 strbuf_add(t, str, len);
193 ALLOC_GROW(ret, nr + 2, alloc);
194 ret[nr++] = t;
195 str += len;
196 slen -= len;
198 ALLOC_GROW(ret, nr + 1, alloc); /* In case string was empty */
199 ret[nr] = NULL;
200 return ret;
203 void strbuf_add_separated_string_list(struct strbuf *str,
204 const char *sep,
205 struct string_list *slist)
207 struct string_list_item *item;
208 int sep_needed = 0;
210 for_each_string_list_item(item, slist) {
211 if (sep_needed)
212 strbuf_addstr(str, sep);
213 strbuf_addstr(str, item->string);
214 sep_needed = 1;
218 void strbuf_list_free(struct strbuf **sbs)
220 struct strbuf **s = sbs;
222 if (!s)
223 return;
224 while (*s) {
225 strbuf_release(*s);
226 free(*s++);
228 free(sbs);
231 int strbuf_cmp(const struct strbuf *a, const struct strbuf *b)
233 size_t len = a->len < b->len ? a->len: b->len;
234 int cmp = memcmp(a->buf, b->buf, len);
235 if (cmp)
236 return cmp;
237 return a->len < b->len ? -1: a->len != b->len;
240 void strbuf_splice(struct strbuf *sb, size_t pos, size_t len,
241 const void *data, size_t dlen)
243 if (unsigned_add_overflows(pos, len))
244 die("you want to use way too much memory");
245 if (pos > sb->len)
246 die("`pos' is too far after the end of the buffer");
247 if (pos + len > sb->len)
248 die("`pos + len' is too far after the end of the buffer");
250 if (dlen >= len)
251 strbuf_grow(sb, dlen - len);
252 memmove(sb->buf + pos + dlen,
253 sb->buf + pos + len,
254 sb->len - pos - len);
255 memcpy(sb->buf + pos, data, dlen);
256 strbuf_setlen(sb, sb->len + dlen - len);
259 void strbuf_insert(struct strbuf *sb, size_t pos, const void *data, size_t len)
261 strbuf_splice(sb, pos, 0, data, len);
264 void strbuf_vinsertf(struct strbuf *sb, size_t pos, const char *fmt, va_list ap)
266 int len, len2;
267 char save;
268 va_list cp;
270 if (pos > sb->len)
271 die("`pos' is too far after the end of the buffer");
272 va_copy(cp, ap);
273 len = vsnprintf(sb->buf + sb->len, 0, fmt, cp);
274 va_end(cp);
275 if (len < 0)
276 BUG("your vsnprintf is broken (returned %d)", len);
277 if (!len)
278 return; /* nothing to do */
279 if (unsigned_add_overflows(sb->len, len))
280 die("you want to use way too much memory");
281 strbuf_grow(sb, len);
282 memmove(sb->buf + pos + len, sb->buf + pos, sb->len - pos);
283 /* vsnprintf() will append a NUL, overwriting one of our characters */
284 save = sb->buf[pos + len];
285 len2 = vsnprintf(sb->buf + pos, len + 1, fmt, ap);
286 sb->buf[pos + len] = save;
287 if (len2 != len)
288 BUG("your vsnprintf is broken (returns inconsistent lengths)");
289 strbuf_setlen(sb, sb->len + len);
292 void strbuf_insertf(struct strbuf *sb, size_t pos, const char *fmt, ...)
294 va_list ap;
295 va_start(ap, fmt);
296 strbuf_vinsertf(sb, pos, fmt, ap);
297 va_end(ap);
300 void strbuf_remove(struct strbuf *sb, size_t pos, size_t len)
302 strbuf_splice(sb, pos, len, "", 0);
305 void strbuf_add(struct strbuf *sb, const void *data, size_t len)
307 strbuf_grow(sb, len);
308 memcpy(sb->buf + sb->len, data, len);
309 strbuf_setlen(sb, sb->len + len);
312 void strbuf_addbuf(struct strbuf *sb, const struct strbuf *sb2)
314 strbuf_grow(sb, sb2->len);
315 memcpy(sb->buf + sb->len, sb2->buf, sb2->len);
316 strbuf_setlen(sb, sb->len + sb2->len);
319 const char *strbuf_join_argv(struct strbuf *buf,
320 int argc, const char **argv, char delim)
322 if (!argc)
323 return buf->buf;
325 strbuf_addstr(buf, *argv);
326 while (--argc) {
327 strbuf_addch(buf, delim);
328 strbuf_addstr(buf, *(++argv));
331 return buf->buf;
334 void strbuf_addchars(struct strbuf *sb, int c, size_t n)
336 strbuf_grow(sb, n);
337 memset(sb->buf + sb->len, c, n);
338 strbuf_setlen(sb, sb->len + n);
341 void strbuf_addf(struct strbuf *sb, const char *fmt, ...)
343 va_list ap;
344 va_start(ap, fmt);
345 strbuf_vaddf(sb, fmt, ap);
346 va_end(ap);
349 static void add_lines(struct strbuf *out,
350 const char *prefix1,
351 const char *prefix2,
352 const char *buf, size_t size)
354 while (size) {
355 const char *prefix;
356 const char *next = memchr(buf, '\n', size);
357 next = next ? (next + 1) : (buf + size);
359 prefix = ((prefix2 && (buf[0] == '\n' || buf[0] == '\t'))
360 ? prefix2 : prefix1);
361 strbuf_addstr(out, prefix);
362 strbuf_add(out, buf, next - buf);
363 size -= next - buf;
364 buf = next;
366 strbuf_complete_line(out);
369 void strbuf_add_commented_lines(struct strbuf *out, const char *buf, size_t size)
371 static char prefix1[3];
372 static char prefix2[2];
374 if (prefix1[0] != comment_line_char) {
375 xsnprintf(prefix1, sizeof(prefix1), "%c ", comment_line_char);
376 xsnprintf(prefix2, sizeof(prefix2), "%c", comment_line_char);
378 add_lines(out, prefix1, prefix2, buf, size);
381 void strbuf_commented_addf(struct strbuf *sb, const char *fmt, ...)
383 va_list params;
384 struct strbuf buf = STRBUF_INIT;
385 int incomplete_line = sb->len && sb->buf[sb->len - 1] != '\n';
387 va_start(params, fmt);
388 strbuf_vaddf(&buf, fmt, params);
389 va_end(params);
391 strbuf_add_commented_lines(sb, buf.buf, buf.len);
392 if (incomplete_line)
393 sb->buf[--sb->len] = '\0';
395 strbuf_release(&buf);
398 void strbuf_vaddf(struct strbuf *sb, const char *fmt, va_list ap)
400 int len;
401 va_list cp;
403 if (!strbuf_avail(sb))
404 strbuf_grow(sb, 64);
405 va_copy(cp, ap);
406 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, cp);
407 va_end(cp);
408 if (len < 0)
409 BUG("your vsnprintf is broken (returned %d)", len);
410 if (len > strbuf_avail(sb)) {
411 strbuf_grow(sb, len);
412 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, ap);
413 if (len > strbuf_avail(sb))
414 BUG("your vsnprintf is broken (insatiable)");
416 strbuf_setlen(sb, sb->len + len);
419 void strbuf_expand(struct strbuf *sb, const char *format, expand_fn_t fn,
420 void *context)
422 for (;;) {
423 const char *percent;
424 size_t consumed;
426 percent = strchrnul(format, '%');
427 strbuf_add(sb, format, percent - format);
428 if (!*percent)
429 break;
430 format = percent + 1;
432 if (*format == '%') {
433 strbuf_addch(sb, '%');
434 format++;
435 continue;
438 consumed = fn(sb, format, context);
439 if (consumed)
440 format += consumed;
441 else
442 strbuf_addch(sb, '%');
446 size_t strbuf_expand_literal_cb(struct strbuf *sb,
447 const char *placeholder,
448 void *context UNUSED)
450 int ch;
452 switch (placeholder[0]) {
453 case 'n': /* newline */
454 strbuf_addch(sb, '\n');
455 return 1;
456 case 'x':
457 /* %x00 == NUL, %x0a == LF, etc. */
458 ch = hex2chr(placeholder + 1);
459 if (ch < 0)
460 return 0;
461 strbuf_addch(sb, ch);
462 return 3;
464 return 0;
467 size_t strbuf_expand_dict_cb(struct strbuf *sb, const char *placeholder,
468 void *context)
470 struct strbuf_expand_dict_entry *e = context;
471 size_t len;
473 for (; e->placeholder && (len = strlen(e->placeholder)); e++) {
474 if (!strncmp(placeholder, e->placeholder, len)) {
475 if (e->value)
476 strbuf_addstr(sb, e->value);
477 return len;
480 return 0;
483 void strbuf_addbuf_percentquote(struct strbuf *dst, const struct strbuf *src)
485 size_t i, len = src->len;
487 for (i = 0; i < len; i++) {
488 if (src->buf[i] == '%')
489 strbuf_addch(dst, '%');
490 strbuf_addch(dst, src->buf[i]);
494 #define URL_UNSAFE_CHARS " <>\"%{}|\\^`:?#[]@!$&'()*+,;="
496 void strbuf_add_percentencode(struct strbuf *dst, const char *src, int flags)
498 size_t i, len = strlen(src);
500 for (i = 0; i < len; i++) {
501 unsigned char ch = src[i];
502 if (ch <= 0x1F || ch >= 0x7F ||
503 (ch == '/' && (flags & STRBUF_ENCODE_SLASH)) ||
504 strchr(URL_UNSAFE_CHARS, ch))
505 strbuf_addf(dst, "%%%02X", (unsigned char)ch);
506 else
507 strbuf_addch(dst, ch);
511 size_t strbuf_fread(struct strbuf *sb, size_t size, FILE *f)
513 size_t res;
514 size_t oldalloc = sb->alloc;
516 strbuf_grow(sb, size);
517 res = fread(sb->buf + sb->len, 1, size, f);
518 if (res > 0)
519 strbuf_setlen(sb, sb->len + res);
520 else if (oldalloc == 0)
521 strbuf_release(sb);
522 return res;
525 ssize_t strbuf_read(struct strbuf *sb, int fd, size_t hint)
527 size_t oldlen = sb->len;
528 size_t oldalloc = sb->alloc;
530 strbuf_grow(sb, hint ? hint : 8192);
531 for (;;) {
532 ssize_t want = sb->alloc - sb->len - 1;
533 ssize_t got = read_in_full(fd, sb->buf + sb->len, want);
535 if (got < 0) {
536 if (oldalloc == 0)
537 strbuf_release(sb);
538 else
539 strbuf_setlen(sb, oldlen);
540 return -1;
542 sb->len += got;
543 if (got < want)
544 break;
545 strbuf_grow(sb, 8192);
548 sb->buf[sb->len] = '\0';
549 return sb->len - oldlen;
552 ssize_t strbuf_read_once(struct strbuf *sb, int fd, size_t hint)
554 size_t oldalloc = sb->alloc;
555 ssize_t cnt;
557 strbuf_grow(sb, hint ? hint : 8192);
558 cnt = xread(fd, sb->buf + sb->len, sb->alloc - sb->len - 1);
559 if (cnt > 0)
560 strbuf_setlen(sb, sb->len + cnt);
561 else if (oldalloc == 0)
562 strbuf_release(sb);
563 return cnt;
566 ssize_t strbuf_write(struct strbuf *sb, FILE *f)
568 return sb->len ? fwrite(sb->buf, 1, sb->len, f) : 0;
571 #define STRBUF_MAXLINK (2*PATH_MAX)
573 int strbuf_readlink(struct strbuf *sb, const char *path, size_t hint)
575 size_t oldalloc = sb->alloc;
577 if (hint < 32)
578 hint = 32;
580 while (hint < STRBUF_MAXLINK) {
581 ssize_t len;
583 strbuf_grow(sb, hint);
584 len = readlink(path, sb->buf, hint);
585 if (len < 0) {
586 if (errno != ERANGE)
587 break;
588 } else if (len < hint) {
589 strbuf_setlen(sb, len);
590 return 0;
593 /* .. the buffer was too small - try again */
594 hint *= 2;
596 if (oldalloc == 0)
597 strbuf_release(sb);
598 return -1;
601 int strbuf_getcwd(struct strbuf *sb)
603 size_t oldalloc = sb->alloc;
604 size_t guessed_len = 128;
606 for (;; guessed_len *= 2) {
607 strbuf_grow(sb, guessed_len);
608 if (getcwd(sb->buf, sb->alloc)) {
609 strbuf_setlen(sb, strlen(sb->buf));
610 return 0;
614 * If getcwd(3) is implemented as a syscall that falls
615 * back to a regular lookup using readdir(3) etc. then
616 * we may be able to avoid EACCES by providing enough
617 * space to the syscall as it's not necessarily bound
618 * to the same restrictions as the fallback.
620 if (errno == EACCES && guessed_len < PATH_MAX)
621 continue;
623 if (errno != ERANGE)
624 break;
626 if (oldalloc == 0)
627 strbuf_release(sb);
628 else
629 strbuf_reset(sb);
630 return -1;
633 #ifdef HAVE_GETDELIM
634 int strbuf_getwholeline(struct strbuf *sb, FILE *fp, int term)
636 ssize_t r;
638 if (feof(fp))
639 return EOF;
641 strbuf_reset(sb);
643 /* Translate slopbuf to NULL, as we cannot call realloc on it */
644 if (!sb->alloc)
645 sb->buf = NULL;
646 errno = 0;
647 r = getdelim(&sb->buf, &sb->alloc, term, fp);
649 if (r > 0) {
650 sb->len = r;
651 return 0;
653 assert(r == -1);
656 * Normally we would have called xrealloc, which will try to free
657 * memory and recover. But we have no way to tell getdelim() to do so.
658 * Worse, we cannot try to recover ENOMEM ourselves, because we have
659 * no idea how many bytes were read by getdelim.
661 * Dying here is reasonable. It mirrors what xrealloc would do on
662 * catastrophic memory failure. We skip the opportunity to free pack
663 * memory and retry, but that's unlikely to help for a malloc small
664 * enough to hold a single line of input, anyway.
666 if (errno == ENOMEM)
667 die("Out of memory, getdelim failed");
670 * Restore strbuf invariants; if getdelim left us with a NULL pointer,
671 * we can just re-init, but otherwise we should make sure that our
672 * length is empty, and that the result is NUL-terminated.
674 if (!sb->buf)
675 strbuf_init(sb, 0);
676 else
677 strbuf_reset(sb);
678 return EOF;
680 #else
681 int strbuf_getwholeline(struct strbuf *sb, FILE *fp, int term)
683 int ch;
685 if (feof(fp))
686 return EOF;
688 strbuf_reset(sb);
689 flockfile(fp);
690 while ((ch = getc_unlocked(fp)) != EOF) {
691 if (!strbuf_avail(sb))
692 strbuf_grow(sb, 1);
693 sb->buf[sb->len++] = ch;
694 if (ch == term)
695 break;
697 funlockfile(fp);
698 if (ch == EOF && sb->len == 0)
699 return EOF;
701 sb->buf[sb->len] = '\0';
702 return 0;
704 #endif
706 int strbuf_appendwholeline(struct strbuf *sb, FILE *fp, int term)
708 struct strbuf line = STRBUF_INIT;
709 if (strbuf_getwholeline(&line, fp, term))
710 return EOF;
711 strbuf_addbuf(sb, &line);
712 strbuf_release(&line);
713 return 0;
716 static int strbuf_getdelim(struct strbuf *sb, FILE *fp, int term)
718 if (strbuf_getwholeline(sb, fp, term))
719 return EOF;
720 if (sb->buf[sb->len - 1] == term)
721 strbuf_setlen(sb, sb->len - 1);
722 return 0;
725 int strbuf_getline(struct strbuf *sb, FILE *fp)
727 if (strbuf_getwholeline(sb, fp, '\n'))
728 return EOF;
729 if (sb->buf[sb->len - 1] == '\n') {
730 strbuf_setlen(sb, sb->len - 1);
731 if (sb->len && sb->buf[sb->len - 1] == '\r')
732 strbuf_setlen(sb, sb->len - 1);
734 return 0;
737 int strbuf_getline_lf(struct strbuf *sb, FILE *fp)
739 return strbuf_getdelim(sb, fp, '\n');
742 int strbuf_getline_nul(struct strbuf *sb, FILE *fp)
744 return strbuf_getdelim(sb, fp, '\0');
747 int strbuf_getwholeline_fd(struct strbuf *sb, int fd, int term)
749 strbuf_reset(sb);
751 while (1) {
752 char ch;
753 ssize_t len = xread(fd, &ch, 1);
754 if (len <= 0)
755 return EOF;
756 strbuf_addch(sb, ch);
757 if (ch == term)
758 break;
760 return 0;
763 ssize_t strbuf_read_file(struct strbuf *sb, const char *path, size_t hint)
765 int fd;
766 ssize_t len;
767 int saved_errno;
769 fd = open(path, O_RDONLY);
770 if (fd < 0)
771 return -1;
772 len = strbuf_read(sb, fd, hint);
773 saved_errno = errno;
774 close(fd);
775 if (len < 0) {
776 errno = saved_errno;
777 return -1;
780 return len;
783 void strbuf_add_lines(struct strbuf *out, const char *prefix,
784 const char *buf, size_t size)
786 add_lines(out, prefix, NULL, buf, size);
789 void strbuf_addstr_xml_quoted(struct strbuf *buf, const char *s)
791 while (*s) {
792 size_t len = strcspn(s, "\"<>&");
793 strbuf_add(buf, s, len);
794 s += len;
795 switch (*s) {
796 case '"':
797 strbuf_addstr(buf, "&quot;");
798 break;
799 case '<':
800 strbuf_addstr(buf, "&lt;");
801 break;
802 case '>':
803 strbuf_addstr(buf, "&gt;");
804 break;
805 case '&':
806 strbuf_addstr(buf, "&amp;");
807 break;
808 case 0:
809 return;
811 s++;
815 int is_rfc3986_reserved_or_unreserved(char ch)
817 if (is_rfc3986_unreserved(ch))
818 return 1;
819 switch (ch) {
820 case '!': case '*': case '\'': case '(': case ')': case ';':
821 case ':': case '@': case '&': case '=': case '+': case '$':
822 case ',': case '/': case '?': case '#': case '[': case ']':
823 return 1;
825 return 0;
828 int is_rfc3986_unreserved(char ch)
830 return isalnum(ch) ||
831 ch == '-' || ch == '_' || ch == '.' || ch == '~';
834 static void strbuf_add_urlencode(struct strbuf *sb, const char *s, size_t len,
835 char_predicate allow_unencoded_fn)
837 strbuf_grow(sb, len);
838 while (len--) {
839 char ch = *s++;
840 if (allow_unencoded_fn(ch))
841 strbuf_addch(sb, ch);
842 else
843 strbuf_addf(sb, "%%%02x", (unsigned char)ch);
847 void strbuf_addstr_urlencode(struct strbuf *sb, const char *s,
848 char_predicate allow_unencoded_fn)
850 strbuf_add_urlencode(sb, s, strlen(s), allow_unencoded_fn);
853 static void strbuf_humanise(struct strbuf *buf, off_t bytes,
854 int humanise_rate)
856 if (bytes > 1 << 30) {
857 strbuf_addf(buf,
858 humanise_rate == 0 ?
859 /* TRANSLATORS: IEC 80000-13:2008 gibibyte */
860 _("%u.%2.2u GiB") :
861 /* TRANSLATORS: IEC 80000-13:2008 gibibyte/second */
862 _("%u.%2.2u GiB/s"),
863 (unsigned)(bytes >> 30),
864 (unsigned)(bytes & ((1 << 30) - 1)) / 10737419);
865 } else if (bytes > 1 << 20) {
866 unsigned x = bytes + 5243; /* for rounding */
867 strbuf_addf(buf,
868 humanise_rate == 0 ?
869 /* TRANSLATORS: IEC 80000-13:2008 mebibyte */
870 _("%u.%2.2u MiB") :
871 /* TRANSLATORS: IEC 80000-13:2008 mebibyte/second */
872 _("%u.%2.2u MiB/s"),
873 x >> 20, ((x & ((1 << 20) - 1)) * 100) >> 20);
874 } else if (bytes > 1 << 10) {
875 unsigned x = bytes + 5; /* for rounding */
876 strbuf_addf(buf,
877 humanise_rate == 0 ?
878 /* TRANSLATORS: IEC 80000-13:2008 kibibyte */
879 _("%u.%2.2u KiB") :
880 /* TRANSLATORS: IEC 80000-13:2008 kibibyte/second */
881 _("%u.%2.2u KiB/s"),
882 x >> 10, ((x & ((1 << 10) - 1)) * 100) >> 10);
883 } else {
884 strbuf_addf(buf,
885 humanise_rate == 0 ?
886 /* TRANSLATORS: IEC 80000-13:2008 byte */
887 Q_("%u byte", "%u bytes", bytes) :
888 /* TRANSLATORS: IEC 80000-13:2008 byte/second */
889 Q_("%u byte/s", "%u bytes/s", bytes),
890 (unsigned)bytes);
894 void strbuf_humanise_bytes(struct strbuf *buf, off_t bytes)
896 strbuf_humanise(buf, bytes, 0);
899 void strbuf_humanise_rate(struct strbuf *buf, off_t bytes)
901 strbuf_humanise(buf, bytes, 1);
904 void strbuf_add_absolute_path(struct strbuf *sb, const char *path)
906 if (!*path)
907 die("The empty string is not a valid path");
908 if (!is_absolute_path(path)) {
909 struct stat cwd_stat, pwd_stat;
910 size_t orig_len = sb->len;
911 char *cwd = xgetcwd();
912 char *pwd = getenv("PWD");
913 if (pwd && strcmp(pwd, cwd) &&
914 !stat(cwd, &cwd_stat) &&
915 (cwd_stat.st_dev || cwd_stat.st_ino) &&
916 !stat(pwd, &pwd_stat) &&
917 pwd_stat.st_dev == cwd_stat.st_dev &&
918 pwd_stat.st_ino == cwd_stat.st_ino)
919 strbuf_addstr(sb, pwd);
920 else
921 strbuf_addstr(sb, cwd);
922 if (sb->len > orig_len && !is_dir_sep(sb->buf[sb->len - 1]))
923 strbuf_addch(sb, '/');
924 free(cwd);
926 strbuf_addstr(sb, path);
929 void strbuf_add_real_path(struct strbuf *sb, const char *path)
931 if (sb->len) {
932 struct strbuf resolved = STRBUF_INIT;
933 strbuf_realpath(&resolved, path, 1);
934 strbuf_addbuf(sb, &resolved);
935 strbuf_release(&resolved);
936 } else
937 strbuf_realpath(sb, path, 1);
940 int printf_ln(const char *fmt, ...)
942 int ret;
943 va_list ap;
944 va_start(ap, fmt);
945 ret = vprintf(fmt, ap);
946 va_end(ap);
947 if (ret < 0 || putchar('\n') == EOF)
948 return -1;
949 return ret + 1;
952 int fprintf_ln(FILE *fp, const char *fmt, ...)
954 int ret;
955 va_list ap;
956 va_start(ap, fmt);
957 ret = vfprintf(fp, fmt, ap);
958 va_end(ap);
959 if (ret < 0 || putc('\n', fp) == EOF)
960 return -1;
961 return ret + 1;
964 char *xstrdup_tolower(const char *string)
966 char *result;
967 size_t len, i;
969 len = strlen(string);
970 result = xmallocz(len);
971 for (i = 0; i < len; i++)
972 result[i] = tolower(string[i]);
973 return result;
976 char *xstrdup_toupper(const char *string)
978 char *result;
979 size_t len, i;
981 len = strlen(string);
982 result = xmallocz(len);
983 for (i = 0; i < len; i++)
984 result[i] = toupper(string[i]);
985 return result;
988 char *xstrvfmt(const char *fmt, va_list ap)
990 struct strbuf buf = STRBUF_INIT;
991 strbuf_vaddf(&buf, fmt, ap);
992 return strbuf_detach(&buf, NULL);
995 char *xstrfmt(const char *fmt, ...)
997 va_list ap;
998 char *ret;
1000 va_start(ap, fmt);
1001 ret = xstrvfmt(fmt, ap);
1002 va_end(ap);
1004 return ret;
1007 void strbuf_addftime(struct strbuf *sb, const char *fmt, const struct tm *tm,
1008 int tz_offset, int suppress_tz_name)
1010 struct strbuf munged_fmt = STRBUF_INIT;
1011 size_t hint = 128;
1012 size_t len;
1014 if (!*fmt)
1015 return;
1018 * There is no portable way to pass timezone information to
1019 * strftime, so we handle %z and %Z here. Likewise '%s', because
1020 * going back to an epoch time requires knowing the zone.
1022 * Note that tz_offset is in the "[-+]HHMM" decimal form; this is what
1023 * we want for %z, but the computation for %s has to convert to number
1024 * of seconds.
1026 for (;;) {
1027 const char *percent = strchrnul(fmt, '%');
1028 strbuf_add(&munged_fmt, fmt, percent - fmt);
1029 if (!*percent)
1030 break;
1031 fmt = percent + 1;
1032 switch (*fmt) {
1033 case '%':
1034 strbuf_addstr(&munged_fmt, "%%");
1035 fmt++;
1036 break;
1037 case 's':
1038 strbuf_addf(&munged_fmt, "%"PRItime,
1039 (timestamp_t)tm_to_time_t(tm) -
1040 3600 * (tz_offset / 100) -
1041 60 * (tz_offset % 100));
1042 fmt++;
1043 break;
1044 case 'z':
1045 strbuf_addf(&munged_fmt, "%+05d", tz_offset);
1046 fmt++;
1047 break;
1048 case 'Z':
1049 if (suppress_tz_name) {
1050 fmt++;
1051 break;
1053 /* FALLTHROUGH */
1054 default:
1055 strbuf_addch(&munged_fmt, '%');
1058 fmt = munged_fmt.buf;
1060 strbuf_grow(sb, hint);
1061 len = strftime(sb->buf + sb->len, sb->alloc - sb->len, fmt, tm);
1063 if (!len) {
1065 * strftime reports "0" if it could not fit the result in the buffer.
1066 * Unfortunately, it also reports "0" if the requested time string
1067 * takes 0 bytes. So our strategy is to munge the format so that the
1068 * output contains at least one character, and then drop the extra
1069 * character before returning.
1071 strbuf_addch(&munged_fmt, ' ');
1072 while (!len) {
1073 hint *= 2;
1074 strbuf_grow(sb, hint);
1075 len = strftime(sb->buf + sb->len, sb->alloc - sb->len,
1076 munged_fmt.buf, tm);
1078 len--; /* drop munged space */
1080 strbuf_release(&munged_fmt);
1081 strbuf_setlen(sb, sb->len + len);
1084 void strbuf_repo_add_unique_abbrev(struct strbuf *sb, struct repository *repo,
1085 const struct object_id *oid, int abbrev_len)
1087 int r;
1088 strbuf_grow(sb, GIT_MAX_HEXSZ + 1);
1089 r = repo_find_unique_abbrev_r(repo, sb->buf + sb->len, oid, abbrev_len);
1090 strbuf_setlen(sb, sb->len + r);
1093 void strbuf_add_unique_abbrev(struct strbuf *sb, const struct object_id *oid,
1094 int abbrev_len)
1096 strbuf_repo_add_unique_abbrev(sb, the_repository, oid, abbrev_len);
1100 * Returns the length of a line, without trailing spaces.
1102 * If the line ends with newline, it will be removed too.
1104 static size_t cleanup(char *line, size_t len)
1106 while (len) {
1107 unsigned char c = line[len - 1];
1108 if (!isspace(c))
1109 break;
1110 len--;
1113 return len;
1117 * Remove empty lines from the beginning and end
1118 * and also trailing spaces from every line.
1120 * Turn multiple consecutive empty lines between paragraphs
1121 * into just one empty line.
1123 * If the input has only empty lines and spaces,
1124 * no output will be produced.
1126 * If last line does not have a newline at the end, one is added.
1128 * Enable skip_comments to skip every line starting with comment
1129 * character.
1131 void strbuf_stripspace(struct strbuf *sb, int skip_comments)
1133 size_t empties = 0;
1134 size_t i, j, len, newlen;
1135 char *eol;
1137 /* We may have to add a newline. */
1138 strbuf_grow(sb, 1);
1140 for (i = j = 0; i < sb->len; i += len, j += newlen) {
1141 eol = memchr(sb->buf + i, '\n', sb->len - i);
1142 len = eol ? eol - (sb->buf + i) + 1 : sb->len - i;
1144 if (skip_comments && len && sb->buf[i] == comment_line_char) {
1145 newlen = 0;
1146 continue;
1148 newlen = cleanup(sb->buf + i, len);
1150 /* Not just an empty line? */
1151 if (newlen) {
1152 if (empties > 0 && j > 0)
1153 sb->buf[j++] = '\n';
1154 empties = 0;
1155 memmove(sb->buf + j, sb->buf + i, newlen);
1156 sb->buf[newlen + j++] = '\n';
1157 } else {
1158 empties++;
1162 strbuf_setlen(sb, j);
1165 int strbuf_normalize_path(struct strbuf *src)
1167 struct strbuf dst = STRBUF_INIT;
1169 strbuf_grow(&dst, src->len);
1170 if (normalize_path_copy(dst.buf, src->buf) < 0) {
1171 strbuf_release(&dst);
1172 return -1;
1176 * normalize_path does not tell us the new length, so we have to
1177 * compute it by looking for the new NUL it placed
1179 strbuf_setlen(&dst, strlen(dst.buf));
1180 strbuf_swap(src, &dst);
1181 strbuf_release(&dst);
1182 return 0;
1185 void strbuf_strip_file_from_path(struct strbuf *sb)
1187 char *path_sep = find_last_dir_sep(sb->buf);
1188 strbuf_setlen(sb, path_sep ? path_sep - sb->buf + 1 : 0);