123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- #ifndef BOOST_ASIO_POSIX_BASIC_DESCRIPTOR_HPP
- #define BOOST_ASIO_POSIX_BASIC_DESCRIPTOR_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif
- #include <boost/asio/detail/push_options.hpp>
- #include <boost/asio/detail/push_options.hpp>
- #include <boost/config.hpp>
- #include <boost/asio/detail/pop_options.hpp>
- #include <boost/asio/basic_io_object.hpp>
- #include <boost/asio/error.hpp>
- #include <boost/asio/posix/descriptor_base.hpp>
- #include <boost/asio/detail/throw_error.hpp>
- namespace boost {
- namespace asio {
- namespace posix {
- template <typename DescriptorService>
- class basic_descriptor
- : public basic_io_object<DescriptorService>,
- public descriptor_base
- {
- public:
-
- typedef typename DescriptorService::native_type native_type;
-
- typedef basic_descriptor<DescriptorService> lowest_layer_type;
-
-
- explicit basic_descriptor(boost::asio::io_service& io_service)
- : basic_io_object<DescriptorService>(io_service)
- {
- }
-
-
- basic_descriptor(boost::asio::io_service& io_service,
- const native_type& native_descriptor)
- : basic_io_object<DescriptorService>(io_service)
- {
- boost::system::error_code ec;
- this->service.assign(this->implementation, native_descriptor, ec);
- boost::asio::detail::throw_error(ec);
- }
-
-
- lowest_layer_type& lowest_layer()
- {
- return *this;
- }
-
-
- const lowest_layer_type& lowest_layer() const
- {
- return *this;
- }
-
-
- void assign(const native_type& native_descriptor)
- {
- boost::system::error_code ec;
- this->service.assign(this->implementation, native_descriptor, ec);
- boost::asio::detail::throw_error(ec);
- }
-
-
- boost::system::error_code assign(const native_type& native_descriptor,
- boost::system::error_code& ec)
- {
- return this->service.assign(this->implementation, native_descriptor, ec);
- }
-
- bool is_open() const
- {
- return this->service.is_open(this->implementation);
- }
-
-
- void close()
- {
- boost::system::error_code ec;
- this->service.close(this->implementation, ec);
- boost::asio::detail::throw_error(ec);
- }
-
-
- boost::system::error_code close(boost::system::error_code& ec)
- {
- return this->service.close(this->implementation, ec);
- }
-
-
- native_type native()
- {
- return this->service.native(this->implementation);
- }
-
-
- void cancel()
- {
- boost::system::error_code ec;
- this->service.cancel(this->implementation, ec);
- boost::asio::detail::throw_error(ec);
- }
-
-
- boost::system::error_code cancel(boost::system::error_code& ec)
- {
- return this->service.cancel(this->implementation, ec);
- }
-
-
- template <typename IoControlCommand>
- void io_control(IoControlCommand& command)
- {
- boost::system::error_code ec;
- this->service.io_control(this->implementation, command, ec);
- boost::asio::detail::throw_error(ec);
- }
-
-
- template <typename IoControlCommand>
- boost::system::error_code io_control(IoControlCommand& command,
- boost::system::error_code& ec)
- {
- return this->service.io_control(this->implementation, command, ec);
- }
- protected:
-
- ~basic_descriptor()
- {
- }
- };
- }
- }
- }
- #include <boost/asio/detail/pop_options.hpp>
- #endif
|