handle_alias: provide GIT_PREFIX to !alias
[git/dscho.git] / strbuf.c
blob77444a94df3d4a0cda6403957fd13ea262d3ab24
1 #include "cache.h"
2 #include "refs.h"
4 int prefixcmp(const char *str, const char *prefix)
6 for (; ; str++, prefix++)
7 if (!*prefix)
8 return 0;
9 else if (*str != *prefix)
10 return (unsigned char)*prefix - (unsigned char)*str;
13 int suffixcmp(const char *str, const char *suffix)
15 int len = strlen(str), suflen = strlen(suffix);
16 if (len < suflen)
17 return -1;
18 else
19 return strcmp(str + len - suflen, suffix);
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.
27 char strbuf_slopbuf[1];
29 void strbuf_init(struct strbuf *sb, size_t hint)
31 sb->alloc = sb->len = 0;
32 sb->buf = strbuf_slopbuf;
33 if (hint)
34 strbuf_grow(sb, hint);
37 void strbuf_release(struct strbuf *sb)
39 if (sb->alloc) {
40 free(sb->buf);
41 strbuf_init(sb, 0);
45 char *strbuf_detach(struct strbuf *sb, size_t *sz)
47 char *res = sb->alloc ? sb->buf : NULL;
48 if (sz)
49 *sz = sb->len;
50 strbuf_init(sb, 0);
51 return res;
54 void strbuf_attach(struct strbuf *sb, void *buf, size_t len, size_t alloc)
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';
64 void strbuf_grow(struct strbuf *sb, size_t extra)
66 if (unsigned_add_overflows(extra, 1) ||
67 unsigned_add_overflows(sb->len, extra + 1))
68 die("you want to use way too much memory");
69 if (!sb->alloc)
70 sb->buf = NULL;
71 ALLOC_GROW(sb->buf, sb->len + extra + 1, sb->alloc);
74 void strbuf_trim(struct strbuf *sb)
76 char *b = sb->buf;
77 while (sb->len > 0 && isspace((unsigned char)sb->buf[sb->len - 1]))
78 sb->len--;
79 while (sb->len > 0 && isspace(*b)) {
80 b++;
81 sb->len--;
83 memmove(sb->buf, b, sb->len);
84 sb->buf[sb->len] = '\0';
86 void strbuf_rtrim(struct strbuf *sb)
88 while (sb->len > 0 && isspace((unsigned char)sb->buf[sb->len - 1]))
89 sb->len--;
90 sb->buf[sb->len] = '\0';
93 void strbuf_ltrim(struct strbuf *sb)
95 char *b = sb->buf;
96 while (sb->len > 0 && isspace(*b)) {
97 b++;
98 sb->len--;
100 memmove(sb->buf, b, sb->len);
101 sb->buf[sb->len] = '\0';
104 struct strbuf **strbuf_split(const struct strbuf *sb, int delim)
106 int alloc = 2, pos = 0;
107 char *n, *p;
108 struct strbuf **ret;
109 struct strbuf *t;
111 ret = xcalloc(alloc, sizeof(struct strbuf *));
112 p = n = sb->buf;
113 while (n < sb->buf + sb->len) {
114 int len;
115 n = memchr(n, delim, sb->len - (n - sb->buf));
116 if (pos + 1 >= alloc) {
117 alloc = alloc * 2;
118 ret = xrealloc(ret, sizeof(struct strbuf *) * alloc);
120 if (!n)
121 n = sb->buf + sb->len - 1;
122 len = n - p + 1;
123 t = xmalloc(sizeof(struct strbuf));
124 strbuf_init(t, len);
125 strbuf_add(t, p, len);
126 ret[pos] = t;
127 ret[++pos] = NULL;
128 p = ++n;
130 return ret;
133 void strbuf_list_free(struct strbuf **sbs)
135 struct strbuf **s = sbs;
137 while (*s) {
138 strbuf_release(*s);
139 free(*s++);
141 free(sbs);
144 int strbuf_cmp(const struct strbuf *a, const struct strbuf *b)
146 int len = a->len < b->len ? a->len: b->len;
147 int cmp = memcmp(a->buf, b->buf, len);
148 if (cmp)
149 return cmp;
150 return a->len < b->len ? -1: a->len != b->len;
153 void strbuf_splice(struct strbuf *sb, size_t pos, size_t len,
154 const void *data, size_t dlen)
156 if (unsigned_add_overflows(pos, len))
157 die("you want to use way too much memory");
158 if (pos > sb->len)
159 die("`pos' is too far after the end of the buffer");
160 if (pos + len > sb->len)
161 die("`pos + len' is too far after the end of the buffer");
163 if (dlen >= len)
164 strbuf_grow(sb, dlen - len);
165 memmove(sb->buf + pos + dlen,
166 sb->buf + pos + len,
167 sb->len - pos - len);
168 memcpy(sb->buf + pos, data, dlen);
169 strbuf_setlen(sb, sb->len + dlen - len);
172 void strbuf_insert(struct strbuf *sb, size_t pos, const void *data, size_t len)
174 strbuf_splice(sb, pos, 0, data, len);
177 void strbuf_remove(struct strbuf *sb, size_t pos, size_t len)
179 strbuf_splice(sb, pos, len, NULL, 0);
182 void strbuf_add(struct strbuf *sb, const void *data, size_t len)
184 strbuf_grow(sb, len);
185 memcpy(sb->buf + sb->len, data, len);
186 strbuf_setlen(sb, sb->len + len);
189 void strbuf_adddup(struct strbuf *sb, size_t pos, size_t len)
191 strbuf_grow(sb, len);
192 memcpy(sb->buf + sb->len, sb->buf + pos, len);
193 strbuf_setlen(sb, sb->len + len);
196 void strbuf_addf(struct strbuf *sb, const char *fmt, ...)
198 va_list ap;
199 va_start(ap, fmt);
200 strbuf_vaddf(sb, fmt, ap);
201 va_end(ap);
204 void strbuf_vaddf(struct strbuf *sb, const char *fmt, va_list ap)
206 int len;
207 va_list cp;
209 if (!strbuf_avail(sb))
210 strbuf_grow(sb, 64);
211 va_copy(cp, ap);
212 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, cp);
213 va_end(cp);
214 if (len < 0)
215 die("BUG: your vsnprintf is broken (returned %d)", len);
216 if (len > strbuf_avail(sb)) {
217 strbuf_grow(sb, len);
218 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, ap);
219 if (len > strbuf_avail(sb))
220 die("BUG: your vsnprintf is broken (insatiable)");
222 strbuf_setlen(sb, sb->len + len);
225 void strbuf_expand(struct strbuf *sb, const char *format, expand_fn_t fn,
226 void *context)
228 for (;;) {
229 const char *percent;
230 size_t consumed;
232 percent = strchrnul(format, '%');
233 strbuf_add(sb, format, percent - format);
234 if (!*percent)
235 break;
236 format = percent + 1;
238 if (*format == '%') {
239 strbuf_addch(sb, '%');
240 format++;
241 continue;
244 consumed = fn(sb, format, context);
245 if (consumed)
246 format += consumed;
247 else
248 strbuf_addch(sb, '%');
252 size_t strbuf_expand_dict_cb(struct strbuf *sb, const char *placeholder,
253 void *context)
255 struct strbuf_expand_dict_entry *e = context;
256 size_t len;
258 for (; e->placeholder && (len = strlen(e->placeholder)); e++) {
259 if (!strncmp(placeholder, e->placeholder, len)) {
260 if (e->value)
261 strbuf_addstr(sb, e->value);
262 return len;
265 return 0;
268 void strbuf_addbuf_percentquote(struct strbuf *dst, const struct strbuf *src)
270 int i, len = src->len;
272 for (i = 0; i < len; i++) {
273 if (src->buf[i] == '%')
274 strbuf_addch(dst, '%');
275 strbuf_addch(dst, src->buf[i]);
279 size_t strbuf_fread(struct strbuf *sb, size_t size, FILE *f)
281 size_t res;
282 size_t oldalloc = sb->alloc;
284 strbuf_grow(sb, size);
285 res = fread(sb->buf + sb->len, 1, size, f);
286 if (res > 0)
287 strbuf_setlen(sb, sb->len + res);
288 else if (oldalloc == 0)
289 strbuf_release(sb);
290 return res;
293 ssize_t strbuf_read(struct strbuf *sb, int fd, size_t hint)
295 size_t oldlen = sb->len;
296 size_t oldalloc = sb->alloc;
298 strbuf_grow(sb, hint ? hint : 8192);
299 for (;;) {
300 ssize_t cnt;
302 cnt = xread(fd, sb->buf + sb->len, sb->alloc - sb->len - 1);
303 if (cnt < 0) {
304 if (oldalloc == 0)
305 strbuf_release(sb);
306 else
307 strbuf_setlen(sb, oldlen);
308 return -1;
310 if (!cnt)
311 break;
312 sb->len += cnt;
313 strbuf_grow(sb, 8192);
316 sb->buf[sb->len] = '\0';
317 return sb->len - oldlen;
320 #define STRBUF_MAXLINK (2*PATH_MAX)
322 int strbuf_readlink(struct strbuf *sb, const char *path, size_t hint)
324 size_t oldalloc = sb->alloc;
326 if (hint < 32)
327 hint = 32;
329 while (hint < STRBUF_MAXLINK) {
330 int len;
332 strbuf_grow(sb, hint);
333 len = readlink(path, sb->buf, hint);
334 if (len < 0) {
335 if (errno != ERANGE)
336 break;
337 } else if (len < hint) {
338 strbuf_setlen(sb, len);
339 return 0;
342 /* .. the buffer was too small - try again */
343 hint *= 2;
345 if (oldalloc == 0)
346 strbuf_release(sb);
347 return -1;
350 int strbuf_getwholeline(struct strbuf *sb, FILE *fp, int term)
352 int ch;
354 strbuf_grow(sb, 0);
355 if (feof(fp))
356 return EOF;
358 strbuf_reset(sb);
359 while ((ch = fgetc(fp)) != EOF) {
360 strbuf_grow(sb, 1);
361 sb->buf[sb->len++] = ch;
362 if (ch == term)
363 break;
365 if (ch == EOF && sb->len == 0)
366 return EOF;
368 sb->buf[sb->len] = '\0';
369 return 0;
372 int strbuf_getline(struct strbuf *sb, FILE *fp, int term)
374 if (strbuf_getwholeline(sb, fp, term))
375 return EOF;
376 if (sb->buf[sb->len-1] == term)
377 strbuf_setlen(sb, sb->len-1);
378 return 0;
381 int strbuf_read_file(struct strbuf *sb, const char *path, size_t hint)
383 int fd, len;
385 fd = open(path, O_RDONLY);
386 if (fd < 0)
387 return -1;
388 len = strbuf_read(sb, fd, hint);
389 close(fd);
390 if (len < 0)
391 return -1;
393 return len;