sds sdscatlen(sds s, const void *t, size_t len) { struct sdshdr *sh; size_t curlen = sdslen(s); s = sdsMakeRoomFor(s, len);//字符串添加len個長度 if (s == NULL) return NULL; sh = (void*)(s - (sizeof(struct sdshdr))); memcpy(s + curlen, t, len);/* 將指針t指向的字符串指向 s+curlen的位置,長度爲len */ sh->len = curlen + len; sh->free = sh->free - len; s[curlen + len] = '\0'; return s; }
Append the specified binary-safe string pointed by 't' of 'len' bytes to the end of the specified sds string 's'. 源程序中的註釋說明這裏增長的字符串是二進制安全的。可是我並無看出來,之後再說,可能慢慢就懂了。安全
該函數的功能就是在原sds字符串的基礎上添加len長度的字符串。新添加的字符串的頭指針是t,添加到s的位置。curl