123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- //
- // detail/impl/io_uring_file_service.ipp
- // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- //
- // Copyright (c) 2003-2023 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_IMPL_IO_URING_FILE_SERVICE_IPP
- #define ASIO_DETAIL_IMPL_IO_URING_FILE_SERVICE_IPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
- #include "asio/detail/config.hpp"
- #if defined(ASIO_HAS_FILE) \
- && defined(ASIO_HAS_IO_URING)
- #include <cstring>
- #include <sys/stat.h>
- #include "asio/detail/io_uring_file_service.hpp"
- #include "asio/detail/push_options.hpp"
- namespace asio {
- namespace detail {
- io_uring_file_service::io_uring_file_service(
- execution_context& context)
- : execution_context_service_base<io_uring_file_service>(context),
- descriptor_service_(context)
- {
- }
- void io_uring_file_service::shutdown()
- {
- descriptor_service_.shutdown();
- }
- asio::error_code io_uring_file_service::open(
- io_uring_file_service::implementation_type& impl,
- const char* path, file_base::flags open_flags,
- asio::error_code& ec)
- {
- if (is_open(impl))
- {
- ec = asio::error::already_open;
- ASIO_ERROR_LOCATION(ec);
- return ec;
- }
- descriptor_ops::state_type state = 0;
- int fd = descriptor_ops::open(path, static_cast<int>(open_flags), 0777, ec);
- if (fd < 0)
- {
- ASIO_ERROR_LOCATION(ec);
- return ec;
- }
- // We're done. Take ownership of the serial port descriptor.
- if (descriptor_service_.assign(impl, fd, ec))
- {
- asio::error_code ignored_ec;
- descriptor_ops::close(fd, state, ignored_ec);
- }
- (void)::posix_fadvise(native_handle(impl), 0, 0,
- impl.is_stream_ ? POSIX_FADV_SEQUENTIAL : POSIX_FADV_RANDOM);
- ASIO_ERROR_LOCATION(ec);
- return ec;
- }
- uint64_t io_uring_file_service::size(
- const io_uring_file_service::implementation_type& impl,
- asio::error_code& ec) const
- {
- struct stat s;
- int result = ::fstat(native_handle(impl), &s);
- descriptor_ops::get_last_error(ec, result != 0);
- ASIO_ERROR_LOCATION(ec);
- return !ec ? s.st_size : 0;
- }
- asio::error_code io_uring_file_service::resize(
- io_uring_file_service::implementation_type& impl,
- uint64_t n, asio::error_code& ec)
- {
- int result = ::ftruncate(native_handle(impl), n);
- descriptor_ops::get_last_error(ec, result != 0);
- ASIO_ERROR_LOCATION(ec);
- return ec;
- }
- asio::error_code io_uring_file_service::sync_all(
- io_uring_file_service::implementation_type& impl,
- asio::error_code& ec)
- {
- int result = ::fsync(native_handle(impl));
- descriptor_ops::get_last_error(ec, result != 0);
- return ec;
- }
- asio::error_code io_uring_file_service::sync_data(
- io_uring_file_service::implementation_type& impl,
- asio::error_code& ec)
- {
- #if defined(_POSIX_SYNCHRONIZED_IO)
- int result = ::fdatasync(native_handle(impl));
- #else // defined(_POSIX_SYNCHRONIZED_IO)
- int result = ::fsync(native_handle(impl));
- #endif // defined(_POSIX_SYNCHRONIZED_IO)
- descriptor_ops::get_last_error(ec, result != 0);
- ASIO_ERROR_LOCATION(ec);
- return ec;
- }
- uint64_t io_uring_file_service::seek(
- io_uring_file_service::implementation_type& impl, int64_t offset,
- file_base::seek_basis whence, asio::error_code& ec)
- {
- int64_t result = ::lseek(native_handle(impl), offset, whence);
- descriptor_ops::get_last_error(ec, result < 0);
- ASIO_ERROR_LOCATION(ec);
- return !ec ? static_cast<uint64_t>(result) : 0;
- }
- } // namespace detail
- } // namespace asio
- #include "asio/detail/pop_options.hpp"
- #endif // defined(ASIO_HAS_FILE)
- // && defined(ASIO_HAS_IO_URING)
- #endif // ASIO_DETAIL_IMPL_IO_URING_FILE_SERVICE_IPP
|