spdlog/include/c11log/details/flush_helper.h

33 lines
591 B
C
Raw Normal View History

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