Skip to content

Commit

Permalink
Merge pull request #1735 from o2gy84/v1.x
Browse files Browse the repository at this point in the history
Ability to get size of messages queue of async thread pool
  • Loading branch information
gabime authored Nov 13, 2020
2 parents 18e3f07 + e17ee87 commit eebb921
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/spdlog/details/mpmc_blocking_q.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,12 @@ class mpmc_blocking_queue
return q_.overrun_counter();
}

size_t size()
{
std::unique_lock<std::mutex> lock(queue_mutex_);
return q_.size();
}

private:
std::mutex queue_mutex_;
std::condition_variable push_cv_;
Expand Down
5 changes: 5 additions & 0 deletions include/spdlog/details/thread_pool-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ size_t SPDLOG_INLINE thread_pool::overrun_counter()
return q_.overrun_counter();
}

size_t SPDLOG_INLINE thread_pool::queue_size()
{
return q_.size();
}

void SPDLOG_INLINE thread_pool::post_async_msg_(async_msg &&new_msg, async_overflow_policy overflow_policy)
{
if (overflow_policy == async_overflow_policy::block)
Expand Down
1 change: 1 addition & 0 deletions include/spdlog/details/thread_pool.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ class SPDLOG_API thread_pool
void post_log(async_logger_ptr &&worker_ptr, const details::log_msg &msg, async_overflow_policy overflow_policy);
void post_flush(async_logger_ptr &&worker_ptr, async_overflow_policy overflow_policy);
size_t overrun_counter();
size_t queue_size();

private:
q_type q_;
Expand Down

0 comments on commit eebb921

Please sign in to comment.