Coverage Report

Created: 2026-08-31 19:42

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exprs/function/function_string_misc.cpp
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
#include <crc32c/crc32c.h>
19
#include <fmt/format.h>
20
#include <glog/logging.h>
21
#include <unicode/normalizer2.h>
22
#include <unicode/stringpiece.h>
23
#include <unicode/unistr.h>
24
25
#include <algorithm>
26
#include <bit>
27
#include <boost/locale.hpp>
28
#include <cctype>
29
#include <climits>
30
#include <cstddef>
31
#include <cstdint>
32
#include <cstdlib>
33
#include <cstring>
34
#include <format>
35
#include <iomanip>
36
#include <memory>
37
#include <random>
38
#include <sstream>
39
#include <string>
40
#include <string_view>
41
#include <unordered_map>
42
#include <utility>
43
#include <vector>
44
45
#include "common/compiler_util.h"
46
#include "common/exception.h"
47
#include "common/status.h"
48
#include "core/assert_cast.h"
49
#include "core/block/block.h"
50
#include "core/block/column_numbers.h"
51
#include "core/block/column_with_type_and_name.h"
52
#include "core/column/column.h"
53
#include "core/column/column_const.h"
54
#include "core/column/column_nullable.h"
55
#include "core/column/column_string.h"
56
#include "core/column/column_vector.h"
57
#include "core/data_type/data_type.h"
58
#include "core/data_type/data_type_nullable.h"
59
#include "core/data_type/data_type_number.h"
60
#include "core/data_type/data_type_string.h"
61
#include "core/data_type/define_primitive_type.h"
62
#include "core/memcpy_small.h"
63
#include "core/pod_array.h"
64
#include "core/string_ref.h"
65
#include "core/types.h"
66
#include "exec/common/hash_table/phmap_fwd_decl.h"
67
#include "exec/common/pinyin.h"
68
#include "exec/common/stringop_substring.h"
69
#include "exec/common/template_helpers.hpp"
70
#include "exprs/function/function.h"
71
#include "exprs/function/function_helpers.h"
72
#include "exprs/function/function_needs_to_handle_null.h"
73
#include "exprs/function_context.h"
74
#include "pugixml.hpp"
75
#include "util/hash_util.hpp"
76
#include "util/raw_value.h"
77
#include "util/simd/vstring_function.h"
78
#include "util/string_util.h"
79
#include "util/utf8_check.h"
80
81
#ifndef USE_LIBCPP
82
#include <memory_resource>
83
#define PMR std::pmr
84
#else
85
#include <boost/container/pmr/monotonic_buffer_resource.hpp>
86
#include <boost/container/pmr/vector.hpp>
87
#define PMR boost::container::pmr
88
#endif
89
90
#include "exprs/function/simple_function_factory.h"
91
92
namespace doris {
93
#include "common/compile_check_avoid_begin.h"
94
95
class FunctionAutoPartitionName : public IFunction {
96
public:
97
    static constexpr auto name = "auto_partition_name";
98
6
    static FunctionPtr create() { return std::make_shared<FunctionAutoPartitionName>(); }
99
0
    String get_name() const override { return name; }
100
0
    size_t get_number_of_arguments() const override { return 0; }
101
5
    bool is_variadic() const override { return true; }
102
8
    bool use_default_implementation_for_nulls() const override { return false; }
103
4
    DataTypePtr get_return_type_impl(const DataTypes& arguments) const override {
104
4
        return std::make_shared<DataTypeString>();
105
4
    }
106
107
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
108
4
                        uint32_t result, size_t input_rows_count) const override {
109
4
        size_t argument_size = arguments.size();
110
4
        auto const_null_map = ColumnUInt8::create(input_rows_count, 0);
111
4
        auto null_map = ColumnUInt8::create(input_rows_count, 0);
112
4
        std::vector<const ColumnString::Chars*> chars_list(argument_size);
113
4
        std::vector<const ColumnString::Offsets*> offsets_list(argument_size);
114
4
        std::vector<bool> is_const_args(argument_size);
115
4
        std::vector<const ColumnUInt8::Container*> null_list(argument_size);
116
4
        std::vector<ColumnPtr> argument_null_columns(argument_size);
117
118
4
        std::vector<ColumnPtr> argument_columns(argument_size);
119
14
        for (int i = 0; i < argument_size; ++i) {
120
10
            argument_columns[i] =
121
10
                    block.get_by_position(arguments[i]).column->convert_to_full_column_if_const();
122
10
            if (const auto* nullable =
123
10
                        check_and_get_column<const ColumnNullable>(*argument_columns[i])) {
124
10
                null_list[i] = &nullable->get_null_map_data();
125
10
                argument_null_columns[i] = nullable->get_null_map_column_ptr();
126
10
                argument_columns[i] = nullable->get_nested_column_ptr();
127
10
            } else {
128
0
                null_list[i] = &const_null_map->get_data();
129
0
            }
130
131
10
            const auto& [col, is_const] =
132
10
                    unpack_if_const(block.get_by_position(arguments[i]).column);
133
134
10
            const auto* col_str = assert_cast<const ColumnString*>(argument_columns[i].get());
135
10
            chars_list[i] = &col_str->get_chars();
136
10
            offsets_list[i] = &col_str->get_offsets();
137
10
            is_const_args[i] = is_const;
138
10
        }
139
140
4
        auto res = ColumnString::create();
141
4
        auto& res_data = res->get_chars();
142
4
        auto& res_offset = res->get_offsets();
143
4
        res_offset.resize(input_rows_count);
144
145
4
        std::string partition_type(chars_list[0]->raw_data(), (*offsets_list[0])[0]);
146
4
        std::transform(partition_type.begin(), partition_type.end(), partition_type.begin(),
147
18
                       [](unsigned char c) { return static_cast<char>(std::tolower(c)); });
148
        // partition type is list|range
149
4
        if (partition_type == "list") {
150
2
            return _auto_partition_type_of_list(chars_list, offsets_list, is_const_args, null_list,
151
2
                                                res_data, res_offset, input_rows_count,
152
2
                                                argument_size, block, result, res);
153
2
        } else {
154
2
            return _auto_partition_type_of_range(chars_list, offsets_list, is_const_args, res_data,
155
2
                                                 res_offset, input_rows_count, argument_size, block,
156
2
                                                 result, res);
157
2
        }
158
0
        return Status::OK();
159
4
    }
160
161
private:
162
2
    std::u16string _string_to_u16string(const std::string& str) const {
163
2
        return boost::locale::conv::utf_to_utf<char16_t>(str);
164
2
    }
165
166
2
    std::string _string_to_unicode(const std::u16string& s) const {
167
2
        std::string res_s;
168
2
        res_s.reserve(s.size());
169
2
        if (s.length() > 0 && s[0] == '-') {
170
0
            res_s += '_';
171
0
        }
172
24
        for (int i = 0; i < s.length(); i++) {
173
22
            char16_t ch = s[i];
174
22
            if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9')) {
175
20
                res_s += ch;
176
20
            } else {
177
2
                int unicodeValue = _get_code_point_at(s, i);
178
2
                res_s += fmt::format("{:02x}", static_cast<uint32_t>(unicodeValue));
179
2
            }
180
22
        }
181
2
        return res_s;
182
2
    }
183
184
2
    int _get_code_point_at(const std::u16string& str, std::size_t index) const {
185
2
        char16_t first = str[index];
186
        // [0xD800,0xDBFF] is the scope of the first code unit
187
2
        if ((first >= 0xD800 && first <= 0xDBFF) && (index + 1 < str.size())) {
188
0
            char16_t second = str[index + 1];
189
            // [0xDC00,0xDFFF] is the scope of the second code unit
190
0
            if (second >= 0xDC00 && second <= 0xDFFF) {
191
0
                return ((first - 0xD800) << 10) + (second - 0xDC00) + 0x10000;
192
0
            }
193
0
        }
194
195
2
        return first;
196
2
    }
197
    Status _auto_partition_type_of_list(std::vector<const ColumnString::Chars*>& chars_list,
198
                                        std::vector<const ColumnString::Offsets*>& offsets_list,
199
                                        std::vector<bool>& is_const_args,
200
                                        const std::vector<const ColumnUInt8::Container*>& null_list,
201
                                        auto& res_data, auto& res_offset, size_t input_rows_count,
202
                                        size_t argument_size, Block& block, uint32_t result,
203
2
                                        auto& res) const {
204
2
        int curr_len = 0;
205
4
        for (int row = 0; row < input_rows_count; row++) {
206
2
            std::string res_p;
207
2
            res_p.reserve(argument_size * 5);
208
2
            res_p += 'p';
209
4
            for (int col = 1; col < argument_size; col++) {
210
2
                const auto& current_offsets = *offsets_list[col];
211
2
                const auto& current_chars = *chars_list[col];
212
2
                const auto& current_nullmap = *null_list[col];
213
214
2
                if (current_nullmap[row]) {
215
0
                    res_p += 'X';
216
2
                } else {
217
2
                    auto idx = index_check_const(row, is_const_args[col]);
218
219
2
                    int size = current_offsets[idx] - current_offsets[idx - 1];
220
2
                    const char* raw_chars =
221
2
                            reinterpret_cast<const char*>(&current_chars[current_offsets[idx - 1]]);
222
                    // convert string to u16string in order to convert to unicode strings
223
2
                    const std::string raw_str(raw_chars, size);
224
2
                    auto u16string = _string_to_u16string(raw_str);
225
2
                    res_p += _string_to_unicode(u16string) + std::to_string(u16string.size());
226
2
                }
227
2
            }
228
229
            // check the name of length
230
2
            int len = res_p.size();
231
2
            if (len > 50) {
232
0
                res_p = std::format("{}_{:08x}", res_p.substr(0, 50), to_hash_code(res_p));
233
0
                len = res_p.size();
234
0
            }
235
2
            curr_len += len;
236
2
            res_data.resize(curr_len);
237
2
            memcpy(&res_data[res_offset[row - 1]], res_p.c_str(), len);
238
2
            res_offset[row] = res_offset[row - 1] + len;
239
2
        }
240
2
        block.get_by_position(result).column = std::move(res);
241
2
        return Status::OK();
242
2
    }
243
244
    size_t _copy_date_str_of_len_to_res_data(auto& res_data, auto& res_offset,
245
                                             std::vector<std::string>& date_str, size_t row,
246
2
                                             size_t len) const {
247
2
        size_t curr_len = 1;
248
7
        for (int j = 0; j < len; j++) {
249
5
            memcpy(&res_data[res_offset[row - 1]] + curr_len, date_str[j].c_str(),
250
5
                   date_str[j].size());
251
5
            curr_len += date_str[j].size();
252
5
        }
253
2
        return curr_len;
254
2
    }
