spdlog/include/c11log/details/flush_helper.h

33 lines
591 B
C
Raw Normal View History

2014-02-22 17:57:53 +08:00
#pragma once
// Flush to file every X writes..
2014-03-07 06:52:50 +08:00
namespace c11log
{
namespace details
{
2014-03-07 06:52:50 +08:00
class file_flush_helper
{
2014-02-22 17:57:53 +08:00
public:
explicit file_flush_helper(const std::size_t flush_every):
_flush_every(flush_every),
2014-05-09 22:09:25 +08:00
_flush_countdown(flush_every) {};
void write(const std::string& msg, std::ofstream& ofs)
{
2014-05-08 07:23:07 +08:00
ofs.write(msg.data(), msg.size());
2014-05-09 22:09:25 +08:00
if(--_flush_countdown == 0)
{
2014-02-22 17:57:53 +08:00
ofs.flush();
2014-05-09 22:09:25 +08:00
_flush_countdown = _flush_every;
2014-02-22 17:57:53 +08:00
}
}
private:
const std::size_t _flush_every;
2014-05-09 22:09:25 +08:00
std::size_t _flush_countdown;
2014-02-22 17:57:53 +08:00
};
}
}