4 #include "environment.h"
8 #include "string-list.h"
13 int starts_with(const char *str
, const char *prefix
)
15 for (; ; str
++, prefix
++)
18 else if (*str
!= *prefix
)
22 int istarts_with(const char *str
, const char *prefix
)
24 for (; ; str
++, prefix
++)
27 else if (tolower(*str
) != tolower(*prefix
))
31 int skip_to_optional_arg_default(const char *str
, const char *prefix
,
32 const char **arg
, const char *def
)
36 if (!skip_prefix(str
, prefix
, &p
))
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
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
));
65 strbuf_grow(sb
, hint
);
68 void strbuf_release(struct strbuf
*sb
)
76 char *strbuf_detach(struct strbuf
*sb
, size_t *sz
)
87 void strbuf_attach(struct strbuf
*sb
, void *buf
, size_t len
, size_t alloc
)
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");
105 ALLOC_GROW(sb
->buf
, sb
->len
+ extra
+ 1, sb
->alloc
);
110 void strbuf_trim(struct strbuf
*sb
)
116 void strbuf_rtrim(struct strbuf
*sb
)
118 while (sb
->len
> 0 && isspace((unsigned char)sb
->buf
[sb
->len
- 1]))
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]))
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')
135 sb
->buf
[sb
->len
] = '\0';
139 void strbuf_ltrim(struct strbuf
*sb
)
142 while (sb
->len
> 0 && isspace(*b
)) {
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
)
155 if (same_encoding(from
, to
))
158 out
= reencode_string_len(sb
->buf
, sb
->len
, to
, from
, &len
);
162 strbuf_attach(sb
, out
, len
, len
);
166 void strbuf_tolower(struct strbuf
*sb
)
168 char *p
= sb
->buf
, *end
= sb
->buf
+ sb
->len
;
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;
182 if (max
<= 0 || nr
+ 1 < max
) {
183 const char *end
= memchr(str
, terminator
, slen
);
187 t
= xmalloc(sizeof(struct strbuf
));
189 strbuf_add(t
, str
, len
);
190 ALLOC_GROW(ret
, nr
+ 2, alloc
);
195 ALLOC_GROW(ret
, nr
+ 1, alloc
); /* In case string was empty */
200 void strbuf_add_separated_string_list(struct strbuf
*str
,
202 struct string_list
*slist
)
204 struct string_list_item
*item
;
207 for_each_string_list_item(item
, slist
) {
209 strbuf_addstr(str
, sep
);
210 strbuf_addstr(str
, item
->string
);
215 void strbuf_list_free(struct strbuf
**sbs
)
217 struct strbuf
**s
= 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
);
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");
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");
248 strbuf_grow(sb
, dlen
- len
);
249 memmove(sb
->buf
+ pos
+ dlen
,
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
)
268 die("`pos' is too far after the end of the buffer");
270 len
= vsnprintf(sb
->buf
+ sb
->len
, 0, fmt
, cp
);
273 BUG("your vsnprintf is broken (returned %d)", 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
;
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
, ...)
293 strbuf_vinsertf(sb
, pos
, fmt
, 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
)
322 strbuf_addstr(buf
, *argv
);
324 strbuf_addch(buf
, delim
);
325 strbuf_addstr(buf
, *(++argv
));
331 void strbuf_addchars(struct strbuf
*sb
, int c
, size_t 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
, ...)
342 strbuf_vaddf(sb
, fmt
, ap
);
346 static void add_lines(struct strbuf
*out
,
349 const char *buf
, size_t size
)
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
);
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
, ...)
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
);
388 strbuf_add_commented_lines(sb
, buf
.buf
, buf
.len
);
390 sb
->buf
[--sb
->len
] = '\0';
392 strbuf_release(&buf
);
395 void strbuf_vaddf(struct strbuf
*sb
, const char *fmt
, va_list ap
)
400 if (!strbuf_avail(sb
))
403 len
= vsnprintf(sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
, fmt
, cp
);
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
,
423 percent
= strchrnul(format
, '%');
424 strbuf_add(sb
, format
, percent
- format
);
427 format
= percent
+ 1;
429 if (*format
== '%') {
430 strbuf_addch(sb
, '%');
435 consumed
= fn(sb
, format
, context
);
439 strbuf_addch(sb
, '%');
443 size_t strbuf_expand_literal_cb(struct strbuf
*sb
,
444 const char *placeholder
,
445 void *context UNUSED
)
449 switch (placeholder
[0]) {
450 case 'n': /* newline */
451 strbuf_addch(sb
, '\n');
454 /* %x00 == NUL, %x0a == LF, etc. */
455 ch
= hex2chr(placeholder
+ 1);
458 strbuf_addch(sb
, ch
);
464 size_t strbuf_expand_dict_cb(struct strbuf
*sb
, const char *placeholder
,
467 struct strbuf_expand_dict_entry
*e
= context
;
470 for (; e
->placeholder
&& (len
= strlen(e
->placeholder
)); e
++) {
471 if (!strncmp(placeholder
, e
->placeholder
, len
)) {
473 strbuf_addstr(sb
, e
->value
);
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
);
504 strbuf_addch(dst
, ch
);
508 size_t strbuf_fread(struct strbuf
*sb
, size_t size
, FILE *f
)
511 size_t oldalloc
= sb
->alloc
;
513 strbuf_grow(sb
, size
);
514 res
= fread(sb
->buf
+ sb
->len
, 1, size
, f
);
516 strbuf_setlen(sb
, sb
->len
+ res
);
517 else if (oldalloc
== 0)
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);
529 ssize_t want
= sb
->alloc
- sb
->len
- 1;
530 ssize_t got
= read_in_full(fd
, sb
->buf
+ sb
->len
, want
);
536 strbuf_setlen(sb
, oldlen
);
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
;
554 strbuf_grow(sb
, hint
? hint
: 8192);
555 cnt
= xread(fd
, sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
- 1);
557 strbuf_setlen(sb
, sb
->len
+ cnt
);
558 else if (oldalloc
== 0)
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
;
577 while (hint
< STRBUF_MAXLINK
) {
580 strbuf_grow(sb
, hint
);
581 len
= readlink(path
, sb
->buf
, hint
);
585 } else if (len
< hint
) {
586 strbuf_setlen(sb
, len
);
590 /* .. the buffer was too small - try again */
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
));
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
)
631 int strbuf_getwholeline(struct strbuf
*sb
, FILE *fp
, int term
)
640 /* Translate slopbuf to NULL, as we cannot call realloc on it */
644 r
= getdelim(&sb
->buf
, &sb
->alloc
, term
, fp
);
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.
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.
678 int strbuf_getwholeline(struct strbuf
*sb
, FILE *fp
, int term
)
687 while ((ch
= getc_unlocked(fp
)) != EOF
) {
688 if (!strbuf_avail(sb
))
690 sb
->buf
[sb
->len
++] = ch
;
695 if (ch
== EOF
&& sb
->len
== 0)
698 sb
->buf
[sb
->len
] = '\0';
703 int strbuf_appendwholeline(struct strbuf
*sb
, FILE *fp
, int term
)
705 struct strbuf line
= STRBUF_INIT
;
706 if (strbuf_getwholeline(&line
, fp
, term
))
708 strbuf_addbuf(sb
, &line
);
709 strbuf_release(&line
);
713 static int strbuf_getdelim(struct strbuf
*sb
, FILE *fp
, int term
)
715 if (strbuf_getwholeline(sb
, fp
, term
))
717 if (sb
->buf
[sb
->len
- 1] == term
)
718 strbuf_setlen(sb
, sb
->len
- 1);
722 int strbuf_getline(struct strbuf
*sb
, FILE *fp
)
724 if (strbuf_getwholeline(sb
, fp
, '\n'))
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);
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
)
750 ssize_t len
= xread(fd
, &ch
, 1);
753 strbuf_addch(sb
, ch
);
760 ssize_t
strbuf_read_file(struct strbuf
*sb
, const char *path
, size_t hint
)
766 fd
= open(path
, O_RDONLY
);
769 len
= strbuf_read(sb
, fd
, hint
);
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
)
789 size_t len
= strcspn(s
, "\"<>&");
790 strbuf_add(buf
, s
, len
);
794 strbuf_addstr(buf
, """);
797 strbuf_addstr(buf
, "<");
800 strbuf_addstr(buf
, ">");
803 strbuf_addstr(buf
, "&");
812 int is_rfc3986_reserved_or_unreserved(char ch
)
814 if (is_rfc3986_unreserved(ch
))
817 case '!': case '*': case '\'': case '(': case ')': case ';':
818 case ':': case '@': case '&': case '=': case '+': case '$':
819 case ',': case '/': case '?': case '#': case '[': case ']':
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
);
837 if (allow_unencoded_fn(ch
))
838 strbuf_addch(sb
, ch
);
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
,
853 if (bytes
> 1 << 30) {
856 /* TRANSLATORS: IEC 80000-13:2008 gibibyte */
858 /* TRANSLATORS: IEC 80000-13:2008 gibibyte/second */
860 (unsigned)(bytes
>> 30),
861 (unsigned)(bytes
& ((1 << 30) - 1)) / 10737419);
862 } else if (bytes
> 1 << 20) {
863 unsigned x
= bytes
+ 5243; /* for rounding */
866 /* TRANSLATORS: IEC 80000-13:2008 mebibyte */
868 /* TRANSLATORS: IEC 80000-13:2008 mebibyte/second */
870 x
>> 20, ((x
& ((1 << 20) - 1)) * 100) >> 20);
871 } else if (bytes
> 1 << 10) {
872 unsigned x
= bytes
+ 5; /* for rounding */
875 /* TRANSLATORS: IEC 80000-13:2008 kibibyte */
877 /* TRANSLATORS: IEC 80000-13:2008 kibibyte/second */
879 x
>> 10, ((x
& ((1 << 10) - 1)) * 100) >> 10);
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
),
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
)
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
);
918 strbuf_addstr(sb
, cwd
);
919 if (sb
->len
> orig_len
&& !is_dir_sep(sb
->buf
[sb
->len
- 1]))
920 strbuf_addch(sb
, '/');
923 strbuf_addstr(sb
, path
);
926 void strbuf_add_real_path(struct strbuf
*sb
, const char *path
)
929 struct strbuf resolved
= STRBUF_INIT
;
930 strbuf_realpath(&resolved
, path
, 1);
931 strbuf_addbuf(sb
, &resolved
);
932 strbuf_release(&resolved
);
934 strbuf_realpath(sb
, path
, 1);
937 int printf_ln(const char *fmt
, ...)
942 ret
= vprintf(fmt
, ap
);
944 if (ret
< 0 || putchar('\n') == EOF
)
949 int fprintf_ln(FILE *fp
, const char *fmt
, ...)
954 ret
= vfprintf(fp
, fmt
, ap
);
956 if (ret
< 0 || putc('\n', fp
) == EOF
)
961 char *xstrdup_tolower(const char *string
)
966 len
= strlen(string
);
967 result
= xmallocz(len
);
968 for (i
= 0; i
< len
; i
++)
969 result
[i
] = tolower(string
[i
]);
973 char *xstrdup_toupper(const char *string
)
978 len
= strlen(string
);
979 result
= xmallocz(len
);
980 for (i
= 0; i
< len
; i
++)
981 result
[i
] = toupper(string
[i
]);
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
, ...)
998 ret
= xstrvfmt(fmt
, ap
);
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
;
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
1024 const char *percent
= strchrnul(fmt
, '%');
1025 strbuf_add(&munged_fmt
, fmt
, percent
- fmt
);
1031 strbuf_addstr(&munged_fmt
, "%%");
1035 strbuf_addf(&munged_fmt
, "%"PRItime
,
1036 (timestamp_t
)tm_to_time_t(tm
) -
1037 3600 * (tz_offset
/ 100) -
1038 60 * (tz_offset
% 100));
1042 strbuf_addf(&munged_fmt
, "%+05d", tz_offset
);
1046 if (suppress_tz_name
) {
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
);
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
, ' ');
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
)
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
,
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
)
1104 unsigned char c
= line
[len
- 1];
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
1128 void strbuf_stripspace(struct strbuf
*sb
, int skip_comments
)
1131 size_t i
, j
, len
, newlen
;
1134 /* We may have to add a newline. */
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
) {
1145 newlen
= cleanup(sb
->buf
+ i
, len
);
1147 /* Not just an empty line? */
1149 if (empties
> 0 && j
> 0)
1150 sb
->buf
[j
++] = '\n';
1152 memmove(sb
->buf
+ j
, sb
->buf
+ i
, newlen
);
1153 sb
->buf
[newlen
+ j
++] = '\n';
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
);
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
);
1182 int strbuf_edit_interactively(struct strbuf
*buffer
, const char *path
,
1183 const char *const *env
)
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);
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
);
1197 } else if (close(fd
) < 0)
1198 res
= error_errno(_("could not close '%s'"), path
);
1200 strbuf_reset(buffer
);
1201 if (launch_editor(path
, buffer
, env
) < 0)
1202 res
= error_errno(_("could not edit '%s'"), path
);
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);