// Licensed to the LF AI & Data foundation under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #pragma once #include #include #include #include #include "common/FieldDataInterface.h" #include "common/Channel.h" #include "parquet/arrow/reader.h" namespace milvus { template class FieldData : public FieldDataImpl { public: static_assert(IsScalar || std::is_same_v); explicit FieldData(DataType data_type, bool nullable, int64_t buffered_num_rows = 0) : FieldDataImpl::FieldDataImpl( 1, data_type, nullable, buffered_num_rows) { } static_assert(IsScalar || std::is_same_v); explicit FieldData(DataType data_type, bool nullable, FixedVector&& inner_data) : FieldDataImpl::FieldDataImpl( 1, data_type, nullable, std::move(inner_data)) { } }; template <> class FieldData : public FieldDataStringImpl { public: static_assert(IsScalar || std::is_same_v); explicit FieldData(DataType data_type, bool nullable, int64_t buffered_num_rows = 0) : FieldDataStringImpl(data_type, nullable, buffered_num_rows) { } }; template <> class FieldData : public FieldDataJsonImpl { public: static_assert(IsScalar || std::is_same_v); explicit FieldData(DataType data_type, bool nullable, int64_t buffered_num_rows = 0) : FieldDataJsonImpl(data_type, nullable, buffered_num_rows) { } }; template <> class FieldData : public FieldDataArrayImpl { public: static_assert(IsScalar || std::is_same_v); explicit FieldData(DataType data_type, bool nullable, int64_t buffered_num_rows = 0) : FieldDataArrayImpl(data_type, nullable, buffered_num_rows) { } }; template <> class FieldData : public FieldDataImpl { public: explicit FieldData(int64_t dim, DataType data_type, int64_t buffered_num_rows = 0) : FieldDataImpl::FieldDataImpl( dim, data_type, false, buffered_num_rows) { } }; template <> class FieldData : public FieldDataImpl { public: explicit FieldData(int64_t dim, DataType data_type, int64_t buffered_num_rows = 0) : FieldDataImpl(dim / 8, data_type, false, buffered_num_rows), binary_dim_(dim) { Assert(dim % 8 == 0); } int64_t get_dim() const override { return binary_dim_; } private: int64_t binary_dim_; }; template <> class FieldData : public FieldDataImpl { public: explicit FieldData(int64_t dim, DataType data_type, int64_t buffered_num_rows = 0) : FieldDataImpl::FieldDataImpl( dim, data_type, false, buffered_num_rows) { } }; template <> class FieldData : public FieldDataImpl { public: explicit FieldData(int64_t dim, DataType data_type, int64_t buffered_num_rows = 0) : FieldDataImpl::FieldDataImpl( dim, data_type, false, buffered_num_rows) { } }; template <> class FieldData : public FieldDataSparseVectorImpl { public: explicit FieldData(DataType data_type, int64_t buffered_num_rows = 0) : FieldDataSparseVectorImpl(data_type, buffered_num_rows) { } }; using FieldDataPtr = std::shared_ptr; using FieldDataChannel = Channel; using FieldDataChannelPtr = std::shared_ptr; struct ArrowDataWrapper { ArrowDataWrapper() = default; ArrowDataWrapper(std::shared_ptr reader, std::shared_ptr arrow_reader, std::shared_ptr file_data) : reader(std::move(reader)), arrow_reader(std::move(arrow_reader)), file_data(std::move(file_data)) { } std::shared_ptr reader; // file reader must outlive the record batch reader std::shared_ptr arrow_reader; // underlying file data memory, must outlive the arrow reader std::shared_ptr file_data; }; using ArrowReaderChannel = Channel>; FieldDataPtr InitScalarFieldData(const DataType& type, bool nullable, int64_t cap_rows); } // namespace milvus