11#ifndef O2_FRAMEWORK_TABLETREEHELPERS_H_
12#define O2_FRAMEWORK_TABLETREEHELPERS_H_
14#include <arrow/buffer.h>
15#include <arrow/io/interfaces.h>
16#include <arrow/record_batch.h>
18#include "TTreeReader.h"
19#include "TTreeReaderValue.h"
20#include "TTreeReaderArray.h"
22#include <arrow/dataset/file_base.h>
51 ColumnToBranch(TTree*
tree, std::shared_ptr<arrow::ChunkedArray>
const& column, std::shared_ptr<arrow::Field>
const& field);
54 void at(
const int64_t*
pos);
55 [[nodiscard]]
int fieldSize()
const {
return mFieldSize; }
57 [[nodiscard]]
char const*
branchName()
const {
return mBranchName.c_str(); }
63 std::string mBranchName;
64 TBranch* mBranch =
nullptr;
65 TBranch* mSizeBranch =
nullptr;
66 arrow::ChunkedArray* mColumn =
nullptr;
67 int64_t mFirstIndex = 0;
68 int mCurrentChunk = 0;
71 arrow::Type::type mFieldType;
72 std::vector<uint8_t> cache;
73 std::shared_ptr<arrow::Array> mCurrentArray =
nullptr;
74 int64_t mChunkLength = 0;
81 TableToTree(std::shared_ptr<arrow::Table>
const& table, TFile*
file,
const char* treename);
83 std::shared_ptr<TTree>
process();
84 void addBranch(std::shared_ptr<arrow::ChunkedArray>
const& column, std::shared_ptr<arrow::Field>
const& field);
90 std::shared_ptr<TTree> mTree;
91 std::vector<std::unique_ptr<ColumnToBranch>> mColumnReaders;
98 using StreamerCreator = std::function<std::shared_ptr<arrow::io::OutputStream>(std::shared_ptr<arrow::dataset::FileFragment>,
const std::shared_ptr<arrow::ResizableBuffer>&
buffer)>;
102 void fill(std::shared_ptr<arrow::Schema> dataSetSchema, std::shared_ptr<arrow::dataset::FileFormat>);
103 std::shared_ptr<arrow::RecordBatch>
finalize();
105 std::shared_ptr<arrow::io::OutputStream>
streamer(std::shared_ptr<arrow::ResizableBuffer>
buffer)
107 return mCreator(mFragment,
buffer);
111 std::shared_ptr<arrow::dataset::FileFragment> mFragment;
112 arrow::MemoryPool* mArrowMemoryPool =
nullptr;
113 std::string mTableLabel;
114 std::shared_ptr<arrow::RecordBatch> mRecordBatch;
ColumnToBranch(ColumnToBranch &&other)=delete
int columnEntries() const
ColumnToBranch(ColumnToBranch const &other)=delete
void at(const int64_t *pos)
char const * branchName() const
std::shared_ptr< arrow::RecordBatch > finalize()
std::function< std::shared_ptr< arrow::io::OutputStream >(std::shared_ptr< arrow::dataset::FileFragment >, const std::shared_ptr< arrow::ResizableBuffer > &buffer)> StreamerCreator
void setLabel(const char *label)
std::shared_ptr< arrow::io::OutputStream > streamer(std::shared_ptr< arrow::ResizableBuffer > buffer)
void fill(std::shared_ptr< arrow::Schema > dataSetSchema, std::shared_ptr< arrow::dataset::FileFormat >)
void addBranch(std::shared_ptr< arrow::ChunkedArray > const &column, std::shared_ptr< arrow::Field > const &field)
std::shared_ptr< TTree > process()
GLint GLint GLsizei GLint GLenum GLenum type
GLuint GLsizei const GLchar * label
Defining PrimaryVertex explicitly as messageable.
auto basicROOTTypeFromArrow(arrow::Type::type id)
auto arrowTypeFromROOT(EDataType type, int size)
VectorOfTObjectPtrs other
std::unique_ptr< TTree > tree((TTree *) flIn.Get(std::string(o2::base::NameConf::CTFTREENAME).c_str()))