]>
Commit | Line | Data |
---|---|---|
ed9b544e | 1 | /* SDSLib, A C dynamic strings library |
2 | * | |
12d090d2 | 3 | * Copyright (c) 2006-2010, Salvatore Sanfilippo <antirez at gmail dot com> |
ed9b544e | 4 | * All rights reserved. |
5 | * | |
6 | * Redistribution and use in source and binary forms, with or without | |
7 | * modification, are permitted provided that the following conditions are met: | |
8 | * | |
9 | * * Redistributions of source code must retain the above copyright notice, | |
10 | * this list of conditions and the following disclaimer. | |
11 | * * Redistributions in binary form must reproduce the above copyright | |
12 | * notice, this list of conditions and the following disclaimer in the | |
13 | * documentation and/or other materials provided with the distribution. | |
14 | * * Neither the name of Redis nor the names of its contributors may be used | |
15 | * to endorse or promote products derived from this software without | |
16 | * specific prior written permission. | |
17 | * | |
18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | |
22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
28 | * POSSIBILITY OF SUCH DAMAGE. | |
29 | */ | |
30 | ||
ed9b544e | 31 | #include <stdio.h> |
32 | #include <stdlib.h> | |
ed9b544e | 33 | #include <string.h> |
34 | #include <ctype.h> | |
d0b2a9b2 | 35 | #include <assert.h> |
ded614f8 | 36 | #include "sds.h" |
ed9b544e | 37 | #include "zmalloc.h" |
38 | ||
ed9b544e | 39 | sds sdsnewlen(const void *init, size_t initlen) { |
40 | struct sdshdr *sh; | |
41 | ||
626f6b2d | 42 | if (init) { |
43 | sh = zmalloc(sizeof(struct sdshdr)+initlen+1); | |
44 | } else { | |
45 | sh = zcalloc(sizeof(struct sdshdr)+initlen+1); | |
46 | } | |
f1017b3f | 47 | if (sh == NULL) return NULL; |
f1017b3f | 48 | sh->len = initlen; |
ed9b544e | 49 | sh->free = 0; |
626f6b2d | 50 | if (initlen && init) |
51 | memcpy(sh->buf, init, initlen); | |
ed9b544e | 52 | sh->buf[initlen] = '\0'; |
53 | return (char*)sh->buf; | |
54 | } | |
55 | ||
56 | sds sdsempty(void) { | |
57 | return sdsnewlen("",0); | |
58 | } | |
59 | ||
60 | sds sdsnew(const char *init) { | |
61 | size_t initlen = (init == NULL) ? 0 : strlen(init); | |
62 | return sdsnewlen(init, initlen); | |
63 | } | |
64 | ||
ed9b544e | 65 | sds sdsdup(const sds s) { |
66 | return sdsnewlen(s, sdslen(s)); | |
67 | } | |
68 | ||
69 | void sdsfree(sds s) { | |
70 | if (s == NULL) return; | |
f1017b3f | 71 | zfree(s-sizeof(struct sdshdr)); |
ed9b544e | 72 | } |
73 | ||
ed9b544e | 74 | void sdsupdatelen(sds s) { |
75 | struct sdshdr *sh = (void*) (s-(sizeof(struct sdshdr))); | |
76 | int reallen = strlen(s); | |
f1017b3f | 77 | sh->free += (sh->len-reallen); |
78 | sh->len = reallen; | |
ed9b544e | 79 | } |
80 | ||
f990782f PN |
81 | void sdsclear(sds s) { |
82 | struct sdshdr *sh = (void*) (s-(sizeof(struct sdshdr))); | |
83 | sh->free += sh->len; | |
84 | sh->len = 0; | |
85 | sh->buf[0] = '\0'; | |
86 | } | |
87 | ||
35267245 | 88 | /* Enlarge the free space at the end of the sds string so that the caller |
89 | * is sure that after calling this function can overwrite up to addlen | |
90 | * bytes after the end of the string, plus one more byte for nul term. | |
91 | * | |
92 | * Note: this does not change the *size* of the sds string as returned | |
93 | * by sdslen(), but only the free buffer space we have. */ | |
d0b2a9b2 | 94 | sds sdsMakeRoomFor(sds s, size_t addlen) { |
ed9b544e | 95 | struct sdshdr *sh, *newsh; |
96 | size_t free = sdsavail(s); | |
f1017b3f | 97 | size_t len, newlen; |
ed9b544e | 98 | |
f1017b3f | 99 | if (free >= addlen) return s; |
ed9b544e | 100 | len = sdslen(s); |
101 | sh = (void*) (s-(sizeof(struct sdshdr))); | |
bd068b15 | 102 | newlen = (len+addlen); |
103 | if (newlen < SDS_MAX_PREALLOC) | |
104 | newlen *= 2; | |
105 | else | |
106 | newlen += SDS_MAX_PREALLOC; | |
f1017b3f | 107 | newsh = zrealloc(sh, sizeof(struct sdshdr)+newlen+1); |
f1017b3f | 108 | if (newsh == NULL) return NULL; |
f1017b3f | 109 | |
110 | newsh->free = newlen - len; | |
ed9b544e | 111 | return newsh->buf; |
112 | } | |
113 | ||
f9322fb8 | 114 | /* Reallocate the sds string so that it has no free space at the end. The |
115 | * contained string remains not altered, but next concatenation operations | |
116 | * will require a reallocation. */ | |
117 | sds sdsRemoveFreeSpace(sds s) { | |
118 | struct sdshdr *sh; | |
119 | ||
120 | sh = (void*) (s-(sizeof(struct sdshdr))); | |
121 | sh = zrealloc(sh, sizeof(struct sdshdr)+sh->len+1); | |
122 | sh->free = 0; | |
123 | return sh->buf; | |
124 | } | |
125 | ||
6934832e | 126 | size_t sdsAllocSize(sds s) { |
127 | struct sdshdr *sh = (void*) (s-(sizeof(struct sdshdr))); | |
128 | ||
129 | return sizeof(*sh)+sh->len+sh->free+1; | |
130 | } | |
131 | ||
d0b2a9b2 | 132 | /* Increment the sds length and decrements the left free space at the |
133 | * end of the string accordingly to 'incr'. Also set the null term | |
134 | * in the new end of the string. | |
135 | * | |
136 | * This function is used in order to fix the string length after the | |
137 | * user calls sdsMakeRoomFor(), writes something after the end of | |
138 | * the current string, and finally needs to set the new length. | |
139 | * | |
140 | * Note: it is possible to use a negative increment in order to | |
141 | * right-trim the string. | |
142 | * | |
143 | * Using sdsIncrLen() and sdsMakeRoomFor() it is possible to mount the | |
144 | * following schema to cat bytes coming from the kerenl to the end of an | |
145 | * sds string new things without copying into an intermediate buffer: | |
146 | * | |
147 | * oldlen = sdslen(s); | |
148 | * s = sdsMakeRoomFor(s, BUFFER_SIZE); | |
149 | * nread = read(fd, s+oldlen, BUFFER_SIZE); | |
150 | * ... check for nread <= 0 and handle it ... | |
151 | * sdsIncrLen(s, nhread); | |
152 | */ | |
153 | void sdsIncrLen(sds s, int incr) { | |
154 | struct sdshdr *sh = (void*) (s-(sizeof(struct sdshdr))); | |
155 | ||
156 | assert(sh->free >= incr); | |
157 | sh->len += incr; | |
158 | sh->free -= incr; | |
159 | assert(sh->free >= 0); | |
160 | s[sh->len] = '\0'; | |
161 | } | |
162 | ||
eae33c1c | 163 | /* Grow the sds to have the specified length. Bytes that were not part of |
cc209063 PN |
164 | * the original length of the sds will be set to zero. */ |
165 | sds sdsgrowzero(sds s, size_t len) { | |
eae33c1c PN |
166 | struct sdshdr *sh = (void*)(s-(sizeof(struct sdshdr))); |
167 | size_t totlen, curlen = sh->len; | |
168 | ||
169 | if (len <= curlen) return s; | |
170 | s = sdsMakeRoomFor(s,len-curlen); | |
171 | if (s == NULL) return NULL; | |
172 | ||
173 | /* Make sure added region doesn't contain garbage */ | |
174 | sh = (void*)(s-(sizeof(struct sdshdr))); | |
cc209063 | 175 | memset(s+curlen,0,(len-curlen+1)); /* also set trailing \0 byte */ |
eae33c1c PN |
176 | totlen = sh->len+sh->free; |
177 | sh->len = len; | |
178 | sh->free = totlen-sh->len; | |
179 | return s; | |
180 | } | |
181 | ||
ed9b544e | 182 | sds sdscatlen(sds s, void *t, size_t len) { |
f1017b3f | 183 | struct sdshdr *sh; |
ed9b544e | 184 | size_t curlen = sdslen(s); |
185 | ||
186 | s = sdsMakeRoomFor(s,len); | |
187 | if (s == NULL) return NULL; | |
f1017b3f | 188 | sh = (void*) (s-(sizeof(struct sdshdr))); |
ed9b544e | 189 | memcpy(s+curlen, t, len); |
f1017b3f | 190 | sh->len = curlen+len; |
191 | sh->free = sh->free-len; | |
ed9b544e | 192 | s[curlen+len] = '\0'; |
193 | return s; | |
194 | } | |
195 | ||
196 | sds sdscat(sds s, char *t) { | |
197 | return sdscatlen(s, t, strlen(t)); | |
198 | } | |
199 | ||
08a879af | 200 | sds sdscatsds(sds s, sds t) { |
201 | return sdscatlen(s, t, sdslen(t)); | |
202 | } | |
203 | ||
ed9b544e | 204 | sds sdscpylen(sds s, char *t, size_t len) { |
205 | struct sdshdr *sh = (void*) (s-(sizeof(struct sdshdr))); | |
f1017b3f | 206 | size_t totlen = sh->free+sh->len; |
ed9b544e | 207 | |
208 | if (totlen < len) { | |
b2b5ae80 | 209 | s = sdsMakeRoomFor(s,len-sh->len); |
ed9b544e | 210 | if (s == NULL) return NULL; |
f1017b3f | 211 | sh = (void*) (s-(sizeof(struct sdshdr))); |
212 | totlen = sh->free+sh->len; | |
ed9b544e | 213 | } |
214 | memcpy(s, t, len); | |
215 | s[len] = '\0'; | |
f1017b3f | 216 | sh->len = len; |
217 | sh->free = totlen-len; | |
ed9b544e | 218 | return s; |
219 | } | |
220 | ||
221 | sds sdscpy(sds s, char *t) { | |
222 | return sdscpylen(s, t, strlen(t)); | |
223 | } | |
224 | ||
60361e5a PN |
225 | sds sdscatvprintf(sds s, const char *fmt, va_list ap) { |
226 | va_list cpy; | |
ed9b544e | 227 | char *buf, *t; |
4b00bebd | 228 | size_t buflen = 16; |
ed9b544e | 229 | |
230 | while(1) { | |
231 | buf = zmalloc(buflen); | |
ed9b544e | 232 | if (buf == NULL) return NULL; |
ed9b544e | 233 | buf[buflen-2] = '\0'; |
60361e5a PN |
234 | va_copy(cpy,ap); |
235 | vsnprintf(buf, buflen, fmt, cpy); | |
ed9b544e | 236 | if (buf[buflen-2] != '\0') { |
237 | zfree(buf); | |
238 | buflen *= 2; | |
239 | continue; | |
240 | } | |
241 | break; | |
242 | } | |
243 | t = sdscat(s, buf); | |
244 | zfree(buf); | |
245 | return t; | |
246 | } | |
247 | ||
60361e5a PN |
248 | sds sdscatprintf(sds s, const char *fmt, ...) { |
249 | va_list ap; | |
250 | char *t; | |
251 | va_start(ap, fmt); | |
252 | t = sdscatvprintf(s,fmt,ap); | |
253 | va_end(ap); | |
254 | return t; | |
255 | } | |
256 | ||
ed9b544e | 257 | sds sdstrim(sds s, const char *cset) { |
258 | struct sdshdr *sh = (void*) (s-(sizeof(struct sdshdr))); | |
259 | char *start, *end, *sp, *ep; | |
260 | size_t len; | |
261 | ||
262 | sp = start = s; | |
263 | ep = end = s+sdslen(s)-1; | |
264 | while(sp <= end && strchr(cset, *sp)) sp++; | |
265 | while(ep > start && strchr(cset, *ep)) ep--; | |
266 | len = (sp > ep) ? 0 : ((ep-sp)+1); | |
267 | if (sh->buf != sp) memmove(sh->buf, sp, len); | |
268 | sh->buf[len] = '\0'; | |
f1017b3f | 269 | sh->free = sh->free+(sh->len-len); |
270 | sh->len = len; | |
ed9b544e | 271 | return s; |
272 | } | |
273 | ||
e2641e09 | 274 | sds sdsrange(sds s, int start, int end) { |
ed9b544e | 275 | struct sdshdr *sh = (void*) (s-(sizeof(struct sdshdr))); |
276 | size_t newlen, len = sdslen(s); | |
277 | ||
278 | if (len == 0) return s; | |
279 | if (start < 0) { | |
280 | start = len+start; | |
281 | if (start < 0) start = 0; | |
282 | } | |
283 | if (end < 0) { | |
284 | end = len+end; | |
285 | if (end < 0) end = 0; | |
286 | } | |
287 | newlen = (start > end) ? 0 : (end-start)+1; | |
288 | if (newlen != 0) { | |
136cf53f | 289 | if (start >= (signed)len) { |
290 | newlen = 0; | |
291 | } else if (end >= (signed)len) { | |
292 | end = len-1; | |
293 | newlen = (start > end) ? 0 : (end-start)+1; | |
294 | } | |
ed9b544e | 295 | } else { |
296 | start = 0; | |
297 | } | |
136cf53f | 298 | if (start && newlen) memmove(sh->buf, sh->buf+start, newlen); |
ed9b544e | 299 | sh->buf[newlen] = 0; |
f1017b3f | 300 | sh->free = sh->free+(sh->len-newlen); |
301 | sh->len = newlen; | |
ed9b544e | 302 | return s; |
303 | } | |
304 | ||
305 | void sdstolower(sds s) { | |
306 | int len = sdslen(s), j; | |
307 | ||
308 | for (j = 0; j < len; j++) s[j] = tolower(s[j]); | |
309 | } | |
310 | ||
311 | void sdstoupper(sds s) { | |
312 | int len = sdslen(s), j; | |
313 | ||
314 | for (j = 0; j < len; j++) s[j] = toupper(s[j]); | |
315 | } | |
316 | ||
317 | int sdscmp(sds s1, sds s2) { | |
318 | size_t l1, l2, minlen; | |
319 | int cmp; | |
320 | ||
321 | l1 = sdslen(s1); | |
322 | l2 = sdslen(s2); | |
323 | minlen = (l1 < l2) ? l1 : l2; | |
324 | cmp = memcmp(s1,s2,minlen); | |
325 | if (cmp == 0) return l1-l2; | |
326 | return cmp; | |
327 | } | |
328 | ||
329 | /* Split 's' with separator in 'sep'. An array | |
330 | * of sds strings is returned. *count will be set | |
331 | * by reference to the number of tokens returned. | |
332 | * | |
333 | * On out of memory, zero length string, zero length | |
334 | * separator, NULL is returned. | |
335 | * | |
336 | * Note that 'sep' is able to split a string using | |
337 | * a multi-character separator. For example | |
338 | * sdssplit("foo_-_bar","_-_"); will return two | |
339 | * elements "foo" and "bar". | |
340 | * | |
341 | * This version of the function is binary-safe but | |
342 | * requires length arguments. sdssplit() is just the | |
343 | * same function but for zero-terminated strings. | |
344 | */ | |
345 | sds *sdssplitlen(char *s, int len, char *sep, int seplen, int *count) { | |
346 | int elements = 0, slots = 5, start = 0, j; | |
c040cbd6 | 347 | sds *tokens; |
ed9b544e | 348 | |
c040cbd6 PN |
349 | if (seplen < 1 || len < 0) return NULL; |
350 | ||
351 | tokens = zmalloc(sizeof(sds)*slots); | |
c040cbd6 | 352 | if (tokens == NULL) return NULL; |
c040cbd6 | 353 | |
ed10f40b | 354 | if (len == 0) { |
355 | *count = 0; | |
356 | return tokens; | |
357 | } | |
ed9b544e | 358 | for (j = 0; j < (len-(seplen-1)); j++) { |
359 | /* make sure there is room for the next element and the final one */ | |
360 | if (slots < elements+2) { | |
a4d1ba9a | 361 | sds *newtokens; |
362 | ||
ed9b544e | 363 | slots *= 2; |
a4d1ba9a | 364 | newtokens = zrealloc(tokens,sizeof(sds)*slots); |
1596d6a6 | 365 | if (newtokens == NULL) goto cleanup; |
ed9b544e | 366 | tokens = newtokens; |
367 | } | |
368 | /* search the separator */ | |
369 | if ((seplen == 1 && *(s+j) == sep[0]) || (memcmp(s+j,sep,seplen) == 0)) { | |
370 | tokens[elements] = sdsnewlen(s+start,j-start); | |
1596d6a6 | 371 | if (tokens[elements] == NULL) goto cleanup; |
ed9b544e | 372 | elements++; |
373 | start = j+seplen; | |
374 | j = j+seplen-1; /* skip the separator */ | |
375 | } | |
376 | } | |
377 | /* Add the final element. We are sure there is room in the tokens array. */ | |
378 | tokens[elements] = sdsnewlen(s+start,len-start); | |
1596d6a6 | 379 | if (tokens[elements] == NULL) goto cleanup; |
ed9b544e | 380 | elements++; |
381 | *count = elements; | |
382 | return tokens; | |
383 | ||
ed9b544e | 384 | cleanup: |
385 | { | |
386 | int i; | |
387 | for (i = 0; i < elements; i++) sdsfree(tokens[i]); | |
388 | zfree(tokens); | |
be86082b | 389 | *count = 0; |
ed9b544e | 390 | return NULL; |
391 | } | |
ed9b544e | 392 | } |
a34e0a25 | 393 | |
394 | void sdsfreesplitres(sds *tokens, int count) { | |
395 | if (!tokens) return; | |
396 | while(count--) | |
397 | sdsfree(tokens[count]); | |
398 | zfree(tokens); | |
399 | } | |
ee14da56 | 400 | |
401 | sds sdsfromlonglong(long long value) { | |
402 | char buf[32], *p; | |
403 | unsigned long long v; | |
404 | ||
405 | v = (value < 0) ? -value : value; | |
406 | p = buf+31; /* point to the last character */ | |
407 | do { | |
408 | *p-- = '0'+(v%10); | |
409 | v /= 10; | |
410 | } while(v); | |
411 | if (value < 0) *p-- = '-'; | |
412 | p++; | |
413 | return sdsnewlen(p,32-(p-buf)); | |
414 | } | |
e2641e09 | 415 | |
416 | sds sdscatrepr(sds s, char *p, size_t len) { | |
417 | s = sdscatlen(s,"\"",1); | |
418 | while(len--) { | |
419 | switch(*p) { | |
420 | case '\\': | |
421 | case '"': | |
422 | s = sdscatprintf(s,"\\%c",*p); | |
423 | break; | |
612810af | 424 | case '\n': s = sdscatlen(s,"\\n",2); break; |
425 | case '\r': s = sdscatlen(s,"\\r",2); break; | |
426 | case '\t': s = sdscatlen(s,"\\t",2); break; | |
427 | case '\a': s = sdscatlen(s,"\\a",2); break; | |
428 | case '\b': s = sdscatlen(s,"\\b",2); break; | |
e2641e09 | 429 | default: |
430 | if (isprint(*p)) | |
431 | s = sdscatprintf(s,"%c",*p); | |
432 | else | |
433 | s = sdscatprintf(s,"\\x%02x",(unsigned char)*p); | |
434 | break; | |
435 | } | |
436 | p++; | |
437 | } | |
438 | return sdscatlen(s,"\"",1); | |
439 | } | |
cbce5171 | 440 | |
e360e3bb | 441 | /* Helper function for sdssplitargs() that returns non zero if 'c' |
442 | * is a valid hex digit. */ | |
443 | int is_hex_digit(char c) { | |
444 | return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || | |
445 | (c >= 'A' && c <= 'F'); | |
446 | } | |
447 | ||
448 | /* Helper function for sdssplitargs() that converts an hex digit into an | |
449 | * integer from 0 to 15 */ | |
450 | int hex_digit_to_int(char c) { | |
451 | switch(c) { | |
452 | case '0': return 0; | |
453 | case '1': return 1; | |
454 | case '2': return 2; | |
455 | case '3': return 3; | |
456 | case '4': return 4; | |
457 | case '5': return 5; | |
458 | case '6': return 6; | |
459 | case '7': return 7; | |
460 | case '8': return 8; | |
461 | case '9': return 9; | |
462 | case 'a': case 'A': return 10; | |
463 | case 'b': case 'B': return 11; | |
464 | case 'c': case 'C': return 12; | |
465 | case 'd': case 'D': return 13; | |
466 | case 'e': case 'E': return 14; | |
467 | case 'f': case 'F': return 15; | |
468 | default: return 0; | |
469 | } | |
470 | } | |
471 | ||
cbce5171 | 472 | /* Split a line into arguments, where every argument can be in the |
473 | * following programming-language REPL-alike form: | |
474 | * | |
475 | * foo bar "newline are supported\n" and "\xff\x00otherstuff" | |
476 | * | |
477 | * The number of arguments is stored into *argc, and an array | |
478 | * of sds is returned. The caller should sdsfree() all the returned | |
479 | * strings and finally zfree() the array itself. | |
480 | * | |
481 | * Note that sdscatrepr() is able to convert back a string into | |
482 | * a quoted string in the same format sdssplitargs() is able to parse. | |
483 | */ | |
484 | sds *sdssplitargs(char *line, int *argc) { | |
485 | char *p = line; | |
486 | char *current = NULL; | |
487 | char **vector = NULL; | |
488 | ||
489 | *argc = 0; | |
490 | while(1) { | |
491 | /* skip blanks */ | |
492 | while(*p && isspace(*p)) p++; | |
493 | if (*p) { | |
494 | /* get a token */ | |
e1cf460c | 495 | int inq=0; /* set to 1 if we are in "quotes" */ |
496 | int insq=0; /* set to 1 if we are in 'single quotes' */ | |
4b93e5e2 | 497 | int done=0; |
cbce5171 | 498 | |
499 | if (current == NULL) current = sdsempty(); | |
500 | while(!done) { | |
501 | if (inq) { | |
e360e3bb | 502 | if (*p == '\\' && *(p+1) == 'x' && |
503 | is_hex_digit(*(p+2)) && | |
504 | is_hex_digit(*(p+3))) | |
505 | { | |
506 | unsigned char byte; | |
507 | ||
508 | byte = (hex_digit_to_int(*(p+2))*16)+ | |
509 | hex_digit_to_int(*(p+3)); | |
510 | current = sdscatlen(current,(char*)&byte,1); | |
511 | p += 3; | |
512 | } else if (*p == '\\' && *(p+1)) { | |
cbce5171 | 513 | char c; |
514 | ||
515 | p++; | |
516 | switch(*p) { | |
517 | case 'n': c = '\n'; break; | |
518 | case 'r': c = '\r'; break; | |
519 | case 't': c = '\t'; break; | |
520 | case 'b': c = '\b'; break; | |
521 | case 'a': c = '\a'; break; | |
522 | default: c = *p; break; | |
523 | } | |
524 | current = sdscatlen(current,&c,1); | |
525 | } else if (*p == '"') { | |
e1cf460c | 526 | /* closing quote must be followed by a space or |
527 | * nothing at all. */ | |
528 | if (*(p+1) && !isspace(*(p+1))) goto err; | |
529 | done=1; | |
530 | } else if (!*p) { | |
531 | /* unterminated quotes */ | |
532 | goto err; | |
533 | } else { | |
534 | current = sdscatlen(current,p,1); | |
535 | } | |
536 | } else if (insq) { | |
537 | if (*p == '\\' && *(p+1) == '\'') { | |
538 | p++; | |
539 | current = sdscatlen(current,"'",1); | |
540 | } else if (*p == '\'') { | |
541 | /* closing quote must be followed by a space or | |
542 | * nothing at all. */ | |
4b93e5e2 PN |
543 | if (*(p+1) && !isspace(*(p+1))) goto err; |
544 | done=1; | |
545 | } else if (!*p) { | |
546 | /* unterminated quotes */ | |
547 | goto err; | |
cbce5171 | 548 | } else { |
549 | current = sdscatlen(current,p,1); | |
550 | } | |
551 | } else { | |
552 | switch(*p) { | |
553 | case ' ': | |
554 | case '\n': | |
555 | case '\r': | |
556 | case '\t': | |
557 | case '\0': | |
558 | done=1; | |
559 | break; | |
560 | case '"': | |
561 | inq=1; | |
562 | break; | |
e1cf460c | 563 | case '\'': |
564 | insq=1; | |
565 | break; | |
cbce5171 | 566 | default: |
567 | current = sdscatlen(current,p,1); | |
568 | break; | |
569 | } | |
570 | } | |
571 | if (*p) p++; | |
572 | } | |
573 | /* add the token to the vector */ | |
574 | vector = zrealloc(vector,((*argc)+1)*sizeof(char*)); | |
575 | vector[*argc] = current; | |
576 | (*argc)++; | |
577 | current = NULL; | |
578 | } else { | |
579 | return vector; | |
580 | } | |
581 | } | |
4b93e5e2 PN |
582 | |
583 | err: | |
2929ca97 | 584 | while((*argc)--) |
4b93e5e2 PN |
585 | sdsfree(vector[*argc]); |
586 | zfree(vector); | |
587 | if (current) sdsfree(current); | |
588 | return NULL; | |
cbce5171 | 589 | } |
136cf53f | 590 | |
726a39c1 | 591 | void sdssplitargs_free(sds *argv, int argc) { |
592 | int j; | |
593 | ||
594 | for (j = 0 ;j < argc; j++) sdsfree(argv[j]); | |
595 | zfree(argv); | |
596 | } | |
597 | ||
3bb818df | 598 | /* Modify the string substituting all the occurrences of the set of |
599 | * characters specifed in the 'from' string to the corresponding character | |
600 | * in the 'to' array. | |
601 | * | |
602 | * For instance: sdsmapchars(mystring, "ho", "01", 2) | |
603 | * will have the effect of turning the string "hello" into "0ell1". | |
604 | * | |
605 | * The function returns the sds string pointer, that is always the same | |
606 | * as the input pointer since no resize is needed. */ | |
607 | sds sdsmapchars(sds s, char *from, char *to, size_t setlen) { | |
608 | size_t j, i, l = sdslen(s); | |
609 | ||
610 | for (j = 0; j < l; j++) { | |
611 | for (i = 0; i < setlen; i++) { | |
612 | if (s[j] == from[i]) { | |
613 | s[j] = to[i]; | |
614 | break; | |
615 | } | |
616 | } | |
617 | } | |
618 | return s; | |
619 | } | |
620 | ||
136cf53f | 621 | #ifdef SDS_TEST_MAIN |
622 | #include <stdio.h> | |
623 | #include "testhelp.h" | |
624 | ||
625 | int main(void) { | |
626 | { | |
d0b2a9b2 | 627 | struct sdshdr *sh; |
963238f7 | 628 | sds x = sdsnew("foo"), y; |
629 | ||
630 | test_cond("Create a string and obtain the length", | |
631 | sdslen(x) == 3 && memcmp(x,"foo\0",4) == 0) | |
632 | ||
633 | sdsfree(x); | |
634 | x = sdsnewlen("foo",2); | |
635 | test_cond("Create a string with specified length", | |
636 | sdslen(x) == 2 && memcmp(x,"fo\0",3) == 0) | |
637 | ||
638 | x = sdscat(x,"bar"); | |
639 | test_cond("Strings concatenation", | |
640 | sdslen(x) == 5 && memcmp(x,"fobar\0",6) == 0); | |
641 | ||
642 | x = sdscpy(x,"a"); | |
643 | test_cond("sdscpy() against an originally longer string", | |
644 | sdslen(x) == 1 && memcmp(x,"a\0",2) == 0) | |
645 | ||
646 | x = sdscpy(x,"xyzxxxxxxxxxxyyyyyyyyyykkkkkkkkkk"); | |
647 | test_cond("sdscpy() against an originally shorter string", | |
648 | sdslen(x) == 33 && | |
649 | memcmp(x,"xyzxxxxxxxxxxyyyyyyyyyykkkkkkkkkk\0",33) == 0) | |
650 | ||
651 | sdsfree(x); | |
652 | x = sdscatprintf(sdsempty(),"%d",123); | |
653 | test_cond("sdscatprintf() seems working in the base case", | |
654 | sdslen(x) == 3 && memcmp(x,"123\0",4) ==0) | |
655 | ||
656 | sdsfree(x); | |
657 | x = sdstrim(sdsnew("xxciaoyyy"),"xy"); | |
658 | test_cond("sdstrim() correctly trims characters", | |
659 | sdslen(x) == 4 && memcmp(x,"ciao\0",5) == 0) | |
660 | ||
661 | y = sdsrange(sdsdup(x),1,1); | |
662 | test_cond("sdsrange(...,1,1)", | |
663 | sdslen(y) == 1 && memcmp(y,"i\0",2) == 0) | |
664 | ||
665 | sdsfree(y); | |
666 | y = sdsrange(sdsdup(x),1,-1); | |
667 | test_cond("sdsrange(...,1,-1)", | |
668 | sdslen(y) == 3 && memcmp(y,"iao\0",4) == 0) | |
669 | ||
670 | sdsfree(y); | |
671 | y = sdsrange(sdsdup(x),-2,-1); | |
672 | test_cond("sdsrange(...,-2,-1)", | |
673 | sdslen(y) == 2 && memcmp(y,"ao\0",3) == 0) | |
674 | ||
675 | sdsfree(y); | |
676 | y = sdsrange(sdsdup(x),2,1); | |
677 | test_cond("sdsrange(...,2,1)", | |
678 | sdslen(y) == 0 && memcmp(y,"\0",1) == 0) | |
679 | ||
680 | sdsfree(y); | |
681 | y = sdsrange(sdsdup(x),1,100); | |
682 | test_cond("sdsrange(...,1,100)", | |
683 | sdslen(y) == 3 && memcmp(y,"iao\0",4) == 0) | |
684 | ||
685 | sdsfree(y); | |
686 | y = sdsrange(sdsdup(x),100,100); | |
687 | test_cond("sdsrange(...,100,100)", | |
688 | sdslen(y) == 0 && memcmp(y,"\0",1) == 0) | |
689 | ||
690 | sdsfree(y); | |
691 | sdsfree(x); | |
692 | x = sdsnew("foo"); | |
693 | y = sdsnew("foa"); | |
694 | test_cond("sdscmp(foo,foa)", sdscmp(x,y) > 0) | |
695 | ||
696 | sdsfree(y); | |
697 | sdsfree(x); | |
698 | x = sdsnew("bar"); | |
699 | y = sdsnew("bar"); | |
700 | test_cond("sdscmp(bar,bar)", sdscmp(x,y) == 0) | |
701 | ||
702 | sdsfree(y); | |
703 | sdsfree(x); | |
704 | x = sdsnew("aar"); | |
705 | y = sdsnew("bar"); | |
706 | test_cond("sdscmp(bar,bar)", sdscmp(x,y) < 0) | |
d0b2a9b2 | 707 | |
708 | { | |
709 | int oldfree; | |
710 | ||
711 | sdsfree(x); | |
712 | x = sdsnew("0"); | |
713 | sh = (void*) (x-(sizeof(struct sdshdr))); | |
714 | test_cond("sdsnew() free/len buffers", sh->len == 1 && sh->free == 0); | |
715 | x = sdsMakeRoomFor(x,1); | |
716 | sh = (void*) (x-(sizeof(struct sdshdr))); | |
717 | test_cond("sdsMakeRoomFor()", sh->len == 1 && sh->free > 0); | |
718 | oldfree = sh->free; | |
719 | x[1] = '1'; | |
720 | sdsIncrLen(x,1); | |
721 | test_cond("sdsIncrLen() -- content", x[0] == '0' && x[1] == '1'); | |
722 | test_cond("sdsIncrLen() -- len", sh->len == 2); | |
723 | test_cond("sdsIncrLen() -- free", sh->free == oldfree-1); | |
724 | } | |
136cf53f | 725 | } |
726 | test_report() | |
d0b2a9b2 | 727 | return 0; |
136cf53f | 728 | } |
729 | #endif |