2011-10-24 12:10:59 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <IO/ReadBufferFromFileBase.h>
|
2021-04-28 16:25:14 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2020-02-17 14:27:09 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
2016-10-24 02:02:37 +00:00
|
|
|
|
2016-10-24 04:06:27 +00:00
|
|
|
|
2011-10-24 12:10:59 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-10-24 02:02:37 +00:00
|
|
|
/** Use ready file descriptor. Does not open or close a file.
|
2011-10-24 12:10:59 +00:00
|
|
|
*/
|
2015-03-30 15:39:55 +00:00
|
|
|
class ReadBufferFromFileDescriptor : public ReadBufferFromFileBase
|
2011-10-24 12:10:59 +00:00
|
|
|
{
|
|
|
|
protected:
|
2017-04-01 07:20:54 +00:00
|
|
|
int fd;
|
2020-07-31 14:53:41 +00:00
|
|
|
size_t file_offset_of_buffer_end; /// What offset in file corresponds to working_buffer.end().
|
2015-04-16 12:06:05 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool nextImpl() override;
|
2011-10-24 12:10:59 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Name or some description of file.
|
|
|
|
std::string getFileName() const override;
|
2011-10-24 12:10:59 +00:00
|
|
|
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
ReadBufferFromFileDescriptor(int fd_, size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE, char * existing_memory = nullptr, size_t alignment = 0)
|
2020-07-31 14:53:41 +00:00
|
|
|
: ReadBufferFromFileBase(buf_size, existing_memory, alignment), fd(fd_), file_offset_of_buffer_end(0) {}
|
2017-08-30 20:23:29 +00:00
|
|
|
|
2020-02-14 14:28:33 +00:00
|
|
|
int getFD() const
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
return fd;
|
|
|
|
}
|
2011-12-28 20:01:41 +00:00
|
|
|
|
2020-02-14 14:28:33 +00:00
|
|
|
off_t getPosition() override
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2020-07-31 14:53:41 +00:00
|
|
|
return file_offset_of_buffer_end - (working_buffer.end() - pos);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2015-04-03 13:45:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// If 'offset' is small enough to stay in buffer after seek, then true seek in file does not happen.
|
2020-01-27 18:44:30 +00:00
|
|
|
off_t seek(off_t off, int whence) override;
|
2015-12-13 08:51:28 +00:00
|
|
|
|
2021-04-28 16:25:14 +00:00
|
|
|
off_t size();
|
|
|
|
|
|
|
|
void setProgressCallback(ContextPtr context);
|
2020-01-27 18:44:30 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Assuming file descriptor supports 'select', check that we have data to read or wait until timeout.
|
|
|
|
bool poll(size_t timeout_microseconds);
|
2011-10-24 12:10:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|