From 8111b77e95b083137faf888aeb5892073adf7ab4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 27 Jun 2018 16:59:37 +0200 Subject: New upstream version 2.0.0 --- lib/spdlog/sinks/stdout_sinks.h | 79 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 lib/spdlog/sinks/stdout_sinks.h (limited to 'lib/spdlog/sinks/stdout_sinks.h') diff --git a/lib/spdlog/sinks/stdout_sinks.h b/lib/spdlog/sinks/stdout_sinks.h new file mode 100644 index 0000000..b15d080 --- /dev/null +++ b/lib/spdlog/sinks/stdout_sinks.h @@ -0,0 +1,79 @@ +// +// 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" + +#include +#include +#include + +namespace spdlog { +namespace sinks { + +template +class stdout_sink SPDLOG_FINAL : public base_sink +{ + using MyType = stdout_sink; + +public: + explicit stdout_sink() = default; + + static std::shared_ptr instance() + { + static std::shared_ptr instance = std::make_shared(); + return instance; + } + +protected: + void _sink_it(const details::log_msg &msg) override + { + fwrite(msg.formatted.data(), sizeof(char), msg.formatted.size(), stdout); + _flush(); + } + + void _flush() override + { + fflush(stdout); + } +}; + +using stdout_sink_mt = stdout_sink; +using stdout_sink_st = stdout_sink; + +template +class stderr_sink SPDLOG_FINAL : public base_sink +{ + using MyType = stderr_sink; + +public: + explicit stderr_sink() = default; + + static std::shared_ptr instance() + { + static std::shared_ptr instance = std::make_shared(); + return instance; + } + +protected: + void _sink_it(const details::log_msg &msg) override + { + fwrite(msg.formatted.data(), sizeof(char), msg.formatted.size(), stderr); + _flush(); + } + + void _flush() override + { + fflush(stderr); + } +}; + +using stderr_sink_mt = stderr_sink; +using stderr_sink_st = stderr_sink; + +} // namespace sinks +} // namespace spdlog -- cgit v1.2.3