255
256
    Status _auto_partition_type_of_range(std::vector<const ColumnString::Chars*>& chars_list,
257
                                         std::vector<const ColumnString::Offsets*>& offsets_list,
258
                                         std::vector<bool>& is_const_args, auto& res_data,
259
                                         auto& res_offset, size_t input_rows_count,
260
                                         size_t argument_size, Block& block, uint32_t result,
261
2
                                         auto& res) const {
262
2
        std::string range_type(chars_list[1]->raw_data(), (*offsets_list[1])[0]);
263
2
        std::transform(range_type.begin(), range_type.end(), range_type.begin(),
264
8
                       [](unsigned char c) { return static_cast<char>(std::tolower(c)); });
265
266
2
        res_data.resize(15 * input_rows_count);
267
4
        for (int i = 0; i < input_rows_count; i++) {
268
2
            const auto& current_offsets = *offsets_list[2];
269
2
            const auto& current_chars = *chars_list[2];
270
271
2
            auto idx = index_check_const(i, is_const_args[2]);
272
2
            int size = current_offsets[idx] - current_offsets[idx - 1];
273
2
            const char* tmp =
274
2
                    reinterpret_cast<const char*>(&current_chars[current_offsets[idx - 1]]);
275
2
            std::string to_split_s(tmp, size);
276
277
            // check the str if it is date|datetime
278
2
            RE2 date_regex(R"(^\d{4}-\d{2}-\d{2}( \d{2}:\d{2}:\d{2})?$)");
279
2
            if (!RE2::FullMatch(to_split_s, date_regex)) {
280
0
                return Status::InvalidArgument("The range partition only support DATE|DATETIME");
281
0
            }
282
283
            // split date_str from (yyyy-mm-dd hh:mm:ss) to ([yyyy, mm, dd, hh, mm, ss])
284
2
            std::vector<std::string> date_str(6);
285
2
            date_str[0] = to_split_s.substr(0, 4);
286
12
            for (int ni = 5, j = 1; ni <= size; ni += 3, j++) {
287
10
                date_str[j] = to_split_s.substr(ni, 2);
288
10
            }
289
2
            int curr_len = 0;
290
291
2
            res_data[res_offset[i - 1]] = 'p';
292
            // raw => 2022-12-12 11:30:20
293
            // year => 2022 01 01 00 00 00
294
            // month => 2022 12 01 00 00 00
295
            // day => 2022 12 12 00 00 00
296
            // hour => 2022 12 12 11 00 00
297
            // minute => 2022 12  11 30 00
298
            // second => 2022 12 12 12 30 20
299
300
2
            if (range_type == "year") {
301
0
                curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 1);
302
0
                memcpy(&res_data[res_offset[i - 1]] + curr_len, "0101", 4);
303
0
                curr_len += 4;
304
2
            } else if (range_type == "month") {
305
1
                curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 2);
306
1
                memcpy(&res_data[res_offset[i - 1]] + curr_len, "01", 2);
307
1
                curr_len += 2;
308
1
            } else if (range_type == "day") {
309
1
                curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 3);
310
1
            } else if (range_type == "hour") {
311
0
                curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 4);
312
0
            } else if (range_type == "minute") {
313
0
                curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 5);
314
0
            } else if (range_type == "second") {
315
0
                curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 6);
316
0
            }
317
318
            // fill in zero
319
2
            int zero = 15 - curr_len;
320
2
            std::fill_n(&res_data[res_offset[i - 1]] + curr_len, zero, '0');
321
2
            curr_len += zero;
322
2
            res_offset[i] = res_offset[i - 1] + curr_len;
323
2
        }
324
2
        block.get_by_position(result).column = std::move(res);
325
2
        return Status::OK();
326
2
    }
327
328
0
    int32_t to_hash_code(const std::string& str) const {
329
0
        uint64_t h = 0;
330
0
        for (uint8_t c : str) {
331
0
            h = (h * 31U + c) & 0xFFFFFFFFU;
332
0
        }
333
0
        return static_cast<int32_t>(h);
334
0
    }
335
};
336
337
class FunctionRandomBytes : public IFunction {
338
public:
339
    static constexpr auto name = "random_bytes";
340
2
    static FunctionPtr create() { return std::make_shared<FunctionRandomBytes>(); }
341
1
    String get_name() const override { return name; }
342
0
    size_t get_number_of_arguments() const override { return 1; }
343
1
    bool is_variadic() const override { return false; }
344
345
0
    DataTypePtr get_return_type_impl(const DataTypes& arguments) const override {
346
0
        return std::make_shared<DataTypeString>();
347
0
    }
348
349
0
    bool use_default_implementation_for_constants() const final { return false; }
350
351
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
352
0
                        uint32_t result, size_t input_rows_count) const override {
353
0
        auto res = ColumnString::create();
354
0
        auto& res_offsets = res->get_offsets();
355
0
        auto& res_chars = res->get_chars();
356
0
        res_offsets.resize(input_rows_count);
357
358
0
        auto [arg_col, arg_const] = unpack_if_const(block.get_by_position(arguments[0]).column);
359
0
        const auto* length_col = assert_cast<const ColumnInt32*>(arg_col.get());
360
361
0
        if (arg_const) {
362
0
            res_chars.reserve(input_rows_count * (length_col->get_element(0) + 2));
363
0
        }
364
365
0
        std::vector<uint8_t, Allocator_<uint8_t>> random_bytes;
366
0
        std::random_device rd;
367
0
        std::mt19937 gen(rd());
368
369
0
        std::uniform_int_distribution<unsigned short> distribution(0, 255);
370
0
        for (size_t i = 0; i < input_rows_count; ++i) {
371
0
            size_t index = index_check_const(i, arg_const);
372
0
            if (length_col->get_element(index) < 0) [[unlikely]] {
373
0
                return Status::InvalidArgument("argument {} of function {} at row {} was invalid.",
374
0
                                               length_col->get_element(index), name, index);
375
0
            }
376
0
            random_bytes.resize(length_col->get_element(index));
377
378
0
            for (auto& byte : random_bytes) {
379
0
                byte = distribution(gen) & 0xFF;
380
0
            }
381
382
0
            std::basic_ostringstream<char, std::char_traits<char>, Allocator_<char>> oss;
383
0
            for (const auto& byte : random_bytes) {
384
0
                oss << std::setw(2) << std::setfill('0') << std::hex << static_cast<int>(byte);
385
0
            }
386
387
0
            StringOP::push_value_string("0x" + oss.str(), i, res_chars, res_offsets);
388
0
            random_bytes.clear();
389
0
        }
390
391
0
        block.get_by_position(result).column = std::move(res);
392
393
0
        return Status::OK();
394
0
    }
395
};
396
397
class FunctionConvertTo : public IFunction {
398
public:
399
    static constexpr auto name = "convert_to";
400
401
2
    static FunctionPtr create() { return std::make_shared<FunctionConvertTo>(); }
402
403
1
    String get_name() const override { return name; }
404
405
0
    size_t get_number_of_arguments() const override { return 2; }
406
407
0
    DataTypePtr get_return_type_impl(const DataTypes& /*arguments*/) const override {
408
0
        return std::make_shared<DataTypeString>();
409
0
    }
410
411
0
    Status open(FunctionContext* context, FunctionContext::FunctionStateScope scope) override {
412
0
        if (scope != FunctionContext::THREAD_LOCAL) {
413
0
            return Status::OK();
414
0
        }
415
0
        if (!context->is_col_constant(1)) {
416
0
            return Status::InvalidArgument(
417
0
                    "character argument to convert function must be constant.");
418
0
        }
419
0
        const auto& character_data = context->get_constant_col(1)->column_ptr->get_data_at(0);
420
0
        if (!iequal(character_data.to_string(), "gbk")) {
421
0
            return Status::RuntimeError(
422
0
                    "Illegal second argument column of function convert. now only support "
423
0
                    "convert to character set of gbk");
424
0
        }
425
426
0
        return Status::OK();
427
0
    }
428
429
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
430
0
                        uint32_t result, size_t input_rows_count) const override {
431
0
        ColumnPtr argument_column =
432
0
                block.get_by_position(arguments[0]).column->convert_to_full_column_if_const();
433
0
        const ColumnString* str_col = static_cast<const ColumnString*>(argument_column.get());
434
0
        const auto& str_offset = str_col->get_offsets();
435
0
        const auto& str_chars = str_col->get_chars();
436
0
        auto col_res = ColumnString::create();
437
0
        auto& res_offset = col_res->get_offsets();
438
0
        auto& res_chars = col_res->get_chars();
439
0
        res_offset.resize(input_rows_count);
440
        // max pinyin size is 6 + 1 (first '~') for utf8 chinese word 3
441
0
        size_t pinyin_size = (str_chars.size() + 2) / 3 * 7;
442
0
        ColumnString::check_chars_length(pinyin_size, 0);
443
0
        res_chars.resize(pinyin_size);
444
445
0
        size_t in_len = 0, out_len = 0;
446
0
        for (int i = 0; i < input_rows_count; ++i) {
447
0
            in_len = str_offset[i] - str_offset[i - 1];
448
0
            const char* in = reinterpret_cast<const char*>(&str_chars[str_offset[i - 1]]);
449
0
            char* out = reinterpret_cast<char*>(&res_chars[res_offset[i - 1]]);
450
0
            _utf8_to_pinyin(in, in_len, out, &out_len);
451
0
            res_offset[i] = res_offset[i - 1] + out_len;
452
0
        }
453
0
        res_chars.resize(res_offset[input_rows_count - 1]);
454
0
        block.replace_by_position(result, std::move(col_res));
455
0
        return Status::OK();
456
0
    }
457
458
0
    void _utf8_to_pinyin(const char* in, size_t in_len, char* out, size_t* out_len) const {
459
0
        auto do_memcpy = [](char*& dest, const char*& from, size_t size) {
460
0
            memcpy_small_allow_read_write_overflow15(dest, from, size);
461
0
            dest += size;
462
0
            from += size;
463
0
        };
464
0
        auto from = in;
465
0
        auto dest = out;
466
467
0
        while (from - in < in_len) {
468
0
            auto length = get_utf8_byte_length(*from);
469
0
            if (length != 3) {
470
0
                do_memcpy(dest, from, length);
471
0
            } else {
472
                // convert utf8 to unicode code to get pinyin offset
473
0
                if (auto tmp = (((int)(*from & 0x0F)) << 12) | (((int)(*(from + 1) & 0x3F)) << 6) |
474
0
                               (*(from + 2) & 0x3F);
475
0
                    tmp >= START_UNICODE_OFFSET and tmp < END_UNICODE_OFFSET) {
476
0
                    const char* buf = nullptr;
477
0
                    if (tmp >= START_UNICODE_OFFSET && tmp < MID_UNICODE_OFFSET) {
478
0
                        buf = PINYIN_DICT1 + (tmp - START_UNICODE_OFFSET) * MAX_PINYIN_LEN;
479
0
                    } else if (tmp >= MID_UNICODE_OFFSET && tmp < END_UNICODE_OFFSET) {
480
0
                        buf = PINYIN_DICT2 + (tmp - MID_UNICODE_OFFSET) * MAX_PINYIN_LEN;
481
0
                    }
482
483
0
                    auto end = strchr(buf, ' ');
484
                    // max len for pinyin is 6
485
0
                    int len = MAX_PINYIN_LEN;
486
0
                    if (end != nullptr && end - buf < MAX_PINYIN_LEN) {
487
0
                        len = end - buf;
488
0
                    }
489
                    // set first char '~' just make sure all english word lower than chinese word
490
0
                    *dest = 126;
491
0
                    memcpy(dest + 1, buf, len);
492
0
                    dest += (len + 1);
493
0
                    from += 3;
494
0
                } else {
495
0
                    do_memcpy(dest, from, 3);
496
0
                }
497
0
            }
498
0
        }
499
500
0
        *out_len = dest - out;
501
0
    }
