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-14 20:35:46 +08:00
|
|
|
|
2014-03-07 06:52:50 +08:00
|
|
|
class file_flush_helper
|
|
|
|
{
|
2014-02-22 17:57:53 +08:00
|
|
|
public:
|
2014-03-14 20:35:46 +08:00
|
|
|
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) {};
|
2014-05-09 23:00:10 +08:00
|
|
|
|
|
|
|
void write(const std::string& msg, std::ofstream& ofs)
|
2014-03-14 20:35:46 +08:00
|
|
|
{
|
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-03-14 20:35:46 +08:00
|
|
|
{
|
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:
|
2014-03-14 20:35:46 +08:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|