You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sds.h 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* SDS (Simple Dynamic Strings), A C dynamic strings library.
  2. *
  3. * Copyright (c) 2006-2014, Salvatore Sanfilippo <antirez at gmail dot com>
  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. #ifndef __SDS_H
  31. #define __SDS_H
  32. #define SDS_MAX_PREALLOC (1024*1024)
  33. #include <sys/types.h>
  34. #include <stdarg.h>
  35. #ifdef _MSC_VER
  36. #include "win32.h"
  37. #endif
  38. typedef char *sds;
  39. struct sdshdr {
  40. int len;
  41. int free;
  42. char buf[];
  43. };
  44. static inline size_t sdslen(const sds s) {
  45. struct sdshdr *sh = (struct sdshdr *)(s-sizeof *sh);
  46. return sh->len;
  47. }
  48. static inline size_t sdsavail(const sds s) {
  49. struct sdshdr *sh = (struct sdshdr *)(s-sizeof *sh);
  50. return sh->free;
  51. }
  52. sds sdsnewlen(const void *init, size_t initlen);
  53. sds sdsnew(const char *init);
  54. sds sdsempty(void);
  55. size_t sdslen(const sds s);
  56. sds sdsdup(const sds s);
  57. void sdsfree(sds s);
  58. size_t sdsavail(const sds s);
  59. sds sdsgrowzero(sds s, size_t len);
  60. sds sdscatlen(sds s, const void *t, size_t len);
  61. sds sdscat(sds s, const char *t);
  62. sds sdscatsds(sds s, const sds t);
  63. sds sdscpylen(sds s, const char *t, size_t len);
  64. sds sdscpy(sds s, const char *t);
  65. #ifdef __GNUC__
  66. __attribute__((format(printf, 2, 0)))
  67. #endif
  68. sds sdscatvprintf(sds s, const char *fmt, va_list ap);
  69. #ifdef __GNUC__
  70. sds sdscatprintf(sds s, const char *fmt, ...)
  71. __attribute__((format(printf, 2, 3)));
  72. #else
  73. sds sdscatprintf(sds s, const char *fmt, ...);
  74. #endif
  75. sds sdscatfmt(sds s, char const *fmt, ...);
  76. void sdstrim(sds s, const char *cset);
  77. void sdsrange(sds s, int start, int end);
  78. void sdsupdatelen(sds s);
  79. void sdsclear(sds s);
  80. int sdscmp(const sds s1, const sds s2);
  81. sds *sdssplitlen(const char *s, int len, const char *sep, int seplen, int *count);
  82. void sdsfreesplitres(sds *tokens, int count);
  83. void sdstolower(sds s);
  84. void sdstoupper(sds s);
  85. sds sdsfromlonglong(long long value);
  86. sds sdscatrepr(sds s, const char *p, size_t len);
  87. sds *sdssplitargs(const char *line, int *argc);
  88. sds sdsmapchars(sds s, const char *from, const char *to, size_t setlen);
  89. sds sdsjoin(char **argv, int argc, char *sep, size_t seplen);
  90. sds sdsjoinsds(sds *argv, int argc, const char *sep, size_t seplen);
  91. /* Low level functions exposed to the user API */
  92. sds sdsMakeRoomFor(sds s, size_t addlen);
  93. void sdsIncrLen(sds s, int incr);
  94. sds sdsRemoveFreeSpace(sds s);
  95. size_t sdsAllocSize(sds s);
  96. #endif