1 #include "git-compat-util.h"
4 #include "environment.h"
7 #include "object-name.h"
10 #include "repository.h"
11 #include "string-list.h"
16 int starts_with(const char *str
, const char *prefix
)
18 for (; ; str
++, prefix
++)
21 else if (*str
!= *prefix
)
25 int istarts_with(const char *str
, const char *prefix
)
27 for (; ; str
++, prefix
++)
30 else if (tolower(*str
) != tolower(*prefix
))
34 int skip_to_optional_arg_default(const char *str
, const char *prefix
,
35 const char **arg
, const char *def
)
39 if (!skip_prefix(str
, prefix
, &p
))
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
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
));
68 strbuf_grow(sb
, hint
);
71 void strbuf_release(struct strbuf
*sb
)
79 char *strbuf_detach(struct strbuf
*sb
, size_t *sz
)
90 void strbuf_attach(struct strbuf
*sb
, void *buf
, size_t len
, size_t alloc
)
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");
108 ALLOC_GROW(sb
->buf
, sb
->len
+ extra
+ 1, sb
->alloc
);
113 void strbuf_trim(struct strbuf
*sb
)
119 void strbuf_rtrim(struct strbuf
*sb
)
121 while (sb
->len
> 0 && isspace((unsigned char)sb
->buf
[sb
->len
- 1]))
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]))
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')
138 sb
->buf
[sb
->len
] = '\0';
142 void strbuf_ltrim(struct strbuf
*sb
)
145 while (sb
->len
> 0 && isspace(*b
)) {
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
)
158 if (same_encoding(from
, to
))
161 out
= reencode_string_len(sb
->buf
, sb
->len
, to
, from
, &len
);
165 strbuf_attach(sb
, out
, len
, len
);
169 void strbuf_tolower(struct strbuf
*sb
)
171 char *p
= sb
->buf
, *end
= sb
->buf
+ sb
->len
;
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;
185 if (max
<= 0 || nr
+ 1 < max
) {
186 const char *end
= memchr(str
, terminator
, slen
);
190 t
= xmalloc(sizeof(struct strbuf
));
192 strbuf_add(t
, str
, len
);
193 ALLOC_GROW(ret
, nr
+ 2, alloc
);
198 ALLOC_GROW(ret
, nr
+ 1, alloc
); /* In case string was empty */
203 void strbuf_add_separated_string_list(struct strbuf
*str
,
205 struct string_list
*slist
)
207 struct string_list_item
*item
;
210 for_each_string_list_item(item
, slist
) {
212 strbuf_addstr(str
, sep
);
213 strbuf_addstr(str
, item
->string
);
218 void strbuf_list_free(struct strbuf
**sbs
)
220 struct strbuf
**s
= 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
);
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");
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");
251 strbuf_grow(sb
, dlen
- len
);
252 memmove(sb
->buf
+ pos
+ dlen
,
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
)
271 die("`pos' is too far after the end of the buffer");
273 len
= vsnprintf(sb
->buf
+ sb
->len
, 0, fmt
, cp
);
276 BUG("your vsnprintf is broken (returned %d)", 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
;
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
, ...)
296 strbuf_vinsertf(sb
, pos
, fmt
, 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
)
325 strbuf_addstr(buf
, *argv
);
327 strbuf_addch(buf
, delim
);
328 strbuf_addstr(buf
, *(++argv
));
334 void strbuf_addchars(struct strbuf
*sb
, int c
, size_t 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
, ...)
345 strbuf_vaddf(sb
, fmt
, ap
);
349 static void add_lines(struct strbuf
*out
,
352 const char *buf
, size_t size
)
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
);
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
, ...)
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
);
391 strbuf_add_commented_lines(sb
, buf
.buf
, buf
.len
);
393 sb
->buf
[--sb
->len
] = '\0';
395 strbuf_release(&buf
);
398 void strbuf_vaddf(struct strbuf
*sb
, const char *fmt
, va_list ap
)
403 if (!strbuf_avail(sb
))
406 len
= vsnprintf(sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
, fmt
, cp
);
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
,
426 percent
= strchrnul(format
, '%');
427 strbuf_add(sb
, format
, percent
- format
);
430 format
= percent
+ 1;
432 if (*format
== '%') {
433 strbuf_addch(sb
, '%');
438 consumed
= fn(sb
, format
, context
);
442 strbuf_addch(sb
, '%');
446 size_t strbuf_expand_literal_cb(struct strbuf
*sb
,
447 const char *placeholder
,
448 void *context UNUSED
)
452 switch (placeholder
[0]) {
453 case 'n': /* newline */
454 strbuf_addch(sb
, '\n');
457 /* %x00 == NUL, %x0a == LF, etc. */
458 ch
= hex2chr(placeholder
+ 1);
461 strbuf_addch(sb
, ch
);
467 size_t strbuf_expand_dict_cb(struct strbuf
*sb
, const char *placeholder
,
470 struct strbuf_expand_dict_entry
*e
= context
;
473 for (; e
->placeholder
&& (len
= strlen(e
->placeholder
)); e
++) {
474 if (!strncmp(placeholder
, e
->placeholder
, len
)) {
476 strbuf_addstr(sb
, e
->value
);
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
);
507 strbuf_addch(dst
, ch
);
511 size_t strbuf_fread(struct strbuf
*sb
, size_t size
, FILE *f
)
514 size_t oldalloc
= sb
->alloc
;
516 strbuf_grow(sb
, size
);
517 res
= fread(sb
->buf
+ sb
->len
, 1, size
, f
);
519 strbuf_setlen(sb
, sb
->len
+ res
);
520 else if (oldalloc
== 0)
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);
532 ssize_t want
= sb
->alloc
- sb
->len
- 1;
533 ssize_t got
= read_in_full(fd
, sb
->buf
+ sb
->len
, want
);
539 strbuf_setlen(sb
, oldlen
);
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
;
557 strbuf_grow(sb
, hint
? hint
: 8192);
558 cnt
= xread(fd
, sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
- 1);
560 strbuf_setlen(sb
, sb
->len
+ cnt
);
561 else if (oldalloc
== 0)
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
;
580 while (hint
< STRBUF_MAXLINK
) {
583 strbuf_grow(sb
, hint
);
584 len
= readlink(path
, sb
->buf
, hint
);
588 } else if (len
< hint
) {
589 strbuf_setlen(sb
, len
);
593 /* .. the buffer was too small - try again */
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
));
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
)
634 int strbuf_getwholeline(struct strbuf
*sb
, FILE *fp
, int term
)
643 /* Translate slopbuf to NULL, as we cannot call realloc on it */
647 r
= getdelim(&sb
->buf
, &sb
->alloc
, term
, fp
);
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.
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.
681 int strbuf_getwholeline(struct strbuf
*sb
, FILE *fp
, int term
)
690 while ((ch
= getc_unlocked(fp
)) != EOF
) {
691 if (!strbuf_avail(sb
))
693 sb
->buf
[sb
->len
++] = ch
;
698 if (ch
== EOF
&& sb
->len
== 0)
701 sb
->buf
[sb
->len
] = '\0';
706 int strbuf_appendwholeline(struct strbuf
*sb
, FILE *fp
, int term
)
708 struct strbuf line
= STRBUF_INIT
;
709 if (strbuf_getwholeline(&line
, fp
, term
))
711 strbuf_addbuf(sb
, &line
);
712 strbuf_release(&line
);
716 static int strbuf_getdelim(struct strbuf
*sb
, FILE *fp
, int term
)
718 if (strbuf_getwholeline(sb
, fp
, term
))
720 if (sb
->buf
[sb
->len
- 1] == term
)
721 strbuf_setlen(sb
, sb
->len
- 1);
725 int strbuf_getdelim_strip_crlf(struct strbuf
*sb
, FILE *fp
, int term
)
727 if (strbuf_getwholeline(sb
, fp
, term
))
729 if (term
== '\n' && 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);
737 int strbuf_getline(struct strbuf
*sb
, FILE *fp
)
739 return strbuf_getdelim_strip_crlf(sb
, fp
, '\n');
742 int strbuf_getline_lf(struct strbuf
*sb
, FILE *fp
)
744 return strbuf_getdelim(sb
, fp
, '\n');
747 int strbuf_getline_nul(struct strbuf
*sb
, FILE *fp
)
749 return strbuf_getdelim(sb
, fp
, '\0');
752 int strbuf_getwholeline_fd(struct strbuf
*sb
, int fd
, int term
)
758 ssize_t len
= xread(fd
, &ch
, 1);
761 strbuf_addch(sb
, ch
);
768 ssize_t
strbuf_read_file(struct strbuf
*sb
, const char *path
, size_t hint
)
774 fd
= open(path
, O_RDONLY
);
777 len
= strbuf_read(sb
, fd
, hint
);
788 void strbuf_add_lines(struct strbuf
*out
, const char *prefix
,
789 const char *buf
, size_t size
)
791 add_lines(out
, prefix
, NULL
, buf
, size
);
794 void strbuf_addstr_xml_quoted(struct strbuf
*buf
, const char *s
)
797 size_t len
= strcspn(s
, "\"<>&");
798 strbuf_add(buf
, s
, len
);
802 strbuf_addstr(buf
, """);
805 strbuf_addstr(buf
, "<");
808 strbuf_addstr(buf
, ">");
811 strbuf_addstr(buf
, "&");
820 int is_rfc3986_reserved_or_unreserved(char ch
)
822 if (is_rfc3986_unreserved(ch
))
825 case '!': case '*': case '\'': case '(': case ')': case ';':
826 case ':': case '@': case '&': case '=': case '+': case '$':
827 case ',': case '/': case '?': case '#': case '[': case ']':
833 int is_rfc3986_unreserved(char ch
)
835 return isalnum(ch
) ||
836 ch
== '-' || ch
== '_' || ch
== '.' || ch
== '~';
839 static void strbuf_add_urlencode(struct strbuf
*sb
, const char *s
, size_t len
,
840 char_predicate allow_unencoded_fn
)
842 strbuf_grow(sb
, len
);
845 if (allow_unencoded_fn(ch
))
846 strbuf_addch(sb
, ch
);
848 strbuf_addf(sb
, "%%%02x", (unsigned char)ch
);
852 void strbuf_addstr_urlencode(struct strbuf
*sb
, const char *s
,
853 char_predicate allow_unencoded_fn
)
855 strbuf_add_urlencode(sb
, s
, strlen(s
), allow_unencoded_fn
);
858 static void strbuf_humanise(struct strbuf
*buf
, off_t bytes
,
861 if (bytes
> 1 << 30) {
864 /* TRANSLATORS: IEC 80000-13:2008 gibibyte */
866 /* TRANSLATORS: IEC 80000-13:2008 gibibyte/second */
868 (unsigned)(bytes
>> 30),
869 (unsigned)(bytes
& ((1 << 30) - 1)) / 10737419);
870 } else if (bytes
> 1 << 20) {
871 unsigned x
= bytes
+ 5243; /* for rounding */
874 /* TRANSLATORS: IEC 80000-13:2008 mebibyte */
876 /* TRANSLATORS: IEC 80000-13:2008 mebibyte/second */
878 x
>> 20, ((x
& ((1 << 20) - 1)) * 100) >> 20);
879 } else if (bytes
> 1 << 10) {
880 unsigned x
= bytes
+ 5; /* for rounding */
883 /* TRANSLATORS: IEC 80000-13:2008 kibibyte */
885 /* TRANSLATORS: IEC 80000-13:2008 kibibyte/second */
887 x
>> 10, ((x
& ((1 << 10) - 1)) * 100) >> 10);
891 /* TRANSLATORS: IEC 80000-13:2008 byte */
892 Q_("%u byte", "%u bytes", bytes
) :
893 /* TRANSLATORS: IEC 80000-13:2008 byte/second */
894 Q_("%u byte/s", "%u bytes/s", bytes
),
899 void strbuf_humanise_bytes(struct strbuf
*buf
, off_t bytes
)
901 strbuf_humanise(buf
, bytes
, 0);
904 void strbuf_humanise_rate(struct strbuf
*buf
, off_t bytes
)
906 strbuf_humanise(buf
, bytes
, 1);
909 void strbuf_add_absolute_path(struct strbuf
*sb
, const char *path
)
912 die("The empty string is not a valid path");
913 if (!is_absolute_path(path
)) {
914 struct stat cwd_stat
, pwd_stat
;
915 size_t orig_len
= sb
->len
;
916 char *cwd
= xgetcwd();
917 char *pwd
= getenv("PWD");
918 if (pwd
&& strcmp(pwd
, cwd
) &&
919 !stat(cwd
, &cwd_stat
) &&
920 (cwd_stat
.st_dev
|| cwd_stat
.st_ino
) &&
921 !stat(pwd
, &pwd_stat
) &&
922 pwd_stat
.st_dev
== cwd_stat
.st_dev
&&
923 pwd_stat
.st_ino
== cwd_stat
.st_ino
)
924 strbuf_addstr(sb
, pwd
);
926 strbuf_addstr(sb
, cwd
);
927 if (sb
->len
> orig_len
&& !is_dir_sep(sb
->buf
[sb
->len
- 1]))
928 strbuf_addch(sb
, '/');
931 strbuf_addstr(sb
, path
);
934 void strbuf_add_real_path(struct strbuf
*sb
, const char *path
)
937 struct strbuf resolved
= STRBUF_INIT
;
938 strbuf_realpath(&resolved
, path
, 1);
939 strbuf_addbuf(sb
, &resolved
);
940 strbuf_release(&resolved
);
942 strbuf_realpath(sb
, path
, 1);
945 int printf_ln(const char *fmt
, ...)
950 ret
= vprintf(fmt
, ap
);
952 if (ret
< 0 || putchar('\n') == EOF
)
957 int fprintf_ln(FILE *fp
, const char *fmt
, ...)
962 ret
= vfprintf(fp
, fmt
, ap
);
964 if (ret
< 0 || putc('\n', fp
) == EOF
)
969 char *xstrdup_tolower(const char *string
)
974 len
= strlen(string
);
975 result
= xmallocz(len
);
976 for (i
= 0; i
< len
; i
++)
977 result
[i
] = tolower(string
[i
]);
981 char *xstrdup_toupper(const char *string
)
986 len
= strlen(string
);
987 result
= xmallocz(len
);
988 for (i
= 0; i
< len
; i
++)
989 result
[i
] = toupper(string
[i
]);
993 char *xstrvfmt(const char *fmt
, va_list ap
)
995 struct strbuf buf
= STRBUF_INIT
;
996 strbuf_vaddf(&buf
, fmt
, ap
);
997 return strbuf_detach(&buf
, NULL
);
1000 char *xstrfmt(const char *fmt
, ...)
1006 ret
= xstrvfmt(fmt
, ap
);
1012 void strbuf_addftime(struct strbuf
*sb
, const char *fmt
, const struct tm
*tm
,
1013 int tz_offset
, int suppress_tz_name
)
1015 struct strbuf munged_fmt
= STRBUF_INIT
;
1023 * There is no portable way to pass timezone information to
1024 * strftime, so we handle %z and %Z here. Likewise '%s', because
1025 * going back to an epoch time requires knowing the zone.
1027 * Note that tz_offset is in the "[-+]HHMM" decimal form; this is what
1028 * we want for %z, but the computation for %s has to convert to number
1032 const char *percent
= strchrnul(fmt
, '%');
1033 strbuf_add(&munged_fmt
, fmt
, percent
- fmt
);
1039 strbuf_addstr(&munged_fmt
, "%%");
1043 strbuf_addf(&munged_fmt
, "%"PRItime
,
1044 (timestamp_t
)tm_to_time_t(tm
) -
1045 3600 * (tz_offset
/ 100) -
1046 60 * (tz_offset
% 100));
1050 strbuf_addf(&munged_fmt
, "%+05d", tz_offset
);
1054 if (suppress_tz_name
) {
1060 strbuf_addch(&munged_fmt
, '%');
1063 fmt
= munged_fmt
.buf
;
1065 strbuf_grow(sb
, hint
);
1066 len
= strftime(sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
, fmt
, tm
);
1070 * strftime reports "0" if it could not fit the result in the buffer.
1071 * Unfortunately, it also reports "0" if the requested time string
1072 * takes 0 bytes. So our strategy is to munge the format so that the
1073 * output contains at least one character, and then drop the extra
1074 * character before returning.
1076 strbuf_addch(&munged_fmt
, ' ');
1079 strbuf_grow(sb
, hint
);
1080 len
= strftime(sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
,
1081 munged_fmt
.buf
, tm
);
1083 len
--; /* drop munged space */
1085 strbuf_release(&munged_fmt
);
1086 strbuf_setlen(sb
, sb
->len
+ len
);
1089 void strbuf_repo_add_unique_abbrev(struct strbuf
*sb
, struct repository
*repo
,
1090 const struct object_id
*oid
, int abbrev_len
)
1093 strbuf_grow(sb
, GIT_MAX_HEXSZ
+ 1);
1094 r
= repo_find_unique_abbrev_r(repo
, sb
->buf
+ sb
->len
, oid
, abbrev_len
);
1095 strbuf_setlen(sb
, sb
->len
+ r
);
1098 void strbuf_add_unique_abbrev(struct strbuf
*sb
, const struct object_id
*oid
,
1101 strbuf_repo_add_unique_abbrev(sb
, the_repository
, oid
, abbrev_len
);
1105 * Returns the length of a line, without trailing spaces.
1107 * If the line ends with newline, it will be removed too.
1109 static size_t cleanup(char *line
, size_t len
)
1112 unsigned char c
= line
[len
- 1];
1122 * Remove empty lines from the beginning and end
1123 * and also trailing spaces from every line.
1125 * Turn multiple consecutive empty lines between paragraphs
1126 * into just one empty line.
1128 * If the input has only empty lines and spaces,
1129 * no output will be produced.
1131 * If last line does not have a newline at the end, one is added.
1133 * Enable skip_comments to skip every line starting with comment
1136 void strbuf_stripspace(struct strbuf
*sb
, int skip_comments
)
1139 size_t i
, j
, len
, newlen
;
1142 /* We may have to add a newline. */
1145 for (i
= j
= 0; i
< sb
->len
; i
+= len
, j
+= newlen
) {
1146 eol
= memchr(sb
->buf
+ i
, '\n', sb
->len
- i
);
1147 len
= eol
? eol
- (sb
->buf
+ i
) + 1 : sb
->len
- i
;
1149 if (skip_comments
&& len
&& sb
->buf
[i
] == comment_line_char
) {
1153 newlen
= cleanup(sb
->buf
+ i
, len
);
1155 /* Not just an empty line? */
1157 if (empties
> 0 && j
> 0)
1158 sb
->buf
[j
++] = '\n';
1160 memmove(sb
->buf
+ j
, sb
->buf
+ i
, newlen
);
1161 sb
->buf
[newlen
+ j
++] = '\n';
1167 strbuf_setlen(sb
, j
);
1170 int strbuf_normalize_path(struct strbuf
*src
)
1172 struct strbuf dst
= STRBUF_INIT
;
1174 strbuf_grow(&dst
, src
->len
);
1175 if (normalize_path_copy(dst
.buf
, src
->buf
) < 0) {
1176 strbuf_release(&dst
);
1181 * normalize_path does not tell us the new length, so we have to
1182 * compute it by looking for the new NUL it placed
1184 strbuf_setlen(&dst
, strlen(dst
.buf
));
1185 strbuf_swap(src
, &dst
);
1186 strbuf_release(&dst
);
1190 void strbuf_strip_file_from_path(struct strbuf
*sb
)
1192 char *path_sep
= find_last_dir_sep(sb
->buf
);
1193 strbuf_setlen(sb
, path_sep
? path_sep
- sb
->buf
+ 1 : 0);