buffer_flush.h 622 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // Created by #Suyghur, on 4/7/21.
  3. //
  4. #ifndef DOLIN_ZAP_BUFFER_FLUSH_H
  5. #define DOLIN_ZAP_BUFFER_FLUSH_H
  6. #include <cstdio>
  7. class BufferFlush {
  8. public:
  9. BufferFlush(FILE *log_file, size_t size = 128);
  10. ~BufferFlush();
  11. void Write(void *data, size_t len);
  12. void Reset();
  13. size_t GetLength();
  14. void *GetPtr();
  15. FILE *GetLogFile();
  16. void ReleaseThiz(void *buffer);
  17. private:
  18. FILE *log_file_ptr = nullptr;
  19. void *release_ptr = nullptr;
  20. char *data_ptr = nullptr;
  21. char *write_ptr = nullptr;
  22. size_t capacity;
  23. size_t EmptySize();
  24. };
  25. #endif //DOLIN_ZAP_BUFFER_FLUSH_H