ClickHouse/src/Processors/Formats/Impl/ArrowBlockInputFormat.h
2020-05-27 15:46:49 +03:00

44 lines
947 B
C++

#pragma once
#include "config_formats.h"
#if USE_ARROW
#include <Processors/Formats/IInputFormat.h>
namespace arrow { class RecordBatchReader; }
namespace arrow::ipc { class RecordBatchFileReader; }
namespace DB
{
class ReadBuffer;
class ArrowBlockInputFormat : public IInputFormat
{
public:
ArrowBlockInputFormat(ReadBuffer & in_, const Block & header_, bool stream_);
void resetParser() override;
String getName() const override { return "ArrowBlockInputFormat"; }
protected:
Chunk generate() override;
private:
// Whether to use ArrowStream format
bool stream;
// This field is only used for ArrowStream format
std::shared_ptr<arrow::RecordBatchReader> stream_reader;
// The following fields are used only for Arrow format
std::shared_ptr<arrow::ipc::RecordBatchFileReader> file_reader;
int record_batch_total = 0;
int record_batch_current = 0;
void prepareReader();
};
}
#endif