cocci: remove 'unused.cocci'
[git.git] / strbuf.c
blob70a83e7980e0e575cde2d9b8fed5eec1fa9f48e5
1 #include "cache.h"
2 #include "abspath.h"
3 #include "alloc.h"
4 #include "environment.h"
5 #include "gettext.h"
6 #include "hex.h"
7 #include "refs.h"
8 #include "string-list.h"
9 #include "utf8.h"
10 #include "date.h"
11 #include "wrapper.h"
13 int starts_with(const char *str, const char *prefix)
15 for (; ; str++, prefix++)
16 if (!*prefix)
17 return 1;
18 else if (*str != *prefix)
19 return 0;
22 int istarts_with(const char *str, const char *prefix)
24 for (; ; str++, prefix++)
25 if (!*prefix)
26 return 1;
27 else if (tolower(*str) != tolower(*prefix))
28 return 0;
31 int skip_to_optional_arg_default(const char *str, const char *prefix,
32 const char **arg, const char *def)
34 const char *p;
36 if (!skip_prefix(str, prefix, &p))
37 return 0;
39 if (!*p) {
40 if (arg)
41 *arg = def;
42 return 1;
45 if (*p != '=')
46 return 0;
48 if (arg)
49 *arg = p + 1;
50 return 1;
54 * Used as the default ->buf value, so that people can always assume
55 * buf is non NULL and ->buf is NUL terminated even for a freshly
56 * initialized strbuf.
58 char strbuf_slopbuf[1];
60 void strbuf_init(struct strbuf *sb, size_t hint)
62 struct strbuf blank = STRBUF_INIT;
63 memcpy(sb, &blank, sizeof(*sb));
64 if (hint)
65 strbuf_grow(sb, hint);
68 void strbuf_release(struct strbuf *sb)
70 if (sb->alloc) {
71 free(sb->buf);
72 strbuf_init(sb, 0);
76 char *strbuf_detach(struct strbuf *sb, size_t *sz)
78 char *res;
79 strbuf_grow(sb, 0);
80 res = sb->buf;
81 if (sz)
82 *sz = sb->len;
83 strbuf_init(sb, 0);
84 return res;
87 void strbuf_attach(struct strbuf *sb, void *buf, size_t len, size_t alloc)
89 strbuf_release(sb);
90 sb->buf = buf;
91 sb->len = len;
92 sb->alloc = alloc;
93 strbuf_grow(sb, 0);
94 sb->buf[sb->len] = '\0';
97 void strbuf_grow(struct strbuf *sb, size_t extra)
99 int new_buf = !sb->alloc;
100 if (unsigned_add_overflows(extra, 1) ||
101 unsigned_add_overflows(sb->len, extra + 1))
102 die("you want to use way too much memory");
103 if (new_buf)
104 sb->buf = NULL;
105 ALLOC_GROW(sb->buf, sb->len + extra + 1, sb->alloc);
106 if (new_buf)
107 sb->buf[0] = '\0';
110 void strbuf_trim(struct strbuf *sb)
112 strbuf_rtrim(sb);
113 strbuf_ltrim(sb);
116 void strbuf_rtrim(struct strbuf *sb)
118 while (sb->len > 0 && isspace((unsigned char)sb->buf[sb->len - 1]))
119 sb->len--;
120 sb->buf[sb->len] = '\0';
123 void strbuf_trim_trailing_dir_sep(struct strbuf *sb)
125 while (sb->len > 0 && is_dir_sep((unsigned char)sb->buf[sb->len - 1]))
126 sb->len--;
127 sb->buf[sb->len] = '\0';
130 void strbuf_trim_trailing_newline(struct strbuf *sb)
132 if (sb->len > 0 && sb->buf[sb->len - 1] == '\n') {
133 if (--sb->len > 0 && sb->buf[sb->len - 1] == '\r')
134 --sb->len;
135 sb->buf[sb->len] = '\0';
139 void strbuf_ltrim(struct strbuf *sb)
141 char *b = sb->buf;
142 while (sb->len > 0 && isspace(*b)) {
143 b++;
144 sb->len--;
146 memmove(sb->buf, b, sb->len);
147 sb->buf[sb->len] = '\0';
150 int strbuf_reencode(struct strbuf *sb, const char *from, const char *to)
152 char *out;
153 size_t len;
155 if (same_encoding(from, to))
156 return 0;
158 out = reencode_string_len(sb->buf, sb->len, to, from, &len);
159 if (!out)
160 return -1;
162 strbuf_attach(sb, out, len, len);
163 return 0;
166 void strbuf_tolower(struct strbuf *sb)
168 char *p = sb->buf, *end = sb->buf + sb->len;
169 for (; p < end; p++)
170 *p = tolower(*p);
173 struct strbuf **strbuf_split_buf(const char *str, size_t slen,
174 int terminator, int max)
176 struct strbuf **ret = NULL;
177 size_t nr = 0, alloc = 0;
178 struct strbuf *t;
180 while (slen) {
181 int len = slen;
182 if (max <= 0 || nr + 1 < max) {
183 const char *end = memchr(str, terminator, slen);
184 if (end)
185 len = end - str + 1;
187 t = xmalloc(sizeof(struct strbuf));
188 strbuf_init(t, len);
189 strbuf_add(t, str, len);
190 ALLOC_GROW(ret, nr + 2, alloc);
191 ret[nr++] = t;
192 str += len;
193 slen -= len;
195 ALLOC_GROW(ret, nr + 1, alloc); /* In case string was empty */
196 ret[nr] = NULL;
197 return ret;
200 void strbuf_add_separated_string_list(struct strbuf *str,
201 const char *sep,
202 struct string_list *slist)
204 struct string_list_item *item;
205 int sep_needed = 0;
207 for_each_string_list_item(item, slist) {
208 if (sep_needed)
209 strbuf_addstr(str, sep);
210 strbuf_addstr(str, item->string);
211 sep_needed = 1;
215 void strbuf_list_free(struct strbuf **sbs)
217 struct strbuf **s = sbs;
219 if (!s)
220 return;
221 while (*s) {
222 strbuf_release(*s);
223 free(*s++);
225 free(sbs);
228 int strbuf_cmp(const struct strbuf *a, const struct strbuf *b)
230 size_t len = a->len < b->len ? a->len: b->len;
231 int cmp = memcmp(a->buf, b->buf, len);
232 if (cmp)
233 return cmp;
234 return a->len < b->len ? -1: a->len != b->len;
237 void strbuf_splice(struct strbuf *sb, size_t pos, size_t len,
238 const void *data, size_t dlen)
240 if (unsigned_add_overflows(pos, len))
241 die("you want to use way too much memory");
242 if (pos > sb->len)
243 die("`pos' is too far after the end of the buffer");
244 if (pos + len > sb->len)
245 die("`pos + len' is too far after the end of the buffer");
247 if (dlen >= len)
248 strbuf_grow(sb, dlen - len);
249 memmove(sb->buf + pos + dlen,
250 sb->buf + pos + len,
251 sb->len - pos - len);
252 memcpy(sb->buf + pos, data, dlen);
253 strbuf_setlen(sb, sb->len + dlen - len);
256 void strbuf_insert(struct strbuf *sb, size_t pos, const void *data, size_t len)
258 strbuf_splice(sb, pos, 0, data, len);
261 void strbuf_vinsertf(struct strbuf *sb, size_t pos, const char *fmt, va_list ap)
263 int len, len2;
264 char save;
265 va_list cp;
267 if (pos > sb->len)
268 die("`pos' is too far after the end of the buffer");
269 va_copy(cp, ap);
270 len = vsnprintf(sb->buf + sb->len, 0, fmt, cp);
271 va_end(cp);
272 if (len < 0)
273 BUG("your vsnprintf is broken (returned %d)", len);
274 if (!len)
275 return; /* nothing to do */
276 if (unsigned_add_overflows(sb->len, len))
277 die("you want to use way too much memory");
278 strbuf_grow(sb, len);
279 memmove(sb->buf + pos + len, sb->buf + pos, sb->len - pos);
280 /* vsnprintf() will append a NUL, overwriting one of our characters */
281 save = sb->buf[pos + len];
282 len2 = vsnprintf(sb->buf + pos, len + 1, fmt, ap);
283 sb->buf[pos + len] = save;
284 if (len2 != len)
285 BUG("your vsnprintf is broken (returns inconsistent lengths)");
286 strbuf_setlen(sb, sb->len + len);
289 void strbuf_insertf(struct strbuf *sb, size_t pos, const char *fmt, ...)
291 va_list ap;
292 va_start(ap, fmt);
293 strbuf_vinsertf(sb, pos, fmt, ap);
294 va_end(ap);
297 void strbuf_remove(struct strbuf *sb, size_t pos, size_t len)
299 strbuf_splice(sb, pos, len, "", 0);
302 void strbuf_add(struct strbuf *sb, const void *data, size_t len)
304 strbuf_grow(sb, len);
305 memcpy(sb->buf + sb->len, data, len);
306 strbuf_setlen(sb, sb->len + len);
309 void strbuf_addbuf(struct strbuf *sb, const struct strbuf *sb2)
311 strbuf_grow(sb, sb2->len);
312 memcpy(sb->buf + sb->len, sb2->buf, sb2->len);
313 strbuf_setlen(sb, sb->len + sb2->len);
316 const char *strbuf_join_argv(struct strbuf *buf,
317 int argc, const char **argv, char delim)
319 if (!argc)
320 return buf->buf;
322 strbuf_addstr(buf, *argv);
323 while (--argc) {
324 strbuf_addch(buf, delim);
325 strbuf_addstr(buf, *(++argv));
328 return buf->buf;
331 void strbuf_addchars(struct strbuf *sb, int c, size_t n)
333 strbuf_grow(sb, n);
334 memset(sb->buf + sb->len, c, n);
335 strbuf_setlen(sb, sb->len + n);
338 void strbuf_addf(struct strbuf *sb, const char *fmt, ...)
340 va_list ap;
341 va_start(ap, fmt);
342 strbuf_vaddf(sb, fmt, ap);
343 va_end(ap);
346 static void add_lines(struct strbuf *out,
347 const char *prefix1,
348 const char *prefix2,
349 const char *buf, size_t size)
351 while (size) {
352 const char *prefix;
353 const char *next = memchr(buf, '\n', size);
354 next = next ? (next + 1) : (buf + size);
356 prefix = ((prefix2 && (buf[0] == '\n' || buf[0] == '\t'))
357 ? prefix2 : prefix1);
358 strbuf_addstr(out, prefix);
359 strbuf_add(out, buf, next - buf);
360 size -= next - buf;
361 buf = next;
363 strbuf_complete_line(out);
366 void strbuf_add_commented_lines(struct strbuf *out, const char *buf, size_t size)
368 static char prefix1[3];
369 static char prefix2[2];
371 if (prefix1[0] != comment_line_char) {
372 xsnprintf(prefix1, sizeof(prefix1), "%c ", comment_line_char);
373 xsnprintf(prefix2, sizeof(prefix2), "%c", comment_line_char);
375 add_lines(out, prefix1, prefix2, buf, size);
378 void strbuf_commented_addf(struct strbuf *sb, const char *fmt, ...)
380 va_list params;
381 struct strbuf buf = STRBUF_INIT;
382 int incomplete_line = sb->len && sb->buf[sb->len - 1] != '\n';
384 va_start(params, fmt);
385 strbuf_vaddf(&buf, fmt, params);
386 va_end(params);
388 strbuf_add_commented_lines(sb, buf.buf, buf.len);
389 if (incomplete_line)
390 sb->buf[--sb->len] = '\0';
392 strbuf_release(&buf);
395 void strbuf_vaddf(struct strbuf *sb, const char *fmt, va_list ap)
397 int len;
398 va_list cp;
400 if (!strbuf_avail(sb))
401 strbuf_grow(sb, 64);
402 va_copy(cp, ap);
403 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, cp);
404 va_end(cp);
405 if (len < 0)
406 BUG("your vsnprintf is broken (returned %d)", len);
407 if (len > strbuf_avail(sb)) {
408 strbuf_grow(sb, len);
409 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, ap);
410 if (len > strbuf_avail(sb))
411 BUG("your vsnprintf is broken (insatiable)");
413 strbuf_setlen(sb, sb->len + len);
416 void strbuf_expand(struct strbuf *sb, const char *format, expand_fn_t fn,
417 void *context)
419 for (;;) {
420 const char *percent;
421 size_t consumed;
423 percent = strchrnul(format, '%');
424 strbuf_add(sb, format, percent - format);
425 if (!*percent)
426 break;
427 format = percent + 1;
429 if (*format == '%') {
430 strbuf_addch(sb, '%');
431 format++;
432 continue;
435 consumed = fn(sb, format, context);
436 if (consumed)
437 format += consumed;
438 else
439 strbuf_addch(sb, '%');
443 size_t strbuf_expand_literal_cb(struct strbuf *sb,
444 const char *placeholder,
445 void *context UNUSED)
447 int ch;
449 switch (placeholder[0]) {
450 case 'n': /* newline */
451 strbuf_addch(sb, '\n');
452 return 1;
453 case 'x':
454 /* %x00 == NUL, %x0a == LF, etc. */
455 ch = hex2chr(placeholder + 1);
456 if (ch < 0)
457 return 0;
458 strbuf_addch(sb, ch);
459 return 3;
461 return 0;
464 size_t strbuf_expand_dict_cb(struct strbuf *sb, const char *placeholder,
465 void *context)
467 struct strbuf_expand_dict_entry *e = context;
468 size_t len;
470 for (; e->placeholder && (len = strlen(e->placeholder)); e++) {
471 if (!strncmp(placeholder, e->placeholder, len)) {
472 if (e->value)
473 strbuf_addstr(sb, e->value);
474 return len;
477 return 0;
480 void strbuf_addbuf_percentquote(struct strbuf *dst, const struct strbuf *src)
482 size_t i, len = src->len;
484 for (i = 0; i < len; i++) {
485 if (src->buf[i] == '%')
486 strbuf_addch(dst, '%');
487 strbuf_addch(dst, src->buf[i]);
491 #define URL_UNSAFE_CHARS " <>\"%{}|\\^`:?#[]@!$&'()*+,;="
493 void strbuf_add_percentencode(struct strbuf *dst, const char *src, int flags)
495 size_t i, len = strlen(src);
497 for (i = 0; i < len; i++) {
498 unsigned char ch = src[i];
499 if (ch <= 0x1F || ch >= 0x7F ||
500 (ch == '/' && (flags & STRBUF_ENCODE_SLASH)) ||
501 strchr(URL_UNSAFE_CHARS, ch))
502 strbuf_addf(dst, "%%%02X", (unsigned char)ch);
503 else
504 strbuf_addch(dst, ch);
508 size_t strbuf_fread(struct strbuf *sb, size_t size, FILE *f)
510 size_t res;
511 size_t oldalloc = sb->alloc;
513 strbuf_grow(sb, size);
514 res = fread(sb->buf + sb->len, 1, size, f);
515 if (res > 0)
516 strbuf_setlen(sb, sb->len + res);
517 else if (oldalloc == 0)
518 strbuf_release(sb);
519 return res;
522 ssize_t strbuf_read(struct strbuf *sb, int fd, size_t hint)
524 size_t oldlen = sb->len;
525 size_t oldalloc = sb->alloc;
527 strbuf_grow(sb, hint ? hint : 8192);
528 for (;;) {
529 ssize_t want = sb->alloc - sb->len - 1;
530 ssize_t got = read_in_full(fd, sb->buf + sb->len, want);
532 if (got < 0) {
533 if (oldalloc == 0)
534 strbuf_release(sb);
535 else
536 strbuf_setlen(sb, oldlen);
537 return -1;
539 sb->len += got;
540 if (got < want)
541 break;
542 strbuf_grow(sb, 8192);
545 sb->buf[sb->len] = '\0';
546 return sb->len - oldlen;
549 ssize_t strbuf_read_once(struct strbuf *sb, int fd, size_t hint)
551 size_t oldalloc = sb->alloc;
552 ssize_t cnt;
554 strbuf_grow(sb, hint ? hint : 8192);
555 cnt = xread(fd, sb->buf + sb->len, sb->alloc - sb->len - 1);
556 if (cnt > 0)
557 strbuf_setlen(sb, sb->len + cnt);
558 else if (oldalloc == 0)
559 strbuf_release(sb);
560 return cnt;
563 ssize_t strbuf_write(struct strbuf *sb, FILE *f)
565 return sb->len ? fwrite(sb->buf, 1, sb->len, f) : 0;
568 #define STRBUF_MAXLINK (2*PATH_MAX)
570 int strbuf_readlink(struct strbuf *sb, const char *path, size_t hint)
572 size_t oldalloc = sb->alloc;
574 if (hint < 32)
575 hint = 32;
577 while (hint < STRBUF_MAXLINK) {
578 ssize_t len;
580 strbuf_grow(sb, hint);
581 len = readlink(path, sb->buf, hint);
582 if (len < 0) {
583 if (errno != ERANGE)
584 break;
585 } else if (len < hint) {
586 strbuf_setlen(sb, len);
587 return 0;
590 /* .. the buffer was too small - try again */
591 hint *= 2;
593 if (oldalloc == 0)
594 strbuf_release(sb);
595 return -1;
598 int strbuf_getcwd(struct strbuf *sb)
600 size_t oldalloc = sb->alloc;
601 size_t guessed_len = 128;
603 for (;; guessed_len *= 2) {
604 strbuf_grow(sb, guessed_len);
605 if (getcwd(sb->buf, sb->alloc)) {
606 strbuf_setlen(sb, strlen(sb->buf));
607 return 0;
611 * If getcwd(3) is implemented as a syscall that falls
612 * back to a regular lookup using readdir(3) etc. then
613 * we may be able to avoid EACCES by providing enough
614 * space to the syscall as it's not necessarily bound
615 * to the same restrictions as the fallback.
617 if (errno == EACCES && guessed_len < PATH_MAX)
618 continue;
620 if (errno != ERANGE)
621 break;
623 if (oldalloc == 0)
624 strbuf_release(sb);
625 else
626 strbuf_reset(sb);
627 return -1;
630 #ifdef HAVE_GETDELIM
631 int strbuf_getwholeline(struct strbuf *sb, FILE *fp, int term)
633 ssize_t r;
635 if (feof(fp))
636 return EOF;
638 strbuf_reset(sb);
640 /* Translate slopbuf to NULL, as we cannot call realloc on it */
641 if (!sb->alloc)
642 sb->buf = NULL;
643 errno = 0;
644 r = getdelim(&sb->buf, &sb->alloc, term, fp);
646 if (r > 0) {
647 sb->len = r;
648 return 0;
650 assert(r == -1);
653 * Normally we would have called xrealloc, which will try to free
654 * memory and recover. But we have no way to tell getdelim() to do so.
655 * Worse, we cannot try to recover ENOMEM ourselves, because we have
656 * no idea how many bytes were read by getdelim.
658 * Dying here is reasonable. It mirrors what xrealloc would do on
659 * catastrophic memory failure. We skip the opportunity to free pack
660 * memory and retry, but that's unlikely to help for a malloc small
661 * enough to hold a single line of input, anyway.
663 if (errno == ENOMEM)
664 die("Out of memory, getdelim failed");
667 * Restore strbuf invariants; if getdelim left us with a NULL pointer,
668 * we can just re-init, but otherwise we should make sure that our
669 * length is empty, and that the result is NUL-terminated.
671 if (!sb->buf)
672 strbuf_init(sb, 0);
673 else
674 strbuf_reset(sb);
675 return EOF;
677 #else
678 int strbuf_getwholeline(struct strbuf *sb, FILE *fp, int term)
680 int ch;
682 if (feof(fp))
683 return EOF;
685 strbuf_reset(sb);
686 flockfile(fp);
687 while ((ch = getc_unlocked(fp)) != EOF) {
688 if (!strbuf_avail(sb))
689 strbuf_grow(sb, 1);
690 sb->buf[sb->len++] = ch;
691 if (ch == term)
692 break;
694 funlockfile(fp);
695 if (ch == EOF && sb->len == 0)
696 return EOF;
698 sb->buf[sb->len] = '\0';
699 return 0;
701 #endif
703 int strbuf_appendwholeline(struct strbuf *sb, FILE *fp, int term)
705 struct strbuf line = STRBUF_INIT;
706 if (strbuf_getwholeline(&line, fp, term))
707 return EOF;
708 strbuf_addbuf(sb, &line);
709 strbuf_release(&line);
710 return 0;
713 static int strbuf_getdelim(struct strbuf *sb, FILE *fp, int term)
715 if (strbuf_getwholeline(sb, fp, term))
716 return EOF;
717 if (sb->buf[sb->len - 1] == term)
718 strbuf_setlen(sb, sb->len - 1);
719 return 0;
722 int strbuf_getline(struct strbuf *sb, FILE *fp)
724 if (strbuf_getwholeline(sb, fp, '\n'))
725 return EOF;
726 if (sb->buf[sb->len - 1] == '\n') {
727 strbuf_setlen(sb, sb->len - 1);
728 if (sb->len && sb->buf[sb->len - 1] == '\r')
729 strbuf_setlen(sb, sb->len - 1);
731 return 0;
734 int strbuf_getline_lf(struct strbuf *sb, FILE *fp)
736 return strbuf_getdelim(sb, fp, '\n');
739 int strbuf_getline_nul(struct strbuf *sb, FILE *fp)
741 return strbuf_getdelim(sb, fp, '\0');
744 int strbuf_getwholeline_fd(struct strbuf *sb, int fd, int term)
746 strbuf_reset(sb);
748 while (1) {
749 char ch;
750 ssize_t len = xread(fd, &ch, 1);
751 if (len <= 0)
752 return EOF;
753 strbuf_addch(sb, ch);
754 if (ch == term)
755 break;
757 return 0;
760 ssize_t strbuf_read_file(struct strbuf *sb, const char *path, size_t hint)
762 int fd;
763 ssize_t len;
764 int saved_errno;
766 fd = open(path, O_RDONLY);
767 if (fd < 0)
768 return -1;
769 len = strbuf_read(sb, fd, hint);
770 saved_errno = errno;
771 close(fd);
772 if (len < 0) {
773 errno = saved_errno;
774 return -1;
777 return len;
780 void strbuf_add_lines(struct strbuf *out, const char *prefix,
781 const char *buf, size_t size)
783 add_lines(out, prefix, NULL, buf, size);
786 void strbuf_addstr_xml_quoted(struct strbuf *buf, const char *s)
788 while (*s) {
789 size_t len = strcspn(s, "\"<>&");
790 strbuf_add(buf, s, len);
791 s += len;
792 switch (*s) {
793 case '"':
794 strbuf_addstr(buf, "&quot;");
795 break;
796 case '<':
797 strbuf_addstr(buf, "&lt;");
798 break;
799 case '>':
800 strbuf_addstr(buf, "&gt;");
801 break;
802 case '&':
803 strbuf_addstr(buf, "&amp;");
804 break;
805 case 0:
806 return;
808 s++;
812 int is_rfc3986_reserved_or_unreserved(char ch)
814 if (is_rfc3986_unreserved(ch))
815 return 1;
816 switch (ch) {
817 case '!': case '*': case '\'': case '(': case ')': case ';':
818 case ':': case '@': case '&': case '=': case '+': case '$':
819 case ',': case '/': case '?': case '#': case '[': case ']':
820 return 1;
822 return 0;
825 int is_rfc3986_unreserved(char ch)
827 return isalnum(ch) ||
828 ch == '-' || ch == '_' || ch == '.' || ch == '~';
831 static void strbuf_add_urlencode(struct strbuf *sb, const char *s, size_t len,
832 char_predicate allow_unencoded_fn)
834 strbuf_grow(sb, len);
835 while (len--) {
836 char ch = *s++;
837 if (allow_unencoded_fn(ch))
838 strbuf_addch(sb, ch);
839 else
840 strbuf_addf(sb, "%%%02x", (unsigned char)ch);
844 void strbuf_addstr_urlencode(struct strbuf *sb, const char *s,
845 char_predicate allow_unencoded_fn)
847 strbuf_add_urlencode(sb, s, strlen(s), allow_unencoded_fn);
850 static void strbuf_humanise(struct strbuf *buf, off_t bytes,
851 int humanise_rate)
853 if (bytes > 1 << 30) {
854 strbuf_addf(buf,
855 humanise_rate == 0 ?
856 /* TRANSLATORS: IEC 80000-13:2008 gibibyte */
857 _("%u.%2.2u GiB") :
858 /* TRANSLATORS: IEC 80000-13:2008 gibibyte/second */
859 _("%u.%2.2u GiB/s"),
860 (unsigned)(bytes >> 30),
861 (unsigned)(bytes & ((1 << 30) - 1)) / 10737419);
862 } else if (bytes > 1 << 20) {
863 unsigned x = bytes + 5243; /* for rounding */
864 strbuf_addf(buf,
865 humanise_rate == 0 ?
866 /* TRANSLATORS: IEC 80000-13:2008 mebibyte */
867 _("%u.%2.2u MiB") :
868 /* TRANSLATORS: IEC 80000-13:2008 mebibyte/second */
869 _("%u.%2.2u MiB/s"),
870 x >> 20, ((x & ((1 << 20) - 1)) * 100) >> 20);
871 } else if (bytes > 1 << 10) {
872 unsigned x = bytes + 5; /* for rounding */
873 strbuf_addf(buf,
874 humanise_rate == 0 ?
875 /* TRANSLATORS: IEC 80000-13:2008 kibibyte */
876 _("%u.%2.2u KiB") :
877 /* TRANSLATORS: IEC 80000-13:2008 kibibyte/second */
878 _("%u.%2.2u KiB/s"),
879 x >> 10, ((x & ((1 << 10) - 1)) * 100) >> 10);
880 } else {
881 strbuf_addf(buf,
882 humanise_rate == 0 ?
883 /* TRANSLATORS: IEC 80000-13:2008 byte */
884 Q_("%u byte", "%u bytes", bytes) :
885 /* TRANSLATORS: IEC 80000-13:2008 byte/second */
886 Q_("%u byte/s", "%u bytes/s", bytes),
887 (unsigned)bytes);
891 void strbuf_humanise_bytes(struct strbuf *buf, off_t bytes)
893 strbuf_humanise(buf, bytes, 0);
896 void strbuf_humanise_rate(struct strbuf *buf, off_t bytes)
898 strbuf_humanise(buf, bytes, 1);
901 void strbuf_add_absolute_path(struct strbuf *sb, const char *path)
903 if (!*path)
904 die("The empty string is not a valid path");
905 if (!is_absolute_path(path)) {
906 struct stat cwd_stat, pwd_stat;
907 size_t orig_len = sb->len;
908 char *cwd = xgetcwd();
909 char *pwd = getenv("PWD");
910 if (pwd && strcmp(pwd, cwd) &&
911 !stat(cwd, &cwd_stat) &&
912 (cwd_stat.st_dev || cwd_stat.st_ino) &&
913 !stat(pwd, &pwd_stat) &&
914 pwd_stat.st_dev == cwd_stat.st_dev &&
915 pwd_stat.st_ino == cwd_stat.st_ino)
916 strbuf_addstr(sb, pwd);
917 else
918 strbuf_addstr(sb, cwd);
919 if (sb->len > orig_len && !is_dir_sep(sb->buf[sb->len - 1]))
920 strbuf_addch(sb, '/');
921 free(cwd);
923 strbuf_addstr(sb, path);
926 void strbuf_add_real_path(struct strbuf *sb, const char *path)
928 if (sb->len) {
929 struct strbuf resolved = STRBUF_INIT;
930 strbuf_realpath(&resolved, path, 1);
931 strbuf_addbuf(sb, &resolved);
932 strbuf_release(&resolved);
933 } else
934 strbuf_realpath(sb, path, 1);
937 int printf_ln(const char *fmt, ...)
939 int ret;
940 va_list ap;
941 va_start(ap, fmt);
942 ret = vprintf(fmt, ap);
943 va_end(ap);
944 if (ret < 0 || putchar('\n') == EOF)
945 return -1;
946 return ret + 1;
949 int fprintf_ln(FILE *fp, const char *fmt, ...)
951 int ret;
952 va_list ap;
953 va_start(ap, fmt);
954 ret = vfprintf(fp, fmt, ap);
955 va_end(ap);
956 if (ret < 0 || putc('\n', fp) == EOF)
957 return -1;
958 return ret + 1;
961 char *xstrdup_tolower(const char *string)
963 char *result;
964 size_t len, i;
966 len = strlen(string);
967 result = xmallocz(len);
968 for (i = 0; i < len; i++)
969 result[i] = tolower(string[i]);
970 return result;
973 char *xstrdup_toupper(const char *string)
975 char *result;
976 size_t len, i;
978 len = strlen(string);
979 result = xmallocz(len);
980 for (i = 0; i < len; i++)
981 result[i] = toupper(string[i]);
982 return result;
985 char *xstrvfmt(const char *fmt, va_list ap)
987 struct strbuf buf = STRBUF_INIT;
988 strbuf_vaddf(&buf, fmt, ap);
989 return strbuf_detach(&buf, NULL);
992 char *xstrfmt(const char *fmt, ...)
994 va_list ap;
995 char *ret;
997 va_start(ap, fmt);
998 ret = xstrvfmt(fmt, ap);
999 va_end(ap);
1001 return ret;
1004 void strbuf_addftime(struct strbuf *sb, const char *fmt, const struct tm *tm,
1005 int tz_offset, int suppress_tz_name)
1007 struct strbuf munged_fmt = STRBUF_INIT;
1008 size_t hint = 128;
1009 size_t len;
1011 if (!*fmt)
1012 return;
1015 * There is no portable way to pass timezone information to
1016 * strftime, so we handle %z and %Z here. Likewise '%s', because
1017 * going back to an epoch time requires knowing the zone.
1019 * Note that tz_offset is in the "[-+]HHMM" decimal form; this is what
1020 * we want for %z, but the computation for %s has to convert to number
1021 * of seconds.
1023 for (;;) {
1024 const char *percent = strchrnul(fmt, '%');
1025 strbuf_add(&munged_fmt, fmt, percent - fmt);
1026 if (!*percent)
1027 break;
1028 fmt = percent + 1;
1029 switch (*fmt) {
1030 case '%':
1031 strbuf_addstr(&munged_fmt, "%%");
1032 fmt++;
1033 break;
1034 case 's':
1035 strbuf_addf(&munged_fmt, "%"PRItime,
1036 (timestamp_t)tm_to_time_t(tm) -
1037 3600 * (tz_offset / 100) -
1038 60 * (tz_offset % 100));
1039 fmt++;
1040 break;
1041 case 'z':
1042 strbuf_addf(&munged_fmt, "%+05d", tz_offset);
1043 fmt++;
1044 break;
1045 case 'Z':
1046 if (suppress_tz_name) {
1047 fmt++;
1048 break;
1050 /* FALLTHROUGH */
1051 default:
1052 strbuf_addch(&munged_fmt, '%');
1055 fmt = munged_fmt.buf;
1057 strbuf_grow(sb, hint);
1058 len = strftime(sb->buf + sb->len, sb->alloc - sb->len, fmt, tm);
1060 if (!len) {
1062 * strftime reports "0" if it could not fit the result in the buffer.
1063 * Unfortunately, it also reports "0" if the requested time string
1064 * takes 0 bytes. So our strategy is to munge the format so that the
1065 * output contains at least one character, and then drop the extra
1066 * character before returning.
1068 strbuf_addch(&munged_fmt, ' ');
1069 while (!len) {
1070 hint *= 2;
1071 strbuf_grow(sb, hint);
1072 len = strftime(sb->buf + sb->len, sb->alloc - sb->len,
1073 munged_fmt.buf, tm);
1075 len--; /* drop munged space */
1077 strbuf_release(&munged_fmt);
1078 strbuf_setlen(sb, sb->len + len);
1081 void strbuf_repo_add_unique_abbrev(struct strbuf *sb, struct repository *repo,
1082 const struct object_id *oid, int abbrev_len)
1084 int r;
1085 strbuf_grow(sb, GIT_MAX_HEXSZ + 1);
1086 r = repo_find_unique_abbrev_r(repo, sb->buf + sb->len, oid, abbrev_len);
1087 strbuf_setlen(sb, sb->len + r);
1090 void strbuf_add_unique_abbrev(struct strbuf *sb, const struct object_id *oid,
1091 int abbrev_len)
1093 strbuf_repo_add_unique_abbrev(sb, the_repository, oid, abbrev_len);
1097 * Returns the length of a line, without trailing spaces.
1099 * If the line ends with newline, it will be removed too.
1101 static size_t cleanup(char *line, size_t len)
1103 while (len) {
1104 unsigned char c = line[len - 1];
1105 if (!isspace(c))
1106 break;
1107 len--;
1110 return len;
1114 * Remove empty lines from the beginning and end
1115 * and also trailing spaces from every line.
1117 * Turn multiple consecutive empty lines between paragraphs
1118 * into just one empty line.
1120 * If the input has only empty lines and spaces,
1121 * no output will be produced.
1123 * If last line does not have a newline at the end, one is added.
1125 * Enable skip_comments to skip every line starting with comment
1126 * character.
1128 void strbuf_stripspace(struct strbuf *sb, int skip_comments)
1130 size_t empties = 0;
1131 size_t i, j, len, newlen;
1132 char *eol;
1134 /* We may have to add a newline. */
1135 strbuf_grow(sb, 1);
1137 for (i = j = 0; i < sb->len; i += len, j += newlen) {
1138 eol = memchr(sb->buf + i, '\n', sb->len - i);
1139 len = eol ? eol - (sb->buf + i) + 1 : sb->len - i;
1141 if (skip_comments && len && sb->buf[i] == comment_line_char) {
1142 newlen = 0;
1143 continue;
1145 newlen = cleanup(sb->buf + i, len);
1147 /* Not just an empty line? */
1148 if (newlen) {
1149 if (empties > 0 && j > 0)
1150 sb->buf[j++] = '\n';
1151 empties = 0;
1152 memmove(sb->buf + j, sb->buf + i, newlen);
1153 sb->buf[newlen + j++] = '\n';
1154 } else {
1155 empties++;
1159 strbuf_setlen(sb, j);
1162 int strbuf_normalize_path(struct strbuf *src)
1164 struct strbuf dst = STRBUF_INIT;
1166 strbuf_grow(&dst, src->len);
1167 if (normalize_path_copy(dst.buf, src->buf) < 0) {
1168 strbuf_release(&dst);
1169 return -1;
1173 * normalize_path does not tell us the new length, so we have to
1174 * compute it by looking for the new NUL it placed
1176 strbuf_setlen(&dst, strlen(dst.buf));
1177 strbuf_swap(src, &dst);
1178 strbuf_release(&dst);
1179 return 0;
1182 int strbuf_edit_interactively(struct strbuf *buffer, const char *path,
1183 const char *const *env)
1185 char *path2 = NULL;
1186 int fd, res = 0;
1188 if (!is_absolute_path(path))
1189 path = path2 = xstrdup(git_path("%s", path));
1191 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0666);
1192 if (fd < 0)
1193 res = error_errno(_("could not open '%s' for writing"), path);
1194 else if (write_in_full(fd, buffer->buf, buffer->len) < 0) {
1195 res = error_errno(_("could not write to '%s'"), path);
1196 close(fd);
1197 } else if (close(fd) < 0)
1198 res = error_errno(_("could not close '%s'"), path);
1199 else {
1200 strbuf_reset(buffer);
1201 if (launch_editor(path, buffer, env) < 0)
1202 res = error_errno(_("could not edit '%s'"), path);
1203 unlink(path);
1206 free(path2);
1207 return res;
1210 void strbuf_strip_file_from_path(struct strbuf *sb)
1212 char *path_sep = find_last_dir_sep(sb->buf);
1213 strbuf_setlen(sb, path_sep ? path_sep - sb->buf + 1 : 0);