spdlog/include/spdlog/sinks/ostream_sink.h

48 lines
998 B
C
Raw Normal View History

2016-04-20 16:57:49 +08:00
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
#pragma once
#include "../details/null_mutex.h"
#include "base_sink.h"
2016-04-20 16:57:49 +08:00
#include <ostream>
#include <mutex>
namespace spdlog
{
namespace sinks
{
template<class Mutex>
2018-02-25 06:56:56 +08:00
class ostream_sink : public base_sink<Mutex>
2016-04-20 16:57:49 +08:00
{
public:
explicit ostream_sink(std::ostream& os, bool force_flush=false) :_ostream(os), _force_flush(force_flush) {}
ostream_sink(const ostream_sink&) = delete;
ostream_sink& operator=(const ostream_sink&) = delete;
protected:
void _sink_it(const details::log_msg& msg) override
{
_ostream.write(msg.formatted.data(), msg.formatted.size());
if (_force_flush)
_ostream.flush();
}
2017-05-21 08:48:54 +08:00
void _flush() override
2016-04-20 16:57:49 +08:00
{
_ostream.flush();
}
std::ostream& _ostream;
bool _force_flush;
};
2018-02-25 05:35:09 +08:00
using ostream_sink_mt = ostream_sink<std::mutex>;
using ostream_sink_st = ostream_sink<details::null_mutex>;
2016-04-20 16:57:49 +08:00
}
}