| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- //
- // impl/execution_context.hpp
- // ~~~~~~~~~~~~~~~~~~~~~~~~~~
- //
- // 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)
- //
- #ifndef BOOST_ASIO_IMPL_EXECUTION_CONTEXT_HPP
- #define BOOST_ASIO_IMPL_EXECUTION_CONTEXT_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
- #include <cstring>
- #include <boost/asio/detail/handler_type_requirements.hpp>
- #include <boost/asio/detail/memory.hpp>
- #include <boost/asio/detail/service_registry.hpp>
- #include <boost/asio/detail/throw_exception.hpp>
- #include <boost/asio/detail/push_options.hpp>
- namespace boost {
- namespace asio {
- template <typename Allocator>
- execution_context::execution_context(allocator_arg_t, const Allocator& a)
- : execution_context(detail::allocate_object<allocator_impl<Allocator>>(a, a))
- {
- }
- template <typename Allocator>
- execution_context::execution_context(allocator_arg_t, const Allocator& a,
- const service_maker& initial_services)
- : execution_context(detail::allocate_object<allocator_impl<Allocator>>(a, a),
- initial_services)
- {
- }
- inline execution_context::auto_allocator_ptr::~auto_allocator_ptr()
- {
- ptr_->destroy();
- }
- template <typename Allocator>
- void execution_context::allocator_impl<Allocator>::destroy()
- {
- detail::deallocate_object(allocator_, this);
- }
- template <typename Allocator>
- void* execution_context::allocator_impl<Allocator>::allocate(
- std::size_t size, std::size_t align)
- {
- typename std::allocator_traits<Allocator>::template
- rebind_alloc<unsigned char> alloc(allocator_);
- std::size_t space = size + align - 1;
- unsigned char* base = std::allocator_traits<decltype(alloc)>::allocate(
- alloc, space + sizeof(std::ptrdiff_t));
- void* p = base;
- if (detail::align(align, size, p, space))
- {
- std::ptrdiff_t off = static_cast<unsigned char*>(p) - base;
- std::memcpy(static_cast<unsigned char*>(p) + size, &off, sizeof(off));
- return p;
- }
- std::bad_alloc ex;
- boost::asio::detail::throw_exception(ex);
- return 0;
- }
- template <typename Allocator>
- void execution_context::allocator_impl<Allocator>::deallocate(
- void* ptr, std::size_t size, std::size_t align)
- {
- if (ptr)
- {
- typename std::allocator_traits<Allocator>::template
- rebind_alloc<unsigned char> alloc(allocator_);
- std::ptrdiff_t off;
- std::memcpy(&off, static_cast<unsigned char*>(ptr) + size, sizeof(off));
- unsigned char* base = static_cast<unsigned char*>(ptr) - off;
- std::allocator_traits<decltype(alloc)>::deallocate(
- alloc, base, size + align - 1 + sizeof(std::ptrdiff_t));
- }
- }
- #if !defined(GENERATING_DOCUMENTATION)
- template <typename Service>
- inline Service& use_service(execution_context& e)
- {
- // Check that Service meets the necessary type requirements.
- (void)static_cast<execution_context::service*>(static_cast<Service*>(0));
- return e.service_registry_->template use_service<Service>();
- }
- template <typename Service, typename... Args>
- Service& make_service(execution_context& e, Args&&... args)
- {
- // Check that Service meets the necessary type requirements.
- (void)static_cast<execution_context::service*>(static_cast<Service*>(0));
- return e.service_registry_->template make_service<Service>(
- static_cast<Args&&>(args)...);
- }
- template <typename Service>
- BOOST_ASIO_DEPRECATED_MSG("Use make_service()")
- inline void add_service(execution_context& e, Service* svc)
- {
- // Check that Service meets the necessary type requirements.
- (void)static_cast<execution_context::service*>(static_cast<Service*>(0));
- e.service_registry_->template add_service<Service>(svc);
- }
- template <typename Service>
- inline bool has_service(execution_context& e)
- {
- // Check that Service meets the necessary type requirements.
- (void)static_cast<execution_context::service*>(static_cast<Service*>(0));
- return e.service_registry_->template has_service<Service>();
- }
- #endif // !defined(GENERATING_DOCUMENTATION)
- inline execution_context& execution_context::service::context()
- {
- return owner_;
- }
- } // namespace asio
- } // namespace boost
- #include <boost/asio/detail/pop_options.hpp>
- #endif // BOOST_ASIO_IMPL_EXECUTION_CONTEXT_HPP
|