ClickHouse/src/Processors/Formats/Impl/ArrowBufferedStreams.cpp

148 lines
3.7 KiB
C++
Raw Normal View History

#ifdef HAS_RESERVED_IDENTIFIER
#pragma clang diagnostic ignored "-Wreserved-identifier"
#endif
2020-05-03 18:12:14 +00:00
#include "ArrowBufferedStreams.h"
2020-05-04 00:58:10 +00:00
#if USE_ARROW || USE_ORC || USE_PARQUET
2020-05-03 18:12:14 +00:00
#include <IO/ReadBufferFromFileDescriptor.h>
#include <IO/WriteBufferFromString.h>
#include <IO/copyData.h>
2020-05-03 18:12:14 +00:00
#include <arrow/buffer.h>
2021-07-28 11:09:17 +00:00
#include <arrow/io/memory.h>
#include <arrow/result.h>
2020-05-03 18:12:14 +00:00
#include <sys/stat.h>
2020-07-13 01:11:35 +00:00
2020-05-03 18:12:14 +00:00
namespace DB
{
ArrowBufferedOutputStream::ArrowBufferedOutputStream(WriteBuffer & out_) : out{out_}, is_open{true}
2020-05-03 18:12:14 +00:00
{
}
arrow::Status ArrowBufferedOutputStream::Close()
2020-05-03 18:12:14 +00:00
{
is_open = false;
return arrow::Status::OK();
2020-05-03 18:12:14 +00:00
}
arrow::Result<int64_t> ArrowBufferedOutputStream::Tell() const
2020-05-03 18:12:14 +00:00
{
return arrow::Result<int64_t>(total_length);
2020-05-03 18:12:14 +00:00
}
arrow::Status ArrowBufferedOutputStream::Write(const void * data, int64_t length)
2020-05-03 18:12:14 +00:00
{
out.write(reinterpret_cast<const char *>(data), length);
2020-05-03 18:12:14 +00:00
total_length += length;
return arrow::Status::OK();
}
RandomAccessFileFromSeekableReadBuffer::RandomAccessFileFromSeekableReadBuffer(SeekableReadBuffer & in_, off_t file_size_)
: in{in_}, file_size{file_size_}, is_open{true}
{
}
arrow::Result<int64_t> RandomAccessFileFromSeekableReadBuffer::GetSize()
{
return arrow::Result<int64_t>(file_size);
}
arrow::Status RandomAccessFileFromSeekableReadBuffer::Close()
{
is_open = false;
return arrow::Status::OK();
}
arrow::Result<int64_t> RandomAccessFileFromSeekableReadBuffer::Tell() const
{
2021-04-06 20:28:54 +00:00
return in.getPosition();
}
arrow::Result<int64_t> RandomAccessFileFromSeekableReadBuffer::Read(int64_t nbytes, void * out)
{
2021-04-06 20:28:54 +00:00
return in.readBig(reinterpret_cast<char *>(out), nbytes);
}
arrow::Result<std::shared_ptr<arrow::Buffer>> RandomAccessFileFromSeekableReadBuffer::Read(int64_t nbytes)
{
2021-04-06 20:28:54 +00:00
ARROW_ASSIGN_OR_RAISE(auto buffer, arrow::AllocateResizableBuffer(nbytes))
ARROW_ASSIGN_OR_RAISE(int64_t bytes_read, Read(nbytes, buffer->mutable_data()))
2021-04-06 20:28:54 +00:00
if (bytes_read < nbytes)
RETURN_NOT_OK(buffer->Resize(bytes_read));
2021-04-06 20:28:54 +00:00
return buffer;
}
arrow::Status RandomAccessFileFromSeekableReadBuffer::Seek(int64_t position)
{
in.seek(position, SEEK_SET);
return arrow::Status::OK();
}
2021-04-05 19:21:16 +00:00
2021-04-06 20:28:54 +00:00
ArrowInputStreamFromReadBuffer::ArrowInputStreamFromReadBuffer(ReadBuffer & in_) : in(in_), is_open{true}
2021-04-05 19:21:16 +00:00
{
}
2021-04-06 20:28:54 +00:00
arrow::Result<int64_t> ArrowInputStreamFromReadBuffer::Read(int64_t nbytes, void * out)
2021-04-05 19:21:16 +00:00
{
2021-04-06 20:28:54 +00:00
return in.readBig(reinterpret_cast<char *>(out), nbytes);
2021-04-05 19:21:16 +00:00
}
2021-04-06 20:28:54 +00:00
arrow::Result<std::shared_ptr<arrow::Buffer>> ArrowInputStreamFromReadBuffer::Read(int64_t nbytes)
2021-04-05 19:21:16 +00:00
{
2021-04-06 20:28:54 +00:00
ARROW_ASSIGN_OR_RAISE(auto buffer, arrow::AllocateResizableBuffer(nbytes))
ARROW_ASSIGN_OR_RAISE(int64_t bytes_read, Read(nbytes, buffer->mutable_data()))
if (bytes_read < nbytes)
RETURN_NOT_OK(buffer->Resize(bytes_read));
2021-04-05 19:21:16 +00:00
2021-04-06 20:28:54 +00:00
return buffer;
2021-04-05 19:21:16 +00:00
}
2021-04-06 20:28:54 +00:00
arrow::Status ArrowInputStreamFromReadBuffer::Abort()
2021-04-05 19:21:16 +00:00
{
return arrow::Status();
}
2021-04-06 20:28:54 +00:00
arrow::Result<int64_t> ArrowInputStreamFromReadBuffer::Tell() const
2021-04-05 19:21:16 +00:00
{
return in.count();
}
2021-04-06 20:28:54 +00:00
arrow::Status ArrowInputStreamFromReadBuffer::Close()
2021-04-05 19:21:16 +00:00
{
2021-04-06 20:28:54 +00:00
is_open = false;
2021-04-05 19:21:16 +00:00
return arrow::Status();
}
std::shared_ptr<arrow::io::RandomAccessFile> asArrowFile(ReadBuffer & in)
{
if (auto * fd_in = dynamic_cast<ReadBufferFromFileDescriptor *>(&in))
{
struct stat stat;
auto res = ::fstat(fd_in->getFD(), &stat);
// if fd is a regular file i.e. not stdin
if (res == 0 && S_ISREG(stat.st_mode))
return std::make_shared<RandomAccessFileFromSeekableReadBuffer>(*fd_in, stat.st_size);
}
// fallback to loading the entire file in memory
std::string file_data;
{
WriteBufferFromString file_buffer(file_data);
copyData(in, file_buffer);
}
return std::make_shared<arrow::io::BufferReader>(arrow::Buffer::FromString(std::move(file_data)));
2020-05-03 18:12:14 +00:00
}
}
#endif