strbuf.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. extern char strbuf_slopbuf[];
  42. struct strbuf {
  43. size_t alloc;
  44. size_t len;
  45. char *buf;
  46. };
  47. #define STRBUF_INIT { 0, 0, strbuf_slopbuf }
  48. /*----- strbuf life cycle -----*/
  49. extern void strbuf_init(struct strbuf *buf, ssize_t hint);
  50. extern void strbuf_release(struct strbuf *);
  51. extern char *strbuf_detach(struct strbuf *, size_t *);
  52. /*----- strbuf size related -----*/
  53. static inline ssize_t strbuf_avail(const struct strbuf *sb) {
  54. return sb->alloc ? sb->alloc - sb->len - 1 : 0;
  55. }
  56. extern void strbuf_grow(struct strbuf *, size_t);
  57. static inline void strbuf_setlen(struct strbuf *sb, size_t len) {
  58. if (!sb->alloc)
  59. strbuf_grow(sb, 0);
  60. assert(len < sb->alloc);
  61. sb->len = len;
  62. sb->buf[len] = '\0';
  63. }
  64. /*----- add data in your buffer -----*/
  65. static inline void strbuf_addch(struct strbuf *sb, int c) {
  66. strbuf_grow(sb, 1);
  67. sb->buf[sb->len++] = c;
  68. sb->buf[sb->len] = '\0';
  69. }
  70. extern void strbuf_remove(struct strbuf *, size_t pos, size_t len);
  71. extern void strbuf_add(struct strbuf *, const void *, size_t);
  72. static inline void strbuf_addstr(struct strbuf *sb, const char *s) {
  73. strbuf_add(sb, s, strlen(s));
  74. }
  75. __attribute__((format(printf,2,3)))
  76. extern void strbuf_addf(struct strbuf *sb, const char *fmt, ...);
  77. extern void strbuf_addv(struct strbuf *sb, const char *fmt, va_list ap);
  78. /* XXX: if read fails, any partial read is undone */
  79. extern ssize_t strbuf_read(struct strbuf *, int fd, ssize_t hint);
  80. #endif /* __PERF_STRBUF_H */