]> git.ipfire.org Git - thirdparty/git.git/blame - strbuf.c
Git 1.7.10.5
[thirdparty/git.git] / strbuf.c
CommitLineData
812666c8 1#include "cache.h"
a2fab531 2#include "refs.h"
d1df5743 3
698a68be
JH
4int prefixcmp(const char *str, const char *prefix)
5{
6 for (; ; str++, prefix++)
7 if (!*prefix)
8 return 0;
9 else if (*str != *prefix)
10 return (unsigned char)*prefix - (unsigned char)*str;
11}
12
8cc5b290
AP
13int suffixcmp(const char *str, const char *suffix)
14{
15 int len = strlen(str), suflen = strlen(suffix);
16 if (len < suflen)
17 return -1;
18 else
19 return strcmp(str + len - suflen, suffix);
20}
21
b315c5c0
PH
22/*
23 * Used as the default ->buf value, so that people can always assume
24 * buf is non NULL and ->buf is NUL terminated even for a freshly
25 * initialized strbuf.
26 */
27char strbuf_slopbuf[1];
28
917c9a71
PH
29void strbuf_init(struct strbuf *sb, size_t hint)
30{
b315c5c0
PH
31 sb->alloc = sb->len = 0;
32 sb->buf = strbuf_slopbuf;
8c74ef1e 33 if (hint)
f1696ee3 34 strbuf_grow(sb, hint);
d1df5743
JH
35}
36
917c9a71
PH
37void strbuf_release(struct strbuf *sb)
38{
b315c5c0
PH
39 if (sb->alloc) {
40 free(sb->buf);
41 strbuf_init(sb, 0);
42 }
b449f4cf
PH
43}
44
b315c5c0 45char *strbuf_detach(struct strbuf *sb, size_t *sz)
917c9a71 46{
b315c5c0
PH
47 char *res = sb->alloc ? sb->buf : NULL;
48 if (sz)
49 *sz = sb->len;
f1696ee3 50 strbuf_init(sb, 0);
b449f4cf
PH
51 return res;
52}
53
917c9a71
PH
54void strbuf_attach(struct strbuf *sb, void *buf, size_t len, size_t alloc)
55{
56 strbuf_release(sb);
57 sb->buf = buf;
58 sb->len = len;
59 sb->alloc = alloc;
60 strbuf_grow(sb, 0);
61 sb->buf[sb->len] = '\0';
62}
63
64void strbuf_grow(struct strbuf *sb, size_t extra)
65{
8c74ef1e 66 int new_buf = !sb->alloc;
1368f650
JN
67 if (unsigned_add_overflows(extra, 1) ||
68 unsigned_add_overflows(sb->len, extra + 1))
b449f4cf 69 die("you want to use way too much memory");
8c74ef1e 70 if (new_buf)
b315c5c0 71 sb->buf = NULL;
b449f4cf 72 ALLOC_GROW(sb->buf, sb->len + extra + 1, sb->alloc);
8c74ef1e
TR
73 if (new_buf)
74 sb->buf[0] = '\0';
b449f4cf
PH
75}
76
eacd6dc5
LS
77void strbuf_trim(struct strbuf *sb)
78{
79 char *b = sb->buf;
80 while (sb->len > 0 && isspace((unsigned char)sb->buf[sb->len - 1]))
81 sb->len--;
82 while (sb->len > 0 && isspace(*b)) {
83 b++;
84 sb->len--;
85 }
86 memmove(sb->buf, b, sb->len);
87 sb->buf[sb->len] = '\0';
88}
f1696ee3
PH
89void strbuf_rtrim(struct strbuf *sb)
90{
91 while (sb->len > 0 && isspace((unsigned char)sb->buf[sb->len - 1]))
92 sb->len--;
93 sb->buf[sb->len] = '\0';
94}
95
eacd6dc5
LS
96void strbuf_ltrim(struct strbuf *sb)
97{
98 char *b = sb->buf;
99 while (sb->len > 0 && isspace(*b)) {
100 b++;
101 sb->len--;
102 }
103 memmove(sb->buf, b, sb->len);
104 sb->buf[sb->len] = '\0';
105}
106
2f1d9e2b 107struct strbuf **strbuf_split_buf(const char *str, size_t slen, int delim, int max)
eacd6dc5
LS
108{
109 int alloc = 2, pos = 0;
2f1d9e2b 110 const char *n, *p;
eacd6dc5
LS
111 struct strbuf **ret;
112 struct strbuf *t;
113
114 ret = xcalloc(alloc, sizeof(struct strbuf *));
2f1d9e2b
JK
115 p = n = str;
116 while (n < str + slen) {
eacd6dc5 117 int len;
28fc3a68 118 if (max <= 0 || pos + 1 < max)
2f1d9e2b 119 n = memchr(n, delim, slen - (n - str));
28fc3a68
JK
120 else
121 n = NULL;
eacd6dc5
LS
122 if (pos + 1 >= alloc) {
123 alloc = alloc * 2;
124 ret = xrealloc(ret, sizeof(struct strbuf *) * alloc);
125 }
126 if (!n)
2f1d9e2b 127 n = str + slen - 1;
eacd6dc5
LS
128 len = n - p + 1;
129 t = xmalloc(sizeof(struct strbuf));
130 strbuf_init(t, len);
131 strbuf_add(t, p, len);
132 ret[pos] = t;
133 ret[++pos] = NULL;
134 p = ++n;
135 }
136 return ret;
137}
138
139void strbuf_list_free(struct strbuf **sbs)
140{
141 struct strbuf **s = sbs;
142
143 while (*s) {
144 strbuf_release(*s);
145 free(*s++);
146 }
147 free(sbs);
148}
149
9b200fd6 150int strbuf_cmp(const struct strbuf *a, const struct strbuf *b)
45f66f64 151{
8f024655
AR
152 int len = a->len < b->len ? a->len: b->len;
153 int cmp = memcmp(a->buf, b->buf, len);
154 if (cmp)
155 return cmp;
156 return a->len < b->len ? -1: a->len != b->len;
45f66f64
PH
157}
158
917c9a71
PH
159void strbuf_splice(struct strbuf *sb, size_t pos, size_t len,
160 const void *data, size_t dlen)
161{
1368f650 162 if (unsigned_add_overflows(pos, len))
917c9a71
PH
163 die("you want to use way too much memory");
164 if (pos > sb->len)
165 die("`pos' is too far after the end of the buffer");
166 if (pos + len > sb->len)
167 die("`pos + len' is too far after the end of the buffer");
168
169 if (dlen >= len)
170 strbuf_grow(sb, dlen - len);
171 memmove(sb->buf + pos + dlen,
172 sb->buf + pos + len,
173 sb->len - pos - len);
174 memcpy(sb->buf + pos, data, dlen);
175 strbuf_setlen(sb, sb->len + dlen - len);
176}
177
c76689df
PH
178void strbuf_insert(struct strbuf *sb, size_t pos, const void *data, size_t len)
179{
180 strbuf_splice(sb, pos, 0, data, len);
181}
182
183void strbuf_remove(struct strbuf *sb, size_t pos, size_t len)
184{
185 strbuf_splice(sb, pos, len, NULL, 0);
186}
187
917c9a71
PH
188void strbuf_add(struct strbuf *sb, const void *data, size_t len)
189{
b449f4cf
PH
190 strbuf_grow(sb, len);
191 memcpy(sb->buf + sb->len, data, len);
192 strbuf_setlen(sb, sb->len + len);
193}
194
91db267e
RS
195void strbuf_adddup(struct strbuf *sb, size_t pos, size_t len)
196{
197 strbuf_grow(sb, len);
198 memcpy(sb->buf + sb->len, sb->buf + pos, len);
199 strbuf_setlen(sb, sb->len + len);
200}
201
917c9a71
PH
202void strbuf_addf(struct strbuf *sb, const char *fmt, ...)
203{
b449f4cf 204 va_list ap;
ebeb6090
JK
205 va_start(ap, fmt);
206 strbuf_vaddf(sb, fmt, ap);
207 va_end(ap);
208}
209
210void strbuf_vaddf(struct strbuf *sb, const char *fmt, va_list ap)
211{
212 int len;
213 va_list cp;
b449f4cf 214
f141bd80
SP
215 if (!strbuf_avail(sb))
216 strbuf_grow(sb, 64);
ebeb6090
JK
217 va_copy(cp, ap);
218 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, cp);
219 va_end(cp);
f141bd80 220 if (len < 0)
ebeb6090 221 die("BUG: your vsnprintf is broken (returned %d)", len);
f1696ee3 222 if (len > strbuf_avail(sb)) {
b449f4cf 223 strbuf_grow(sb, len);
b449f4cf 224 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, ap);
ebeb6090
JK
225 if (len > strbuf_avail(sb))
226 die("BUG: your vsnprintf is broken (insatiable)");
b449f4cf
PH
227 }
228 strbuf_setlen(sb, sb->len + len);
d1df5743
JH
229}
230
c3a670de
MC
231void strbuf_expand(struct strbuf *sb, const char *format, expand_fn_t fn,
232 void *context)
cde75e59
RS
233{
234 for (;;) {
c3a670de
MC
235 const char *percent;
236 size_t consumed;
cde75e59
RS
237
238 percent = strchrnul(format, '%');
239 strbuf_add(sb, format, percent - format);
240 if (!*percent)
241 break;
242 format = percent + 1;
243
0a0416a3
JK
244 if (*format == '%') {
245 strbuf_addch(sb, '%');
246 format++;
247 continue;
248 }
249
c3a670de
MC
250 consumed = fn(sb, format, context);
251 if (consumed)
252 format += consumed;
253 else
cde75e59
RS
254 strbuf_addch(sb, '%');
255 }
256}
257
9b864e73
RS
258size_t strbuf_expand_dict_cb(struct strbuf *sb, const char *placeholder,
259 void *context)
260{
261 struct strbuf_expand_dict_entry *e = context;
262 size_t len;
263
264 for (; e->placeholder && (len = strlen(e->placeholder)); e++) {
265 if (!strncmp(placeholder, e->placeholder, len)) {
266 if (e->value)
267 strbuf_addstr(sb, e->value);
268 return len;
269 }
270 }
271 return 0;
272}
273
361df5df
JK
274void strbuf_addbuf_percentquote(struct strbuf *dst, const struct strbuf *src)
275{
276 int i, len = src->len;
277
278 for (i = 0; i < len; i++) {
279 if (src->buf[i] == '%')
280 strbuf_addch(dst, '%');
281 strbuf_addch(dst, src->buf[i]);
282 }
283}
284
917c9a71
PH
285size_t strbuf_fread(struct strbuf *sb, size_t size, FILE *f)
286{
b449f4cf 287 size_t res;
2fc64700 288 size_t oldalloc = sb->alloc;
b449f4cf
PH
289
290 strbuf_grow(sb, size);
291 res = fread(sb->buf + sb->len, 1, size, f);
2fc64700 292 if (res > 0)
b449f4cf 293 strbuf_setlen(sb, sb->len + res);
6651c3f7 294 else if (oldalloc == 0)
2fc64700 295 strbuf_release(sb);
b449f4cf 296 return res;
d1df5743
JH
297}
298
f1696ee3 299ssize_t strbuf_read(struct strbuf *sb, int fd, size_t hint)
b449f4cf
PH
300{
301 size_t oldlen = sb->len;
2fc64700 302 size_t oldalloc = sb->alloc;
b449f4cf 303
f1696ee3 304 strbuf_grow(sb, hint ? hint : 8192);
b449f4cf
PH
305 for (;;) {
306 ssize_t cnt;
307
b449f4cf
PH
308 cnt = xread(fd, sb->buf + sb->len, sb->alloc - sb->len - 1);
309 if (cnt < 0) {
2fc64700
RS
310 if (oldalloc == 0)
311 strbuf_release(sb);
312 else
313 strbuf_setlen(sb, oldlen);
b449f4cf
PH
314 return -1;
315 }
316 if (!cnt)
317 break;
318 sb->len += cnt;
f1696ee3 319 strbuf_grow(sb, 8192);
b449f4cf
PH
320 }
321
322 sb->buf[sb->len] = '\0';
323 return sb->len - oldlen;
d1df5743
JH
324}
325
b11b7e13
LT
326#define STRBUF_MAXLINK (2*PATH_MAX)
327
328int strbuf_readlink(struct strbuf *sb, const char *path, size_t hint)
329{
2fc64700
RS
330 size_t oldalloc = sb->alloc;
331
b11b7e13
LT
332 if (hint < 32)
333 hint = 32;
334
335 while (hint < STRBUF_MAXLINK) {
336 int len;
337
338 strbuf_grow(sb, hint);
339 len = readlink(path, sb->buf, hint);
340 if (len < 0) {
341 if (errno != ERANGE)
342 break;
343 } else if (len < hint) {
344 strbuf_setlen(sb, len);
345 return 0;
346 }
347
348 /* .. the buffer was too small - try again */
349 hint *= 2;
350 }
2fc64700
RS
351 if (oldalloc == 0)
352 strbuf_release(sb);
b11b7e13
LT
353 return -1;
354}
355
c7e4f0d7 356int strbuf_getwholeline(struct strbuf *sb, FILE *fp, int term)
917c9a71 357{
d1df5743 358 int ch;
e6c019d0 359
e6c019d0
PH
360 if (feof(fp))
361 return EOF;
b449f4cf
PH
362
363 strbuf_reset(sb);
d1df5743 364 while ((ch = fgetc(fp)) != EOF) {
b449f4cf
PH
365 strbuf_grow(sb, 1);
366 sb->buf[sb->len++] = ch;
c7e4f0d7
BC
367 if (ch == term)
368 break;
d1df5743 369 }
e6c019d0
PH
370 if (ch == EOF && sb->len == 0)
371 return EOF;
b449f4cf 372
b449f4cf 373 sb->buf[sb->len] = '\0';
e6c019d0 374 return 0;
d1df5743 375}
a9390b9f 376
c7e4f0d7
BC
377int strbuf_getline(struct strbuf *sb, FILE *fp, int term)
378{
379 if (strbuf_getwholeline(sb, fp, term))
380 return EOF;
381 if (sb->buf[sb->len-1] == term)
382 strbuf_setlen(sb, sb->len-1);
383 return 0;
384}
385
5e8617f5
TR
386int strbuf_getwholeline_fd(struct strbuf *sb, int fd, int term)
387{
388 strbuf_reset(sb);
389
390 while (1) {
391 char ch;
392 ssize_t len = xread(fd, &ch, 1);
393 if (len <= 0)
394 return EOF;
395 strbuf_addch(sb, ch);
396 if (ch == term)
397 break;
398 }
399 return 0;
400}
401
387e7e19 402int strbuf_read_file(struct strbuf *sb, const char *path, size_t hint)
a9390b9f
KH
403{
404 int fd, len;
405
406 fd = open(path, O_RDONLY);
407 if (fd < 0)
408 return -1;
387e7e19 409 len = strbuf_read(sb, fd, hint);
a9390b9f
KH
410 close(fd);
411 if (len < 0)
412 return -1;
413
414 return len;
415}
895680f0
JH
416
417void strbuf_add_lines(struct strbuf *out, const char *prefix,
418 const char *buf, size_t size)
419{
420 while (size) {
421 const char *next = memchr(buf, '\n', size);
422 next = next ? (next + 1) : (buf + size);
423 strbuf_addstr(out, prefix);
424 strbuf_add(out, buf, next - buf);
425 size -= next - buf;
426 buf = next;
427 }
428 strbuf_complete_line(out);
429}
367d20ec 430
c505116b
JK
431static int is_rfc3986_reserved(char ch)
432{
433 switch (ch) {
434 case '!': case '*': case '\'': case '(': case ')': case ';':
435 case ':': case '@': case '&': case '=': case '+': case '$':
436 case ',': case '/': case '?': case '#': case '[': case ']':
437 return 1;
438 }
439 return 0;
440}
441
442static int is_rfc3986_unreserved(char ch)
443{
444 return isalnum(ch) ||
445 ch == '-' || ch == '_' || ch == '.' || ch == '~';
446}
447
448void strbuf_add_urlencode(struct strbuf *sb, const char *s, size_t len,
449 int reserved)
450{
451 strbuf_grow(sb, len);
452 while (len--) {
453 char ch = *s++;
454 if (is_rfc3986_unreserved(ch) ||
455 (!reserved && is_rfc3986_reserved(ch)))
456 strbuf_addch(sb, ch);
457 else
458 strbuf_addf(sb, "%%%02x", ch);
459 }
460}
461
462void strbuf_addstr_urlencode(struct strbuf *sb, const char *s,
463 int reserved)
464{
465 strbuf_add_urlencode(sb, s, strlen(s), reserved);
466}