mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-29 08:44:06 +08:00
ad0f31c009
Some checks failed
linux / OS X Clang (C++11, Release) (push) Waiting to run
macos / macOS Clang (C++11, Release) (map[BUILD_EXAMPLE:OFF USE_STD_FORMAT:ON]) (push) Waiting to run
macos / macOS Clang (C++11, Release) (map[BUILD_EXAMPLE:ON USE_STD_FORMAT:OFF]) (push) Waiting to run
windows / build (map[BUILD_EXAMPLE:OFF BUILD_SHARED:ON BUILD_TYPE:Release CXX_STANDARD:20 FATAL_ERRORS:ON GENERATOR:Visual Studio 17 2022 USE_STD_FORMAT:ON WCHAR:OFF WCHAR_FILES:OFF]) (push) Waiting to run
windows / build (map[BUILD_EXAMPLE:OFF BUILD_SHARED:ON BUILD_TYPE:Release CXX_STANDARD:20 FATAL_ERRORS:ON GENERATOR:Visual Studio 17 2022 USE_STD_FORMAT:ON WCHAR:ON WCHAR_FILES:ON]) (push) Waiting to run
windows / build (map[BUILD_EXAMPLE:ON BUILD_SHARED:ON BUILD_TYPE:Release CXX_STANDARD:17 FATAL_ERRORS:ON GENERATOR:Visual Studio 17 2022 USE_STD_FORMAT:OFF WCHAR:OFF WCHAR_FILES:OFF]) (push) Waiting to run
windows / build_2019 (map[BUILD_EXAMPLE:ON BUILD_SHARED:ON BUILD_TYPE:Release CXX_STANDARD:11 FATAL_ERRORS:ON GENERATOR:Visual Studio 16 2019 USE_STD_FORMAT:OFF WCHAR:OFF WCHAR_FILES:OFF]) (push) Waiting to run
windows / build_2019 (map[BUILD_EXAMPLE:ON BUILD_SHARED:ON BUILD_TYPE:Release CXX_STANDARD:14 FATAL_ERRORS:ON GENERATOR:Visual Studio 16 2019 USE_STD_FORMAT:OFF WCHAR:OFF WCHAR_FILES:OFF]) (push) Waiting to run
windows / build_2019 (map[BUILD_EXAMPLE:ON BUILD_SHARED:ON BUILD_TYPE:Release CXX_STANDARD:17 FATAL_ERRORS:ON GENERATOR:Visual Studio 16 2019 USE_STD_FORMAT:OFF WCHAR:OFF WCHAR_FILES:OFF]) (push) Waiting to run
linux / ${{ matrix.config.compiler}} ${{ matrix.config.version }} (C++${{ matrix.config.cppstd }} ${{ matrix.config.build_type }} ${{ matrix.config.asan == 'ON' && 'ASAN' || '' }}${{ matrix.config.tsan == 'ON' && 'TSAN' || '' }}) (map[asan:ON build_type:Debug … (push) Failing after 11s
linux / ${{ matrix.config.compiler}} ${{ matrix.config.version }} (C++${{ matrix.config.cppstd }} ${{ matrix.config.build_type }} ${{ matrix.config.asan == 'ON' && 'ASAN' || '' }}${{ matrix.config.tsan == 'ON' && 'TSAN' || '' }}) (map[build_type:Debug compiler… (push) Failing after 3s
linux / ${{ matrix.config.compiler}} ${{ matrix.config.version }} (C++${{ matrix.config.cppstd }} ${{ matrix.config.build_type }} ${{ matrix.config.asan == 'ON' && 'ASAN' || '' }}${{ matrix.config.tsan == 'ON' && 'TSAN' || '' }}) (map[build_type:Release compil… (push) Failing after 3s
* Enabled bin_to_hex utest for stdformat, and fixed std::formatter * fixed usage of \ in macos.yml * explicitly cast diff variable in test_sink * moved from ::iterator to decltype * added fix for custom callbacks --------- Co-authored-by: Jan Koniarik <veverak@Jans-MacBook-Pro.local>
71 lines
1.9 KiB
C++
71 lines
1.9 KiB
C++
//
|
|
// Copyright(c) 2018 Gabi Melman.
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "spdlog/details/null_mutex.h"
|
|
#include "spdlog/sinks/base_sink.h"
|
|
#include "spdlog/fmt/fmt.h"
|
|
#include <chrono>
|
|
#include <mutex>
|
|
#include <thread>
|
|
|
|
namespace spdlog {
|
|
namespace sinks {
|
|
|
|
template <class Mutex>
|
|
class test_sink : public base_sink<Mutex> {
|
|
const size_t lines_to_save = 100;
|
|
|
|
public:
|
|
size_t msg_counter() {
|
|
std::lock_guard<Mutex> lock(base_sink<Mutex>::mutex_);
|
|
return msg_counter_;
|
|
}
|
|
|
|
size_t flush_counter() {
|
|
std::lock_guard<Mutex> lock(base_sink<Mutex>::mutex_);
|
|
return flush_counter_;
|
|
}
|
|
|
|
void set_delay(std::chrono::milliseconds delay) {
|
|
std::lock_guard<Mutex> lock(base_sink<Mutex>::mutex_);
|
|
delay_ = delay;
|
|
}
|
|
|
|
// return last output without the eol
|
|
std::vector<std::string> lines() {
|
|
std::lock_guard<Mutex> lock(base_sink<Mutex>::mutex_);
|
|
return lines_;
|
|
}
|
|
|
|
protected:
|
|
void sink_it_(const details::log_msg &msg) override {
|
|
memory_buf_t formatted;
|
|
base_sink<Mutex>::formatter_->format(msg, formatted);
|
|
// save the line without the eol
|
|
auto eol_len = strlen(details::os::default_eol);
|
|
using diff_t = typename std::iterator_traits<decltype(formatted.end())>::difference_type;
|
|
if (lines_.size() < lines_to_save) {
|
|
lines_.emplace_back(formatted.begin(), formatted.end() - static_cast<diff_t>(eol_len));
|
|
}
|
|
msg_counter_++;
|
|
std::this_thread::sleep_for(delay_);
|
|
}
|
|
|
|
void flush_() override { flush_counter_++; }
|
|
|
|
size_t msg_counter_{0};
|
|
size_t flush_counter_{0};
|
|
std::chrono::milliseconds delay_{std::chrono::milliseconds::zero()};
|
|
std::vector<std::string> lines_;
|
|
};
|
|
|
|
using test_sink_mt = test_sink<std::mutex>;
|
|
using test_sink_st = test_sink<details::null_mutex>;
|
|
|
|
} // namespace sinks
|
|
} // namespace spdlog
|