502
};
503
// +-----------------------------------+
504
// | 丝                                |
505
// +-----------------------------------+
506
// 1 row in set, 1 warning (0.00 sec)
507
// mysql> select char(14989469 using utf8);
508
// +---------------------------+
509
// | char(14989469 using utf8) |
510
// +---------------------------+
511
// | 丝                        |
512
// +---------------------------+
513
// 1 row in set, 1 warning (0.00 sec)
514
// mysql> select char(0xe5, 0xa4, 0x9a, 0xe7, 0x9d, 0xbf, 0xe4, 0xb8, 0x9d, 68, 111, 114, 105, 115 using utf8);
515
// +---------------------------------------------------------------------------------------------+
516
// | char(0xe5, 0xa4, 0x9a, 0xe7, 0x9d, 0xbf, 0xe4, 0xb8, 0x9d, 68, 111, 114, 105, 115 using utf8) |
517
// +---------------------------------------------------------------------------------------------+
518
// | 多睿丝 Doris                                                                                 |
519
// +---------------------------------------------------------------------------------------------+
520
// mysql> select char(68, 111, 114, 0, 105, null, 115 using utf8);
521
// +--------------------------------------------------+
522
// | char(68, 111, 114, 0, 105, null, 115 using utf8) |
523
// +--------------------------------------------------+
524
// | Dor is                                           |
525
// +--------------------------------------------------+
526
527
// return null:
528
// mysql>  select char(255 using utf8);
529
// +----------------------+
530
// | char(255 using utf8) |
531
// +----------------------+
532
// | NULL                 |
533
// +----------------------+
534
// 1 row in set, 2 warnings (0.00 sec)
535
//
536
// mysql> show warnings;
537
// +---------+------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
538
// | Level   | Code | Message                                                                                                                                                                     |
539
// +---------+------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
540
// | Warning | 3719 | 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. |
541
// | Warning | 1300 | Invalid utf8mb3 character string: 'FF'                                                                                                                                      |
542
// +---------+------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
543
// 2 rows in set (0.01 sec)
544
545
// max int value:
546
// mysql> select char(18446744073709551615);
547
// +--------------------------------------------------------+
548
// | char(18446744073709551615)                             |
549
// +--------------------------------------------------------+
550
// | 0xFFFFFFFF                                             |
551
// +--------------------------------------------------------+
552
// 1 row in set (0.00 sec)
553
//
554
// mysql> select char(18446744073709551616);
555
// +--------------------------------------------------------+
556
// | char(18446744073709551616)                             |
557
// +--------------------------------------------------------+
558
// | 0xFFFFFFFF                                             |
559
// +--------------------------------------------------------+
560
// 1 row in set, 1 warning (0.00 sec)
561
//
562
// mysql> show warnings;
563
// +---------+------+-----------------------------------------------------------+
564
// | Level   | Code | Message                                                   |
565
// +---------+------+-----------------------------------------------------------+
566
// | Warning | 1292 | Truncated incorrect DECIMAL value: '18446744073709551616' |
567
// +---------+------+-----------------------------------------------------------+
568
// 1 row in set (0.00 sec)
569
570
// table columns:
571
// mysql> select * from t;
572
// +------+------+------+
573
// | f1   | f2   | f3   |
574
// +------+------+------+
575
// |  228 |  184 |  157 |
576
// |  228 |  184 |    0 |
577
// |  228 |  184 |   99 |
578
// |   99 |  228 |  184 |
579
// +------+------+------+
580
// 4 rows in set (0.00 sec)
581
//
582
// mysql> select char(f1, f2, f3 using utf8) from t;
583
// +-----------------------------+
584
// | char(f1, f2, f3 using utf8) |
585
// +-----------------------------+
586
// | 丝                          |
587
// |                             |
588
// |                             |
589
// | c                           |
590
// +-----------------------------+
591
// 4 rows in set, 4 warnings (0.00 sec)
592
//
593
// mysql> show warnings;
594
// +---------+------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
595
// | Level   | Code | Message                                                                                                                                                                     |
596
// +---------+------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
597
// | Warning | 3719 | 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. |
598
// | Warning | 1300 | Invalid utf8mb3 character string: 'E4B800'                                                                                                                                  |
599
// | Warning | 1300 | Invalid utf8mb3 character string: 'E4B863'                                                                                                                                  |
600
// | Warning | 1300 | Invalid utf8mb3 character string: 'E4B8'                                                                                                                                    |
601
// +---------+------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
602
class FunctionIntToChar : public IFunction {
603
public:
604
    static constexpr auto name = "char";
605
2
    static FunctionPtr create() { return std::make_shared<FunctionIntToChar>(); }
606
0
    String get_name() const override { return name; }
607
0
    size_t get_number_of_arguments() const override { return 0; }
608
1
    bool is_variadic() const override { return true; }
609
610
0
    DataTypePtr get_return_type_impl(const DataTypes& arguments) const override {
611
0
        return make_nullable(std::make_shared<DataTypeString>());
612
0
    }
613
0
    bool use_default_implementation_for_nulls() const override { return false; }
614
615
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
616
0
                        uint32_t result, size_t input_rows_count) const override {
617
0
        DCHECK_GE(arguments.size(), 2);
618
619
0
        int argument_size = arguments.size();
620
0
        std::vector<ColumnPtr> str_columns(argument_size - 1);
621
0
        std::vector<const ColumnString::Offsets*> offsets_list(argument_size - 1);
622
0
        std::vector<const ColumnString::Chars*> chars_list(argument_size - 1);
623
624
        // convert each argument columns to column string and then concat the string columns
625
0
        for (size_t i = 1; i < argument_size; ++i) {
626
0
            if (auto const_column = check_and_get_column<const ColumnConst>(
627
0
                        *block.get_by_position(arguments[i]).column)) {
628
                // ignore null
629
0
                if (const_column->only_null()) {
630
0
                    str_columns[i - 1] = nullptr;
631
0
                } else {
632
0
                    auto str_column = ColumnString::create();
633
0
                    auto& chars = str_column->get_chars();
634
0
                    auto& offsets = str_column->get_offsets();
635
0
                    offsets.resize(1);
636
0
                    const ColumnInt32* int_column;
637
0
                    if (auto* nullable = check_and_get_column<const ColumnNullable>(
638
0
                                const_column->get_data_column())) {
639
0
                        int_column = assert_cast<const ColumnInt32*>(
640
0
                                nullable->get_nested_column_ptr().get());
641
0
                    } else {
642
0
                        int_column =
643
0
                                assert_cast<const ColumnInt32*>(&const_column->get_data_column());
644
0
                    }
645
0
                    int int_val = int_column->get_int(0);
646
0
                    integer_to_char_(0, &int_val, chars, offsets);
647
0
                    str_columns[i - 1] =
648
0
                            ColumnConst::create(std::move(str_column), input_rows_count);
649
0
                }
650
0
                offsets_list[i - 1] = nullptr;
651
0
                chars_list[i - 1] = nullptr;
652
0
            } else {
653
0
                auto str_column = ColumnString::create();
654
0
                auto& chars = str_column->get_chars();
655
0
                auto& offsets = str_column->get_offsets();
656
                // data.resize(input_rows_count);
657
0
                offsets.resize(input_rows_count);
658
659
0
                if (auto nullable = check_and_get_column<const ColumnNullable>(
660
0
                            *block.get_by_position(arguments[i]).column)) {
661
0
                    const auto* int_data =
662
0
                            assert_cast<const ColumnInt32*>(nullable->get_nested_column_ptr().get())
663
0
                                    ->get_data()
664
0
                                    .data();
665
0
                    const auto* null_map_data = nullable->get_null_map_data().data();
666
0
                    for (size_t j = 0; j < input_rows_count; ++j) {
667
                        // ignore null
668
0
                        if (null_map_data[j]) {
669
0
                            offsets[j] = offsets[j - 1];
670
0
                        } else {
671
0
                            integer_to_char_(j, int_data + j, chars, offsets);
672
0
                        }
673
0
                    }
674
0
                } else {
675
0
                    const auto* int_data = assert_cast<const ColumnInt32*>(
676
0
                                                   block.get_by_position(arguments[i]).column.get())
677
0
                                                   ->get_data()
678
0
                                                   .data();
679
0
                    for (size_t j = 0; j < input_rows_count; ++j) {
680
0
                        integer_to_char_(j, int_data + j, chars, offsets);
681
0
                    }
682
0
                }
683
0
                offsets_list[i - 1] = &str_column->get_offsets();
684
0
                chars_list[i - 1] = &str_column->get_chars();
685
0
                str_columns[i - 1] = std::move(str_column);
686
0
            }
687
0
        }
688
689
0
        auto null_map = ColumnUInt8::create(input_rows_count, 0);
690
0
        auto res = ColumnString::create();
691
0
        auto& res_data = res->get_chars();
692
0
        auto& res_offset = res->get_offsets();
693
694
0
        size_t res_reserve_size = 0;
695
0
        for (size_t i = 0; i < argument_size - 1; ++i) {
696
0
            if (!str_columns[i]) {
697
0
                continue;
698
0
            }
699
0
            if (auto const_column = check_and_get_column<const ColumnConst>(*str_columns[i])) {
700
0
                auto str_column =
701
0
                        assert_cast<const ColumnString*>(&(const_column->get_data_column()));
702
0
                auto& offsets = str_column->get_offsets();
703
0
                res_reserve_size += (offsets[0] - offsets[-1]) * input_rows_count;
704
0
            } else {
705
0
                for (size_t j = 0; j < input_rows_count; ++j) {
706
0
                    size_t append = (*offsets_list[i])[j] - (*offsets_list[i])[j - 1];
707
                    // check whether the output might overflow(unlikely)
708
0
                    if (UNLIKELY(UINT_MAX - append < res_reserve_size)) {
709
0
                        return Status::BufferAllocFailed(
710
0
                                "function char output is too large to allocate");
711
0
                    }
712
0
                    res_reserve_size += append;
713
0
                }
714
0
            }
715
0
        }
716
0
        if ((UNLIKELY(UINT_MAX - input_rows_count < res_reserve_size))) {
717
0
            return Status::BufferAllocFailed("function char output is too large to allocate");
718
0
        }
719
0
        ColumnString::check_chars_length(res_reserve_size, 0);
720
0
        res_data.resize(res_reserve_size);
721
0
        res_offset.resize(input_rows_count);
722
723
0
        for (size_t i = 0; i < input_rows_count; ++i) {
724
0
            int current_length = 0;
725
0
            for (size_t j = 0; j < argument_size - 1; ++j) {
726
0
                if (!str_columns[j]) {
727
0
                    continue;
728
0
                }
729
0
                if (auto const_column = check_and_get_column<const ColumnConst>(*str_columns[j])) {
730
0
                    auto str_column = assert_cast<const ColumnString*, TypeCheckOnRelease::DISABLE>(
731
0
                            &(const_column->get_data_column()));
732
0
                    auto data_item = str_column->get_data_at(0);
733
0
                    memcpy_small_allow_read_write_overflow15(
734
0
                            &res_data[res_offset[i - 1]] + current_length, data_item.data,
735
0
                            data_item.size);
736
0
                    current_length += data_item.size;
737
0
                } else {
738
0
                    auto& current_offsets = *offsets_list[j];
739
0
                    auto& current_chars = *chars_list[j];
740
741
0
                    int size = current_offsets[i] - current_offsets[i - 1];
742
0
                    if (size > 0) {
743
0
                        memcpy_small_allow_read_write_overflow15(
744
0
                                &res_data[res_offset[i - 1]] + current_length,
745
0
                                &current_chars[current_offsets[i - 1]], size);
746
0
                        current_length += size;
747
0
                    }
748
0
                }
749
0
            }
750
0
            res_offset[i] = res_offset[i - 1] + current_length;
751
0
        }
752
753
        // validate utf8
754
0
        auto* null_map_data = null_map->get_data().data();
755
0
        for (size_t i = 0; i < input_rows_count; ++i) {
756
0
            if (!validate_utf8((const char*)(&res_data[res_offset[i - 1]]),
757
0
                               res_offset[i] - res_offset[i - 1])) {
758
0
                null_map_data[i] = 1;
759
0
            }
760
0
        }
761
762
0
        block.get_by_position(result).column =
763
0
                ColumnNullable::create(std::move(res), std::move(null_map));
764
0
        return Status::OK();
765
0
    }
