file_flush.h 589 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // Created by #Suyghur, on 4/7/21.
  3. //
  4. #ifndef DOLIN_ZAP_FILE_FLUSH_H
  5. #define DOLIN_ZAP_FILE_FLUSH_H
  6. #include "buffer_flush.h"
  7. #include <vector>
  8. #include <thread>
  9. class FileFlush {
  10. public:
  11. FileFlush();
  12. ~FileFlush();
  13. bool AsyncFlush(BufferFlush *buffer);
  14. void StopFlush();
  15. private:
  16. void AsyncLogThread();
  17. static ssize_t Flush(BufferFlush *buffer);
  18. bool exit = false;
  19. std::vector<BufferFlush *> async_buffer;
  20. std::thread async_thread;
  21. std::condition_variable async_condition;
  22. std::mutex async_mtx;
  23. };
  24. #endif //DOLIN_ZAP_FILE_FLUSH_H