#pragma once #include #include #include #include #include #include namespace DB { class ReadBufferFromFileBase : public BufferWithOwnMemory { public: ReadBufferFromFileBase(); ReadBufferFromFileBase(size_t buf_size, char * existing_memory, size_t alignment); ReadBufferFromFileBase(ReadBufferFromFileBase &&) = default; ~ReadBufferFromFileBase() override; virtual std::string getFileName() const = 0; /// It is possible to get information about the time of each reading. struct ProfileInfo { size_t bytes_requested; size_t bytes_read; size_t nanoseconds; }; using ProfileCallback = std::function; /// CLOCK_MONOTONIC_COARSE is more than enough to track long reads - for example, hanging for a second. void setProfileCallback(const ProfileCallback & profile_callback_, clockid_t clock_type_ = CLOCK_MONOTONIC_COARSE) { profile_callback = profile_callback_; clock_type = clock_type_; } protected: ProfileCallback profile_callback; clockid_t clock_type{}; }; }