2021-07-26 00:34:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Core/Types.h>
|
|
|
|
#include <optional>
|
|
|
|
#include <memory>
|
2021-08-04 00:07:04 +00:00
|
|
|
#include <future>
|
2022-09-07 15:44:29 +00:00
|
|
|
#include <boost/noncopyable.hpp>
|
2023-02-07 17:50:31 +00:00
|
|
|
#include <Common/Stopwatch.h>
|
2023-05-26 13:55:30 +00:00
|
|
|
#include <Common/Priority.h>
|
2021-07-26 00:34:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
/** Interface for asynchronous reads from file descriptors.
|
|
|
|
* It can abstract Linux AIO, io_uring or normal reads from separate thread pool,
|
|
|
|
* and also reads from non-local filesystems.
|
|
|
|
* The implementation not necessarily to be efficient for large number of small requests,
|
|
|
|
* instead it should be ok for moderate number of sufficiently large requests
|
|
|
|
* (e.g. read 1 MB of data 50 000 times per seconds; BTW this is normal performance for reading from page cache).
|
|
|
|
* For example, this interface may not suffice if you want to serve 10 000 000 of 4 KiB requests per second.
|
|
|
|
* This interface is fairly limited.
|
|
|
|
*/
|
2022-09-07 15:44:29 +00:00
|
|
|
class IAsynchronousReader : private boost::noncopyable
|
2021-07-26 00:34:36 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// For local filesystems, the file descriptor is simply integer
|
|
|
|
/// but it can be arbitrary opaque object for remote filesystems.
|
|
|
|
struct IFileDescriptor
|
|
|
|
{
|
|
|
|
virtual ~IFileDescriptor() = default;
|
|
|
|
};
|
|
|
|
|
|
|
|
using FileDescriptorPtr = std::shared_ptr<IFileDescriptor>;
|
|
|
|
|
|
|
|
struct LocalFileDescriptor : public IFileDescriptor
|
|
|
|
{
|
2022-03-13 11:59:20 +00:00
|
|
|
explicit LocalFileDescriptor(int fd_) : fd(fd_) {}
|
2021-07-26 00:34:36 +00:00
|
|
|
int fd;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Read from file descriptor at specified offset up to size bytes into buf.
|
|
|
|
/// Some implementations may require alignment and it is responsibility of
|
|
|
|
/// the caller to provide conforming requests.
|
|
|
|
struct Request
|
|
|
|
{
|
|
|
|
FileDescriptorPtr descriptor;
|
2021-07-28 05:28:30 +00:00
|
|
|
size_t offset = 0;
|
|
|
|
size_t size = 0;
|
|
|
|
char * buf = nullptr;
|
2023-05-26 13:55:30 +00:00
|
|
|
Priority priority;
|
2021-10-10 21:51:43 +00:00
|
|
|
size_t ignore = 0;
|
2021-07-26 00:34:36 +00:00
|
|
|
};
|
|
|
|
|
2021-12-17 09:00:22 +00:00
|
|
|
struct Result
|
|
|
|
{
|
2024-02-29 11:27:32 +00:00
|
|
|
/// The read data is at [buf + offset, buf + size), where `buf` is from Request struct.
|
|
|
|
/// (Notice that `offset` is included in `size`.)
|
|
|
|
|
2021-12-17 09:00:22 +00:00
|
|
|
/// size
|
|
|
|
/// Less than requested amount of data can be returned.
|
|
|
|
/// If size is zero - the file has ended.
|
|
|
|
/// (for example, EINTR must be handled by implementation automatically)
|
|
|
|
size_t size = 0;
|
|
|
|
|
|
|
|
/// offset
|
|
|
|
/// Optional. Useful when implementation needs to do ignore().
|
|
|
|
size_t offset = 0;
|
2023-01-03 14:27:37 +00:00
|
|
|
|
2023-08-23 12:07:02 +00:00
|
|
|
std::unique_ptr<Stopwatch> execution_watch = {};
|
2023-02-07 17:50:31 +00:00
|
|
|
|
2024-02-28 23:24:27 +00:00
|
|
|
explicit operator std::tuple<size_t &, size_t &>() { return {size, offset}; }
|
2021-12-17 09:00:22 +00:00
|
|
|
};
|
2021-07-26 00:34:36 +00:00
|
|
|
|
|
|
|
/// Submit request and obtain a handle. This method don't perform any waits.
|
|
|
|
/// If this method did not throw, the caller must wait for the result with 'wait' method
|
|
|
|
/// or destroy the whole reader before destroying the buffer for request.
|
2021-08-04 00:07:04 +00:00
|
|
|
/// The method can be called concurrently from multiple threads.
|
|
|
|
virtual std::future<Result> submit(Request request) = 0;
|
2023-08-31 15:22:08 +00:00
|
|
|
virtual Result execute(Request request) = 0;
|
2021-07-26 00:34:36 +00:00
|
|
|
|
2022-09-07 15:44:29 +00:00
|
|
|
virtual void wait() = 0;
|
|
|
|
|
2021-07-26 00:34:36 +00:00
|
|
|
/// Destructor must wait for all not completed request and ignore the results.
|
|
|
|
/// It may also cancel the requests.
|
|
|
|
virtual ~IAsynchronousReader() = default;
|
|
|
|
};
|
|
|
|
|
|
|
|
using AsynchronousReaderPtr = std::shared_ptr<IAsynchronousReader>;
|
|
|
|
|
|
|
|
}
|