added tp->wait_empty()
This commit is contained in:
parent
0d0a841e8d
commit
8338b45b2b
@ -72,6 +72,13 @@ public:
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// wait until the queue is empty
|
||||||
|
void wait_empty()
|
||||||
|
{
|
||||||
|
std::unique_lock<std::mutex> lock(queue_mutex_);
|
||||||
|
pop_cv_.wait(lock, [this] { return this->q_.empty(); });
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
size_t max_items_;
|
size_t max_items_;
|
||||||
std::mutex queue_mutex_;
|
std::mutex queue_mutex_;
|
||||||
|
@ -139,6 +139,11 @@ public:
|
|||||||
return msg_counter_.load(std::memory_order_relaxed);
|
return msg_counter_.load(std::memory_order_relaxed);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void wait_empty()
|
||||||
|
{
|
||||||
|
q_.wait_empty();
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::atomic<size_t> msg_counter_; // total # of messages processed in this pool
|
std::atomic<size_t> msg_counter_; // total # of messages processed in this pool
|
||||||
q_type q_;
|
q_type q_;
|
||||||
|
@ -3,12 +3,6 @@
|
|||||||
#include "spdlog/sinks/simple_file_sink.h"
|
#include "spdlog/sinks/simple_file_sink.h"
|
||||||
#include "test_sink.h"
|
#include "test_sink.h"
|
||||||
|
|
||||||
// std::unique_ptr<spdlog::async_logger> create_logger(size_t tp_queue_size, size_t tp_threads)
|
|
||||||
//{
|
|
||||||
// auto tp = std::make_shared<details::thread_pool>(8192, 1);
|
|
||||||
// auto logger = std::make_shared<async_logger>("as", test_sink, tp, async_overflow_policy::block_retry);
|
|
||||||
//}
|
|
||||||
|
|
||||||
TEST_CASE("basic async test ", "[async]")
|
TEST_CASE("basic async test ", "[async]")
|
||||||
{
|
{
|
||||||
using namespace spdlog;
|
using namespace spdlog;
|
||||||
@ -25,7 +19,7 @@ TEST_CASE("basic async test ", "[async]")
|
|||||||
logger->flush();
|
logger->flush();
|
||||||
}
|
}
|
||||||
REQUIRE(test_sink->msg_counter() == messages);
|
REQUIRE(test_sink->msg_counter() == messages);
|
||||||
REQUIRE(test_sink->flushed_msg_counter() == messages);
|
REQUIRE(test_sink->flush_counter() == 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_CASE("discard policy ", "[async]")
|
TEST_CASE("discard policy ", "[async]")
|
||||||
@ -43,8 +37,7 @@ TEST_CASE("discard policy ", "[async]")
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
REQUIRE(test_sink->msg_counter() < messages);
|
REQUIRE(test_sink->msg_counter() < messages);
|
||||||
REQUIRE(test_sink->flushed_msg_counter() < messages);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_CASE("flush", "[async]")
|
TEST_CASE("flush", "[async]")
|
||||||
@ -65,7 +58,27 @@ TEST_CASE("flush", "[async]")
|
|||||||
}
|
}
|
||||||
std::this_thread::sleep_for(std::chrono::milliseconds(250));
|
std::this_thread::sleep_for(std::chrono::milliseconds(250));
|
||||||
REQUIRE(test_sink->msg_counter() == messages);
|
REQUIRE(test_sink->msg_counter() == messages);
|
||||||
REQUIRE(test_sink->flushed_msg_counter() == messages);
|
REQUIRE(test_sink->flush_counter() == 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST_CASE("tp->wait_empty() ", "[async]")
|
||||||
|
{
|
||||||
|
using namespace spdlog;
|
||||||
|
auto test_sink = std::make_shared<sinks::test_sink_mt>();
|
||||||
|
test_sink->set_delay(std::chrono::milliseconds(5));
|
||||||
|
size_t messages = 50;
|
||||||
|
|
||||||
|
auto tp = std::make_shared<details::thread_pool>(messages, 2);
|
||||||
|
auto logger = std::make_shared<async_logger>("as", test_sink, tp, async_overflow_policy::block_retry);
|
||||||
|
for (size_t i = 0; i < messages; i++)
|
||||||
|
{
|
||||||
|
logger->info("Hello message #{}", i);
|
||||||
|
}
|
||||||
|
logger->flush();
|
||||||
|
tp->wait_empty();
|
||||||
|
|
||||||
|
REQUIRE(test_sink->msg_counter() == messages);
|
||||||
|
REQUIRE(test_sink->flush_counter() == 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_CASE("multi threads", "[async]")
|
TEST_CASE("multi threads", "[async]")
|
||||||
@ -88,17 +101,18 @@ TEST_CASE("multi threads", "[async]")
|
|||||||
logger->info("Hello message #{}", j);
|
logger->info("Hello message #{}", j);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
logger->flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
for (auto &t : threads)
|
for (auto &t : threads)
|
||||||
{
|
{
|
||||||
t.join();
|
t.join();
|
||||||
}
|
}
|
||||||
logger->flush();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
REQUIRE(test_sink->msg_counter() == messages * n_threads);
|
REQUIRE(test_sink->msg_counter() == messages * n_threads);
|
||||||
REQUIRE(test_sink->flushed_msg_counter() == messages * n_threads);
|
REQUIRE(test_sink->flush_counter() == n_threads);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_CASE("to_file", "[async]")
|
TEST_CASE("to_file", "[async]")
|
||||||
|
@ -8,7 +8,9 @@
|
|||||||
#include "spdlog/details/null_mutex.h"
|
#include "spdlog/details/null_mutex.h"
|
||||||
#include "spdlog/sinks/base_sink.h"
|
#include "spdlog/sinks/base_sink.h"
|
||||||
|
|
||||||
|
#include <chrono>
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
|
#include <thread>
|
||||||
|
|
||||||
namespace spdlog {
|
namespace spdlog {
|
||||||
namespace sinks {
|
namespace sinks {
|
||||||
@ -22,23 +24,30 @@ public:
|
|||||||
return msg_counter_;
|
return msg_counter_;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t flushed_msg_counter()
|
size_t flush_counter()
|
||||||
{
|
{
|
||||||
return flushed_msg_counter_;
|
return flush_counter_;
|
||||||
|
}
|
||||||
|
|
||||||
|
void set_delay(std::chrono::milliseconds delay)
|
||||||
|
{
|
||||||
|
delay_ = delay;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void _sink_it(const details::log_msg &) override
|
void _sink_it(const details::log_msg &) override
|
||||||
{
|
{
|
||||||
msg_counter_++;
|
msg_counter_++;
|
||||||
|
std::this_thread::sleep_for(delay_);
|
||||||
}
|
}
|
||||||
|
|
||||||
void _flush() override
|
void _flush() override
|
||||||
{
|
{
|
||||||
flushed_msg_counter_ += msg_counter_;
|
flush_counter_++;
|
||||||
}
|
}
|
||||||
size_t msg_counter_{0};
|
size_t msg_counter_{0};
|
||||||
size_t flushed_msg_counter_{0};
|
size_t flush_counter_{0};
|
||||||
|
std::chrono::milliseconds delay_{0};
|
||||||
};
|
};
|
||||||
|
|
||||||
using test_sink_mt = test_sink<std::mutex>;
|
using test_sink_mt = test_sink<std::mutex>;
|
||||||
|
Loading…
Reference in New Issue
Block a user