file_flush.cpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //
  2. // Created by #Suyghur, on 4/7/21.
  3. //
  4. #include "include/file_flush.h"
  5. FileFlush::FileFlush() {
  6. async_thread = std::thread(&FileFlush::AsyncLogThread, this);
  7. }
  8. FileFlush::~FileFlush() {
  9. StopFlush();
  10. }
  11. bool FileFlush::AsyncFlush(BufferFlush *buffer) {
  12. std::unique_lock<std::mutex> lck_async_flush(async_mtx);
  13. if (exit) {
  14. delete buffer;
  15. return false;
  16. }
  17. async_buffer.push_back(buffer);
  18. async_condition.notify_all();
  19. return true;
  20. }
  21. void FileFlush::StopFlush() {
  22. exit = true;
  23. async_condition.notify_all();
  24. async_thread.join();
  25. }
  26. void FileFlush::AsyncLogThread() {
  27. while (true) {
  28. std::unique_lock<std::mutex> lck_async_log_thread(async_mtx);
  29. while (!async_buffer.empty()) {
  30. BufferFlush *data = async_buffer.back();
  31. async_buffer.pop_back();
  32. Flush(data);
  33. }
  34. if (exit) {
  35. return;
  36. }
  37. async_condition.wait(lck_async_log_thread);
  38. }
  39. }
  40. /**
  41. * 写文件
  42. */
  43. ssize_t FileFlush::Flush(BufferFlush *buffer) {
  44. ssize_t written = 0;
  45. FILE *log_file = buffer->GetLogFile();
  46. if (log_file != nullptr && buffer->GetLength() > 0) {
  47. written = fwrite(buffer->GetPtr(), buffer->GetLength(), 1, log_file);
  48. fflush(log_file);
  49. }
  50. delete buffer;
  51. return written;
  52. }