3 int prefixcmp(const char *str
, const char *prefix
)
5 for (; ; str
++, prefix
++)
8 else if (*str
!= *prefix
)
9 return (unsigned char)*prefix
- (unsigned char)*str
;
13 * Used as the default ->buf value, so that people can always assume
14 * buf is non NULL and ->buf is NUL terminated even for a freshly
17 char strbuf_slopbuf
[1];
19 void strbuf_init(struct strbuf
*sb
, size_t hint
)
21 sb
->alloc
= sb
->len
= 0;
22 sb
->buf
= strbuf_slopbuf
;
24 strbuf_grow(sb
, hint
);
27 void strbuf_release(struct strbuf
*sb
)
35 char *strbuf_detach(struct strbuf
*sb
, size_t *sz
)
37 char *res
= sb
->alloc
? sb
->buf
: NULL
;
44 void strbuf_attach(struct strbuf
*sb
, void *buf
, size_t len
, size_t alloc
)
51 sb
->buf
[sb
->len
] = '\0';
54 void strbuf_grow(struct strbuf
*sb
, size_t extra
)
56 if (sb
->len
+ extra
+ 1 <= sb
->len
)
57 die("you want to use way too much memory");
60 ALLOC_GROW(sb
->buf
, sb
->len
+ extra
+ 1, sb
->alloc
);
63 void strbuf_trim(struct strbuf
*sb
)
66 while (sb
->len
> 0 && isspace((unsigned char)sb
->buf
[sb
->len
- 1]))
68 while (sb
->len
> 0 && isspace(*b
)) {
72 memmove(sb
->buf
, b
, sb
->len
);
73 sb
->buf
[sb
->len
] = '\0';
75 void strbuf_rtrim(struct strbuf
*sb
)
77 while (sb
->len
> 0 && isspace((unsigned char)sb
->buf
[sb
->len
- 1]))
79 sb
->buf
[sb
->len
] = '\0';
82 void strbuf_ltrim(struct strbuf
*sb
)
85 while (sb
->len
> 0 && isspace(*b
)) {
89 memmove(sb
->buf
, b
, sb
->len
);
90 sb
->buf
[sb
->len
] = '\0';
93 void strbuf_tolower(struct strbuf
*sb
)
96 for (i
= 0; i
< sb
->len
; i
++)
97 sb
->buf
[i
] = tolower(sb
->buf
[i
]);
100 struct strbuf
**strbuf_split(const struct strbuf
*sb
, int delim
)
102 int alloc
= 2, pos
= 0;
107 ret
= xcalloc(alloc
, sizeof(struct strbuf
*));
109 while (n
< sb
->buf
+ sb
->len
) {
111 n
= memchr(n
, delim
, sb
->len
- (n
- sb
->buf
));
112 if (pos
+ 1 >= alloc
) {
114 ret
= xrealloc(ret
, sizeof(struct strbuf
*) * alloc
);
117 n
= sb
->buf
+ sb
->len
- 1;
119 t
= xmalloc(sizeof(struct strbuf
));
121 strbuf_add(t
, p
, len
);
129 void strbuf_list_free(struct strbuf
**sbs
)
131 struct strbuf
**s
= sbs
;
140 int strbuf_cmp(const struct strbuf
*a
, const struct strbuf
*b
)
143 if (a
->len
< b
->len
) {
144 cmp
= memcmp(a
->buf
, b
->buf
, a
->len
);
145 return cmp
? cmp
: -1;
147 cmp
= memcmp(a
->buf
, b
->buf
, b
->len
);
148 return cmp
? cmp
: a
->len
!= b
->len
;
152 void strbuf_splice(struct strbuf
*sb
, size_t pos
, size_t len
,
153 const void *data
, size_t dlen
)
156 die("you want to use way too much memory");
158 die("`pos' is too far after the end of the buffer");
159 if (pos
+ len
> sb
->len
)
160 die("`pos + len' is too far after the end of the buffer");
163 strbuf_grow(sb
, dlen
- len
);
164 memmove(sb
->buf
+ pos
+ dlen
,
166 sb
->len
- pos
- len
);
167 memcpy(sb
->buf
+ pos
, data
, dlen
);
168 strbuf_setlen(sb
, sb
->len
+ dlen
- len
);
171 void strbuf_insert(struct strbuf
*sb
, size_t pos
, const void *data
, size_t len
)
173 strbuf_splice(sb
, pos
, 0, data
, len
);
176 void strbuf_remove(struct strbuf
*sb
, size_t pos
, size_t len
)
178 strbuf_splice(sb
, pos
, len
, NULL
, 0);
181 void strbuf_add(struct strbuf
*sb
, const void *data
, size_t len
)
183 strbuf_grow(sb
, len
);
184 memcpy(sb
->buf
+ sb
->len
, data
, len
);
185 strbuf_setlen(sb
, sb
->len
+ len
);
188 void strbuf_adddup(struct strbuf
*sb
, size_t pos
, size_t len
)
190 strbuf_grow(sb
, len
);
191 memcpy(sb
->buf
+ sb
->len
, sb
->buf
+ pos
, len
);
192 strbuf_setlen(sb
, sb
->len
+ len
);
195 void strbuf_addf(struct strbuf
*sb
, const char *fmt
, ...)
200 if (!strbuf_avail(sb
))
203 len
= vsnprintf(sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
, fmt
, ap
);
206 die("your vsnprintf is broken");
207 if (len
> strbuf_avail(sb
)) {
208 strbuf_grow(sb
, len
);
210 len
= vsnprintf(sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
, fmt
, ap
);
212 if (len
> strbuf_avail(sb
)) {
213 die("this should not happen, your snprintf is broken");
216 strbuf_setlen(sb
, sb
->len
+ len
);
219 void strbuf_expand(struct strbuf
*sb
, const char *format
, expand_fn_t fn
,
226 percent
= strchrnul(format
, '%');
227 strbuf_add(sb
, format
, percent
- format
);
230 format
= percent
+ 1;
232 consumed
= fn(sb
, format
, context
);
236 strbuf_addch(sb
, '%');
240 size_t strbuf_expand_dict_cb(struct strbuf
*sb
, const char *placeholder
,
243 struct strbuf_expand_dict_entry
*e
= context
;
246 for (; e
->placeholder
&& (len
= strlen(e
->placeholder
)); e
++) {
247 if (!strncmp(placeholder
, e
->placeholder
, len
)) {
249 strbuf_addstr(sb
, e
->value
);
256 size_t strbuf_fread(struct strbuf
*sb
, size_t size
, FILE *f
)
259 size_t oldalloc
= sb
->alloc
;
261 strbuf_grow(sb
, size
);
262 res
= fread(sb
->buf
+ sb
->len
, 1, size
, f
);
264 strbuf_setlen(sb
, sb
->len
+ res
);
265 else if (res
< 0 && oldalloc
== 0)
270 ssize_t
strbuf_read(struct strbuf
*sb
, int fd
, size_t hint
)
272 size_t oldlen
= sb
->len
;
273 size_t oldalloc
= sb
->alloc
;
275 strbuf_grow(sb
, hint
? hint
: 8192);
279 cnt
= xread(fd
, sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
- 1);
284 strbuf_setlen(sb
, oldlen
);
290 strbuf_grow(sb
, 8192);
293 sb
->buf
[sb
->len
] = '\0';
294 return sb
->len
- oldlen
;
297 #define STRBUF_MAXLINK (2*PATH_MAX)
299 int strbuf_readlink(struct strbuf
*sb
, const char *path
, size_t hint
)
301 size_t oldalloc
= sb
->alloc
;
306 while (hint
< STRBUF_MAXLINK
) {
309 strbuf_grow(sb
, hint
);
310 len
= readlink(path
, sb
->buf
, hint
);
314 } else if (len
< hint
) {
315 strbuf_setlen(sb
, len
);
319 /* .. the buffer was too small - try again */
327 int strbuf_getline(struct strbuf
*sb
, FILE *fp
, int term
)
336 while ((ch
= fgetc(fp
)) != EOF
) {
340 sb
->buf
[sb
->len
++] = ch
;
342 if (ch
== EOF
&& sb
->len
== 0)
345 sb
->buf
[sb
->len
] = '\0';
349 int strbuf_read_file(struct strbuf
*sb
, const char *path
, size_t hint
)
353 fd
= open(path
, O_RDONLY
);
356 len
= strbuf_read(sb
, fd
, hint
);