Coverage Report

Created: 2026-05-18 03:48

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exec/common/util.hpp
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 <thrift/protocol/TJSONProtocol.h>
21
22
#include <boost/shared_ptr.hpp>
23
24
#include "core/block/block.h"
25
#include "core/column/column.h"
26
#include "core/column/column_nullable.h"
27
#include "exprs/vexpr.h"
28
#include "exprs/vexpr_context.h"
29
#include "runtime/descriptors.h"
30
#include "util/simd/bits.h"
31
32
namespace doris {
33
class VectorizedUtils {
34
public:
35
48.4k
    static Block create_empty_columnswithtypename(const RowDescriptor& row_desc) {
36
        // Block block;
37
48.4k
        return create_columns_with_type_and_name(row_desc);
38
48.4k
    }
39
    static ScopedMutableBlock build_scoped_mutable_mem_reuse_block(Block* block,
40
32
                                                                   const RowDescriptor& row_desc) {
41
32
        if (!block->mem_reuse()) {
42
32
            MutableBlock tmp(VectorizedUtils::create_columns_with_type_and_name(row_desc));
43
32
            block->swap(tmp.to_block());
44
32
        }
45
32
        return ScopedMutableBlock(block);
46
32
    }
47
    static ScopedMutableBlock build_scoped_mutable_mem_reuse_block(Block* block,
48
627
                                                                   const Block& other) {
49
627
        if (!block->mem_reuse()) {
50
579
            MutableBlock tmp(other.clone_empty());
51
579
            block->swap(tmp.to_block());
52
579
        }
53
627
        return ScopedMutableBlock(block);
54
627
    }
55
    static ScopedMutableBlock build_scoped_mutable_mem_reuse_block(
56
28
            Block* block, const std::vector<SlotDescriptor*>& slots) {
57
28
        if (!block->mem_reuse()) {
58
27
            size_t column_size = slots.size();
59
27
            MutableColumns columns(column_size);
60
112
            for (size_t i = 0; i < column_size; i++) {
61
85
                columns[i] = slots[i]->get_empty_mutable_column();
62
85
            }
63
27
            int n_columns = 0;
64
85
            for (const auto slot_desc : slots) {
65
85
                block->insert(ColumnWithTypeAndName(std::move(columns[n_columns++]),
66
85
                                                    slot_desc->get_data_type_ptr(),
67
85
                                                    slot_desc->col_name()));
68
85
            }
69
27
        }
70
28
        return ScopedMutableBlock(block);
71
28
    }
72
73
48.5k
    static ColumnsWithTypeAndName create_columns_with_type_and_name(const RowDescriptor& row_desc) {
74
48.5k
        ColumnsWithTypeAndName columns_with_type_and_name;
75
48.5k
        for (const auto& tuple_desc : row_desc.tuple_descriptors()) {
76
94.7k
            for (const auto& slot_desc : tuple_desc->slots()) {
77
94.7k
                columns_with_type_and_name.emplace_back(nullptr, slot_desc->get_data_type_ptr(),
78
94.7k
                                                        slot_desc->col_name());
79
94.7k
            }
80
48.5k
        }
81
48.5k
        return columns_with_type_and_name;
82
48.5k
    }
83
84
24.0k
    static NameAndTypePairs create_name_and_data_types(const RowDescriptor& row_desc) {
85
24.0k
        NameAndTypePairs name_with_types;
86
24.0k
        for (const auto& tuple_desc : row_desc.tuple_descriptors()) {
87
65.9k
            for (const auto& slot_desc : tuple_desc->slots()) {
88
65.9k
                name_with_types.emplace_back(slot_desc->col_name(), slot_desc->get_data_type_ptr());
89
65.9k
            }
90
24.0k
        }
91
24.0k
        return name_with_types;
92
24.0k
    }
93
94
877
    static ColumnsWithTypeAndName create_empty_block(const RowDescriptor& row_desc) {
95
877
        ColumnsWithTypeAndName columns_with_type_and_name;
96
877
        for (const auto& tuple_desc : row_desc.tuple_descriptors()) {
97
896
            for (const auto& slot_desc : tuple_desc->slots()) {
98
896
                columns_with_type_and_name.emplace_back(
99
896
                        slot_desc->get_data_type_ptr()->create_column(),
100
896
                        slot_desc->get_data_type_ptr(), slot_desc->col_name());
101
896
            }
102
877
        }
103
877
        return columns_with_type_and_name;
104
877
    }
105
106
    // Helper function to extract null map from column (including ColumnConst cases)
107
135
    static const NullMap* get_null_map(const ColumnPtr& col) {
108
135
        if (col->is_nullable()) {
109
101
            return &static_cast<const ColumnNullable&>(*col).get_null_map_data();
110
101
        }
111
        // Handle Const(Nullable) case
112
34
        if (const auto* const_col = check_and_get_column<ColumnConst>(col.get());
113
34
            const_col != nullptr && const_col->is_concrete_nullable()) {
114
34
            return &static_cast<const ColumnNullable&>(const_col->get_data_column())
115
34
                            .get_null_map_data();
116
34
        }
117
0
        return nullptr;
118
34
    };
119
120
    // is_single: whether src is null map of a ColumnConst
121
113k
    static void update_null_map(NullMap& dst, const NullMap& src, bool is_single = false) {
122
113k
        size_t size = dst.size();
123
113k
        auto* __restrict l = dst.data();
124
113k
        auto* __restrict r = src.data();
125
113k
        if (is_single) {
126
34
            if (r[0]) {
127
0
                for (size_t i = 0; i < size; ++i) {
128
0
                    l[i] = 1;
129
0
                }
130
0
            }
131
113k
        } else {
132
456k
            for (size_t i = 0; i < size; ++i) {
133
343k
                l[i] |= r[i];
134
343k
            }
135
113k
        }
136
113k
    }
137
138
48.0k
    static DataTypes get_data_types(const RowDescriptor& row_desc) {
139
48.0k
        DataTypes data_types;
140
48.0k
        for (const auto& tuple_desc : row_desc.tuple_descriptors()) {
141
94.2k
            for (const auto& slot_desc : tuple_desc->slots()) {
142
94.2k
                data_types.push_back(slot_desc->get_data_type_ptr());
143
94.2k
            }
144
48.0k
        }
145
48.0k
        return data_types;
146
48.0k
    }
147
148
24.0k
    static std::vector<std::string> get_column_names(const RowDescriptor& row_desc) {
149
24.0k
        std::vector<std::string> column_names;
150
24.0k
        for (const auto& tuple_desc : row_desc.tuple_descriptors()) {
151
47.1k
            for (const auto& slot_desc : tuple_desc->slots()) {
152
47.1k
                column_names.push_back(slot_desc->col_name());
153
47.1k
            }
154
24.0k
        }
155
24.0k
        return column_names;
156
24.0k
    }
157
158
107k
    static bool all_arguments_are_constant(const Block& block, const ColumnNumbers& args) {
159
121k
        for (const auto& arg : args) {
160
121k
            if (!is_column_const(*block.get_by_position(arg).column)) {
161
104k
                return false;
162
104k
            }
163
121k
        }
164
2.81k
        return true;
165
107k
    }
166
167
    // SIMD helper: find the first not null in the null map
168
0
    static size_t find_first_valid_simd(const NullMap& null_map, size_t start_pos, size_t end_pos) {
169
0
#ifdef __AVX2__
170
        // search by simd
171
0
        for (size_t pos = start_pos; pos + 31 < end_pos; pos += 32) {
172
0
            __m256i null_vec = _mm256_loadu_si256(reinterpret_cast<const __m256i*>(&null_map[pos]));
173
0
            __m256i zero_vec = _mm256_setzero_si256();
174
0
            __m256i cmp_result = _mm256_cmpeq_epi8(null_vec, zero_vec);
175
176
0
            int mask = _mm256_movemask_epi8(cmp_result);
177
0
            if (mask != 0) {
178
                // find the first not null
179
0
                return pos + __builtin_ctz(mask);
180
0
            }
181
0
        }
182
183
        // handle the rest elements
184
0
        for (size_t pos = start_pos + ((end_pos - start_pos) / 32) * 32; pos < end_pos; ++pos) {
185
0
            if (!null_map[pos]) {
186
0
                return pos;
187
0
            }
188
0
        }
189
#else
190
        // standard implementation
191
        for (size_t pos = start_pos; pos < end_pos; ++pos) {
192
            if (!null_map[pos]) {
193
                return pos;
194
            }
195
        }
196
#endif
197
0
        return end_pos;
198
0
    }
199
200
    // SIMD helper: batch set non-null value with [start, end) to 1
201
    static void range_set_nullmap_to_true_simd(NullMap& null_map, size_t start_pos,
202
0
                                               size_t end_pos) {
203
0
#ifdef __AVX2__
204
        // batch set null map to 1 using SIMD (32 bytes at a time)
205
0
        for (size_t pos = start_pos; pos + 31 < end_pos; pos += 32) {
206
0
            __m256i ones_vec = _mm256_set1_epi8(1);
207
0
            _mm256_storeu_si256(reinterpret_cast<__m256i*>(&null_map[pos]), ones_vec);
208
0
        }
209
210
        // handle the rest elements (less than 32 bytes)
211
0
        for (size_t pos = start_pos + ((end_pos - start_pos) / 32) * 32; pos < end_pos; ++pos) {
212
0
            null_map[pos] = 1;
213
0
        }
214
#else
215
        // standard implementation
216
        for (size_t pos = start_pos; pos < end_pos; ++pos) {
217
            null_map[pos] = 1;
218
        }
219
#endif
220
0
    }
221
};
222
223
14
inline bool match_suffix(const std::string& name, const std::string& suffix) {
224
14
    if (name.length() < suffix.length()) {
225
0
        return false;
226
0
    }
227
14
    return name.substr(name.length() - suffix.length()) == suffix;
228
14
}
229
230
4
inline std::string remove_suffix(const std::string& name, const std::string& suffix) {
231
4
    CHECK(match_suffix(name, suffix))
232
0
            << ", suffix not match, name=" << name << ", suffix=" << suffix;
233
4
    return name.substr(0, name.length() - suffix.length());
234
4
};
235
236
0
inline ColumnPtr create_always_true_column(size_t size, bool is_nullable) {
237
0
    ColumnPtr res_data_column = ColumnUInt8::create(1, 1);
238
0
    if (is_nullable) {
239
0
        auto null_map = ColumnUInt8::create(1, 0);
240
0
        res_data_column = ColumnNullable::create(res_data_column, std::move(null_map));
241
0
    }
242
0
    return ColumnConst::create(std::move(res_data_column), size);
243
0
}
244
245
// change null element to true element
246
0
inline void change_null_to_true(MutableColumnPtr column, ColumnPtr argument = nullptr) {
247
0
    size_t rows = column->size();
248
0
    if (is_column_const(*column)) {
249
0
        change_null_to_true(
250
0
                assert_cast<ColumnConst*>(column.get())->get_data_column_ptr()->assume_mutable());
251
0
    } else if (column->has_null()) {
252
0
        auto* nullable = assert_cast<ColumnNullable*>(column.get());
253
0
        auto* __restrict data = assert_cast<ColumnUInt8*>(nullable->get_nested_column_ptr().get())
254
0
                                        ->get_data()
255
0
                                        .data();
256
0
        const NullMap& null_map = nullable->get_null_map_data();
257
0
        for (size_t i = 0; i < rows; ++i) {
258
0
            data[i] |= null_map[i];
259
0
        }
260
0
        nullable->fill_false_to_nullmap(rows);
261
0
    } else if (argument && argument->has_null()) {
262
0
        const auto* __restrict null_map =
263
0
                assert_cast<const ColumnNullable*>(argument.get())->get_null_map_data().data();
264
0
        auto* __restrict data = assert_cast<ColumnUInt8*>(column.get())->get_data().data();
265
0
        for (size_t i = 0; i < rows; ++i) {
266
0
            data[i] |= null_map[i];
267
0
        }
268
0
    }
269
0
}
270
271
0
inline size_t calculate_false_number(ColumnPtr column) {
272
0
    size_t rows = column->size();
273
0
    if (is_column_const(*column)) {
274
0
        return calculate_false_number(
275
0
                       assert_cast<const ColumnConst*>(column.get())->get_data_column_ptr()) *
276
0
               rows;
277
0
    } else if (column->is_nullable()) {
278
0
        const auto* nullable = assert_cast<const ColumnNullable*>(column.get());
279
0
        const auto* data = assert_cast<const ColumnUInt8*>(nullable->get_nested_column_ptr().get())
280
0
                                   ->get_data()
281
0
                                   .data();
282
0
        const auto* __restrict null_map = nullable->get_null_map_data().data();
283
0
        return simd::count_zero_num(reinterpret_cast<const int8_t* __restrict>(data), null_map,
284
0
                                    rows);
285
0
    } else {
286
0
        const auto* data = assert_cast<const ColumnUInt8*>(column.get())->get_data().data();
287
0
        return simd::count_zero_num(reinterpret_cast<const int8_t* __restrict>(data), rows);
288
0
    }
289
0
}
290
291
template <typename T>
292
99
T read_from_json(std::string& json_str) {
293
99
    auto memBufferIn = std::make_shared<apache::thrift::transport::TMemoryBuffer>(
294
99
            reinterpret_cast<uint8_t*>(json_str.data()), static_cast<uint32_t>(json_str.size()));
295
99
    auto jsonProtocolIn = std::make_shared<apache::thrift::protocol::TJSONProtocol>(memBufferIn);
296
99
    T params;
297
99
    params.read(jsonProtocolIn.get());
298
99
    return params;
299
99
}
_ZN5doris14read_from_jsonINS_5TExprEEET_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
Line
Count
Source
292
93
T read_from_json(std::string& json_str) {
293
93
    auto memBufferIn = std::make_shared<apache::thrift::transport::TMemoryBuffer>(
294
93
            reinterpret_cast<uint8_t*>(json_str.data()), static_cast<uint32_t>(json_str.size()));
295
93
    auto jsonProtocolIn = std::make_shared<apache::thrift::protocol::TJSONProtocol>(memBufferIn);
296
93
    T params;
297
93
    params.read(jsonProtocolIn.get());
298
93
    return params;
299
93
}
_ZN5doris14read_from_jsonINS_16TDescriptorTableEEET_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
Line
Count
Source
292
6
T read_from_json(std::string& json_str) {
293
6
    auto memBufferIn = std::make_shared<apache::thrift::transport::TMemoryBuffer>(
294
6
            reinterpret_cast<uint8_t*>(json_str.data()), static_cast<uint32_t>(json_str.size()));
295
6
    auto jsonProtocolIn = std::make_shared<apache::thrift::protocol::TJSONProtocol>(memBufferIn);
296
6
    T params;
297
6
    params.read(jsonProtocolIn.get());
298
6
    return params;
299
6
}
300
301
} // namespace doris
302
303
namespace apache::thrift {
304
template <typename ThriftStruct>
305
14
ThriftStruct from_json_string(const std::string& json_val) {
306
14
    using namespace apache::thrift::transport;
307
14
    using namespace apache::thrift::protocol;
308
14
    ThriftStruct ts;
309
14
    std::shared_ptr<TTransport> trans =
310
14
            std::make_shared<TMemoryBuffer>((uint8_t*)json_val.c_str(), (uint32_t)json_val.size());
311
14
    TJSONProtocol protocol(trans);
312
14
    ts.read(&protocol);
313
14
    return ts;
314
14
}
315
316
} // namespace apache::thrift