ClickHouse/dbms/include/DB/IO/ReadBufferFromFileDescriptor.h

48 lines
1.1 KiB
C++
Raw Normal View History

2011-10-24 12:10:59 +00:00
#pragma once
#include <unistd.h>
#include <DB/IO/ReadBufferFromFileBase.h>
2011-10-24 12:10:59 +00:00
#include <DB/IO/ReadBuffer.h>
2011-10-24 12:10:59 +00:00
namespace DB
{
/** Use ready file descriptor. Does not open or close a file.
2011-10-24 12:10:59 +00:00
*/
class ReadBufferFromFileDescriptor : public ReadBufferFromFileBase
2011-10-24 12:10:59 +00:00
{
protected:
int fd;
off_t pos_in_file; /// What offset in file corresponds to working_buffer.end().
2016-10-25 06:49:24 +00:00
bool nextImpl() override;
2011-10-24 12:10:59 +00:00
/// Name or some description of file.
2016-10-25 06:49:24 +00:00
std::string getFileName() const override;
2011-10-24 12:10:59 +00:00
public:
2014-04-08 07:31:51 +00:00
ReadBufferFromFileDescriptor(int fd_, size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE, char * existing_memory = nullptr, size_t alignment = 0)
: ReadBufferFromFileBase(buf_size, existing_memory, alignment), fd(fd_), pos_in_file(0) {}
int getFD() const override
{
return fd;
}
off_t getPositionInFile() override
{
return pos_in_file - (working_buffer.end() - pos);
}
private:
/// If 'offset' is small enough to stay in buffer after seek, then true seek in file does not happen.
2016-10-25 06:49:24 +00:00
off_t doSeek(off_t offset, int whence) override;
2015-12-13 08:51:28 +00:00
/// Assuming file descriptor supports 'select', check that we have data to read or wait until timeout.
2016-10-25 06:49:24 +00:00
bool poll(size_t timeout_microseconds);
2011-10-24 12:10:59 +00:00
};
}