766
767
private:
768
    void integer_to_char_(int line_num, const int* num, ColumnString::Chars& chars,
769
0
                          IColumn::Offsets& offsets) const {
770
0
        if (0 == *num) {
771
0
            chars.push_back('\0');
772
0
            offsets[line_num] = offsets[line_num - 1] + 1;
773
0
            return;
774
0
        }
775
0
        const char* bytes = (const char*)(num);
776
0
        if constexpr (std::endian::native == std::endian::little) {
777
0
            int k = 3;
778
0
            for (; k >= 0; --k) {
779
0
                if (bytes[k]) {
780
0
                    break;
781
0
                }
782
0
            }
783
0
            offsets[line_num] = offsets[line_num - 1] + k + 1;
784
0
            for (; k >= 0; --k) {
785
0
                chars.push_back(bytes[k] ? bytes[k] : '\0');
786
0
            }
787
        } else if constexpr (std::endian::native == std::endian::big) {
788
            int k = 0;
789
            for (; k < 4; ++k) {
790
                if (bytes[k]) {
791
                    break;
792
                }
793
            }
794
            offsets[line_num] = offsets[line_num - 1] + 4 - k;
795
            for (; k < 4; ++k) {
796
                chars.push_back(bytes[k] ? bytes[k] : '\0');
797
            }
798
        } else {
799
            static_assert(std::endian::native == std::endian::big ||
800
                                  std::endian::native == std::endian::little,
801
                          "Unsupported endianness");
802
        }
803
0
    }
804
};
805
806
class FunctionNgramSearch : public IFunction {
807
public:
808
    static constexpr auto name = "ngram_search";
809
2
    static FunctionPtr create() { return std::make_shared<FunctionNgramSearch>(); }
810
1
    String get_name() const override { return name; }
811
0
    size_t get_number_of_arguments() const override { return 3; }
812
0
    DataTypePtr get_return_type_impl(const DataTypes& arguments) const override {
813
0
        return std::make_shared<DataTypeFloat64>();
814
0
    }
815
816
    // ngram_search(text,pattern,gram_num)
817
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
818
0
                        uint32_t result, size_t input_rows_count) const override {
819
0
        CHECK_EQ(arguments.size(), 3);
820
0
        auto col_res = ColumnFloat64::create();
821
0
        bool col_const[3];
822
0
        ColumnPtr argument_columns[3];
823
0
        for (int i = 0; i < 3; ++i) {
824
0
            std::tie(argument_columns[i], col_const[i]) =
825
0
                    unpack_if_const(block.get_by_position(arguments[i]).column);
826
0
        }
827
0
        auto pattern = assert_cast<const ColumnString*>(argument_columns[1].get())->get_data_at(0);
828
0
        auto gram_num = assert_cast<const ColumnInt32*>(argument_columns[2].get())->get_element(0);
829
0
        const auto* text_col = assert_cast<const ColumnString*>(argument_columns[0].get());
830
831
0
        if (col_const[0]) {
832
0
            _execute_impl<true>(text_col, pattern, gram_num, *col_res, input_rows_count);
833
0
        } else {
834
0
            _execute_impl<false>(text_col, pattern, gram_num, *col_res, input_rows_count);
835
0
        }
836
837
0
        block.replace_by_position(result, std::move(col_res));
838
0
        return Status::OK();
839
0
    }
840
841
private:
842
    using NgramMap = phmap::flat_hash_map<uint32_t, uint8_t>;
843
    constexpr static auto not_found = 0b00;
844
    constexpr static auto found_in_pattern = 0b01;
845
    constexpr static auto found_in_text = 0b10;
846
    constexpr static auto found_in_pattern_and_text = 0b11;
847
848
0
    uint32_t sub_str_hash(const char* data, int32_t length) const {
849
0
        constexpr static uint32_t seed = 0;
850
0
        return crc32c::Extend(seed, (const uint8_t*)data, length);
851
0
    }
852
853
    template <bool column_const>
854
    void _execute_impl(const ColumnString* text_col, StringRef& pattern, int gram_num,
855
0
                       ColumnFloat64& res, size_t size) const {
856
0
        auto& res_data = res.get_data();
857
0
        res_data.resize_fill(size, 0);
858
        // If the length of the pattern is less than gram_num, return 0.
859
0
        if (pattern.size < gram_num) {
860
0
            return;
861
0
        }
862
863
        // Build a map by pattern string, which will be used repeatedly in the following loop.
864
0
        NgramMap pattern_map;
865
0
        int pattern_count = get_pattern_set(pattern_map, pattern, gram_num);
866
        // Each time a loop is executed, the map will be modified, so it needs to be restored afterward.
867
0
        std::vector<uint32_t> restore_map;
868
869
0
        for (int i = 0; i < size; i++) {
870
0
            auto text = text_col->get_data_at(index_check_const<column_const>(i));
871
0
            if (text.size < gram_num) {
872
                // If the length of the text is less than gram_num, return 0.
873
0
                continue;
874
0
            }
875
0
            restore_map.reserve(text.size);
876
0
            auto [text_count, intersection_count] =
877
0
                    get_text_set(text, gram_num, pattern_map, restore_map);
878
879
            // 2 * |Intersection| / (|text substr set| + |pattern substr set|)
880
0
            res_data[i] = 2.0 * intersection_count / (text_count + pattern_count);
881
0
        }
882
0
    }
Unexecuted instantiation: _ZNK5doris19FunctionNgramSearch13_execute_implILb1EEEvPKNS_9ColumnStrIjEERNS_9StringRefEiRNS_12ColumnVectorILNS_13PrimitiveTypeE9EEEm
Unexecuted instantiation: _ZNK5doris19FunctionNgramSearch13_execute_implILb0EEEvPKNS_9ColumnStrIjEERNS_9StringRefEiRNS_12ColumnVectorILNS_13PrimitiveTypeE9EEEm
883
884
0
    size_t get_pattern_set(NgramMap& pattern_map, StringRef& pattern, int gram_num) const {
885
0
        size_t pattern_count = 0;
886
0
        for (int i = 0; i + gram_num <= pattern.size; i++) {
887
0
            uint32_t cur_hash = sub_str_hash(pattern.data + i, gram_num);
888
0
            if (!pattern_map.contains(cur_hash)) {
889
0
                pattern_map[cur_hash] = found_in_pattern;
890
0
                pattern_count++;
891
0
            }
892
0
        }
893
0
        return pattern_count;
894
0
    }
895
896
    std::pair<size_t, size_t> get_text_set(StringRef& text, int gram_num, NgramMap& pattern_map,
897
0
                                           std::vector<uint32_t>& restore_map) const {
898
0
        restore_map.clear();
899
        //intersection_count indicates a substring both in pattern and text.
900
0
        size_t text_count = 0, intersection_count = 0;
901
0
        for (int i = 0; i + gram_num <= text.size; i++) {
902
0
            uint32_t cur_hash = sub_str_hash(text.data + i, gram_num);
903
0
            auto& val = pattern_map[cur_hash];
904
0
            if (val == not_found) {
905
0
                val ^= found_in_text;
906
0
                DCHECK(val == found_in_text);
907
                // only found in text
908
0
                text_count++;
909
0
                restore_map.push_back(cur_hash);
910
0
            } else if (val == found_in_pattern) {
911
0
                val ^= found_in_text;
912
0
                DCHECK(val == found_in_pattern_and_text);
913
                // found in text and pattern
914
0
                text_count++;
915
0
                intersection_count++;
916
0
                restore_map.push_back(cur_hash);
917
0
            }
918
0
        }
919
        // Restore the pattern_map.
920
0
        for (auto& restore_hash : restore_map) {
921
0
            pattern_map[restore_hash] ^= found_in_text;
922
0
        }
923
924
0
        return {text_count, intersection_count};
925
0
    }
926
};
927
928
class FunctionTranslate : public IFunction {
929
public:
930
    static constexpr auto name = "translate";
931
    using AsciiMap = std::array<UInt8, 128>;
932
    constexpr static UInt8 DELETE_CHAR = 255; // 255 means delete this char
933
2
    static FunctionPtr create() { return std::make_shared<FunctionTranslate>(); }
934
1
    String get_name() const override { return name; }
935
0
    size_t get_number_of_arguments() const override { return 3; }
936
937
0
    DataTypePtr get_return_type_impl(const DataTypes& arguments) const override {
938
0
        return std::make_shared<DataTypeString>();
939
0
    };
940
941
1
    DataTypes get_variadic_argument_types_impl() const override {
942
1
        return {std::make_shared<DataTypeString>(), std::make_shared<DataTypeString>(),
943
1
                std::make_shared<DataTypeString>()};
944
1
    }
945
946
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
947
0
                        uint32_t result, size_t input_rows_count) const override {
948
0
        CHECK_EQ(arguments.size(), 3);
949
0
        auto col_res = ColumnString::create();
950
0
        bool col_const[3];
951
0
        ColumnPtr argument_columns[3];
952
0
        for (int i = 0; i < 3; ++i) {
953
0
            col_const[i] = is_column_const(*block.get_by_position(arguments[i]).column);
954
0
        }
955
0
        argument_columns[0] = col_const[0] ? static_cast<const ColumnConst&>(
956
0
                                                     *block.get_by_position(arguments[0]).column)
957
0
                                                     .convert_to_full_column()
958
0
                                           : block.get_by_position(arguments[0]).column;
959
0
        default_preprocess_parameter_columns(argument_columns, col_const, {1, 2}, block, arguments);
960
961
0
        const auto* col_source = assert_cast<const ColumnString*>(argument_columns[0].get());
962
0
        const auto* col_from = assert_cast<const ColumnString*>(argument_columns[1].get());
963
0
        const auto* col_to = assert_cast<const ColumnString*>(argument_columns[2].get());
964
965
0
        bool is_ascii = col_source->is_ascii() && col_from->is_ascii() && col_to->is_ascii();
966
0
        auto impl_vectors = impl_vectors_utf8<false>;
967
0
        if (col_const[1] && col_const[2] && is_ascii) {
968
0
            impl_vectors = impl_vectors_ascii<true>;
969
0
        } else if (col_const[1] && col_const[2]) {
970
0
            impl_vectors = impl_vectors_utf8<true>;
971
0
        } else if (is_ascii) {
972
0
            impl_vectors = impl_vectors_ascii<false>;
973
0
        }
974
0
        impl_vectors(col_source, col_from, col_to, col_res.get());
975
0
        block.get_by_position(result).column = std::move(col_res);
976
0
        return Status::OK();
977
0
    }
