// // descriptor_ops.hpp // ~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2008 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 ASIO_DETAIL_DESCRIPTOR_OPS_HPP #define ASIO_DETAIL_DESCRIPTOR_OPS_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include "asio/detail/push_options.hpp" #include "asio/detail/push_options.hpp" #include #include #include "asio/detail/pop_options.hpp" #include "asio/error.hpp" #include "asio/detail/socket_types.hpp" #if !defined(BOOST_WINDOWS) && !defined(__CYGWIN__) namespace asio { namespace detail { namespace descriptor_ops { inline void clear_error(asio::error_code& ec) { errno = 0; ec = asio::error_code(); } template inline ReturnType error_wrapper(ReturnType return_value, asio::error_code& ec) { ec = asio::error_code(errno, asio::error::get_system_category()); return return_value; } inline int open(const char* path, int flags, asio::error_code& ec) { clear_error(ec); return error_wrapper(::open(path, flags), ec); } inline int close(int d, asio::error_code& ec) { clear_error(ec); return error_wrapper(::close(d), ec); } inline void init_buf_iov_base(void*& base, void* addr) { base = addr; } template inline void init_buf_iov_base(T& base, void* addr) { base = static_cast(addr); } typedef iovec buf; inline void init_buf(buf& b, void* data, size_t size) { init_buf_iov_base(b.iov_base, data); b.iov_len = size; } inline void init_buf(buf& b, const void* data, size_t size) { init_buf_iov_base(b.iov_base, const_cast(data)); b.iov_len = size; } inline int scatter_read(int d, buf* bufs, size_t count, asio::error_code& ec) { clear_error(ec); return error_wrapper(::readv(d, bufs, static_cast(count)), ec); } inline int gather_write(int d, const buf* bufs, size_t count, asio::error_code& ec) { clear_error(ec); return error_wrapper(::writev(d, bufs, static_cast(count)), ec); } inline int ioctl(int d, long cmd, ioctl_arg_type* arg, asio::error_code& ec) { clear_error(ec); return error_wrapper(::ioctl(d, cmd, arg), ec); } inline int fcntl(int d, long cmd, asio::error_code& ec) { clear_error(ec); return error_wrapper(::fcntl(d, cmd), ec); } inline int fcntl(int d, long cmd, long arg, asio::error_code& ec) { clear_error(ec); return error_wrapper(::fcntl(d, cmd, arg), ec); } inline int poll_read(int d, asio::error_code& ec) { clear_error(ec); pollfd fds; fds.fd = d; fds.events = POLLIN; fds.revents = 0; clear_error(ec); return error_wrapper(::poll(&fds, 1, -1), ec); } inline int poll_write(int d, asio::error_code& ec) { clear_error(ec); pollfd fds; fds.fd = d; fds.events = POLLOUT; fds.revents = 0; clear_error(ec); return error_wrapper(::poll(&fds, 1, -1), ec); } } // namespace descriptor_ops } // namespace detail } // namespace asio #endif // !defined(BOOST_WINDOWS) && !defined(__CYGWIN__) #include "asio/detail/pop_options.hpp" #endif // ASIO_DETAIL_DESCRIPTOR_OPS_HPP