strbuf.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #ifndef __PERF_STRBUF_H
  2. #define __PERF_STRBUF_H
  3. /*
  4. * Strbuf's can be use in many ways: as a byte array, or to store arbitrary
  5. * long, overflow safe strings.
  6. *
  7. * Strbufs has some invariants that are very important to keep in mind:
  8. *
  9. * 1. the ->buf member is always malloc-ed, hence strbuf's can be used to
  10. * build complex strings/buffers whose final size isn't easily known.
  11. *
  12. * It is NOT legal to copy the ->buf pointer away.
  13. * `strbuf_detach' is the operation that detachs a buffer from its shell
  14. * while keeping the shell valid wrt its invariants.
  15. *
  16. * 2. the ->buf member is a byte array that has at least ->len + 1 bytes
  17. * allocated. The extra byte is used to store a '\0', allowing the ->buf
  18. * member to be a valid C-string. Every strbuf function ensure this
  19. * invariant is preserved.
  20. *
  21. * Note that it is OK to "play" with the buffer directly if you work it
  22. * that way:
  23. *
  24. * strbuf_grow(sb, SOME_SIZE);
  25. * ... Here, the memory array starting at sb->buf, and of length
  26. * ... strbuf_avail(sb) is all yours, and you are sure that
  27. * ... strbuf_avail(sb) is at least SOME_SIZE.
  28. * strbuf_setlen(sb, sb->len + SOME_OTHER_SIZE);
  29. *
  30. * Of course, SOME_OTHER_SIZE must be smaller or equal to strbuf_avail(sb).
  31. *
  32. * Doing so is safe, though if it has to be done in many places, adding the
  33. * missing API to the strbuf module is the way to go.
  34. *
  35. * XXX: do _not_ assume that the area that is yours is of size ->alloc - 1
  36. * even if it's true in the current implementation. Alloc is somehow a
  37. * "private" member that should not be messed with.
  38. */
  39. #include <assert.h>
  40. #include <stdarg.h>
  41. #include <stddef.h>
  42. #include <string.h>
  43. #include <sys/types.h>
  44. extern char strbuf_slopbuf[];
  45. struct strbuf {
  46. size_t alloc;
  47. size_t len;
  48. char *buf;
  49. };
  50. #define STRBUF_INIT { 0, 0, strbuf_slopbuf }
  51. /*----- strbuf life cycle -----*/
  52. int strbuf_init(struct strbuf *buf, ssize_t hint);
  53. void strbuf_release(struct strbuf *buf);
  54. char *strbuf_detach(struct strbuf *buf, size_t *);
  55. /*----- strbuf size related -----*/
  56. static inline ssize_t strbuf_avail(const struct strbuf *sb) {
  57. return sb->alloc ? sb->alloc - sb->len - 1 : 0;
  58. }
  59. int strbuf_grow(struct strbuf *buf, size_t);
  60. static inline int strbuf_setlen(struct strbuf *sb, size_t len) {
  61. if (!sb->alloc) {
  62. int ret = strbuf_grow(sb, 0);
  63. if (ret)
  64. return ret;
  65. }
  66. assert(len < sb->alloc);
  67. sb->len = len;
  68. sb->buf[len] = '\0';
  69. return 0;
  70. }
  71. /*----- add data in your buffer -----*/
  72. int strbuf_addch(struct strbuf *sb, int c);
  73. int strbuf_add(struct strbuf *buf, const void *, size_t);
  74. static inline int strbuf_addstr(struct strbuf *sb, const char *s) {
  75. return strbuf_add(sb, s, strlen(s));
  76. }
  77. __attribute__((format(printf,2,3)))
  78. int strbuf_addf(struct strbuf *sb, const char *fmt, ...);
  79. /* XXX: if read fails, any partial read is undone */
  80. ssize_t strbuf_read(struct strbuf *, int fd, ssize_t hint);
  81. #endif /* __PERF_STRBUF_H */