978
979
private:
980
    template <bool IsConst>
981
    static void impl_vectors_ascii(const ColumnString* col_source, const ColumnString* col_from,
982
0
                                   const ColumnString* col_to, ColumnString* col_res) {
983
0
        auto& res_chars = col_res->get_chars();
984
0
        auto& res_offsets = col_res->get_offsets();
985
0
        res_chars.reserve(col_source->get_chars().size());
986
0
        res_offsets.reserve(col_source->get_offsets().size());
987
0
        DCHECK_EQ(col_res->size(), 0);
988
0
        AsciiMap map;
989
0
        if (IsConst) {
990
0
            const auto& from_str = col_from->get_data_at(0);
991
0
            const auto& to_str = col_to->get_data_at(0);
992
0
            if (!build_translate_map_ascii(map, from_str, to_str)) {
993
                // if the map is not need delete char, we can directly copy the source string,then use map to translate
994
0
                res_offsets.insert(col_source->get_offsets().begin(),
995
0
                                   col_source->get_offsets().end());
996
0
                res_chars.insert(col_source->get_chars().begin(), col_source->get_chars().end());
997
0
                for (int i = 0; i < res_chars.size(); ++i) {
998
0
                    res_chars[i] = map[res_chars[i]]; // translate the chars
999
0
                }
1000
0
                return; // no need to translate
1001
0
            }
1002
0
        }
1003
1004
0
        auto res_size = 0;
1005
0
        auto* begin_data = col_res->get_chars().data();
1006
0
        for (size_t i = 0; i < col_source->size(); ++i) {
1007
0
            const auto& source_str = col_source->get_data_at(i);
1008
0
            if (!IsConst) {
1009
0
                const auto& from_str = col_from->get_data_at(i);
1010
0
                const auto& to_str = col_to->get_data_at(i);
1011
0
                build_translate_map_ascii(map, from_str, to_str);
1012
0
            }
1013
0
            auto* dst_data = begin_data + res_size;
1014
0
            res_size += translate_ascii(source_str, map, dst_data);
1015
1016
0
            res_offsets.push_back(res_size);
1017
0
        }
1018
0
        DCHECK_GE(res_chars.capacity(), res_size);
1019
0
        res_chars.resize(res_size);
1020
0
    }
Unexecuted instantiation: _ZN5doris17FunctionTranslate18impl_vectors_asciiILb1EEEvPKNS_9ColumnStrIjEES5_S5_PS3_
Unexecuted instantiation: _ZN5doris17FunctionTranslate18impl_vectors_asciiILb0EEEvPKNS_9ColumnStrIjEES5_S5_PS3_
1021
1022
    // return true if no need delete char
1023
    bool static build_translate_map_ascii(AsciiMap& map, const StringRef& from_str,
1024
0
                                          const StringRef& to_str) {
1025
0
        for (size_t i = 0; i < map.size(); ++i) {
1026
0
            map[i] = i; // initialize map to identity
1027
0
        }
1028
0
        std::array<UInt8, 128> set_map {0};
1029
0
        const auto min_size = std::min(from_str.size, to_str.size);
1030
        // all ascii characters are in the range [0, 127]
1031
0
        for (size_t i = 0; i < min_size; ++i) {
1032
0
            auto from_char = from_str.data[i];
1033
0
            auto to_char = to_str.data[i];
1034
0
            if (set_map[from_char] == 0) {
1035
0
                set_map[from_char] = 1;
1036
0
                map[from_char] = to_char;
1037
0
            }
1038
0
        }
1039
1040
0
        bool need_delete_char = false;
1041
1042
0
        for (size_t i = min_size; i < from_str.size; ++i) {
1043
0
            auto from_char = from_str.data[i];
1044
0
            if (set_map[from_char] == 0) {
1045
0
                set_map[from_char] = 1;
1046
0
                map[from_char] = DELETE_CHAR; // delete this char
1047
0
                need_delete_char = true;
1048
0
            }
1049
0
        }
1050
0
        return need_delete_char;
1051
0
    }
1052
1053
0
    static size_t translate_ascii(const StringRef& source_str, AsciiMap& map, UInt8* dst_data) {
1054
0
        auto* begin_data = dst_data;
1055
0
        for (size_t i = 0; i < source_str.size; ++i) {
1056
0
            auto c = source_str.data[i];
1057
0
            if (map[c] == DELETE_CHAR) {
1058
0
                continue; // delete this char
1059
0
            }
1060
0
            *dst_data++ = map[c];
1061
0
        }
1062
0
        return dst_data - begin_data;
1063
0
    }
1064
1065
    template <bool IsConst>
1066
    static void impl_vectors_utf8(const ColumnString* col_source, const ColumnString* col_from,
1067
0
                                  const ColumnString* col_to, ColumnString* col_res) {
1068
0
        col_res->get_chars().reserve(col_source->get_chars().size());
1069
0
        col_res->get_offsets().reserve(col_source->get_offsets().size());
1070
0
        std::unordered_map<std::string_view, std::string_view> translate_map;
1071
0
        if (IsConst) {
1072
0
            const auto& from_str = col_from->get_data_at(0);
1073
0
            const auto& to_str = col_to->get_data_at(0);
1074
0
            translate_map =
1075
0
                    build_translate_map_utf8(from_str.to_string_view(), to_str.to_string_view());
1076
0
        }
1077
0
        for (size_t i = 0; i < col_source->size(); ++i) {
1078
0
            const auto& source_str = col_source->get_data_at(i);
1079
0
            if (!IsConst) {
1080
0
                const auto& from_str = col_from->get_data_at(i);
1081
0
                const auto& to_str = col_to->get_data_at(i);
1082
0
                translate_map = build_translate_map_utf8(from_str.to_string_view(),
1083
0
                                                         to_str.to_string_view());
1084
0
            }
1085
0
            auto translated_str = translate_utf8(source_str.to_string_view(), translate_map);
1086
0
            col_res->insert_data(translated_str.data(), translated_str.size());
1087
0
        }
1088
0
    }
Unexecuted instantiation: _ZN5doris17FunctionTranslate17impl_vectors_utf8ILb0EEEvPKNS_9ColumnStrIjEES5_S5_PS3_
Unexecuted instantiation: _ZN5doris17FunctionTranslate17impl_vectors_utf8ILb1EEEvPKNS_9ColumnStrIjEES5_S5_PS3_
1089
1090
    static std::unordered_map<std::string_view, std::string_view> build_translate_map_utf8(
1091
0
            const std::string_view& from_str, const std::string_view& to_str) {
1092
0
        std::unordered_map<std::string_view, std::string_view> translate_map;
1093
0
        for (size_t i = 0, from_char_size = 0, j = 0, to_char_size = 0; i < from_str.size();
1094
0
             i += from_char_size, j += to_char_size) {
1095
0
            from_char_size = get_utf8_byte_length(from_str[i]);
1096
0
            to_char_size = j < to_str.size() ? get_utf8_byte_length(to_str[j]) : 0;
1097
0
            auto from_char = from_str.substr(i, from_char_size);
1098
0
            if (translate_map.find(from_char) == translate_map.end()) {
1099
0
                translate_map[from_char] =
1100
0
                        j < to_str.size() ? to_str.substr(j, to_char_size) : std::string_view();
1101
0
            }
1102
0
        }
1103
0
        return translate_map;
1104
0
    }
1105
1106
    static std::string translate_utf8(
1107
            const std::string_view& source_str,
1108
0
            std::unordered_map<std::string_view, std::string_view>& translate_map) {
1109
0
        std::string result;
1110
0
        result.reserve(source_str.size());
1111
0
        for (size_t i = 0, char_size = 0; i < source_str.size(); i += char_size) {
1112
0
            char_size = get_utf8_byte_length(source_str[i]);
1113
0
            auto c = source_str.substr(i, char_size);
1114
0
            if (translate_map.find(c) != translate_map.end()) {
1115
0
                if (!translate_map[c].empty()) {
1116
0
                    result.append(translate_map[c]);
1117
0
                }
1118
0
            } else {
1119
0
                result.append(c);
1120
0
            }
1121
0
        }
1122
0
        return result;
1123
0
    }
1124
};
1125
1126
/// xpath_string(xml, xpath) -> String
1127
/// Returns the text content of the first node that matches the XPath expression.
1128
/// Returns NULL if either xml or xpath is NULL.
1129
/// Returns empty string if the XPath expression matches no nodes.
1130
/// The text content includes the node and all its descendants.
1131
/// Example:
1132
///   xpath_string('<a><b>b1</b><b>b2</b></a>', '/a/b[1]') = 'b1'
1133
///   xpath_string('<a><b>b1</b><b>b2</b></a>', '/a/b[2]') = 'b2'
1134
///   xpath_string('<a><b>b1</b><b>b2</b></a>', '/a/c') = ''
1135
///   xpath_string('invalid xml', '/a/b[1]') = NULL
1136
///   xpath_string(NULL, '/a/b[1]') = NULL
1137
///   xpath_string('<a><b>b1</b><b>b2</b></a>', NULL) = NULL
1138
class FunctionXPathString : public IFunction {
1139
public:
1140
    static constexpr auto name = "xpath_string";
1141
78
    static FunctionPtr create() { return std::make_shared<FunctionXPathString>(); }
1142
1
    String get_name() const override { return name; }
1143
76
    size_t get_number_of_arguments() const override { return 2; }
1144
76
    DataTypePtr get_return_type_impl(const DataTypes& arguments) const override {
1145
76
        return make_nullable(std::make_shared<DataTypeString>());
1146
76
    }
1147
1148
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
1149
67
                        uint32_t result, size_t input_rows_count) const override {
1150
67
        CHECK_EQ(arguments.size(), 2);
1151
67
        auto col_res = ColumnNullable::create(ColumnString::create(), ColumnUInt8::create());
1152
67
        const auto& [left_col, left_const] =
1153
67
                unpack_if_const(block.get_by_position(arguments[0]).column);
1154
67
        const auto& [right_col, right_const] =
1155
67
                unpack_if_const(block.get_by_position(arguments[1]).column);
1156
67
        const auto& xml_col = *assert_cast<const ColumnString*>(left_col.get());
1157
67
        const auto& xpath_col = *assert_cast<const ColumnString*>(right_col.get());
1158
1159
67
        Status status;
1160
67
        if (left_const && right_const) {
1161
0
            status = execute_vector<true, true>(input_rows_count, xml_col, xpath_col, *col_res);
1162
67
        } else if (left_const) {
1163
22
            status = execute_vector<true, false>(input_rows_count, xml_col, xpath_col, *col_res);
1164
45
        } else if (right_const) {
1165
22
            status = execute_vector<false, true>(input_rows_count, xml_col, xpath_col, *col_res);
1166
23
        } else {
1167
23
            status = execute_vector<false, false>(input_rows_count, xml_col, xpath_col, *col_res);
1168
23
        }
1169
67
        if (!status.ok()) {
1170
0
            return status;
1171
0
        }
1172
1173
67
        block.get_by_position(result).column = std::move(col_res);
1174
67
        return Status::OK();
1175
67
    }
