2011-10-24 12:10:59 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2015-03-30 15:39:55 +00:00
|
|
|
#include <DB/IO/ReadBufferFromFileBase.h>
|
2011-10-24 12:10:59 +00:00
|
|
|
#include <DB/IO/ReadBuffer.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:
|
|
|
|
int fd;
|
2016-10-24 02:02:37 +00:00
|
|
|
off_t pos_in_file; /// What offset in file corresponds to working_buffer.end().
|
2015-04-16 12:06:05 +00:00
|
|
|
|
2016-10-25 06:49:24 +00:00
|
|
|
bool nextImpl() override;
|
2011-10-24 12:10:59 +00:00
|
|
|
|
2016-10-24 02:02:37 +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)
|
2015-03-30 15:39:55 +00:00
|
|
|
: ReadBufferFromFileBase(buf_size, existing_memory, alignment), fd(fd_), pos_in_file(0) {}
|
2011-12-28 20:01:41 +00:00
|
|
|
|
2015-04-14 11:35:10 +00:00
|
|
|
int getFD() const override
|
2011-12-28 20:01:41 +00:00
|
|
|
{
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2015-04-03 13:45:44 +00:00
|
|
|
off_t getPositionInFile() override
|
|
|
|
{
|
|
|
|
return pos_in_file - (working_buffer.end() - pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-10-24 02:02:37 +00:00
|
|
|
/// 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
|
|
|
|
2016-10-24 02:02:37 +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
|
|
|
};
|
|
|
|
|
|
|
|
}
|