]>
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
47 static void sdsOomAbort(void) {
48 fprintf(stderr
,"SDS: Out Of Memory (SDS_ABORT_ON_OOM defined)\n");
52 sds
sdsnewlen(const void *init
, size_t initlen
) {
56 sh
= zmalloc(sizeof(struct sdshdr
)+initlen
+1);
58 sh
= zcalloc(sizeof(struct sdshdr
)+initlen
+1);
60 #ifdef SDS_ABORT_ON_OOM
61 if (sh
== NULL
) sdsOomAbort();
63 if (sh
== NULL
) return NULL
;
68 memcpy(sh
->buf
, init
, initlen
);
69 sh
->buf
[initlen
] = '\0';
70 return (char*)sh
->buf
;
74 return sdsnewlen("",0);
77 sds
sdsnew(const char *init
) {
78 size_t initlen
= (init
== NULL
) ? 0 : strlen(init
);
79 return sdsnewlen(init
, initlen
);
82 sds
sdsdup(const sds s
) {
83 return sdsnewlen(s
, sdslen(s
));
87 if (s
== NULL
) return;
88 zfree(s
-sizeof(struct sdshdr
));
91 void sdsupdatelen(sds s
) {
92 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
93 int reallen
= strlen(s
);
94 sh
->free
+= (sh
->len
-reallen
);
98 void sdsclear(sds s
) {
99 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
105 /* Enlarge the free space at the end of the sds string so that the caller
106 * is sure that after calling this function can overwrite up to addlen
107 * bytes after the end of the string, plus one more byte for nul term.
109 * Note: this does not change the *size* of the sds string as returned
110 * by sdslen(), but only the free buffer space we have. */
111 sds
sdsMakeRoomFor(sds s
, size_t addlen
) {
112 struct sdshdr
*sh
, *newsh
;
113 size_t free
= sdsavail(s
);
116 if (free
>= addlen
) return s
;
118 sh
= (void*) (s
-(sizeof(struct sdshdr
)));
119 newlen
= (len
+addlen
)*2;
120 newsh
= zrealloc(sh
, sizeof(struct sdshdr
)+newlen
+1);
121 #ifdef SDS_ABORT_ON_OOM
122 if (newsh
== NULL
) sdsOomAbort();
124 if (newsh
== NULL
) return NULL
;
127 newsh
->free
= newlen
- len
;
131 /* Increment the sds length and decrements the left free space at the
132 * end of the string accordingly to 'incr'. Also set the null term
133 * in the new end of the string.
135 * This function is used in order to fix the string length after the
136 * user calls sdsMakeRoomFor(), writes something after the end of
137 * the current string, and finally needs to set the new length.
139 * Note: it is possible to use a negative increment in order to
140 * right-trim the string.
142 * Using sdsIncrLen() and sdsMakeRoomFor() it is possible to mount the
143 * following schema to cat bytes coming from the kerenl to the end of an
144 * sds string new things without copying into an intermediate buffer:
146 * oldlen = sdslen(s);
147 * s = sdsMakeRoomFor(s, BUFFER_SIZE);
148 * nread = read(fd, s+oldlen, BUFFER_SIZE);
149 * ... check for nread <= 0 and handle it ...
150 * sdsIncrLen(s, nhread);
152 void sdsIncrLen(sds s
, int incr
) {
153 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
155 assert(sh
->free
>= incr
);
158 assert(sh
->free
>= 0);
162 /* Grow the sds to have the specified length. Bytes that were not part of
163 * the original length of the sds will be set to zero. */
164 sds
sdsgrowzero(sds s
, size_t len
) {
165 struct sdshdr
*sh
= (void*)(s
-(sizeof(struct sdshdr
)));
166 size_t totlen
, curlen
= sh
->len
;
168 if (len
<= curlen
) return s
;
169 s
= sdsMakeRoomFor(s
,len
-curlen
);
170 if (s
== NULL
) return NULL
;
172 /* Make sure added region doesn't contain garbage */
173 sh
= (void*)(s
-(sizeof(struct sdshdr
)));
174 memset(s
+curlen
,0,(len
-curlen
+1)); /* also set trailing \0 byte */
175 totlen
= sh
->len
+sh
->free
;
177 sh
->free
= totlen
-sh
->len
;
181 sds
sdscatlen(sds s
, void *t
, size_t len
) {
183 size_t curlen
= sdslen(s
);
185 s
= sdsMakeRoomFor(s
,len
);
186 if (s
== NULL
) return NULL
;
187 sh
= (void*) (s
-(sizeof(struct sdshdr
)));
188 memcpy(s
+curlen
, t
, len
);
189 sh
->len
= curlen
+len
;
190 sh
->free
= sh
->free
-len
;
191 s
[curlen
+len
] = '\0';
195 sds
sdscat(sds s
, char *t
) {
196 return sdscatlen(s
, t
, strlen(t
));
199 sds
sdscpylen(sds s
, char *t
, size_t len
) {
200 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
201 size_t totlen
= sh
->free
+sh
->len
;
204 s
= sdsMakeRoomFor(s
,len
-sh
->len
);
205 if (s
== NULL
) return NULL
;
206 sh
= (void*) (s
-(sizeof(struct sdshdr
)));
207 totlen
= sh
->free
+sh
->len
;
212 sh
->free
= totlen
-len
;
216 sds
sdscpy(sds s
, char *t
) {
217 return sdscpylen(s
, t
, strlen(t
));
220 sds
sdscatvprintf(sds s
, const char *fmt
, va_list ap
) {
226 buf
= zmalloc(buflen
);
227 #ifdef SDS_ABORT_ON_OOM
228 if (buf
== NULL
) sdsOomAbort();
230 if (buf
== NULL
) return NULL
;
232 buf
[buflen
-2] = '\0';
234 vsnprintf(buf
, buflen
, fmt
, cpy
);
235 if (buf
[buflen
-2] != '\0') {
247 sds
sdscatprintf(sds s
, const char *fmt
, ...) {
251 t
= sdscatvprintf(s
,fmt
,ap
);
256 sds
sdstrim(sds s
, const char *cset
) {
257 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
258 char *start
, *end
, *sp
, *ep
;
262 ep
= end
= s
+sdslen(s
)-1;
263 while(sp
<= end
&& strchr(cset
, *sp
)) sp
++;
264 while(ep
> start
&& strchr(cset
, *ep
)) ep
--;
265 len
= (sp
> ep
) ? 0 : ((ep
-sp
)+1);
266 if (sh
->buf
!= sp
) memmove(sh
->buf
, sp
, len
);
268 sh
->free
= sh
->free
+(sh
->len
-len
);
273 sds
sdsrange(sds s
, int start
, int end
) {
274 struct sdshdr
*sh
= (void*) (s
-(sizeof(struct sdshdr
)));
275 size_t newlen
, len
= sdslen(s
);
277 if (len
== 0) return s
;
280 if (start
< 0) start
= 0;
284 if (end
< 0) end
= 0;
286 newlen
= (start
> end
) ? 0 : (end
-start
)+1;
288 if (start
>= (signed)len
) {
290 } else if (end
>= (signed)len
) {
292 newlen
= (start
> end
) ? 0 : (end
-start
)+1;
297 if (start
&& newlen
) memmove(sh
->buf
, sh
->buf
+start
, newlen
);
299 sh
->free
= sh
->free
+(sh
->len
-newlen
);
304 void sdstolower(sds s
) {
305 int len
= sdslen(s
), j
;
307 for (j
= 0; j
< len
; j
++) s
[j
] = tolower(s
[j
]);
310 void sdstoupper(sds s
) {
311 int len
= sdslen(s
), j
;
313 for (j
= 0; j
< len
; j
++) s
[j
] = toupper(s
[j
]);
316 int sdscmp(sds s1
, sds s2
) {
317 size_t l1
, l2
, minlen
;
322 minlen
= (l1
< l2
) ? l1
: l2
;
323 cmp
= memcmp(s1
,s2
,minlen
);
324 if (cmp
== 0) return l1
-l2
;
328 /* Split 's' with separator in 'sep'. An array
329 * of sds strings is returned. *count will be set
330 * by reference to the number of tokens returned.
332 * On out of memory, zero length string, zero length
333 * separator, NULL is returned.
335 * Note that 'sep' is able to split a string using
336 * a multi-character separator. For example
337 * sdssplit("foo_-_bar","_-_"); will return two
338 * elements "foo" and "bar".
340 * This version of the function is binary-safe but
341 * requires length arguments. sdssplit() is just the
342 * same function but for zero-terminated strings.
344 sds
*sdssplitlen(char *s
, int len
, char *sep
, int seplen
, int *count
) {
345 int elements
= 0, slots
= 5, start
= 0, j
;
348 if (seplen
< 1 || len
< 0) return NULL
;
350 tokens
= zmalloc(sizeof(sds
)*slots
);
351 #ifdef SDS_ABORT_ON_OOM
352 if (tokens
== NULL
) sdsOomAbort();
354 if (tokens
== NULL
) return NULL
;
361 for (j
= 0; j
< (len
-(seplen
-1)); j
++) {
362 /* make sure there is room for the next element and the final one */
363 if (slots
< elements
+2) {
367 newtokens
= zrealloc(tokens
,sizeof(sds
)*slots
);
368 if (newtokens
== NULL
) {
369 #ifdef SDS_ABORT_ON_OOM
377 /* search the separator */
378 if ((seplen
== 1 && *(s
+j
) == sep
[0]) || (memcmp(s
+j
,sep
,seplen
) == 0)) {
379 tokens
[elements
] = sdsnewlen(s
+start
,j
-start
);
380 if (tokens
[elements
] == NULL
) {
381 #ifdef SDS_ABORT_ON_OOM
389 j
= j
+seplen
-1; /* skip the separator */
392 /* Add the final element. We are sure there is room in the tokens array. */
393 tokens
[elements
] = sdsnewlen(s
+start
,len
-start
);
394 if (tokens
[elements
] == NULL
) {
395 #ifdef SDS_ABORT_ON_OOM
405 #ifndef SDS_ABORT_ON_OOM
409 for (i
= 0; i
< elements
; i
++) sdsfree(tokens
[i
]);
417 void sdsfreesplitres(sds
*tokens
, int count
) {
420 sdsfree(tokens
[count
]);
424 sds
sdsfromlonglong(long long value
) {
426 unsigned long long v
;
428 v
= (value
< 0) ? -value
: value
;
429 p
= buf
+31; /* point to the last character */
434 if (value
< 0) *p
-- = '-';
436 return sdsnewlen(p
,32-(p
-buf
));
439 sds
sdscatrepr(sds s
, char *p
, size_t len
) {
440 s
= sdscatlen(s
,"\"",1);
445 s
= sdscatprintf(s
,"\\%c",*p
);
447 case '\n': s
= sdscatlen(s
,"\\n",2); break;
448 case '\r': s
= sdscatlen(s
,"\\r",2); break;
449 case '\t': s
= sdscatlen(s
,"\\t",2); break;
450 case '\a': s
= sdscatlen(s
,"\\a",2); break;
451 case '\b': s
= sdscatlen(s
,"\\b",2); break;
454 s
= sdscatprintf(s
,"%c",*p
);
456 s
= sdscatprintf(s
,"\\x%02x",(unsigned char)*p
);
461 return sdscatlen(s
,"\"",1);
464 /* Helper function for sdssplitargs() that returns non zero if 'c'
465 * is a valid hex digit. */
466 int is_hex_digit(char c
) {
467 return (c
>= '0' && c
<= '9') || (c
>= 'a' && c
<= 'f') ||
468 (c
>= 'A' && c
<= 'F');
471 /* Helper function for sdssplitargs() that converts an hex digit into an
472 * integer from 0 to 15 */
473 int hex_digit_to_int(char c
) {
485 case 'a': case 'A': return 10;
486 case 'b': case 'B': return 11;
487 case 'c': case 'C': return 12;
488 case 'd': case 'D': return 13;
489 case 'e': case 'E': return 14;
490 case 'f': case 'F': return 15;
495 /* Split a line into arguments, where every argument can be in the
496 * following programming-language REPL-alike form:
498 * foo bar "newline are supported\n" and "\xff\x00otherstuff"
500 * The number of arguments is stored into *argc, and an array
501 * of sds is returned. The caller should sdsfree() all the returned
502 * strings and finally zfree() the array itself.
504 * Note that sdscatrepr() is able to convert back a string into
505 * a quoted string in the same format sdssplitargs() is able to parse.
507 sds
*sdssplitargs(char *line
, int *argc
) {
509 char *current
= NULL
;
510 char **vector
= NULL
;
515 while(*p
&& isspace(*p
)) p
++;
518 int inq
=0; /* set to 1 if we are in "quotes" */
519 int insq
=0; /* set to 1 if we are in 'single quotes' */
522 if (current
== NULL
) current
= sdsempty();
525 if (*p
== '\\' && *(p
+1) == 'x' &&
526 is_hex_digit(*(p
+2)) &&
527 is_hex_digit(*(p
+3)))
531 byte
= (hex_digit_to_int(*(p
+2))*16)+
532 hex_digit_to_int(*(p
+3));
533 current
= sdscatlen(current
,(char*)&byte
,1);
535 } else if (*p
== '\\' && *(p
+1)) {
540 case 'n': c
= '\n'; break;
541 case 'r': c
= '\r'; break;
542 case 't': c
= '\t'; break;
543 case 'b': c
= '\b'; break;
544 case 'a': c
= '\a'; break;
545 default: c
= *p
; break;
547 current
= sdscatlen(current
,&c
,1);
548 } else if (*p
== '"') {
549 /* closing quote must be followed by a space or
551 if (*(p
+1) && !isspace(*(p
+1))) goto err
;
554 /* unterminated quotes */
557 current
= sdscatlen(current
,p
,1);
560 if (*p
== '\\' && *(p
+1) == '\'') {
562 current
= sdscatlen(current
,"'",1);
563 } else if (*p
== '\'') {
564 /* closing quote must be followed by a space or
566 if (*(p
+1) && !isspace(*(p
+1))) goto err
;
569 /* unterminated quotes */
572 current
= sdscatlen(current
,p
,1);
590 current
= sdscatlen(current
,p
,1);
596 /* add the token to the vector */
597 vector
= zrealloc(vector
,((*argc
)+1)*sizeof(char*));
598 vector
[*argc
] = current
;
608 sdsfree(vector
[*argc
]);
610 if (current
) sdsfree(current
);
614 void sdssplitargs_free(sds
*argv
, int argc
) {
617 for (j
= 0 ;j
< argc
; j
++) sdsfree(argv
[j
]);
621 /* Modify the string substituting all the occurrences of the set of
622 * characters specifed in the 'from' string to the corresponding character
625 * For instance: sdsmapchars(mystring, "ho", "01", 2)
626 * will have the effect of turning the string "hello" into "0ell1".
628 * The function returns the sds string pointer, that is always the same
629 * as the input pointer since no resize is needed. */
630 sds
sdsmapchars(sds s
, char *from
, char *to
, size_t setlen
) {
631 size_t j
, i
, l
= sdslen(s
);
633 for (j
= 0; j
< l
; j
++) {
634 for (i
= 0; i
< setlen
; i
++) {
635 if (s
[j
] == from
[i
]) {
646 #include "testhelp.h"
651 sds x
= sdsnew("foo"), y
;
653 test_cond("Create a string and obtain the length",
654 sdslen(x
) == 3 && memcmp(x
,"foo\0",4) == 0)
657 x
= sdsnewlen("foo",2);
658 test_cond("Create a string with specified length",
659 sdslen(x
) == 2 && memcmp(x
,"fo\0",3) == 0)
662 test_cond("Strings concatenation",
663 sdslen(x
) == 5 && memcmp(x
,"fobar\0",6) == 0);
666 test_cond("sdscpy() against an originally longer string",
667 sdslen(x
) == 1 && memcmp(x
,"a\0",2) == 0)
669 x
= sdscpy(x
,"xyzxxxxxxxxxxyyyyyyyyyykkkkkkkkkk");
670 test_cond("sdscpy() against an originally shorter string",
672 memcmp(x
,"xyzxxxxxxxxxxyyyyyyyyyykkkkkkkkkk\0",33) == 0)
675 x
= sdscatprintf(sdsempty(),"%d",123);
676 test_cond("sdscatprintf() seems working in the base case",
677 sdslen(x
) == 3 && memcmp(x
,"123\0",4) ==0)
680 x
= sdstrim(sdsnew("xxciaoyyy"),"xy");
681 test_cond("sdstrim() correctly trims characters",
682 sdslen(x
) == 4 && memcmp(x
,"ciao\0",5) == 0)
684 y
= sdsrange(sdsdup(x
),1,1);
685 test_cond("sdsrange(...,1,1)",
686 sdslen(y
) == 1 && memcmp(y
,"i\0",2) == 0)
689 y
= sdsrange(sdsdup(x
),1,-1);
690 test_cond("sdsrange(...,1,-1)",
691 sdslen(y
) == 3 && memcmp(y
,"iao\0",4) == 0)
694 y
= sdsrange(sdsdup(x
),-2,-1);
695 test_cond("sdsrange(...,-2,-1)",
696 sdslen(y
) == 2 && memcmp(y
,"ao\0",3) == 0)
699 y
= sdsrange(sdsdup(x
),2,1);
700 test_cond("sdsrange(...,2,1)",
701 sdslen(y
) == 0 && memcmp(y
,"\0",1) == 0)
704 y
= sdsrange(sdsdup(x
),1,100);
705 test_cond("sdsrange(...,1,100)",
706 sdslen(y
) == 3 && memcmp(y
,"iao\0",4) == 0)
709 y
= sdsrange(sdsdup(x
),100,100);
710 test_cond("sdsrange(...,100,100)",
711 sdslen(y
) == 0 && memcmp(y
,"\0",1) == 0)
717 test_cond("sdscmp(foo,foa)", sdscmp(x
,y
) > 0)
723 test_cond("sdscmp(bar,bar)", sdscmp(x
,y
) == 0)
729 test_cond("sdscmp(bar,bar)", sdscmp(x
,y
) < 0)
736 sh
= (void*) (x
-(sizeof(struct sdshdr
)));
737 test_cond("sdsnew() free/len buffers", sh
->len
== 1 && sh
->free
== 0);
738 x
= sdsMakeRoomFor(x
,1);
739 sh
= (void*) (x
-(sizeof(struct sdshdr
)));
740 test_cond("sdsMakeRoomFor()", sh
->len
== 1 && sh
->free
> 0);
744 test_cond("sdsIncrLen() -- content", x
[0] == '0' && x
[1] == '1');
745 test_cond("sdsIncrLen() -- len", sh
->len
== 2);
746 test_cond("sdsIncrLen() -- free", sh
->free
== oldfree
-1);