ClickHouse/src/IO/MMapReadBufferFromFileDescriptor.cpp

90 lines
2.1 KiB
C++
Raw Normal View History

2018-06-13 02:52:03 +00:00
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <Common/ProfileEvents.h>
#include <Common/formatReadable.h>
#include <Common/Exception.h>
2020-12-16 21:23:41 +00:00
#include <common/getPageSize.h>
#include <IO/WriteHelpers.h>
2018-06-13 02:52:03 +00:00
#include <IO/MMapReadBufferFromFileDescriptor.h>
namespace DB
{
namespace ErrorCodes
{
extern const int ARGUMENT_OUT_OF_BOUND;
extern const int CANNOT_SEEK_THROUGH_FILE;
2018-06-13 02:52:03 +00:00
}
2021-03-26 20:46:04 +00:00
void MMapReadBufferFromFileDescriptor::init()
2018-06-13 02:52:03 +00:00
{
2021-03-26 20:46:04 +00:00
size_t length = mapped.getLength();
BufferBase::set(mapped.getData(), length, 0);
2018-06-13 02:52:03 +00:00
2021-03-26 20:46:04 +00:00
size_t page_size = static_cast<size_t>(::getPageSize());
ReadBuffer::padded = (length % page_size) > 0 && (length % page_size) <= (page_size - 15);
2018-06-13 02:52:03 +00:00
}
2021-03-26 20:46:04 +00:00
MMapReadBufferFromFileDescriptor::MMapReadBufferFromFileDescriptor(int fd, size_t offset, size_t length)
: mapped(fd, offset, length)
2018-06-13 02:52:03 +00:00
{
2021-03-26 20:46:04 +00:00
init();
2018-06-13 02:52:03 +00:00
}
2021-03-26 20:46:04 +00:00
MMapReadBufferFromFileDescriptor::MMapReadBufferFromFileDescriptor(int fd, size_t offset)
: mapped(fd, offset)
2018-06-13 02:52:03 +00:00
{
2021-03-26 20:46:04 +00:00
init();
2018-06-13 02:52:03 +00:00
}
void MMapReadBufferFromFileDescriptor::finish()
{
2021-03-26 20:46:04 +00:00
mapped.finish();
2018-06-13 02:52:03 +00:00
}
2021-03-26 20:46:04 +00:00
std::string MMapReadBufferFromFileDescriptor::getFileName() const
{
2021-03-26 20:46:04 +00:00
return "(fd = " + toString(mapped.getFD()) + ")";
}
int MMapReadBufferFromFileDescriptor::getFD() const
{
2021-03-26 20:46:04 +00:00
return mapped.getFD();
}
2020-02-14 14:28:33 +00:00
off_t MMapReadBufferFromFileDescriptor::getPosition()
{
return count();
}
off_t MMapReadBufferFromFileDescriptor::seek(off_t offset, int whence)
{
off_t new_pos;
if (whence == SEEK_SET)
new_pos = offset;
else if (whence == SEEK_CUR)
new_pos = count() + offset;
else
2021-03-27 23:11:46 +00:00
throw Exception(ErrorCodes::ARGUMENT_OUT_OF_BOUND, "MMapReadBufferFromFileDescriptor::seek expects SEEK_SET or SEEK_CUR as whence");
working_buffer = internal_buffer;
if (new_pos < 0 || new_pos > off_t(working_buffer.size()))
2021-03-27 23:11:46 +00:00
throw Exception(ErrorCodes::CANNOT_SEEK_THROUGH_FILE,
"Cannot seek through file {} because seek position ({}) is out of bounds [0, {}]",
getFileName(), new_pos, working_buffer.size());
position() = working_buffer.begin() + new_pos;
return new_pos;
}
2018-06-13 02:52:03 +00:00
}