7zBuf2.c 882 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* 7zBuf2.c -- Byte Buffer
  2. 2008-10-04 : Igor Pavlov : Public domain */
  3. #include <string.h>
  4. #include "7zBuf.h"
  5. void DynBuf_Construct(CDynBuf *p)
  6. {
  7. p->data = 0;
  8. p->size = 0;
  9. p->pos = 0;
  10. }
  11. void DynBuf_SeekToBeg(CDynBuf *p)
  12. {
  13. p->pos = 0;
  14. }
  15. int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc)
  16. {
  17. if (size > p->size - p->pos)
  18. {
  19. size_t newSize = p->pos + size;
  20. Byte *data;
  21. newSize += newSize / 4;
  22. data = (Byte *)alloc->Alloc(alloc, newSize);
  23. if (data == 0)
  24. return 0;
  25. p->size = newSize;
  26. memcpy(data, p->data, p->pos);
  27. alloc->Free(alloc, p->data);
  28. p->data = data;
  29. }
  30. memcpy(p->data + p->pos, buf, size);
  31. p->pos += size;
  32. return 1;
  33. }
  34. void DynBuf_Free(CDynBuf *p, ISzAlloc *alloc)
  35. {
  36. alloc->Free(alloc, p->data);
  37. p->data = 0;
  38. p->size = 0;
  39. p->pos = 0;
  40. }