2015-03-04 10:47:53 +00:00
|
|
|
#include <DB/IO/ReadBufferAIO.h>
|
|
|
|
#include <DB/Common/ProfileEvents.h>
|
|
|
|
#include <DB/Core/ErrorCodes.h>
|
2015-03-13 11:02:43 +00:00
|
|
|
#include <DB/Core/Defines.h>
|
2015-03-04 10:47:53 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
ReadBufferAIO::ReadBufferAIO(const std::string & filename_, size_t buffer_size_, int flags_, mode_t mode_,
|
|
|
|
char * existing_memory_)
|
2015-03-16 21:39:27 +00:00
|
|
|
: BufferWithOwnMemory<ReadBuffer>(buffer_size_, existing_memory_, DEFAULT_AIO_FILE_BLOCK_SIZE),
|
2015-03-16 21:05:44 +00:00
|
|
|
fill_buffer(BufferWithOwnMemory(buffer_size_, nullptr, DEFAULT_AIO_FILE_BLOCK_SIZE)),
|
2015-03-16 10:49:27 +00:00
|
|
|
filename(filename_)
|
2015-03-04 10:47:53 +00:00
|
|
|
{
|
|
|
|
ProfileEvents::increment(ProfileEvents::FileOpen);
|
|
|
|
|
2015-03-11 11:31:09 +00:00
|
|
|
int open_flags = (flags_ == -1) ? O_RDONLY : flags_;
|
2015-03-04 10:47:53 +00:00
|
|
|
open_flags |= O_DIRECT;
|
|
|
|
|
2015-03-06 10:29:58 +00:00
|
|
|
fd = ::open(filename.c_str(), open_flags, mode_);
|
2015-03-04 10:47:53 +00:00
|
|
|
if (fd == -1)
|
2015-03-05 11:57:54 +00:00
|
|
|
{
|
|
|
|
got_exception = true;
|
2015-03-11 11:31:09 +00:00
|
|
|
auto error_code = (errno == ENOENT) ? ErrorCodes::FILE_DOESNT_EXIST : ErrorCodes::CANNOT_OPEN_FILE;
|
|
|
|
throwFromErrno("Cannot open file " + filename, error_code);
|
2015-03-05 11:57:54 +00:00
|
|
|
}
|
2015-03-11 13:40:15 +00:00
|
|
|
|
|
|
|
::memset(&request, 0, sizeof(request));
|
2015-03-04 10:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ReadBufferAIO::~ReadBufferAIO()
|
|
|
|
{
|
2015-03-05 11:57:54 +00:00
|
|
|
if (!got_exception)
|
2015-03-04 10:47:53 +00:00
|
|
|
{
|
2015-03-05 11:57:54 +00:00
|
|
|
try
|
|
|
|
{
|
2015-03-13 11:46:04 +00:00
|
|
|
waitForAIOCompletion();
|
2015-03-05 11:57:54 +00:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
tryLogCurrentException(__PRETTY_FUNCTION__);
|
|
|
|
}
|
2015-03-04 10:47:53 +00:00
|
|
|
}
|
|
|
|
|
2015-03-05 11:57:54 +00:00
|
|
|
if (fd != -1)
|
|
|
|
::close(fd);
|
2015-03-04 10:47:53 +00:00
|
|
|
}
|
|
|
|
|
2015-03-05 16:20:15 +00:00
|
|
|
void ReadBufferAIO::setMaxBytes(size_t max_bytes_read_)
|
|
|
|
{
|
|
|
|
if (is_started)
|
|
|
|
{
|
|
|
|
got_exception = true;
|
2015-03-06 10:29:58 +00:00
|
|
|
throw Exception("Illegal attempt to set the maximum number of bytes to read from file " + filename, ErrorCodes::LOGICAL_ERROR);
|
|
|
|
}
|
2015-03-13 11:02:43 +00:00
|
|
|
if ((max_bytes_read_ % DEFAULT_AIO_FILE_BLOCK_SIZE) != 0)
|
2015-03-06 10:29:58 +00:00
|
|
|
{
|
|
|
|
got_exception = true;
|
2015-03-10 17:14:07 +00:00
|
|
|
throw Exception("Invalid maximum number of bytes to read from file " + filename, ErrorCodes::AIO_UNALIGNED_SIZE_ERROR);
|
2015-03-05 16:20:15 +00:00
|
|
|
}
|
|
|
|
max_bytes_read = max_bytes_read_;
|
|
|
|
}
|
|
|
|
|
2015-03-16 21:05:44 +00:00
|
|
|
off_t ReadBufferAIO::seek(off_t off, int whence)
|
2015-03-05 14:21:55 +00:00
|
|
|
{
|
2015-03-13 11:46:04 +00:00
|
|
|
waitForAIOCompletion();
|
2015-03-05 14:21:55 +00:00
|
|
|
|
2015-03-12 12:36:18 +00:00
|
|
|
off_t new_pos;
|
|
|
|
|
|
|
|
if (whence == SEEK_SET)
|
2015-03-05 14:21:55 +00:00
|
|
|
{
|
2015-03-12 12:36:18 +00:00
|
|
|
if (off < 0)
|
|
|
|
{
|
|
|
|
got_exception = true;
|
|
|
|
throw Exception("SEEK_SET underflow", ErrorCodes::ARGUMENT_OUT_OF_BOUND);
|
|
|
|
}
|
|
|
|
new_pos = off;
|
2015-03-05 14:21:55 +00:00
|
|
|
}
|
2015-03-12 12:36:18 +00:00
|
|
|
else if (whence == SEEK_CUR)
|
2015-03-05 14:21:55 +00:00
|
|
|
{
|
2015-03-12 12:36:18 +00:00
|
|
|
if (off >= 0)
|
|
|
|
{
|
2015-03-13 11:02:43 +00:00
|
|
|
if (off > (std::numeric_limits<off_t>::max() - getPositionInFileRelaxed()))
|
2015-03-12 12:36:18 +00:00
|
|
|
{
|
|
|
|
got_exception = true;
|
|
|
|
throw Exception("SEEK_CUR overflow", ErrorCodes::ARGUMENT_OUT_OF_BOUND);
|
|
|
|
}
|
|
|
|
}
|
2015-03-13 11:02:43 +00:00
|
|
|
else if (off < -getPositionInFileRelaxed())
|
2015-03-12 12:36:18 +00:00
|
|
|
{
|
|
|
|
got_exception = true;
|
|
|
|
throw Exception("SEEK_CUR underflow", ErrorCodes::ARGUMENT_OUT_OF_BOUND);
|
|
|
|
}
|
2015-03-13 11:02:43 +00:00
|
|
|
new_pos = getPositionInFileRelaxed() + off;
|
2015-03-05 14:21:55 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-03-12 12:36:18 +00:00
|
|
|
got_exception = true;
|
|
|
|
throw Exception("ReadBufferAIO::seek expects SEEK_SET or SEEK_CUR as whence", ErrorCodes::ARGUMENT_OUT_OF_BOUND);
|
|
|
|
}
|
2015-03-05 14:21:55 +00:00
|
|
|
|
2015-03-13 11:02:43 +00:00
|
|
|
if (new_pos != getPositionInFileRelaxed())
|
2015-03-12 12:36:18 +00:00
|
|
|
{
|
|
|
|
off_t working_buffer_begin_pos = pos_in_file - static_cast<off_t>(working_buffer.size());
|
|
|
|
if (hasPendingData() && (new_pos >= working_buffer_begin_pos) && (new_pos <= pos_in_file))
|
2015-03-05 14:21:55 +00:00
|
|
|
{
|
2015-03-12 12:36:18 +00:00
|
|
|
/// Свдинулись, но остались в пределах буфера.
|
|
|
|
pos = working_buffer.begin() + (new_pos - working_buffer_begin_pos);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pos = working_buffer.end();
|
|
|
|
pos_in_file = new_pos;
|
2015-03-05 14:21:55 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-12 12:36:18 +00:00
|
|
|
|
|
|
|
return new_pos;
|
2015-03-05 14:21:55 +00:00
|
|
|
}
|
|
|
|
|
2015-03-13 11:02:43 +00:00
|
|
|
off_t ReadBufferAIO::getPositionInFile()
|
|
|
|
{
|
|
|
|
return seek(0, SEEK_CUR);
|
|
|
|
}
|
|
|
|
|
|
|
|
off_t ReadBufferAIO::getPositionInFileRelaxed() const noexcept
|
|
|
|
{
|
2015-03-13 13:52:28 +00:00
|
|
|
return pos_in_file - (working_buffer.end() - pos);
|
2015-03-13 11:02:43 +00:00
|
|
|
}
|
|
|
|
|
2015-03-04 10:47:53 +00:00
|
|
|
bool ReadBufferAIO::nextImpl()
|
|
|
|
{
|
2015-03-11 13:15:19 +00:00
|
|
|
/// Если конец файла уже был достигнут при вызове этой функции,
|
|
|
|
/// то текущий вызов ошибочен.
|
2015-03-05 14:21:55 +00:00
|
|
|
if (is_eof)
|
2015-03-05 08:18:16 +00:00
|
|
|
return false;
|
|
|
|
|
2015-03-13 11:46:04 +00:00
|
|
|
waitForAIOCompletion();
|
2015-03-10 11:43:30 +00:00
|
|
|
|
2015-03-11 13:15:19 +00:00
|
|
|
/// При первом вызове не надо обменять местами основной и дублирующий буферы.
|
2015-03-10 15:09:17 +00:00
|
|
|
if (is_started)
|
2015-03-05 16:20:15 +00:00
|
|
|
swapBuffers();
|
2015-03-11 11:45:07 +00:00
|
|
|
else
|
|
|
|
is_started = true;
|
2015-03-04 10:47:53 +00:00
|
|
|
|
2015-03-11 13:15:19 +00:00
|
|
|
/// Если конец файла только что достигнут, больше ничего не делаем.
|
2015-03-10 11:43:30 +00:00
|
|
|
if (is_eof)
|
|
|
|
return true;
|
|
|
|
|
2015-03-11 13:15:19 +00:00
|
|
|
/// Создать запрос.
|
2015-03-11 13:26:24 +00:00
|
|
|
request.aio_lio_opcode = IOCB_CMD_PREAD;
|
|
|
|
request.aio_fildes = fd;
|
|
|
|
request.aio_buf = reinterpret_cast<UInt64>(fill_buffer.internalBuffer().begin());
|
|
|
|
request.aio_nbytes = std::min(fill_buffer.internalBuffer().size(), max_bytes_read);
|
2015-03-17 11:30:23 +00:00
|
|
|
request.aio_offset = pos_in_file - (pos_in_file % DEFAULT_AIO_FILE_BLOCK_SIZE);
|
2015-03-04 10:47:53 +00:00
|
|
|
|
2015-03-11 13:15:19 +00:00
|
|
|
/// Отправить запрос.
|
2015-03-04 10:47:53 +00:00
|
|
|
while (io_submit(aio_context.ctx, request_ptrs.size(), &request_ptrs[0]) < 0)
|
2015-03-16 10:41:58 +00:00
|
|
|
{
|
2015-03-04 10:47:53 +00:00
|
|
|
if (errno != EINTR)
|
2015-03-05 11:57:54 +00:00
|
|
|
{
|
|
|
|
got_exception = true;
|
2015-03-06 10:29:58 +00:00
|
|
|
throw Exception("Cannot submit request for asynchronous IO on file " + filename, ErrorCodes::AIO_SUBMIT_ERROR);
|
2015-03-05 11:57:54 +00:00
|
|
|
}
|
2015-03-16 10:41:58 +00:00
|
|
|
}
|
2015-03-04 10:47:53 +00:00
|
|
|
|
|
|
|
is_pending_read = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-13 11:46:04 +00:00
|
|
|
void ReadBufferAIO::waitForAIOCompletion()
|
2015-03-04 10:47:53 +00:00
|
|
|
{
|
|
|
|
if (is_pending_read)
|
|
|
|
{
|
|
|
|
while (io_getevents(aio_context.ctx, events.size(), events.size(), &events[0], nullptr) < 0)
|
2015-03-16 10:41:58 +00:00
|
|
|
{
|
2015-03-04 10:47:53 +00:00
|
|
|
if (errno != EINTR)
|
2015-03-05 11:57:54 +00:00
|
|
|
{
|
|
|
|
got_exception = true;
|
2015-03-06 10:29:58 +00:00
|
|
|
throw Exception("Failed to wait for asynchronous IO completion on file " + filename, ErrorCodes::AIO_COMPLETION_ERROR);
|
2015-03-05 11:57:54 +00:00
|
|
|
}
|
2015-03-16 10:41:58 +00:00
|
|
|
}
|
2015-03-04 10:47:53 +00:00
|
|
|
|
2015-03-05 11:57:54 +00:00
|
|
|
is_pending_read = false;
|
2015-03-13 13:14:31 +00:00
|
|
|
off_t bytes_read = events[0].res;
|
2015-03-05 11:57:54 +00:00
|
|
|
|
2015-03-13 13:14:31 +00:00
|
|
|
if (bytes_read < 0)
|
2015-03-11 13:15:19 +00:00
|
|
|
{
|
|
|
|
got_exception = true;
|
|
|
|
throw Exception("Asynchronous read error on file " + filename, ErrorCodes::AIO_READ_ERROR);
|
|
|
|
}
|
2015-03-13 13:14:31 +00:00
|
|
|
if (pos_in_file > (std::numeric_limits<off_t>::max() - bytes_read))
|
|
|
|
{
|
|
|
|
got_exception = true;
|
|
|
|
throw Exception("File position overflowed", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
}
|
2015-03-06 11:08:25 +00:00
|
|
|
|
2015-03-17 11:30:23 +00:00
|
|
|
if (bytes_read > 0)
|
|
|
|
fill_buffer.buffer().resize(bytes_read);
|
|
|
|
if (static_cast<size_t>(bytes_read) < fill_buffer.internalBuffer().size())
|
|
|
|
is_eof = true;
|
|
|
|
|
|
|
|
working_buffer_offset = pos_in_file % DEFAULT_AIO_FILE_BLOCK_SIZE;
|
|
|
|
bytes_read -= working_buffer_offset;
|
|
|
|
|
2015-03-05 14:21:55 +00:00
|
|
|
pos_in_file += bytes_read;
|
2015-03-06 11:08:25 +00:00
|
|
|
total_bytes_read += bytes_read;
|
2015-03-05 14:21:55 +00:00
|
|
|
|
2015-03-17 11:30:23 +00:00
|
|
|
if (total_bytes_read == max_bytes_read)
|
2015-03-05 14:21:55 +00:00
|
|
|
is_eof = true;
|
2015-03-04 10:47:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-05 11:57:54 +00:00
|
|
|
void ReadBufferAIO::swapBuffers() noexcept
|
2015-03-04 10:47:53 +00:00
|
|
|
{
|
2015-03-05 08:18:16 +00:00
|
|
|
internalBuffer().swap(fill_buffer.internalBuffer());
|
|
|
|
buffer().swap(fill_buffer.buffer());
|
|
|
|
std::swap(position(), fill_buffer.position());
|
2015-03-04 10:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|