printbuf.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * $Id: printbuf.h,v 1.4 2006/01/26 02:16:28 mclark Exp $
  3. *
  4. * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
  5. * Michael Clark <michael@metaparadigm.com>
  6. *
  7. * This library is free software; you can redistribute it and/or modify
  8. * it under the terms of the MIT license. See COPYING for details.
  9. *
  10. *
  11. * Copyright (c) 2008-2009 Yahoo! Inc. All rights reserved.
  12. * The copyrights to the contents of this file are licensed under the MIT License
  13. * (http://www.opensource.org/licenses/mit-license.php)
  14. */
  15. #ifndef _printbuf_h_
  16. #define _printbuf_h_
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. struct printbuf {
  21. char *buf;
  22. int bpos;
  23. int size;
  24. };
  25. extern struct printbuf*
  26. printbuf_new(void);
  27. /* As an optimization, printbuf_memappend_fast is defined as a macro
  28. * that handles copying data if the buffer is large enough; otherwise
  29. * it invokes printbuf_memappend_real() which performs the heavy
  30. * lifting of realloc()ing the buffer and copying data.
  31. * Your code should not use printbuf_memappend directly--use
  32. * printbuf_memappend_fast instead.
  33. */
  34. extern int
  35. printbuf_memappend(struct printbuf *p, const char *buf, int size);
  36. #define printbuf_memappend_fast(p, bufptr, bufsize) \
  37. do { \
  38. if ((p->size - p->bpos) > bufsize) { \
  39. memcpy(p->buf + p->bpos, (bufptr), bufsize); \
  40. p->bpos += bufsize; \
  41. p->buf[p->bpos]= '\0'; \
  42. } else { printbuf_memappend(p, (bufptr), bufsize); } \
  43. } while (0)
  44. #define printbuf_length(p) ((p)->bpos)
  45. /**
  46. * Set len bytes of the buffer to charvalue, starting at offset offset.
  47. * Similar to calling memset(x, charvalue, len);
  48. *
  49. * The memory allocated for the buffer is extended as necessary.
  50. *
  51. * If offset is -1, this starts at the end of the current data in the buffer.
  52. */
  53. extern int
  54. printbuf_memset(struct printbuf *pb, int offset, int charvalue, int len);
  55. extern int
  56. sprintbuf(struct printbuf *p, const char *msg, ...);
  57. extern void
  58. printbuf_reset(struct printbuf *p);
  59. extern void
  60. printbuf_free(struct printbuf *p);
  61. #ifdef __cplusplus
  62. }
  63. #endif
  64. #endif