1176
1177
private:
1178
81
    static Status parse_xml(const StringRef& xml_str, pugi::xml_document& xml_doc) {
1179
81
        pugi::xml_parse_result result = xml_doc.load_buffer(xml_str.data, xml_str.size);
1180
81
        if (!result) {
1181
0
            return Status::InvalidArgument("Function {} failed to parse XML string: {}", name,
1182
0
                                           result.description());
1183
0
        }
1184
81
        return Status::OK();
1185
81
    }
1186
1187
84
    static Status build_xpath_query(const StringRef& xpath_str, pugi::xpath_query& xpath_query) {
1188
        // xpath_query will throws xpath_exception on compilation errors.
1189
84
        try {
1190
            // NOTE!!!: don't use to_string_view(), because xpath_str maybe not null-terminated
1191
84
            xpath_query = pugi::xpath_query(xpath_str.to_string().c_str());
1192
84
        } catch (const pugi::xpath_exception& e) {
1193
0
            return Status::InvalidArgument("Function {} failed to build XPath query: {}", name,
1194
0
                                           e.what());
1195
0
        }
1196
84
        return Status::OK();
1197
84
    }
1198
1199
    template <bool left_const, bool right_const>
1200
    static Status execute_vector(const size_t input_rows_count, const ColumnString& xml_col,
1201
67
                                 const ColumnString& xpath_col, ColumnNullable& res_col) {
1202
67
        pugi::xml_document xml_doc;
1203
67
        pugi::xpath_query xpath_query;
1204
        // first check right_const, because we want to check empty input first
1205
67
        if constexpr (right_const) {
1206
22
            auto xpath_str = xpath_col.get_data_at(0);
1207
22
            if (xpath_str.empty()) {
1208
                // should return null if xpath_str is empty
1209
1
                res_col.insert_many_defaults(input_rows_count);
1210
1
                return Status::OK();
1211
1
            }
1212
21
            RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query));
1213
21
        }
1214
22
        if constexpr (left_const) {
1215
22
            auto xml_str = xml_col.get_data_at(0);
1216
22
            if (xml_str.empty()) {
1217
                // should return null if xml_str is empty
1218
1
                res_col.insert_many_defaults(input_rows_count);
1219
1
                return Status::OK();
1220
1
            }
1221
21
            RETURN_IF_ERROR(parse_xml(xml_str, xml_doc));
1222
21
        }
1223
1224
156
        for (size_t i = 0; i < input_rows_count; ++i) {
1225
89
            if constexpr (!right_const) {
1226
68
                auto xpath_str = xpath_col.get_data_at(i);
1227
68
                if (xpath_str.empty()) {
1228
                    // should return null if xpath_str is empty
1229
5
                    res_col.insert_default();
1230
5
                    continue;
1231
5
                }
1232
63
                RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query));
1233
63
            }
1234
68
            if constexpr (!left_const) {
1235
68
                auto xml_str = xml_col.get_data_at(i);
1236
68
                if (xml_str.empty()) {
1237
                    // should return null if xml_str is empty
1238
4
                    res_col.insert_default();
1239
4
                    continue;
1240
4
                }
1241
64
                RETURN_IF_ERROR(parse_xml(xml_str, xml_doc));
1242
64
            }
1243
64
            std::string text;
1244
89
            try {
1245
89
                text = xpath_query.evaluate_string(xml_doc);
1246
89
            } catch (const pugi::xpath_exception& e) {
1247
0
                return Status::InvalidArgument("Function {} failed to query XPath string: {}", name,
1248
0
                                               e.what());
1249
0
            }
1250
80
            res_col.insert_data(text.data(), text.size());
1251
80
        }
1252
67
        return Status::OK();
1253
67
    }
Unexecuted instantiation: _ZN5doris19FunctionXPathString14execute_vectorILb1ELb1EEENS_6StatusEmRKNS_9ColumnStrIjEES6_RNS_14ColumnNullableE
_ZN5doris19FunctionXPathString14execute_vectorILb1ELb0EEENS_6StatusEmRKNS_9ColumnStrIjEES6_RNS_14ColumnNullableE
Line
Count
Source
1201
22
                                 const ColumnString& xpath_col, ColumnNullable& res_col) {
1202
22
        pugi::xml_document xml_doc;
1203
22
        pugi::xpath_query xpath_query;
1204
        // first check right_const, because we want to check empty input first
1205
        if constexpr (right_const) {
1206
            auto xpath_str = xpath_col.get_data_at(0);
1207
            if (xpath_str.empty()) {
1208
                // should return null if xpath_str is empty
1209
                res_col.insert_many_defaults(input_rows_count);
1210
                return Status::OK();
1211
            }
1212
            RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query));
1213
        }
1214
22
        if constexpr (left_const) {
1215
22
            auto xml_str = xml_col.get_data_at(0);
1216
22
            if (xml_str.empty()) {
1217
                // should return null if xml_str is empty
1218
1
                res_col.insert_many_defaults(input_rows_count);
1219
1
                return Status::OK();
1220
1
            }
1221
21
            RETURN_IF_ERROR(parse_xml(xml_str, xml_doc));
1222
21
        }
1223
1224
43
        for (size_t i = 0; i < input_rows_count; ++i) {
1225
21
            if constexpr (!right_const) {
1226
21
                auto xpath_str = xpath_col.get_data_at(i);
1227
21
                if (xpath_str.empty()) {
1228
                    // should return null if xpath_str is empty
1229
1
                    res_col.insert_default();
1230
1
                    continue;
1231
1
                }
1232
20
                RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query));
1233
20
            }
1234
            if constexpr (!left_const) {
1235
                auto xml_str = xml_col.get_data_at(i);
1236
                if (xml_str.empty()) {
1237
                    // should return null if xml_str is empty
1238
                    res_col.insert_default();
1239
                    continue;
1240
                }
1241
                RETURN_IF_ERROR(parse_xml(xml_str, xml_doc));
1242
            }
1243
21
            std::string text;
1244
21
            try {
1245
21
                text = xpath_query.evaluate_string(xml_doc);
1246
21
            } catch (const pugi::xpath_exception& e) {
1247
0
                return Status::InvalidArgument("Function {} failed to query XPath string: {}", name,
1248
0
                                               e.what());
1249
0
            }
1250
20
            res_col.insert_data(text.data(), text.size());
1251
20
        }
1252
22
        return Status::OK();
1253
22
    }
_ZN5doris19FunctionXPathString14execute_vectorILb0ELb1EEENS_6StatusEmRKNS_9ColumnStrIjEES6_RNS_14ColumnNullableE
Line
Count
Source
1201
22
                                 const ColumnString& xpath_col, ColumnNullable& res_col) {
1202
22
        pugi::xml_document xml_doc;
1203
22
        pugi::xpath_query xpath_query;
1204
        // first check right_const, because we want to check empty input first
1205
22
        if constexpr (right_const) {
1206
22
            auto xpath_str = xpath_col.get_data_at(0);
1207
22
            if (xpath_str.empty()) {
1208
                // should return null if xpath_str is empty
1209
1
                res_col.insert_many_defaults(input_rows_count);
1210
1
                return Status::OK();
1211
1
            }
1212
21
            RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query));
1213
21
        }
1214
        if constexpr (left_const) {
1215
            auto xml_str = xml_col.get_data_at(0);
1216
            if (xml_str.empty()) {
1217
                // should return null if xml_str is empty
1218
                res_col.insert_many_defaults(input_rows_count);
1219
                return Status::OK();
1220
            }
1221
            RETURN_IF_ERROR(parse_xml(xml_str, xml_doc));
1222
        }
1223
1224
43
        for (size_t i = 0; i < input_rows_count; ++i) {
1225
            if constexpr (!right_const) {
1226
                auto xpath_str = xpath_col.get_data_at(i);
1227
                if (xpath_str.empty()) {
1228
                    // should return null if xpath_str is empty
1229
                    res_col.insert_default();
1230
                    continue;
1231
                }
1232
                RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query));
1233
            }
1234
21
            if constexpr (!left_const) {
1235
21
                auto xml_str = xml_col.get_data_at(i);
1236
21
                if (xml_str.empty()) {
1237
                    // should return null if xml_str is empty
1238
1
                    res_col.insert_default();
1239
1
                    continue;
1240
1
                }
1241
20
                RETURN_IF_ERROR(parse_xml(xml_str, xml_doc));
1242
20
            }
1243
20
            std::string text;
1244
21
            try {
1245
21
                text = xpath_query.evaluate_string(xml_doc);
1246
21
            } catch (const pugi::xpath_exception& e) {
1247
0
                return Status::InvalidArgument("Function {} failed to query XPath string: {}", name,
1248
0
                                               e.what());
1249
0
            }
1250
20
            res_col.insert_data(text.data(), text.size());
1251
20
        }
1252
22
        return Status::OK();
1253
22
    }
_ZN5doris19FunctionXPathString14execute_vectorILb0ELb0EEENS_6StatusEmRKNS_9ColumnStrIjEES6_RNS_14ColumnNullableE
Line
Count
Source
1201
23
                                 const ColumnString& xpath_col, ColumnNullable& res_col) {
1202
23
        pugi::xml_document xml_doc;
1203
23
        pugi::xpath_query xpath_query;
1204
        // first check right_const, because we want to check empty input first
1205
        if constexpr (right_const) {
1206
            auto xpath_str = xpath_col.get_data_at(0);
1207
            if (xpath_str.empty()) {
1208
                // should return null if xpath_str is empty
1209
                res_col.insert_many_defaults(input_rows_count);
1210
                return Status::OK();
1211
            }
1212
            RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query));
1213
        }
