mirror of
https://github.com/boostorg/asio.git
synced 2026-01-19 04:02:09 +00:00
434 lines
11 KiB
C++
434 lines
11 KiB
C++
//
|
|
// thread_pool.cpp
|
|
// ~~~~~~~~~~~~~~~
|
|
//
|
|
// Copyright (c) 2003-2025 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
// Disable autolinking for unit tests.
|
|
#if !defined(BOOST_ALL_NO_LIB)
|
|
#define BOOST_ALL_NO_LIB 1
|
|
#endif // !defined(BOOST_ALL_NO_LIB)
|
|
|
|
// Test that header file is self-contained.
|
|
#include <boost/asio/thread_pool.hpp>
|
|
|
|
#include <functional>
|
|
#include <boost/asio/dispatch.hpp>
|
|
#include <boost/asio/post.hpp>
|
|
#include "unit_test.hpp"
|
|
|
|
using namespace boost::asio;
|
|
namespace bindns = std;
|
|
|
|
void increment(int* count)
|
|
{
|
|
++(*count);
|
|
}
|
|
|
|
void decrement_to_zero(thread_pool* pool, int* count)
|
|
{
|
|
if (*count > 0)
|
|
{
|
|
--(*count);
|
|
|
|
int before_value = *count;
|
|
boost::asio::post(*pool, bindns::bind(decrement_to_zero, pool, count));
|
|
|
|
// Handler execution cannot nest, so count value should remain unchanged.
|
|
BOOST_ASIO_CHECK(*count == before_value);
|
|
}
|
|
}
|
|
|
|
void nested_decrement_to_zero(thread_pool* pool, int* count)
|
|
{
|
|
if (*count > 0)
|
|
{
|
|
--(*count);
|
|
|
|
boost::asio::dispatch(*pool,
|
|
bindns::bind(nested_decrement_to_zero, pool, count));
|
|
|
|
// Handler execution is nested, so count value should now be zero.
|
|
BOOST_ASIO_CHECK(*count == 0);
|
|
}
|
|
}
|
|
|
|
void thread_pool_test()
|
|
{
|
|
thread_pool pool(1);
|
|
|
|
int count1 = 0;
|
|
boost::asio::post(pool, bindns::bind(increment, &count1));
|
|
|
|
int count2 = 10;
|
|
boost::asio::post(pool, bindns::bind(decrement_to_zero, &pool, &count2));
|
|
|
|
int count3 = 10;
|
|
boost::asio::post(pool, bindns::bind(nested_decrement_to_zero, &pool, &count3));
|
|
|
|
pool.wait();
|
|
|
|
BOOST_ASIO_CHECK(count1 == 1);
|
|
BOOST_ASIO_CHECK(count2 == 0);
|
|
BOOST_ASIO_CHECK(count3 == 0);
|
|
}
|
|
|
|
class test_service : public boost::asio::execution_context::service
|
|
{
|
|
public:
|
|
#if defined(BOOST_ASIO_NO_TYPEID)
|
|
static boost::asio::execution_context::id id;
|
|
#endif // defined(BOOST_ASIO_NO_TYPEID)
|
|
|
|
typedef test_service key_type;
|
|
|
|
test_service(boost::asio::execution_context& ctx)
|
|
: boost::asio::execution_context::service(ctx)
|
|
{
|
|
}
|
|
|
|
private:
|
|
virtual void shutdown() {}
|
|
};
|
|
|
|
#if defined(BOOST_ASIO_NO_TYPEID)
|
|
boost::asio::execution_context::id test_service::id;
|
|
#endif // defined(BOOST_ASIO_NO_TYPEID)
|
|
|
|
class test_context_service : public boost::asio::execution_context::service
|
|
{
|
|
public:
|
|
static boost::asio::execution_context::id id;
|
|
|
|
test_context_service(boost::asio::execution_context& c, int value = 0)
|
|
: boost::asio::execution_context::service(c),
|
|
value_(value)
|
|
{
|
|
}
|
|
|
|
int get_value() const
|
|
{
|
|
return value_;
|
|
}
|
|
|
|
private:
|
|
virtual void shutdown() {}
|
|
|
|
int value_;
|
|
};
|
|
|
|
boost::asio::execution_context::id test_context_service::id;
|
|
|
|
class test_context_service_maker :
|
|
public boost::asio::execution_context::service_maker
|
|
{
|
|
public:
|
|
void make(boost::asio::execution_context& ctx) const override
|
|
{
|
|
(void)boost::asio::make_service<test_context_service>(ctx, 42);
|
|
}
|
|
};
|
|
|
|
void thread_pool_service_test()
|
|
{
|
|
boost::asio::thread_pool pool1(1);
|
|
boost::asio::thread_pool pool2(1);
|
|
boost::asio::thread_pool pool3(1);
|
|
|
|
// Implicit service registration.
|
|
|
|
boost::asio::use_service<test_service>(pool1);
|
|
|
|
BOOST_ASIO_CHECK(boost::asio::has_service<test_service>(pool1));
|
|
|
|
test_service* svc1 = new test_service(pool1);
|
|
try
|
|
{
|
|
boost::asio::add_service(pool1, svc1);
|
|
BOOST_ASIO_ERROR("add_service did not throw");
|
|
}
|
|
catch (boost::asio::service_already_exists&)
|
|
{
|
|
}
|
|
delete svc1;
|
|
|
|
// Explicit service registration.
|
|
|
|
test_service& svc2 = boost::asio::make_service<test_service>(pool2);
|
|
|
|
BOOST_ASIO_CHECK(boost::asio::has_service<test_service>(pool2));
|
|
BOOST_ASIO_CHECK(&boost::asio::use_service<test_service>(pool2) == &svc2);
|
|
|
|
test_service* svc3 = new test_service(pool2);
|
|
try
|
|
{
|
|
boost::asio::add_service(pool2, svc3);
|
|
BOOST_ASIO_ERROR("add_service did not throw");
|
|
}
|
|
catch (boost::asio::service_already_exists&)
|
|
{
|
|
}
|
|
delete svc3;
|
|
|
|
// Explicit registration with invalid owner.
|
|
|
|
test_service* svc4 = new test_service(pool2);
|
|
try
|
|
{
|
|
boost::asio::add_service(pool3, svc4);
|
|
BOOST_ASIO_ERROR("add_service did not throw");
|
|
}
|
|
catch (boost::asio::invalid_service_owner&)
|
|
{
|
|
}
|
|
delete svc4;
|
|
|
|
BOOST_ASIO_CHECK(!boost::asio::has_service<test_service>(pool3));
|
|
|
|
// Initial service registration.
|
|
|
|
boost::asio::thread_pool pool4{1, test_context_service_maker{}};
|
|
|
|
BOOST_ASIO_CHECK(boost::asio::has_service<test_context_service>(pool4));
|
|
BOOST_ASIO_CHECK(boost::asio::use_service<test_context_service>(pool4).get_value()
|
|
== 42);
|
|
}
|
|
|
|
void thread_pool_executor_query_test()
|
|
{
|
|
thread_pool pool(1);
|
|
|
|
BOOST_ASIO_CHECK(
|
|
&boost::asio::query(pool.executor(),
|
|
boost::asio::execution::context)
|
|
== &pool);
|
|
|
|
BOOST_ASIO_CHECK(
|
|
boost::asio::query(pool.executor(),
|
|
boost::asio::execution::blocking)
|
|
== boost::asio::execution::blocking.possibly);
|
|
|
|
BOOST_ASIO_CHECK(
|
|
boost::asio::query(pool.executor(),
|
|
boost::asio::execution::blocking.possibly)
|
|
== boost::asio::execution::blocking.possibly);
|
|
|
|
BOOST_ASIO_CHECK(
|
|
boost::asio::query(pool.executor(),
|
|
boost::asio::execution::outstanding_work)
|
|
== boost::asio::execution::outstanding_work.untracked);
|
|
|
|
BOOST_ASIO_CHECK(
|
|
boost::asio::query(pool.executor(),
|
|
boost::asio::execution::outstanding_work.untracked)
|
|
== boost::asio::execution::outstanding_work.untracked);
|
|
|
|
BOOST_ASIO_CHECK(
|
|
boost::asio::query(pool.executor(),
|
|
boost::asio::execution::relationship)
|
|
== boost::asio::execution::relationship.fork);
|
|
|
|
BOOST_ASIO_CHECK(
|
|
boost::asio::query(pool.executor(),
|
|
boost::asio::execution::relationship.fork)
|
|
== boost::asio::execution::relationship.fork);
|
|
|
|
BOOST_ASIO_CHECK(
|
|
boost::asio::query(pool.executor(),
|
|
boost::asio::execution::mapping)
|
|
== boost::asio::execution::mapping.thread);
|
|
|
|
BOOST_ASIO_CHECK(
|
|
boost::asio::query(pool.executor(),
|
|
boost::asio::execution::inline_exception_handling)
|
|
== boost::asio::execution::inline_exception_handling.terminate);
|
|
|
|
BOOST_ASIO_CHECK(
|
|
boost::asio::query(pool.executor(),
|
|
boost::asio::execution::allocator)
|
|
== std::allocator<void>());
|
|
|
|
BOOST_ASIO_CHECK(
|
|
boost::asio::query(pool.executor(),
|
|
boost::asio::execution::occupancy)
|
|
== 1);
|
|
}
|
|
|
|
void thread_pool_executor_execute_test()
|
|
{
|
|
int count = 0;
|
|
thread_pool pool(1);
|
|
|
|
pool.executor().execute(bindns::bind(increment, &count));
|
|
|
|
boost::asio::require(pool.executor(),
|
|
boost::asio::execution::blocking.possibly
|
|
).execute(bindns::bind(increment, &count));
|
|
|
|
boost::asio::require(pool.executor(),
|
|
boost::asio::execution::blocking.always
|
|
).execute(bindns::bind(increment, &count));
|
|
|
|
boost::asio::require(pool.executor(),
|
|
boost::asio::execution::blocking.never
|
|
).execute(bindns::bind(increment, &count));
|
|
|
|
boost::asio::require(pool.executor(),
|
|
boost::asio::execution::blocking.never,
|
|
boost::asio::execution::outstanding_work.tracked
|
|
).execute(bindns::bind(increment, &count));
|
|
|
|
boost::asio::require(pool.executor(),
|
|
boost::asio::execution::blocking.never,
|
|
boost::asio::execution::outstanding_work.untracked
|
|
).execute(bindns::bind(increment, &count));
|
|
|
|
boost::asio::require(pool.executor(),
|
|
boost::asio::execution::blocking.never,
|
|
boost::asio::execution::outstanding_work.untracked,
|
|
boost::asio::execution::relationship.fork
|
|
).execute(bindns::bind(increment, &count));
|
|
|
|
boost::asio::require(pool.executor(),
|
|
boost::asio::execution::blocking.never,
|
|
boost::asio::execution::outstanding_work.untracked,
|
|
boost::asio::execution::relationship.continuation
|
|
).execute(bindns::bind(increment, &count));
|
|
|
|
boost::asio::prefer(
|
|
boost::asio::require(pool.executor(),
|
|
boost::asio::execution::blocking.never,
|
|
boost::asio::execution::outstanding_work.untracked,
|
|
boost::asio::execution::relationship.continuation),
|
|
boost::asio::execution::allocator(std::allocator<void>())
|
|
).execute(bindns::bind(increment, &count));
|
|
|
|
boost::asio::prefer(
|
|
boost::asio::require(pool.executor(),
|
|
boost::asio::execution::blocking.never,
|
|
boost::asio::execution::outstanding_work.untracked,
|
|
boost::asio::execution::relationship.continuation),
|
|
boost::asio::execution::allocator
|
|
).execute(bindns::bind(increment, &count));
|
|
|
|
pool.wait();
|
|
|
|
BOOST_ASIO_CHECK(count == 10);
|
|
}
|
|
|
|
template <typename T>
|
|
class custom_allocator
|
|
{
|
|
public:
|
|
using value_type = T;
|
|
|
|
custom_allocator(int* live_count, int* total_count)
|
|
: live_count_(live_count),
|
|
total_count_(total_count)
|
|
{
|
|
}
|
|
|
|
template <typename U>
|
|
custom_allocator(const custom_allocator<U>& other) noexcept
|
|
: live_count_(other.live_count_),
|
|
total_count_(other.total_count_)
|
|
{
|
|
}
|
|
|
|
bool operator==(const custom_allocator& other) const noexcept
|
|
{
|
|
return &live_count_ == &other.live_count_ &&
|
|
&total_count_ == &other.total_count_;;
|
|
}
|
|
|
|
bool operator!=(const custom_allocator& other) const noexcept
|
|
{
|
|
return &live_count_ != &other.live_count_ ||
|
|
&total_count_ != &other.total_count_;
|
|
}
|
|
|
|
T* allocate(std::size_t n) const
|
|
{
|
|
++(*live_count_);
|
|
++(*total_count_);
|
|
return static_cast<T*>(::operator new(sizeof(T) * n));
|
|
}
|
|
|
|
void deallocate(T* p, std::size_t /*n*/) const
|
|
{
|
|
--(*live_count_);
|
|
::operator delete(p);
|
|
}
|
|
|
|
private:
|
|
template <typename> friend class custom_allocator;
|
|
|
|
int* live_count_;
|
|
int* total_count_;
|
|
};
|
|
|
|
void thread_pool_allocator_test()
|
|
{
|
|
int live_count;
|
|
int total_count;
|
|
|
|
#if !defined(BOOST_ASIO_NO_TS_EXECUTORS)
|
|
{
|
|
live_count = 0;
|
|
total_count = 0;
|
|
thread_pool pool1(std::allocator_arg,
|
|
custom_allocator<int>(&live_count, &total_count));
|
|
(void)pool1;
|
|
|
|
BOOST_ASIO_CHECK(live_count > 0);
|
|
BOOST_ASIO_CHECK(total_count > 0);
|
|
}
|
|
|
|
BOOST_ASIO_CHECK(live_count == 0);
|
|
BOOST_ASIO_CHECK(total_count > 0);
|
|
#endif // !defined(BOOST_ASIO_NO_TS_EXECUTORS)
|
|
|
|
{
|
|
live_count = 0;
|
|
total_count = 0;
|
|
thread_pool pool2(std::allocator_arg,
|
|
custom_allocator<int>(&live_count, &total_count), 1);
|
|
(void)pool2;
|
|
|
|
BOOST_ASIO_CHECK(live_count > 0);
|
|
BOOST_ASIO_CHECK(total_count > 0);
|
|
}
|
|
|
|
BOOST_ASIO_CHECK(live_count == 0);
|
|
BOOST_ASIO_CHECK(total_count > 0);
|
|
|
|
{
|
|
live_count = 0;
|
|
total_count = 0;
|
|
thread_pool pool3(std::allocator_arg,
|
|
custom_allocator<int>(&live_count, &total_count), 1,
|
|
boost::asio::config_from_string(""));
|
|
(void)pool3;
|
|
|
|
BOOST_ASIO_CHECK(live_count > 0);
|
|
BOOST_ASIO_CHECK(total_count > 0);
|
|
}
|
|
|
|
BOOST_ASIO_CHECK(live_count == 0);
|
|
BOOST_ASIO_CHECK(total_count > 0);
|
|
}
|
|
|
|
BOOST_ASIO_TEST_SUITE
|
|
(
|
|
"thread_pool",
|
|
BOOST_ASIO_TEST_CASE(thread_pool_test)
|
|
BOOST_ASIO_TEST_CASE(thread_pool_service_test)
|
|
BOOST_ASIO_TEST_CASE(thread_pool_executor_query_test)
|
|
BOOST_ASIO_TEST_CASE(thread_pool_executor_execute_test)
|
|
BOOST_ASIO_TEST_CASE(thread_pool_allocator_test)
|
|
)
|