2011-10-24 12:10:59 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
|
|
#include <Poco/NumberFormatter.h>
|
|
|
|
|
|
|
|
|
|
#include <DB/Core/Exception.h>
|
|
|
|
|
#include <DB/Core/ErrorCodes.h>
|
|
|
|
|
|
|
|
|
|
#include <DB/IO/ReadBuffer.h>
|
|
|
|
|
#include <DB/IO/BufferWithOwnMemory.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/** Работает с готовым файловым дескриптором. Не открывает и не закрывает файл.
|
|
|
|
|
*/
|
|
|
|
|
class ReadBufferFromFileDescriptor : public BufferWithOwnMemory<ReadBuffer>
|
|
|
|
|
{
|
|
|
|
|
protected:
|
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
|
|
bool nextImpl()
|
|
|
|
|
{
|
2011-12-26 07:07:30 +00:00
|
|
|
|
size_t bytes_read = 0;
|
|
|
|
|
while (!bytes_read)
|
|
|
|
|
{
|
|
|
|
|
ssize_t res = ::read(fd, internal_buffer.begin(), internal_buffer.size());
|
|
|
|
|
if (!res)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (-1 == res && errno != EINTR)
|
|
|
|
|
throwFromErrno("Cannot read from file " + getFileName(), ErrorCodes::CANNOT_READ_FROM_FILE_DESCRIPTOR);
|
|
|
|
|
|
|
|
|
|
if (res > 0)
|
|
|
|
|
bytes_read += res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bytes_read)
|
2011-10-24 12:10:59 +00:00
|
|
|
|
working_buffer.resize(bytes_read);
|
2011-12-26 07:07:30 +00:00
|
|
|
|
else
|
|
|
|
|
return false;
|
2011-10-24 12:10:59 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Имя или описание файла
|
|
|
|
|
virtual std::string getFileName()
|
|
|
|
|
{
|
|
|
|
|
return "(fd = " + Poco::NumberFormatter::format(fd) + ")";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public:
|
2013-06-15 04:44:19 +00:00
|
|
|
|
ReadBufferFromFileDescriptor(int fd_, size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE, char * existing_memory = NULL)
|
|
|
|
|
: BufferWithOwnMemory<ReadBuffer>(buf_size, existing_memory), fd(fd_) {}
|
2011-12-28 20:01:41 +00:00
|
|
|
|
|
|
|
|
|
int getFD()
|
|
|
|
|
{
|
|
|
|
|
return fd;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
off_t seek(off_t offset, int whence = SEEK_SET)
|
|
|
|
|
{
|
|
|
|
|
off_t res = lseek(fd, offset, whence);
|
|
|
|
|
if (-1 == res)
|
|
|
|
|
throwFromErrno("Cannot seek through file " + getFileName(), ErrorCodes::CANNOT_SEEK_THROUGH_FILE);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
2011-10-24 12:10:59 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|