123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- #ifndef BOOST_ASIO_WINDOWS_BASIC_HANDLE_HPP
- #define BOOST_ASIO_WINDOWS_BASIC_HANDLE_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/detail/throw_error.hpp>
- namespace boost {
- namespace asio {
- namespace windows {
- template <typename HandleService>
- class basic_handle
- : public basic_io_object<HandleService>
- {
- public:
-
- typedef typename HandleService::native_type native_type;
-
- typedef basic_handle<HandleService> lowest_layer_type;
-
-
- explicit basic_handle(boost::asio::io_service& io_service)
- : basic_io_object<HandleService>(io_service)
- {
- }
-
-
- basic_handle(boost::asio::io_service& io_service,
- const native_type& native_handle)
- : basic_io_object<HandleService>(io_service)
- {
- boost::system::error_code ec;
- this->service.assign(this->implementation, native_handle, 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_handle)
- {
- boost::system::error_code ec;
- this->service.assign(this->implementation, native_handle, ec);
- boost::asio::detail::throw_error(ec);
- }
-
-
- boost::system::error_code assign(const native_type& native_handle,
- boost::system::error_code& ec)
- {
- return this->service.assign(this->implementation, native_handle, 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);
- }
- protected:
-
- ~basic_handle()
- {
- }
- };
- }
- }
- }
- #include <boost/asio/detail/pop_options.hpp>
- #endif
|