mirror of
https://github.com/30hours/blah2.git
synced 2024-11-08 12:25:42 +00:00
262 lines
8.2 KiB
C++
262 lines
8.2 KiB
C++
//
|
|
// detail/io_uring_file_service.hpp
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
//
|
|
// Copyright (c) 2003-2022 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_IO_URING_FILE_SERVICE_HPP
|
|
#define ASIO_DETAIL_IO_URING_FILE_SERVICE_HPP
|
|
|
|
#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 <string>
|
|
#include "asio/detail/cstdint.hpp"
|
|
#include "asio/detail/descriptor_ops.hpp"
|
|
#include "asio/detail/io_uring_descriptor_service.hpp"
|
|
#include "asio/error.hpp"
|
|
#include "asio/execution_context.hpp"
|
|
#include "asio/file_base.hpp"
|
|
|
|
#include "asio/detail/push_options.hpp"
|
|
|
|
namespace asio {
|
|
namespace detail {
|
|
|
|
// Extend the io_uring_descriptor_service to provide file support.
|
|
class io_uring_file_service :
|
|
public execution_context_service_base<io_uring_file_service>
|
|
{
|
|
public:
|
|
typedef io_uring_descriptor_service descriptor_service;
|
|
|
|
// The native type of a file.
|
|
typedef descriptor_service::native_handle_type native_handle_type;
|
|
|
|
// The implementation type of the file.
|
|
class implementation_type : descriptor_service::implementation_type
|
|
{
|
|
private:
|
|
// Only this service will have access to the internal values.
|
|
friend class io_uring_file_service;
|
|
|
|
bool is_stream_;
|
|
};
|
|
|
|
ASIO_DECL io_uring_file_service(execution_context& context);
|
|
|
|
// Destroy all user-defined handler objects owned by the service.
|
|
ASIO_DECL void shutdown();
|
|
|
|
// Construct a new file implementation.
|
|
void construct(implementation_type& impl)
|
|
{
|
|
descriptor_service_.construct(impl);
|
|
impl.is_stream_ = false;
|
|
}
|
|
|
|
// Move-construct a new file implementation.
|
|
void move_construct(implementation_type& impl,
|
|
implementation_type& other_impl)
|
|
{
|
|
descriptor_service_.move_construct(impl, other_impl);
|
|
impl.is_stream_ = other_impl.is_stream_;
|
|
}
|
|
|
|
// Move-assign from another file implementation.
|
|
void move_assign(implementation_type& impl,
|
|
io_uring_file_service& other_service,
|
|
implementation_type& other_impl)
|
|
{
|
|
descriptor_service_.move_assign(impl,
|
|
other_service.descriptor_service_, other_impl);
|
|
impl.is_stream_ = other_impl.is_stream_;
|
|
}
|
|
|
|
// Destroy a file implementation.
|
|
void destroy(implementation_type& impl)
|
|
{
|
|
descriptor_service_.destroy(impl);
|
|
}
|
|
|
|
// Open the file using the specified path name.
|
|
ASIO_DECL asio::error_code open(implementation_type& impl,
|
|
const char* path, file_base::flags open_flags,
|
|
asio::error_code& ec);
|
|
|
|
// Assign a native descriptor to a file implementation.
|
|
asio::error_code assign(implementation_type& impl,
|
|
const native_handle_type& native_descriptor,
|
|
asio::error_code& ec)
|
|
{
|
|
return descriptor_service_.assign(impl, native_descriptor, ec);
|
|
}
|
|
|
|
// Set whether the implementation is stream-oriented.
|
|
void set_is_stream(implementation_type& impl, bool is_stream)
|
|
{
|
|
impl.is_stream_ = is_stream;
|
|
}
|
|
|
|
// Determine whether the file is open.
|
|
bool is_open(const implementation_type& impl) const
|
|
{
|
|
return descriptor_service_.is_open(impl);
|
|
}
|
|
|
|
// Destroy a file implementation.
|
|
asio::error_code close(implementation_type& impl,
|
|
asio::error_code& ec)
|
|
{
|
|
return descriptor_service_.close(impl, ec);
|
|
}
|
|
|
|
// Get the native file representation.
|
|
native_handle_type native_handle(const implementation_type& impl) const
|
|
{
|
|
return descriptor_service_.native_handle(impl);
|
|
}
|
|
|
|
// Release ownership of the native descriptor representation.
|
|
native_handle_type release(implementation_type& impl,
|
|
asio::error_code& ec)
|
|
{
|
|
ec = success_ec_;
|
|
return descriptor_service_.release(impl);
|
|
}
|
|
|
|
// Cancel all operations associated with the file.
|
|
asio::error_code cancel(implementation_type& impl,
|
|
asio::error_code& ec)
|
|
{
|
|
return descriptor_service_.cancel(impl, ec);
|
|
}
|
|
|
|
// Get the size of the file.
|
|
ASIO_DECL uint64_t size(const implementation_type& impl,
|
|
asio::error_code& ec) const;
|
|
|
|
// Alter the size of the file.
|
|
ASIO_DECL asio::error_code resize(implementation_type& impl,
|
|
uint64_t n, asio::error_code& ec);
|
|
|
|
// Synchronise the file to disk.
|
|
ASIO_DECL asio::error_code sync_all(implementation_type& impl,
|
|
asio::error_code& ec);
|
|
|
|
// Synchronise the file data to disk.
|
|
ASIO_DECL asio::error_code sync_data(implementation_type& impl,
|
|
asio::error_code& ec);
|
|
|
|
// Seek to a position in the file.
|
|
ASIO_DECL uint64_t seek(implementation_type& impl, int64_t offset,
|
|
file_base::seek_basis whence, asio::error_code& ec);
|
|
|
|
// Write the given data. Returns the number of bytes written.
|
|
template <typename ConstBufferSequence>
|
|
size_t write_some(implementation_type& impl,
|
|
const ConstBufferSequence& buffers, asio::error_code& ec)
|
|
{
|
|
return descriptor_service_.write_some(impl, buffers, ec);
|
|
}
|
|
|
|
// Start an asynchronous write. The data being written must be valid for the
|
|
// lifetime of the asynchronous operation.
|
|
template <typename ConstBufferSequence, typename Handler, typename IoExecutor>
|
|
void async_write_some(implementation_type& impl,
|
|
const ConstBufferSequence& buffers,
|
|
Handler& handler, const IoExecutor& io_ex)
|
|
{
|
|
descriptor_service_.async_write_some(impl, buffers, handler, io_ex);
|
|
}
|
|
|
|
// Write the given data at the specified location. Returns the number of
|
|
// bytes written.
|
|
template <typename ConstBufferSequence>
|
|
size_t write_some_at(implementation_type& impl, uint64_t offset,
|
|
const ConstBufferSequence& buffers, asio::error_code& ec)
|
|
{
|
|
return descriptor_service_.write_some_at(impl, offset, buffers, ec);
|
|
}
|
|
|
|
// Start an asynchronous write at the specified location. The data being
|
|
// written must be valid for the lifetime of the asynchronous operation.
|
|
template <typename ConstBufferSequence, typename Handler, typename IoExecutor>
|
|
void async_write_some_at(implementation_type& impl,
|
|
uint64_t offset, const ConstBufferSequence& buffers,
|
|
Handler& handler, const IoExecutor& io_ex)
|
|
{
|
|
descriptor_service_.async_write_some_at(
|
|
impl, offset, buffers, handler, io_ex);
|
|
}
|
|
|
|
// Read some data. Returns the number of bytes read.
|
|
template <typename MutableBufferSequence>
|
|
size_t read_some(implementation_type& impl,
|
|
const MutableBufferSequence& buffers, asio::error_code& ec)
|
|
{
|
|
return descriptor_service_.read_some(impl, buffers, ec);
|
|
}
|
|
|
|
// Start an asynchronous read. The buffer for the data being read must be
|
|
// valid for the lifetime of the asynchronous operation.
|
|
template <typename MutableBufferSequence,
|
|
typename Handler, typename IoExecutor>
|
|
void async_read_some(implementation_type& impl,
|
|
const MutableBufferSequence& buffers,
|
|
Handler& handler, const IoExecutor& io_ex)
|
|
{
|
|
descriptor_service_.async_read_some(impl, buffers, handler, io_ex);
|
|
}
|
|
|
|
// Read some data. Returns the number of bytes read.
|
|
template <typename MutableBufferSequence>
|
|
size_t read_some_at(implementation_type& impl, uint64_t offset,
|
|
const MutableBufferSequence& buffers, asio::error_code& ec)
|
|
{
|
|
return descriptor_service_.read_some_at(impl, offset, buffers, ec);
|
|
}
|
|
|
|
// Start an asynchronous read. The buffer for the data being read must be
|
|
// valid for the lifetime of the asynchronous operation.
|
|
template <typename MutableBufferSequence,
|
|
typename Handler, typename IoExecutor>
|
|
void async_read_some_at(implementation_type& impl,
|
|
uint64_t offset, const MutableBufferSequence& buffers,
|
|
Handler& handler, const IoExecutor& io_ex)
|
|
{
|
|
descriptor_service_.async_read_some_at(
|
|
impl, offset, buffers, handler, io_ex);
|
|
}
|
|
|
|
private:
|
|
// The implementation used for initiating asynchronous operations.
|
|
descriptor_service descriptor_service_;
|
|
|
|
// Cached success value to avoid accessing category singleton.
|
|
const asio::error_code success_ec_;
|
|
};
|
|
|
|
} // namespace detail
|
|
} // namespace asio
|
|
|
|
#include "asio/detail/pop_options.hpp"
|
|
|
|
#if defined(ASIO_HEADER_ONLY)
|
|
# include "asio/detail/impl/io_uring_file_service.ipp"
|
|
#endif // defined(ASIO_HEADER_ONLY)
|
|
|
|
#endif // defined(ASIO_HAS_FILE)
|
|
// && defined(ASIO_HAS_IO_URING)
|
|
|
|
#endif // ASIO_DETAIL_IO_URING_FILE_SERVICE_HPP
|