]>
git.saurik.com Git - redis.git/blob - src/sds.c
1 /* SDSLib, A C dynamic strings library
3 * Copyright (c) 2006-2010, Salvatore Sanfilippo <antirez at gmail dot com>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
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.
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.
32 * - 22 March 2011: History section created on top of sds.c
33 * - 22 March 2011: Fixed a problem with "\xab" escapes convertion in
34 * function sdssplitargs().
37 #define SDS_ABORT_ON_OOM
46 static void sdsOomAbort(void) {
47 fprintf(stderr
,"SDS: Out Of Memory (SDS_ABORT_ON_OOM defined)\n");
51 sds
sdsnewlen(const void *init
, size_t initlen
) {
55 sh
= zmalloc(sizeof(struct sdshdr
)+initlen
+1);
57 sh
= zcalloc(sizeof(struct sdshdr
)+initlen
+1);
59 #ifdef SDS_ABORT_ON_OOM
60 if (sh
== NULL
) sdsOomAbort();
62 if (sh
== NULL
) return NULL
;
67 memcpy(sh
->buf
, init
, initlen
);
68 sh
->buf
[initlen
] = '\0';
69 return (char*)sh
->buf
;
73 return sdsnewlen("",0);
76 sds
sdsnew(const char *init
) {
77 size_t initlen
= (init
== NULL
) ? 0 : strlen(init
);
78 return sdsnewlen(init
, initlen
);
81 size_t sdslen(const sds s
) {
82 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
86 sds
sdsdup(const sds s
) {
87 return sdsnewlen(s
, sdslen(s
));
91 if (s
== NULL
) return;
92 zfree(s
-sizeof(struct sdshdr
));
95 size_t sdsavail(sds s
) {
96 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
100 void sdsupdatelen(sds s
) {
101 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
102 int reallen
= strlen(s
);
103 sh
->free
+= (sh
->len
-reallen
);
107 static sds
sdsMakeRoomFor(sds s
, size_t addlen
) {
108 struct sdshdr
*sh
, *newsh
;
109 size_t free
= sdsavail(s
);
112 if (free
>= addlen
) return s
;
114 sh
= (void*) (s
-(sizeof(struct sdshdr
)));
115 newlen
= (len
+addlen
)*2;
116 newsh
= zrealloc(sh
, sizeof(struct sdshdr
)+newlen
+1);
117 #ifdef SDS_ABORT_ON_OOM
118 if (newsh
== NULL
) sdsOomAbort();
120 if (newsh
== NULL
) return NULL
;
123 newsh
->free
= newlen
- len
;
127 /* Grow the sds to have the specified length. Bytes that were not part of
128 * the original length of the sds will be set to zero. */
129 sds
sdsgrowzero(sds s
, size_t len
) {
130 struct sdshdr
*sh
= (void*)(s
-(sizeof(struct sdshdr
)));
131 size_t totlen
, curlen
= sh
->len
;
133 if (len
<= curlen
) return s
;
134 s
= sdsMakeRoomFor(s
,len
-curlen
);
135 if (s
== NULL
) return NULL
;
137 /* Make sure added region doesn't contain garbage */
138 sh
= (void*)(s
-(sizeof(struct sdshdr
)));
139 memset(s
+curlen
,0,(len
-curlen
+1)); /* also set trailing \0 byte */
140 totlen
= sh
->len
+sh
->free
;
142 sh
->free
= totlen
-sh
->len
;
146 sds
sdscatlen(sds s
, void *t
, size_t len
) {
148 size_t curlen
= sdslen(s
);
150 s
= sdsMakeRoomFor(s
,len
);
151 if (s
== NULL
) return NULL
;
152 sh
= (void*) (s
-(sizeof(struct sdshdr
)));
153 memcpy(s
+curlen
, t
, len
);
154 sh
->len
= curlen
+len
;
155 sh
->free
= sh
->free
-len
;
156 s
[curlen
+len
] = '\0';
160 sds
sdscat(sds s
, char *t
) {
161 return sdscatlen(s
, t
, strlen(t
));
164 sds
sdscpylen(sds s
, char *t
, size_t len
) {
165 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
166 size_t totlen
= sh
->free
+sh
->len
;
169 s
= sdsMakeRoomFor(s
,len
-sh
->len
);
170 if (s
== NULL
) return NULL
;
171 sh
= (void*) (s
-(sizeof(struct sdshdr
)));
172 totlen
= sh
->free
+sh
->len
;
177 sh
->free
= totlen
-len
;
181 sds
sdscpy(sds s
, char *t
) {
182 return sdscpylen(s
, t
, strlen(t
));
185 sds
sdscatvprintf(sds s
, const char *fmt
, va_list ap
) {
191 buf
= zmalloc(buflen
);
192 #ifdef SDS_ABORT_ON_OOM
193 if (buf
== NULL
) sdsOomAbort();
195 if (buf
== NULL
) return NULL
;
197 buf
[buflen
-2] = '\0';
199 vsnprintf(buf
, buflen
, fmt
, cpy
);
200 if (buf
[buflen
-2] != '\0') {
212 sds
sdscatprintf(sds s
, const char *fmt
, ...) {
216 t
= sdscatvprintf(s
,fmt
,ap
);
221 sds
sdstrim(sds s
, const char *cset
) {
222 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
223 char *start
, *end
, *sp
, *ep
;
227 ep
= end
= s
+sdslen(s
)-1;
228 while(sp
<= end
&& strchr(cset
, *sp
)) sp
++;
229 while(ep
> start
&& strchr(cset
, *ep
)) ep
--;
230 len
= (sp
> ep
) ? 0 : ((ep
-sp
)+1);
231 if (sh
->buf
!= sp
) memmove(sh
->buf
, sp
, len
);
233 sh
->free
= sh
->free
+(sh
->len
-len
);
238 sds
sdsrange(sds s
, int start
, int end
) {
239 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
240 size_t newlen
, len
= sdslen(s
);
242 if (len
== 0) return s
;
245 if (start
< 0) start
= 0;
249 if (end
< 0) end
= 0;
251 newlen
= (start
> end
) ? 0 : (end
-start
)+1;
253 if (start
>= (signed)len
) {
255 } else if (end
>= (signed)len
) {
257 newlen
= (start
> end
) ? 0 : (end
-start
)+1;
262 if (start
&& newlen
) memmove(sh
->buf
, sh
->buf
+start
, newlen
);
264 sh
->free
= sh
->free
+(sh
->len
-newlen
);
269 void sdstolower(sds s
) {
270 int len
= sdslen(s
), j
;
272 for (j
= 0; j
< len
; j
++) s
[j
] = tolower(s
[j
]);
275 void sdstoupper(sds s
) {
276 int len
= sdslen(s
), j
;
278 for (j
= 0; j
< len
; j
++) s
[j
] = toupper(s
[j
]);
281 int sdscmp(sds s1
, sds s2
) {
282 size_t l1
, l2
, minlen
;
287 minlen
= (l1
< l2
) ? l1
: l2
;
288 cmp
= memcmp(s1
,s2
,minlen
);
289 if (cmp
== 0) return l1
-l2
;
293 /* Split 's' with separator in 'sep'. An array
294 * of sds strings is returned. *count will be set
295 * by reference to the number of tokens returned.
297 * On out of memory, zero length string, zero length
298 * separator, NULL is returned.
300 * Note that 'sep' is able to split a string using
301 * a multi-character separator. For example
302 * sdssplit("foo_-_bar","_-_"); will return two
303 * elements "foo" and "bar".
305 * This version of the function is binary-safe but
306 * requires length arguments. sdssplit() is just the
307 * same function but for zero-terminated strings.
309 sds
*sdssplitlen(char *s
, int len
, char *sep
, int seplen
, int *count
) {
310 int elements
= 0, slots
= 5, start
= 0, j
;
312 sds
*tokens
= zmalloc(sizeof(sds
)*slots
);
313 #ifdef SDS_ABORT_ON_OOM
314 if (tokens
== NULL
) sdsOomAbort();
316 if (seplen
< 1 || len
< 0 || tokens
== NULL
) {
324 for (j
= 0; j
< (len
-(seplen
-1)); j
++) {
325 /* make sure there is room for the next element and the final one */
326 if (slots
< elements
+2) {
330 newtokens
= zrealloc(tokens
,sizeof(sds
)*slots
);
331 if (newtokens
== NULL
) {
332 #ifdef SDS_ABORT_ON_OOM
340 /* search the separator */
341 if ((seplen
== 1 && *(s
+j
) == sep
[0]) || (memcmp(s
+j
,sep
,seplen
) == 0)) {
342 tokens
[elements
] = sdsnewlen(s
+start
,j
-start
);
343 if (tokens
[elements
] == NULL
) {
344 #ifdef SDS_ABORT_ON_OOM
352 j
= j
+seplen
-1; /* skip the separator */
355 /* Add the final element. We are sure there is room in the tokens array. */
356 tokens
[elements
] = sdsnewlen(s
+start
,len
-start
);
357 if (tokens
[elements
] == NULL
) {
358 #ifdef SDS_ABORT_ON_OOM
368 #ifndef SDS_ABORT_ON_OOM
372 for (i
= 0; i
< elements
; i
++) sdsfree(tokens
[i
]);
380 void sdsfreesplitres(sds
*tokens
, int count
) {
383 sdsfree(tokens
[count
]);
387 sds
sdsfromlonglong(long long value
) {
389 unsigned long long v
;
391 v
= (value
< 0) ? -value
: value
;
392 p
= buf
+31; /* point to the last character */
397 if (value
< 0) *p
-- = '-';
399 return sdsnewlen(p
,32-(p
-buf
));
402 sds
sdscatrepr(sds s
, char *p
, size_t len
) {
403 s
= sdscatlen(s
,"\"",1);
408 s
= sdscatprintf(s
,"\\%c",*p
);
410 case '\n': s
= sdscatlen(s
,"\\n",2); break;
411 case '\r': s
= sdscatlen(s
,"\\r",2); break;
412 case '\t': s
= sdscatlen(s
,"\\t",2); break;
413 case '\a': s
= sdscatlen(s
,"\\a",2); break;
414 case '\b': s
= sdscatlen(s
,"\\b",2); break;
417 s
= sdscatprintf(s
,"%c",*p
);
419 s
= sdscatprintf(s
,"\\x%02x",(unsigned char)*p
);
424 return sdscatlen(s
,"\"",1);
427 /* Helper function for sdssplitargs() that returns non zero if 'c'
428 * is a valid hex digit. */
429 int is_hex_digit(char c
) {
430 return (c
>= '0' && c
<= '9') || (c
>= 'a' && c
<= 'f') ||
431 (c
>= 'A' && c
<= 'F');
434 /* Helper function for sdssplitargs() that converts an hex digit into an
435 * integer from 0 to 15 */
436 int hex_digit_to_int(char c
) {
448 case 'a': case 'A': return 10;
449 case 'b': case 'B': return 11;
450 case 'c': case 'C': return 12;
451 case 'd': case 'D': return 13;
452 case 'e': case 'E': return 14;
453 case 'f': case 'F': return 15;
458 /* Split a line into arguments, where every argument can be in the
459 * following programming-language REPL-alike form:
461 * foo bar "newline are supported\n" and "\xff\x00otherstuff"
463 * The number of arguments is stored into *argc, and an array
464 * of sds is returned. The caller should sdsfree() all the returned
465 * strings and finally zfree() the array itself.
467 * Note that sdscatrepr() is able to convert back a string into
468 * a quoted string in the same format sdssplitargs() is able to parse.
470 sds
*sdssplitargs(char *line
, int *argc
) {
472 char *current
= NULL
;
473 char **vector
= NULL
;
478 while(*p
&& isspace(*p
)) p
++;
481 int inq
=0; /* set to 1 if we are in "quotes" */
484 if (current
== NULL
) current
= sdsempty();
487 if (*p
== '\\' && *(p
+1) == 'x' &&
488 is_hex_digit(*(p
+2)) &&
489 is_hex_digit(*(p
+3)))
493 byte
= (hex_digit_to_int(*(p
+2))*16)+
494 hex_digit_to_int(*(p
+3));
495 current
= sdscatlen(current
,(char*)&byte
,1);
497 } else if (*p
== '\\' && *(p
+1)) {
502 case 'n': c
= '\n'; break;
503 case 'r': c
= '\r'; break;
504 case 't': c
= '\t'; break;
505 case 'b': c
= '\b'; break;
506 case 'a': c
= '\a'; break;
507 default: c
= *p
; break;
509 current
= sdscatlen(current
,&c
,1);
510 } else if (*p
== '"') {
511 /* closing quote must be followed by a space */
512 if (*(p
+1) && !isspace(*(p
+1))) goto err
;
515 /* unterminated quotes */
518 current
= sdscatlen(current
,p
,1);
533 current
= sdscatlen(current
,p
,1);
539 /* add the token to the vector */
540 vector
= zrealloc(vector
,((*argc
)+1)*sizeof(char*));
541 vector
[*argc
] = current
;
551 sdsfree(vector
[*argc
]);
553 if (current
) sdsfree(current
);
559 #include "testhelp.h"
563 sds x
= sdsnew("foo"), y
;
565 test_cond("Create a string and obtain the length",
566 sdslen(x
) == 3 && memcmp(x
,"foo\0",4) == 0)
569 x
= sdsnewlen("foo",2);
570 test_cond("Create a string with specified length",
571 sdslen(x
) == 2 && memcmp(x
,"fo\0",3) == 0)
574 test_cond("Strings concatenation",
575 sdslen(x
) == 5 && memcmp(x
,"fobar\0",6) == 0);
578 test_cond("sdscpy() against an originally longer string",
579 sdslen(x
) == 1 && memcmp(x
,"a\0",2) == 0)
581 x
= sdscpy(x
,"xyzxxxxxxxxxxyyyyyyyyyykkkkkkkkkk");
582 test_cond("sdscpy() against an originally shorter string",
584 memcmp(x
,"xyzxxxxxxxxxxyyyyyyyyyykkkkkkkkkk\0",33) == 0)
587 x
= sdscatprintf(sdsempty(),"%d",123);
588 test_cond("sdscatprintf() seems working in the base case",
589 sdslen(x
) == 3 && memcmp(x
,"123\0",4) ==0)
592 x
= sdstrim(sdsnew("xxciaoyyy"),"xy");
593 test_cond("sdstrim() correctly trims characters",
594 sdslen(x
) == 4 && memcmp(x
,"ciao\0",5) == 0)
596 y
= sdsrange(sdsdup(x
),1,1);
597 test_cond("sdsrange(...,1,1)",
598 sdslen(y
) == 1 && memcmp(y
,"i\0",2) == 0)
601 y
= sdsrange(sdsdup(x
),1,-1);
602 test_cond("sdsrange(...,1,-1)",
603 sdslen(y
) == 3 && memcmp(y
,"iao\0",4) == 0)
606 y
= sdsrange(sdsdup(x
),-2,-1);
607 test_cond("sdsrange(...,-2,-1)",
608 sdslen(y
) == 2 && memcmp(y
,"ao\0",3) == 0)
611 y
= sdsrange(sdsdup(x
),2,1);
612 test_cond("sdsrange(...,2,1)",
613 sdslen(y
) == 0 && memcmp(y
,"\0",1) == 0)
616 y
= sdsrange(sdsdup(x
),1,100);
617 test_cond("sdsrange(...,1,100)",
618 sdslen(y
) == 3 && memcmp(y
,"iao\0",4) == 0)
621 y
= sdsrange(sdsdup(x
),100,100);
622 test_cond("sdsrange(...,100,100)",
623 sdslen(y
) == 0 && memcmp(y
,"\0",1) == 0)
629 test_cond("sdscmp(foo,foa)", sdscmp(x
,y
) > 0)
635 test_cond("sdscmp(bar,bar)", sdscmp(x
,y
) == 0)
641 test_cond("sdscmp(bar,bar)", sdscmp(x
,y
) < 0)