1214
        if constexpr (left_const) {
1215
            auto xml_str = xml_col.get_data_at(0);
1216
            if (xml_str.empty()) {
1217
                // should return null if xml_str is empty
1218
                res_col.insert_many_defaults(input_rows_count);
1219
                return Status::OK();
1220
            }
1221
            RETURN_IF_ERROR(parse_xml(xml_str, xml_doc));
1222
        }
1223
1224
70
        for (size_t i = 0; i < input_rows_count; ++i) {
1225
47
            if constexpr (!right_const) {
1226
47
                auto xpath_str = xpath_col.get_data_at(i);
1227
47
                if (xpath_str.empty()) {
1228
                    // should return null if xpath_str is empty
1229
4
                    res_col.insert_default();
1230
4
                    continue;
1231
4
                }
1232
43
                RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query));
1233
43
            }
1234
47
            if constexpr (!left_const) {
1235
47
                auto xml_str = xml_col.get_data_at(i);
1236
47
                if (xml_str.empty()) {
1237
                    // should return null if xml_str is empty
1238
3
                    res_col.insert_default();
1239
3
                    continue;
1240
3
                }
1241
44
                RETURN_IF_ERROR(parse_xml(xml_str, xml_doc));
1242
44
            }
1243
44
            std::string text;
1244
47
            try {
1245
47
                text = xpath_query.evaluate_string(xml_doc);
1246
47
            } catch (const pugi::xpath_exception& e) {
1247
0
                return Status::InvalidArgument("Function {} failed to query XPath string: {}", name,
1248
0
                                               e.what());
1249
0
            }
1250
40
            res_col.insert_data(text.data(), text.size());
1251
40
        }
1252
23
        return Status::OK();
1253
23
    }
1254
};
1255
1256
class MakeSetImpl {
1257
public:
1258
    static constexpr auto name = "make_set";
1259
1260
0
    static size_t get_number_of_arguments() { return 0; }
1261
1
    static bool is_variadic() { return true; }
1262
0
    static DataTypePtr get_return_type_impl(const DataTypes& arguments) {
1263
0
        if (arguments[0].get()->is_nullable()) {
1264
0
            return make_nullable(std::make_shared<DataTypeString>());
1265
0
        }
1266
0
        return std::make_shared<DataTypeString>();
1267
0
    }
1268
1269
    static bool is_return_nullable(bool has_nullable,
1270
0
                                   const std::vector<ColumnWithConstAndNullMap>& cols_info) {
1271
0
        return cols_info[0].null_map != nullptr;
1272
0
    }
1273
1274
    static bool execute_const_null(ColumnString::MutablePtr& res_col,
1275
                                   PaddedPODArray<UInt8>& res_null_map_data,
1276
0
                                   size_t input_rows_count, size_t null_index) {
1277
0
        if (null_index == 1) {
1278
0
            res_col->insert_many_defaults(input_rows_count);
1279
0
            res_null_map_data.assign(input_rows_count, (UInt8)1);
1280
0
            return true;
1281
0
        }
1282
0
        return false;
1283
0
    }
1284
1285
    static void execute(const std::vector<ColumnWithConstAndNullMap>& column_infos,
1286
                        ColumnString::MutablePtr& res_col, PaddedPODArray<UInt8>& res_null_map_data,
1287
0
                        size_t input_rows_count) {
1288
0
        static constexpr char SEPARATOR = ',';
1289
0
        const auto& bit_data =
1290
0
                assert_cast<const ColumnInt64&>(*column_infos[0].nested_col).get_data();
1291
0
        std::vector<const ColumnString*> str_cols(column_infos.size());
1292
0
        for (size_t i = 1; i < column_infos.size(); ++i) {
1293
0
            str_cols[i] = assert_cast<const ColumnString*>(column_infos[i].nested_col);
1294
0
        }
1295
1296
0
        for (size_t row = 0; row < input_rows_count; ++row) {
1297
0
            if (column_infos[0].is_null_at(row)) {
1298
0
                res_col->insert_default();
1299
0
                res_null_map_data[row] = 1;
1300
0
                continue;
1301
0
            }
1302
1303
0
            uint64_t bit = bit_data[column_infos[0].is_const ? 0 : row];
1304
0
            uint64_t col_pos = __builtin_ffsll(bit);
1305
0
            ColumnString::Chars data;
1306
0
            while (col_pos != 0 && col_pos < column_infos.size() && bit != 0) {
1307
0
                if (!column_infos[col_pos].is_null_at(row)) {
1308
                    /* Here insert `str,` directly to support the case below:
1309
                     * SELECT MAKE_SET(3, '', 'a');
1310
                     * the exception result should be ',a'.
1311
                     */
1312
0
                    auto s_ref = str_cols[col_pos]->get_data_at(
1313
0
                            column_infos[col_pos].is_const ? 0 : row);
1314
0
                    data.insert(s_ref.data, s_ref.data + s_ref.size);
1315
0
                    data.push_back(SEPARATOR);
1316
0
                }
1317
0
                bit &= ~(1ULL << (col_pos - 1));
1318
0
                col_pos = __builtin_ffsll(bit);
1319
0
            }
1320
            // remove the last ','
1321
0
            if (!data.empty()) {
1322
0
                data.pop_back();
1323
0
            }
1324
0
            res_col->insert_data(reinterpret_cast<const char*>(data.data()), data.size());
1325
0
        }
1326
0
    }
1327
};
1328
1329
class FunctionExportSet : public IFunction {
1330
public:
1331
    static constexpr auto name = "export_set";
1332
2
    static FunctionPtr create() { return std::make_shared<FunctionExportSet>(); }
1333
0
    String get_name() const override { return name; }
1334
0
    size_t get_number_of_arguments() const override { return 0; }
1335
1
    bool is_variadic() const override { return true; }
1336
0
    DataTypePtr get_return_type_impl(const DataTypes& arguments) const override {
1337
0
        return std::make_shared<DataTypeString>();
1338
0
    }
1339
1340
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
1341
0
                        uint32_t result, size_t input_rows_count) const override {
1342
0
        auto res_col = ColumnString::create();
1343
1344
0
        const size_t arg_size = arguments.size();
1345
0
        bool col_const[5];
1346
0
        ColumnPtr arg_cols[5];
1347
0
        bool all_const = true;
1348
0
        for (int i = 1; i < arg_size; ++i) {
1349
0
            col_const[i] = is_column_const(*block.get_by_position(arguments[i]).column);
1350
0
            all_const = all_const && col_const[i];
1351
0
        }
1352
0
        std::tie(arg_cols[0], col_const[0]) =
1353
0
                unpack_if_const(block.get_by_position(arguments[0]).column);
1354
0
        if (arg_size == 3) {
1355
0
            default_preprocess_parameter_columns(arg_cols, col_const, {1, 2}, block, arguments);
1356
0
        } else if (arg_size == 4) {
1357
0
            default_preprocess_parameter_columns(arg_cols, col_const, {1, 2, 3}, block, arguments);
1358
0
        } else if (arg_size == 5) {
1359
0
            default_preprocess_parameter_columns(arg_cols, col_const, {1, 2, 3, 4}, block,
1360
0
                                                 arguments);
1361
0
        }
1362
1363
0
        const auto* bit_col = assert_cast<const ColumnInt128*>(arg_cols[0].get());
1364
0
        const auto* on_col = assert_cast<const ColumnString*>(arg_cols[1].get());
1365
0
        const auto* off_col = assert_cast<const ColumnString*>(arg_cols[2].get());
1366
0
        const ColumnString* sep_col = nullptr;
1367
0
        const ColumnInt32* num_bits_col = nullptr;
1368
0
        if (arg_size > 3) {
1369
0
            sep_col = assert_cast<const ColumnString*>(arg_cols[3].get());
1370
0
            if (arg_size == 5) {
1371
0
                num_bits_col = assert_cast<const ColumnInt32*>(arg_cols[4].get());
1372
0
            }
1373
0
        }
1374
1375
0
        for (size_t i = 0; i < input_rows_count; ++i) {
1376
0
            uint64_t bit =
1377
0
                    check_and_get_bit(bit_col->get_element(index_check_const(i, col_const[0])));
1378
1379
0
            size_t idx_for_args = all_const ? 0 : i;
1380
0
            StringRef on = on_col->get_data_at(idx_for_args);
1381
0
            StringRef off = off_col->get_data_at(idx_for_args);
1382
0
            StringRef separator(",", 1);
1383
0
            int8_t num_of_bits = 64;
1384
1385
0
            if (arg_size > 3) {
1386
0
                separator = sep_col->get_data_at(idx_for_args);
1387
0
                if (arg_size == 5) {
1388
0
                    num_of_bits =
1389
0
                            check_and_get_num_of_bits(num_bits_col->get_element(idx_for_args));
1390
0
                }
1391
0
            }
1392
1393
0
            execute_single(bit, on, off, separator, num_of_bits, *res_col);
1394
0
        }
1395
0
        block.replace_by_position(result, std::move(res_col));
1396
0
        return Status::OK();
1397
0
    }
1398
1399
private:
1400
    /* The valid range of the input `bit` parameter should be [-2^63, 2^64 - 1]
1401
     * If it exceeds this range, the MAX/MIN values of the signed 64-bit integer are used for calculation
1402
     * This behavior is consistent with MySQL.
1403
     */
1404
0
    uint64_t check_and_get_bit(__int128 col_bit_val) const {
1405
0
        if (col_bit_val > ULLONG_MAX) {
1406
0
            return LLONG_MAX;
1407
0
        } else if (col_bit_val < LLONG_MIN) {
1408
0
            return LLONG_MIN;
1409
0
        }
1410
0
        return static_cast<uint64_t>(col_bit_val);
1411
0
    }
1412
1413
    // If the input value is not in the range [0, 64], return default value 64
1414
0
    int8_t check_and_get_num_of_bits(int32_t col_num_of_bits_val) const {
1415
0
        if (col_num_of_bits_val >= 0 && col_num_of_bits_val <= 64) {
1416
0
            return static_cast<int8_t>(col_num_of_bits_val);
1417
0
        }
1418
0
        return 64;
1419
0
    }
1420
1421
    void execute_single(uint64_t bit, const StringRef& on, const StringRef& off,
1422
                        const StringRef& separator, int8_t num_of_bits,
1423
0
                        ColumnString& res_col) const {
1424
0
        ColumnString::Chars data;
1425
0
        data.reserve(std::max(on.size, off.size) * num_of_bits +
1426
0
                     separator.size * (num_of_bits - 1));
1427
1428
0
        while (bit && num_of_bits) {
1429
0
            if (bit & 1) {
1430
0
                data.insert(on.data, on.data + on.size);
1431
0
            } else {
1432
0
                data.insert(off.data, off.data + off.size);
1433
0
            }
1434
0
            bit >>= 1;
1435
0
            if (--num_of_bits) {
1436
0
                data.insert(separator.data, separator.data + separator.size);
1437
0
            }
1438
0
        }
1439
1440
0
        if (num_of_bits > 0) {
1441
0
            ColumnString::Chars off_sep_combo;
1442
0
            off_sep_combo.reserve(separator.size + off.size);
1443
0
            off_sep_combo.insert(off_sep_combo.end(), off.data, off.data + off.size);
1444
0
            off_sep_combo.insert(off_sep_combo.end(), separator.data,
1445
0
                                 separator.data + separator.size);
1446
1447
0
            for (size_t i = 0; i < num_of_bits; ++i) {
1448
0
                data.insert(off_sep_combo.data(), off_sep_combo.data() + off_sep_combo.size());
1449
0
            }
1450
0
            data.erase(data.end() - separator.size, data.end());
1451
0
        }
1452
1453
0
        res_col.insert_data(reinterpret_cast<const char*>(data.data()), data.size());
1454
0
    }
