123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- #ifndef BOOST_ASIO_BASIC_IO_OBJECT_HPP
- #define BOOST_ASIO_BASIC_IO_OBJECT_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include <boost/asio/detail/config.hpp>
- #include <boost/asio/io_context.hpp>
- #include <boost/asio/detail/push_options.hpp>
- namespace boost {
- namespace asio {
- namespace detail
- {
-
- template <typename IoObjectService>
- class service_has_move
- {
- private:
- typedef IoObjectService service_type;
- typedef typename service_type::implementation_type implementation_type;
- template <typename T, typename U>
- static auto asio_service_has_move_eval(T* t, U* u)
- -> decltype(t->move_construct(*u, *u), char());
- static char (&asio_service_has_move_eval(...))[2];
- public:
- static const bool value =
- sizeof(asio_service_has_move_eval(
- static_cast<service_type*>(0),
- static_cast<implementation_type*>(0))) == 1;
- };
- }
- #if defined(GENERATING_DOCUMENTATION)
- template <typename IoObjectService>
- #else
- template <typename IoObjectService,
- bool Movable = detail::service_has_move<IoObjectService>::value>
- #endif
- class basic_io_object
- {
- public:
-
- typedef IoObjectService service_type;
-
- typedef typename service_type::implementation_type implementation_type;
- #if !defined(BOOST_ASIO_NO_DEPRECATED)
-
-
-
- boost::asio::io_context& get_io_context()
- {
- return service_.get_io_context();
- }
-
-
-
- boost::asio::io_context& get_io_service()
- {
- return service_.get_io_context();
- }
- #endif
-
- typedef boost::asio::io_context::executor_type executor_type;
-
- executor_type get_executor() noexcept
- {
- return service_.get_io_context().get_executor();
- }
- protected:
-
-
- explicit basic_io_object(boost::asio::io_context& io_context)
- : service_(boost::asio::use_service<IoObjectService>(io_context))
- {
- service_.construct(implementation_);
- }
- #if defined(GENERATING_DOCUMENTATION)
-
-
- basic_io_object(basic_io_object&& other);
-
-
- basic_io_object& operator=(basic_io_object&& other);
-
- template <typename IoObjectService1>
- basic_io_object(IoObjectService1& other_service,
- typename IoObjectService1::implementation_type& other_implementation);
- #endif
-
-
- ~basic_io_object()
- {
- service_.destroy(implementation_);
- }
-
- service_type& get_service()
- {
- return service_;
- }
-
- const service_type& get_service() const
- {
- return service_;
- }
-
- implementation_type& get_implementation()
- {
- return implementation_;
- }
-
- const implementation_type& get_implementation() const
- {
- return implementation_;
- }
- private:
- basic_io_object(const basic_io_object&);
- basic_io_object& operator=(const basic_io_object&);
-
- service_type& service_;
-
- implementation_type implementation_;
- };
- template <typename IoObjectService>
- class basic_io_object<IoObjectService, true>
- {
- public:
- typedef IoObjectService service_type;
- typedef typename service_type::implementation_type implementation_type;
- #if !defined(BOOST_ASIO_NO_DEPRECATED)
- boost::asio::io_context& get_io_context()
- {
- return service_->get_io_context();
- }
- boost::asio::io_context& get_io_service()
- {
- return service_->get_io_context();
- }
- #endif
- typedef boost::asio::io_context::executor_type executor_type;
- executor_type get_executor() noexcept
- {
- return service_->get_io_context().get_executor();
- }
- protected:
- explicit basic_io_object(boost::asio::io_context& io_context)
- : service_(&boost::asio::use_service<IoObjectService>(io_context))
- {
- service_->construct(implementation_);
- }
- basic_io_object(basic_io_object&& other)
- : service_(&other.get_service())
- {
- service_->move_construct(implementation_, other.implementation_);
- }
- template <typename IoObjectService1>
- basic_io_object(IoObjectService1& other_service,
- typename IoObjectService1::implementation_type& other_implementation)
- : service_(&boost::asio::use_service<IoObjectService>(
- other_service.get_io_context()))
- {
- service_->converting_move_construct(implementation_,
- other_service, other_implementation);
- }
- ~basic_io_object()
- {
- service_->destroy(implementation_);
- }
- basic_io_object& operator=(basic_io_object&& other)
- {
- service_->move_assign(implementation_,
- *other.service_, other.implementation_);
- service_ = other.service_;
- return *this;
- }
- service_type& get_service()
- {
- return *service_;
- }
- const service_type& get_service() const
- {
- return *service_;
- }
- implementation_type& get_implementation()
- {
- return implementation_;
- }
- const implementation_type& get_implementation() const
- {
- return implementation_;
- }
- private:
- basic_io_object(const basic_io_object&);
- void operator=(const basic_io_object&);
- IoObjectService* service_;
- implementation_type implementation_;
- };
- }
- }
- #include <boost/asio/detail/pop_options.hpp>
- #endif
|