Coverage Report

Created: 2026-07-08 16:37

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/information_schema/schema_scanner.h
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
18
#pragma once
19
20
#include <gen_cpp/Data_types.h>
21
#include <gen_cpp/Descriptors_types.h>
22
23
#include <condition_variable>
24
#include <cstddef>
25
#include <cstdint>
26
#include <memory>
27
#include <set>
28
#include <string>
29
#include <vector>
30
31
#include "cctz/time_zone.h"
32
#include "common/factory_creator.h"
33
#include "common/status.h"
34
#include "core/data_type/define_primitive_type.h"
35
#include "runtime/runtime_profile.h"
36
37
namespace doris {
38
39
// forehead declare class, because jni function init in DorisServer.
40
41
class RuntimeState;
42
class ObjectPool;
43
class TUserIdentity;
44
45
class Block;
46
47
class Dependency;
48
49
struct SchemaScannerCommonParam {
50
    SchemaScannerCommonParam()
51
4.40k
            : db(nullptr),
52
4.40k
              table(nullptr),
53
4.40k
              wild(nullptr),
54
4.40k
              user(nullptr),
55
4.40k
              user_ip(nullptr),
56
4.40k
              current_user_ident(nullptr),
57
4.40k
              frontend_conjuncts(nullptr),
58
4.40k
              ip(nullptr),
59
4.40k
              port(0),
60
4.40k
              catalog(nullptr) {}
61
    const std::string* db = nullptr;
62
    const std::string* table = nullptr;
63
    const std::string* wild = nullptr;
64
    const std::string* user = nullptr;                 // deprecated
65
    const std::string* user_ip = nullptr;              // deprecated
66
    const TUserIdentity* current_user_ident = nullptr; // to replace the user and user ip
67
    const std::string* frontend_conjuncts = nullptr;   // frontend_conjuncts
68
    const std::string* ip = nullptr;                   // frontend ip
69
    int32_t port;                                      // frontend thrift port
70
    int64_t thread_id;
71
    const std::string* catalog = nullptr;
72
    std::set<TNetworkAddress> fe_addr_list;
73
    std::set<std::string> required_columns;
74
};
75
76
// scanner parameter from frontend
77
struct SchemaScannerParam {
78
    std::shared_ptr<SchemaScannerCommonParam> common_param;
79
    std::unique_ptr<RuntimeProfile> profile;
80
81
2.20k
    SchemaScannerParam() : common_param(new SchemaScannerCommonParam()) {}
82
};
83
84
// virtual scanner for all schema table
85
class SchemaScanner {
86
public:
87
    struct ColumnDesc {
88
        const char* name = nullptr;
89
        PrimitiveType type;
90
        int size;
91
        bool is_null;
92
        /// Only set if type == TYPE_DECIMAL
93
        int precision = -1;
94
        /// Only set if type == TYPE_DECIMAL or DATETIMEV2
95
        int scale = -1;
96
    };
97
    SchemaScanner(const std::vector<ColumnDesc>& columns,
98
                  TSchemaTableType::type type = TSchemaTableType::SCH_INVALID);
99
    virtual ~SchemaScanner();
100
101
    // init object need information, schema etc.
102
    virtual Status init(RuntimeState* state, SchemaScannerParam* param, ObjectPool* pool);
103
    Status get_next_block(RuntimeState* state, Block* block, bool* eos);
104
    // Start to work
105
    virtual Status start(RuntimeState* state);
106
    virtual Status get_next_block_internal(Block* block, bool* eos) = 0;
107
8.31k
    const std::vector<ColumnDesc>& get_column_desc() const { return _columns; }
108
    // factory function
109
    static std::unique_ptr<SchemaScanner> create(TSchemaTableType::type type);
110
    TSchemaTableType::type type() const { return _schema_table_type; }
111
2.20k
    void set_dependency(std::shared_ptr<Dependency> dep) { _dependency = dep; }
112
    Status get_next_block_async(RuntimeState* state);
113
114
protected:
115
    void _init_block(Block* src_block);
116
    Status fill_dest_column_for_range(Block* block, size_t pos, const std::vector<void*>& datas);
117
118
    Status insert_block_column(TCell cell, int col_index, Block* block, PrimitiveType type);
119
120
    // get dbname from catalogname.dbname
121
    // if full_name does not have catalog part, just return origin name.
122
    std::string get_db_from_full_name(const std::string& full_name);
123
124
    bool _is_init;
125
    // this is used for sub class
126
    SchemaScannerParam* _param = nullptr;
127
    // schema table's column desc
128
    std::vector<ColumnDesc> _columns;
129
130
    TSchemaTableType::type _schema_table_type;
131
132
    RuntimeProfile::Counter* _get_db_timer = nullptr;
133
    RuntimeProfile::Counter* _get_table_timer = nullptr;
134
    RuntimeProfile::Counter* _get_describe_timer = nullptr;
135
    RuntimeProfile::Counter* _fill_block_timer = nullptr;
136
137
    std::shared_ptr<Dependency> _dependency = nullptr;
138
139
    std::unique_ptr<Block> _data_block;
140
    AtomicStatus _scanner_status;
141
    std::atomic<bool> _eos = false;
142
    std::atomic<bool> _opened = false;
143
    std::atomic<bool> _async_thread_running = false;
144
    std::string _timezone;
145
    cctz::time_zone _timezone_obj;
146
};
147
148
} // namespace doris