1455
};
1456
1457
// ATTN: for debug only
1458
// compute crc32 hash value as the same way in `VOlapTablePartitionParam::find_tablets()`
1459
class FunctionCrc32Internal : public IFunction {
1460
public:
1461
    static constexpr auto name = "crc32_internal";
1462
2
    static FunctionPtr create() { return std::make_shared<FunctionCrc32Internal>(); }
1463
0
    String get_name() const override { return name; }
1464
0
    size_t get_number_of_arguments() const override { return 0; }
1465
1
    bool is_variadic() const override { return true; }
1466
0
    bool use_default_implementation_for_nulls() const override { return false; }
1467
0
    DataTypePtr get_return_type_impl(const DataTypes& arguments) const override {
1468
0
        return std::make_shared<DataTypeInt64>();
1469
0
    }
1470
1471
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
1472
0
                        uint32_t result, size_t input_rows_count) const override {
1473
0
        DCHECK_GE(arguments.size(), 1);
1474
1475
0
        auto argument_size = arguments.size();
1476
0
        std::vector<ColumnPtr> argument_columns(argument_size);
1477
0
        std::vector<PrimitiveType> argument_primitive_types(argument_size);
1478
1479
0
        for (size_t i = 0; i < argument_size; ++i) {
1480
0
            argument_columns[i] =
1481
0
                    block.get_by_position(arguments[i]).column->convert_to_full_column_if_const();
1482
0
            argument_primitive_types[i] =
1483
0
                    block.get_by_position(arguments[i]).type->get_primitive_type();
1484
0
        }
1485
1486
0
        auto res_col = ColumnInt64::create();
1487
0
        auto& res_data = res_col->get_data();
1488
0
        res_data.resize_fill(input_rows_count, 0);
1489
1490
0
        for (size_t i = 0; i < input_rows_count; ++i) {
1491
0
            uint32_t hash_val = 0;
1492
0
            for (size_t j = 0; j < argument_size; ++j) {
1493
0
                const auto& column = argument_columns[j];
1494
0
                auto primitive_type = argument_primitive_types[j];
1495
0
                auto val = column->get_data_at(i);
1496
0
                if (val.data != nullptr) {
1497
0
                    hash_val = RawValue::zlib_crc32(val.data, val.size, primitive_type, hash_val);
1498
0
                } else {
1499
0
                    hash_val = HashUtil::zlib_crc_hash_null(hash_val);
1500
0
                }
1501
0
            }
1502
0
            res_data[i] = hash_val;
1503
0
        }
1504
1505
0
        block.replace_by_position(result, std::move(res_col));
1506
0
        return Status::OK();
1507
0
    }
1508
};
1509
1510
class FunctionUnicodeNormalize : public IFunction {
1511
public:
1512
    static constexpr auto name = "unicode_normalize";
1513
1514
9
    static FunctionPtr create() { return std::make_shared<FunctionUnicodeNormalize>(); }
1515
1516
3
    String get_name() const override { return name; }
1517
1518
7
    size_t get_number_of_arguments() const override { return 2; }
1519
1520
7
    DataTypePtr get_return_type_impl(const DataTypes& arguments) const override {
1521
7
        if (arguments.size() != 2 || !is_string_type(arguments[0]->get_primitive_type()) ||
1522
7
            !is_string_type(arguments[1]->get_primitive_type())) {
1523
0
            throw doris::Exception(ErrorCode::INVALID_ARGUMENT,
1524
0
                                   "Illegal type {} and {} of arguments of function {}",
1525
0
                                   arguments[0]->get_name(), arguments[1]->get_name(), get_name());
1526
0
        }
1527
7
        return arguments[0];
1528
7
    }
1529
1530
10
    ColumnNumbers get_arguments_that_are_always_constant() const override { return {1}; }
1531
1532
12
    Status open(FunctionContext* context, FunctionContext::FunctionStateScope scope) override {
1533
12
        if (scope == FunctionContext::THREAD_LOCAL) {
1534
5
            return Status::OK();
1535
5
        }
1536
1537
7
        if (!context->is_col_constant(1)) {
1538
1
            return Status::InvalidArgument(
1539
1
                    "The second argument 'mode' of function {} must be constant", get_name());
1540
1
        }
1541
1542
6
        auto* const_col = context->get_constant_col(1);
1543
6
        auto mode_ref = const_col->column_ptr->get_data_at(0);
1544
6
        std::string lower_mode = doris::to_lower(std::string(doris::trim(mode_ref.to_string())));
1545
1546
6
        UErrorCode status = U_ZERO_ERROR;
1547
6
        const icu::Normalizer2* normalizer = nullptr;
1548
1549
6
        if (lower_mode == "nfc") {
1550
2
            normalizer = icu::Normalizer2::getInstance(nullptr, "nfc", UNORM2_COMPOSE, status);
1551
4
        } else if (lower_mode == "nfd") {
1552
1
            normalizer = icu::Normalizer2::getNFDInstance(status);
1553
3
        } else if (lower_mode == "nfkc") {
1554
0
            normalizer = icu::Normalizer2::getInstance(nullptr, "nfkc", UNORM2_COMPOSE, status);
1555
3
        } else if (lower_mode == "nfkd") {
1556
1
            normalizer = icu::Normalizer2::getNFKDInstance(status);
1557
2
        } else if (lower_mode == "nfkc_cf") {
1558
1
            normalizer = icu::Normalizer2::getInstance(nullptr, "nfkc_cf", UNORM2_COMPOSE, status);
1559
1
        } else {
1560
1
            return Status::InvalidArgument(
1561
1
                    "Invalid normalization mode '{}' for function {}. "
1562
1
                    "Supported modes: NFC, NFD, NFKC, NFKD, NFKC_CF",
1563
1
                    lower_mode, get_name());
1564
1
        }
1565
1566
5
        if (U_FAILURE(status) || normalizer == nullptr) {
1567
0
            return Status::InvalidArgument(
1568
0
                    "Failed to get normalizer instance for mode '{}' in function {}: {}",
1569
0
                    lower_mode, get_name(), u_errorName(status));
1570
0
        }
1571
1572
5
        auto state = std::make_shared<UnicodeNormalizeState>();
1573
5
        state->normalizer = normalizer;
1574
5
        context->set_function_state(scope, state);
1575
5
        return Status::OK();
1576
5
    }
1577
1578
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
1579
5
                        uint32_t result, size_t input_rows_count) const override {
1580
5
        auto* state = reinterpret_cast<UnicodeNormalizeState*>(
1581
5
                context->get_function_state(FunctionContext::FRAGMENT_LOCAL));
1582
5
        if (state == nullptr || state->normalizer == nullptr) {
1583
0
            return Status::RuntimeError("unicode_normalize function state is not initialized");
1584
0
        }
1585
1586
5
        ColumnPtr col =
1587
5
                block.get_by_position(arguments[0]).column->convert_to_full_column_if_const();
1588
5
        const auto* col_str = check_and_get_column<ColumnString>(col.get());
1589
5
        if (col_str == nullptr) {
1590
0
            return Status::RuntimeError("Illegal column {} of argument of function {}",
1591
0
                                        block.get_by_position(arguments[0]).column->get_name(),
1592
0
                                        get_name());
1593
0
        }
1594
1595
5
        const auto& data = col_str->get_chars();
1596
5
        const auto& offsets = col_str->get_offsets();
1597
1598
5
        auto res = ColumnString::create();
1599
5
        auto& res_data = res->get_chars();
1600
5
        auto& res_offsets = res->get_offsets();
1601
1602
5
        size_t rows = offsets.size();
1603
5
        res_offsets.resize(rows);
1604
1605
5
        std::string tmp;
1606
10
        for (size_t i = 0; i < rows; ++i) {
1607
5
            const char* begin = reinterpret_cast<const char*>(&data[offsets[i - 1]]);
1608
5
            size_t len = offsets[i] - offsets[i - 1];
1609
1610
5
            normalize_one(state->normalizer, begin, len, tmp);
1611
5
            StringOP::push_value_string(tmp, i, res_data, res_offsets);
1612
5
        }
1613
1614
5
        block.replace_by_position(result, std::move(res));
1615
5
        return Status::OK();
1616
5
    }
1617
1618
private:
1619
    struct UnicodeNormalizeState {
1620
        const icu::Normalizer2* normalizer = nullptr;
1621
    };
1622
1623
    static void normalize_one(const icu::Normalizer2* normalizer, const char* input, size_t length,
1624
5
                              std::string& output) {
1625
5
        if (length == 0) {
1626
0
            output.clear();
1627
0
            return;
1628
0
        }
1629
1630
5
        icu::StringPiece sp(input, static_cast<int32_t>(length));
1631
5
        icu::UnicodeString src16 = icu::UnicodeString::fromUTF8(sp);
1632
1633
5
        UErrorCode status = U_ZERO_ERROR;
1634
5
        UNormalizationCheckResult quick = normalizer->quickCheck(src16, status);
1635
5
        if (U_SUCCESS(status) && quick == UNORM_YES) {
1636
2
            output.assign(input, length);
1637
2
            return;
1638
2
        }
1639
1640
3
        icu::UnicodeString result16;
1641
3
        status = U_ZERO_ERROR;
1642
3
        normalizer->normalize(src16, result16, status);
1643
3
        if (U_FAILURE(status)) {
1644
0
            output.assign(input, length);
1645
0
            return;
1646
0
        }
1647
1648
3
        output.clear();
1649
3
        result16.toUTF8String(output);
1650
3
    }
1651
};
1652
1653
using FunctionMakeSet = FunctionNeedsToHandleNull<MakeSetImpl, PrimitiveType::TYPE_STRING>;
1654
1655
1
void register_function_string_misc(SimpleFunctionFactory& factory) {
1656
1
    factory.register_function<FunctionAutoPartitionName>();
1657
1
    factory.register_function<FunctionConvertTo>();
1658
1
    factory.register_function<FunctionIntToChar>();
1659
1
    factory.register_function<FunctionRandomBytes>();
1660
1
    factory.register_function<FunctionTranslate>();
1661
1
    factory.register_function<FunctionNgramSearch>();
1662
1
    factory.register_function<FunctionXPathString>();
1663
1
    factory.register_function<FunctionCrc32Internal>();
1664
1
    factory.register_function<FunctionMakeSet>();
1665
1
    factory.register_function<FunctionExportSet>();
1666
1
    factory.register_function<FunctionUnicodeNormalize>();
1667
1
}
1668
1669
#include "common/compile_check_avoid_end.h"
1670
} // namespace doris