sds.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* SDSLib, A C dynamic strings library
  2. *
  3. * Copyright (c) 2006-2010, 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. /*
  36. ** Make sure we can call this stuff from C++.
  37. */
  38. #ifdef __cplusplus
  39. extern "C" {
  40. #endif
  41. #ifdef WIN32
  42. #ifdef _DEBUG
  43. #define inline __inline
  44. #endif // !inline
  45. #endif
  46. typedef char *sds;
  47. struct sdshdr {
  48. unsigned int len;
  49. unsigned int free;
  50. char buf[];
  51. };
  52. size_t sdslen(const sds s);
  53. size_t sdsavail(const sds s);
  54. sds sdsnewlen(const void *init, size_t initlen);
  55. sds sdsnewEmpty(size_t preAlloclen);
  56. sds sdsnew(const char *init);
  57. sds sdsempty(void);
  58. size_t sdslen(const sds s);
  59. sds sdsdup(const sds s);
  60. void sdsfree(sds s);
  61. size_t sdsavail(const sds s);
  62. sds sdsgrowzero(sds s, size_t len);
  63. sds sdscatlen(sds s, const void *t, size_t len);
  64. sds sdscat(sds s, const char *t);
  65. sds sdscatchar(sds s, char c);
  66. sds sdscatsds(sds s, const sds t);
  67. sds sdscpylen(sds s, const char *t, size_t len);
  68. sds sdscpy(sds s, const char *t);
  69. sds sdscatvprintf(sds s, const char *fmt, va_list ap);
  70. #ifdef __GNUC__
  71. sds sdscatprintf(sds s, const char *fmt, ...)
  72. __attribute__((format(printf, 2, 3)));
  73. #else
  74. sds sdscatprintf(sds s, const char *fmt, ...);
  75. #endif
  76. #ifdef __cplusplus
  77. } /* end of the 'extern "C"' block */
  78. #endif
  79. #endif