| // Licensed to the Apache Software Foundation (ASF) 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 <gen_cpp/PaloInternalService_types.h> |
| #include <stdint.h> |
| |
| #include <cstddef> |
| #include <map> |
| #include <memory> |
| #include <string> |
| #include <unordered_set> |
| #include <utility> |
| #include <vector> |
| |
| #include "common/factory_creator.h" |
| #include "common/status.h" |
| #include "olap/data_dir.h" |
| #include "olap/rowset/rowset_meta.h" |
| #include "olap/rowset/rowset_reader.h" |
| #include "olap/tablet.h" |
| #include "olap/tablet_reader.h" |
| #include "olap/tablet_schema.h" |
| #include "runtime/runtime_state.h" |
| #include "vec/data_types/data_type.h" |
| #include "vec/exec/scan/scanner.h" |
| |
| namespace doris { |
| |
| struct OlapScanRange; |
| class FunctionFilter; |
| class RuntimeProfile; |
| class RuntimeState; |
| class TPaloScanRange; |
| namespace pipeline { |
| class ScanLocalStateBase; |
| struct FilterPredicates; |
| } // namespace pipeline |
| |
| namespace vectorized { |
| |
| class Block; |
| |
| class OlapScanner : public Scanner { |
| ENABLE_FACTORY_CREATOR(OlapScanner); |
| |
| public: |
| struct Params { |
| RuntimeState* state = nullptr; |
| RuntimeProfile* profile = nullptr; |
| std::vector<OlapScanRange*> key_ranges; |
| BaseTabletSPtr tablet; |
| int64_t version; |
| TabletReadSource read_source; |
| int64_t limit; |
| bool aggregation; |
| }; |
| |
| OlapScanner(pipeline::ScanLocalStateBase* parent, Params&& params); |
| |
| Status prepare() override; |
| |
| Status open(RuntimeState* state) override; |
| |
| Status close(RuntimeState* state) override; |
| |
| doris::TabletStorageType get_storage_type() override; |
| |
| void update_realtime_counters() override; |
| |
| protected: |
| Status _get_block_impl(RuntimeState* state, Block* block, bool* eos) override; |
| void _collect_profile_before_close() override; |
| |
| private: |
| Status _init_tablet_reader_params( |
| const phmap::flat_hash_map<int, SlotDescriptor*>& slot_id_to_slot_desc, |
| const std::vector<OlapScanRange*>& key_ranges, |
| const phmap::flat_hash_map<int, std::vector<std::shared_ptr<ColumnPredicate>>>& |
| predicates, |
| const std::vector<FunctionFilter>& function_filters); |
| |
| [[nodiscard]] Status _init_return_columns(); |
| [[nodiscard]] Status _init_variant_columns(); |
| |
| std::vector<OlapScanRange*> _key_ranges; |
| |
| TabletReader::ReaderParams _tablet_reader_params; |
| std::unique_ptr<TabletReader> _tablet_reader; |
| |
| int64_t _bytes_read_from_local = 0; |
| int64_t _bytes_read_from_remote = 0; |
| |
| public: |
| std::vector<ColumnId> _return_columns; |
| |
| std::unordered_set<uint32_t> _tablet_columns_convert_to_null_set; |
| |
| // This three fields are copied from OlapScanLocalState. |
| std::map<SlotId, vectorized::VExprContextSPtr> _slot_id_to_virtual_column_expr; |
| std::map<SlotId, size_t> _slot_id_to_index_in_block; |
| std::map<SlotId, vectorized::DataTypePtr> _slot_id_to_col_type; |
| |
| // ColumnId of virtual column to its expr context |
| std::map<ColumnId, vectorized::VExprContextSPtr> _virtual_column_exprs; |
| // ColumnId of virtual column to its index in block |
| std::map<ColumnId, size_t> _vir_cid_to_idx_in_block; |
| // The idx of vir_col in block to its data type. |
| std::map<size_t, vectorized::DataTypePtr> _vir_col_idx_to_type; |
| std::shared_ptr<vectorized::ScoreRuntime> _score_runtime; |
| |
| std::shared_ptr<segment_v2::AnnTopNRuntime> _ann_topn_runtime; |
| |
| VectorSearchUserParams _vector_search_params; |
| }; |
| } // namespace vectorized |
| } // namespace doris |