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 | 88 | 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 | 81 | bool is_variadic() const override { return true; } |
102 | 187 | bool use_default_implementation_for_nulls() const override { return false; } |
103 | 80 | DataTypePtr get_return_type_impl(const DataTypes& arguments) const override { |
104 | 80 | return std::make_shared<DataTypeString>(); |
105 | 80 | } |
106 | | |
107 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
108 | 107 | uint32_t result, size_t input_rows_count) const override { |
109 | 107 | size_t argument_size = arguments.size(); |
110 | 107 | auto const_null_map = ColumnUInt8::create(input_rows_count, 0); |
111 | 107 | auto null_map = ColumnUInt8::create(input_rows_count, 0); |
112 | 107 | std::vector<const ColumnString::Chars*> chars_list(argument_size); |
113 | 107 | std::vector<const ColumnString::Offsets*> offsets_list(argument_size); |
114 | 107 | std::vector<bool> is_const_args(argument_size); |
115 | 107 | std::vector<const ColumnUInt8::Container*> null_list(argument_size); |
116 | 107 | std::vector<ColumnPtr> argument_null_columns(argument_size); |
117 | | |
118 | 107 | std::vector<ColumnPtr> argument_columns(argument_size); |
119 | 420 | for (int i = 0; i < argument_size; ++i) { |
120 | 313 | argument_columns[i] = |
121 | 313 | block.get_by_position(arguments[i]).column->convert_to_full_column_if_const(); |
122 | 313 | if (const auto* nullable = |
123 | 313 | check_and_get_column<const ColumnNullable>(*argument_columns[i])) { |
124 | 37 | null_list[i] = &nullable->get_null_map_data(); |
125 | 37 | argument_null_columns[i] = nullable->get_null_map_column_ptr(); |
126 | 37 | argument_columns[i] = nullable->get_nested_column_ptr(); |
127 | 276 | } else { |
128 | 276 | null_list[i] = &const_null_map->get_data(); |
129 | 276 | } |
130 | | |
131 | 313 | const auto& [col, is_const] = |
132 | 313 | unpack_if_const(block.get_by_position(arguments[i]).column); |
133 | | |
134 | 313 | const auto* col_str = assert_cast<const ColumnString*>(argument_columns[i].get()); |
135 | 313 | chars_list[i] = &col_str->get_chars(); |
136 | 313 | offsets_list[i] = &col_str->get_offsets(); |
137 | 313 | is_const_args[i] = is_const; |
138 | 313 | } |
139 | | |
140 | 107 | auto res = ColumnString::create(); |
141 | 107 | auto& res_data = res->get_chars(); |
142 | 107 | auto& res_offset = res->get_offsets(); |
143 | 107 | res_offset.resize(input_rows_count); |
144 | | |
145 | 107 | std::string partition_type(chars_list[0]->raw_data(), (*offsets_list[0])[0]); |
146 | 107 | std::transform(partition_type.begin(), partition_type.end(), partition_type.begin(), |
147 | 486 | [](unsigned char c) { return static_cast<char>(std::tolower(c)); }); |
148 | | // partition type is list|range |
149 | 107 | if (partition_type == "list") { |
150 | 54 | return _auto_partition_type_of_list(chars_list, offsets_list, is_const_args, null_list, |
151 | 54 | res_data, res_offset, input_rows_count, |
152 | 54 | argument_size, block, result, res); |
153 | 54 | } else { |
154 | 53 | return _auto_partition_type_of_range(chars_list, offsets_list, is_const_args, res_data, |
155 | 53 | res_offset, input_rows_count, argument_size, block, |
156 | 53 | result, res); |
157 | 53 | } |
158 | 0 | return Status::OK(); |
159 | 107 | } |
160 | | |
161 | | private: |
162 | 79 | std::u16string _string_to_u16string(const std::string& str) const { |
163 | 79 | return boost::locale::conv::utf_to_utf<char16_t>(str); |
164 | 79 | } |
165 | | |
166 | 79 | std::string _string_to_unicode(const std::u16string& s) const { |
167 | 79 | std::string res_s; |
168 | 79 | res_s.reserve(s.size()); |
169 | 79 | if (s.length() > 0 && s[0] == '-') { |
170 | 1 | res_s += '_'; |
171 | 1 | } |
172 | 1.08k | for (int i = 0; i < s.length(); i++) { |
173 | 1.00k | char16_t ch = s[i]; |
174 | 1.00k | if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9')) { |
175 | 606 | res_s += ch; |
176 | 606 | } else { |
177 | 398 | int unicodeValue = _get_code_point_at(s, i); |
178 | 398 | res_s += fmt::format("{:02x}", static_cast<uint32_t>(unicodeValue)); |
179 | 398 | } |
180 | 1.00k | } |
181 | 79 | return res_s; |
182 | 79 | } |
183 | | |
184 | 398 | int _get_code_point_at(const std::u16string& str, std::size_t index) const { |
185 | 398 | char16_t first = str[index]; |
186 | | // [0xD800,0xDBFF] is the scope of the first code unit |
187 | 398 | 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 | 398 | return first; |
196 | 398 | } |
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 | 54 | auto& res) const { |
204 | 54 | int curr_len = 0; |
205 | 108 | for (int row = 0; row < input_rows_count; row++) { |
206 | 54 | std::string res_p; |
207 | 54 | res_p.reserve(argument_size * 5); |
208 | 54 | res_p += 'p'; |
209 | 151 | for (int col = 1; col < argument_size; col++) { |
210 | 97 | const auto& current_offsets = *offsets_list[col]; |
211 | 97 | const auto& current_chars = *chars_list[col]; |
212 | 97 | const auto& current_nullmap = *null_list[col]; |
213 | | |
214 | 97 | if (current_nullmap[row]) { |
215 | 18 | res_p += 'X'; |
216 | 79 | } else { |
217 | 79 | auto idx = index_check_const(row, is_const_args[col]); |
218 | | |
219 | 79 | int size = current_offsets[idx] - current_offsets[idx - 1]; |
220 | 79 | const char* raw_chars = |
221 | 79 | reinterpret_cast<const char*>(¤t_chars[current_offsets[idx - 1]]); |
222 | | // convert string to u16string in order to convert to unicode strings |
223 | 79 | const std::string raw_str(raw_chars, size); |
224 | 79 | auto u16string = _string_to_u16string(raw_str); |
225 | 79 | res_p += _string_to_unicode(u16string) + std::to_string(u16string.size()); |
226 | 79 | } |
227 | 97 | } |
228 | | |
229 | | // check the name of length |
230 | 54 | int len = res_p.size(); |
231 | 54 | if (len > 50) { |
232 | 7 | res_p = std::format("{}_{:08x}", res_p.substr(0, 50), to_hash_code(res_p)); |
233 | 7 | len = res_p.size(); |
234 | 7 | } |
235 | 54 | curr_len += len; |
236 | 54 | res_data.resize(curr_len); |
237 | 54 | memcpy(&res_data[res_offset[row - 1]], res_p.c_str(), len); |
238 | 54 | res_offset[row] = res_offset[row - 1] + len; |
239 | 54 | } |
240 | 54 | block.get_by_position(result).column = std::move(res); |
241 | 54 | return Status::OK(); |
242 | 54 | } |
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 | 96 | size_t len) const { |
247 | 96 | size_t curr_len = 1; |
248 | 408 | for (int j = 0; j < len; j++) { |
249 | 312 | memcpy(&res_data[res_offset[row - 1]] + curr_len, date_str[j].c_str(), |
250 | 312 | date_str[j].size()); |
251 | 312 | curr_len += date_str[j].size(); |
252 | 312 | } |
253 | 96 | return curr_len; |
254 | 96 | } |
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 | 54 | auto& res) const { |
262 | 54 | std::string range_type(chars_list[1]->raw_data(), (*offsets_list[1])[0]); |
263 | 54 | std::transform(range_type.begin(), range_type.end(), range_type.begin(), |
264 | 243 | [](unsigned char c) { return static_cast<char>(std::tolower(c)); }); |
265 | | |
266 | 54 | res_data.resize(15 * input_rows_count); |
267 | 150 | for (int i = 0; i < input_rows_count; i++) { |
268 | 102 | const auto& current_offsets = *offsets_list[2]; |
269 | 102 | const auto& current_chars = *chars_list[2]; |
270 | | |
271 | 102 | auto idx = index_check_const(i, is_const_args[2]); |
272 | 102 | int size = current_offsets[idx] - current_offsets[idx - 1]; |
273 | 102 | const char* tmp = |
274 | 102 | reinterpret_cast<const char*>(¤t_chars[current_offsets[idx - 1]]); |
275 | 102 | std::string to_split_s(tmp, size); |
276 | | |
277 | | // check the str if it is date|datetime |
278 | 102 | RE2 date_regex(R"(^\d{4}-\d{2}-\d{2}( \d{2}:\d{2}:\d{2})?$)"); |
279 | 102 | if (!RE2::FullMatch(to_split_s, date_regex)) { |
280 | 6 | return Status::InvalidArgument("The range partition only support DATE|DATETIME"); |
281 | 6 | } |
282 | | |
283 | | // split date_str from (yyyy-mm-dd hh:mm:ss) to ([yyyy, mm, dd, hh, mm, ss]) |
284 | 96 | std::vector<std::string> date_str(6); |
285 | 96 | date_str[0] = to_split_s.substr(0, 4); |
286 | 348 | for (int ni = 5, j = 1; ni <= size; ni += 3, j++) { |
287 | 252 | date_str[j] = to_split_s.substr(ni, 2); |
288 | 252 | } |
289 | 96 | int curr_len = 0; |
290 | | |
291 | 96 | 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 | 96 | if (range_type == "year") { |
301 | 17 | curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 1); |
302 | 17 | memcpy(&res_data[res_offset[i - 1]] + curr_len, "0101", 4); |
303 | 17 | curr_len += 4; |
304 | 79 | } else if (range_type == "month") { |
305 | 20 | curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 2); |
306 | 20 | memcpy(&res_data[res_offset[i - 1]] + curr_len, "01", 2); |
307 | 20 | curr_len += 2; |
308 | 59 | } else if (range_type == "day") { |
309 | 20 | curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 3); |
310 | 39 | } else if (range_type == "hour") { |
311 | 13 | curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 4); |
312 | 26 | } else if (range_type == "minute") { |
313 | 13 | curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 5); |
314 | 13 | } else if (range_type == "second") { |
315 | 13 | curr_len += _copy_date_str_of_len_to_res_data(res_data, res_offset, date_str, i, 6); |
316 | 13 | } |
317 | | |
318 | | // fill in zero |
319 | 96 | int zero = 15 - curr_len; |
320 | 96 | std::fill_n(&res_data[res_offset[i - 1]] + curr_len, zero, '0'); |
321 | 96 | curr_len += zero; |
322 | 96 | res_offset[i] = res_offset[i - 1] + curr_len; |
323 | 96 | } |
324 | 48 | block.get_by_position(result).column = std::move(res); |
325 | 48 | return Status::OK(); |
326 | 54 | } |
327 | | |
328 | 7 | int32_t to_hash_code(const std::string& str) const { |
329 | 7 | uint64_t h = 0; |
330 | 1.37k | for (uint8_t c : str) { |
331 | 1.37k | h = (h * 31U + c) & 0xFFFFFFFFU; |
332 | 1.37k | } |
333 | 7 | return static_cast<int32_t>(h); |
334 | 7 | } |
335 | | }; |
336 | | |
337 | | class FunctionRandomBytes : public IFunction { |
338 | | public: |
339 | | static constexpr auto name = "random_bytes"; |
340 | 13 | static FunctionPtr create() { return std::make_shared<FunctionRandomBytes>(); } |
341 | 1 | String get_name() const override { return name; } |
342 | 5 | size_t get_number_of_arguments() const override { return 1; } |
343 | 6 | bool is_variadic() const override { return false; } |
344 | | |
345 | 5 | DataTypePtr get_return_type_impl(const DataTypes& arguments) const override { |
346 | 5 | return std::make_shared<DataTypeString>(); |
347 | 5 | } |
348 | | |
349 | 15 | bool use_default_implementation_for_constants() const final { return false; } |
350 | | |
351 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
352 | 4 | uint32_t result, size_t input_rows_count) const override { |
353 | 4 | auto res = ColumnString::create(); |
354 | 4 | auto& res_offsets = res->get_offsets(); |
355 | 4 | auto& res_chars = res->get_chars(); |
356 | 4 | res_offsets.resize(input_rows_count); |
357 | | |
358 | 4 | auto [arg_col, arg_const] = unpack_if_const(block.get_by_position(arguments[0]).column); |
359 | 4 | const auto* length_col = assert_cast<const ColumnInt32*>(arg_col.get()); |
360 | | |
361 | 4 | if (arg_const) { |
362 | 3 | res_chars.reserve(input_rows_count * (length_col->get_element(0) + 2)); |
363 | 3 | } |
364 | | |
365 | 4 | std::vector<uint8_t, Allocator_<uint8_t>> random_bytes; |
366 | 4 | std::random_device rd; |
367 | 4 | std::mt19937 gen(rd()); |
368 | | |
369 | 4 | std::uniform_int_distribution<unsigned short> distribution(0, 255); |
370 | 19 | for (size_t i = 0; i < input_rows_count; ++i) { |
371 | 16 | size_t index = index_check_const(i, arg_const); |
372 | 16 | if (length_col->get_element(index) < 0) [[unlikely]] { |
373 | 1 | return Status::InvalidArgument("argument {} of function {} at row {} was invalid.", |
374 | 1 | length_col->get_element(index), name, index); |
375 | 1 | } |
376 | 15 | random_bytes.resize(length_col->get_element(index)); |
377 | | |
378 | 117 | for (auto& byte : random_bytes) { |
379 | 117 | byte = distribution(gen) & 0xFF; |
380 | 117 | } |
381 | | |
382 | 15 | std::basic_ostringstream<char, std::char_traits<char>, Allocator_<char>> oss; |
383 | 117 | for (const auto& byte : random_bytes) { |
384 | 117 | oss << std::setw(2) << std::setfill('0') << std::hex << static_cast<int>(byte); |
385 | 117 | } |
386 | | |
387 | 15 | StringOP::push_value_string("0x" + oss.str(), i, res_chars, res_offsets); |
388 | 15 | random_bytes.clear(); |
389 | 15 | } |
390 | | |
391 | 3 | block.get_by_position(result).column = std::move(res); |
392 | | |
393 | 3 | return Status::OK(); |
394 | 4 | } |
395 | | }; |
396 | | |
397 | | class FunctionConvertTo : public IFunction { |
398 | | public: |
399 | | static constexpr auto name = "convert_to"; |
400 | | |
401 | 14 | static FunctionPtr create() { return std::make_shared<FunctionConvertTo>(); } |
402 | | |
403 | 1 | String get_name() const override { return name; } |
404 | | |
405 | 6 | size_t get_number_of_arguments() const override { return 2; } |
406 | | |
407 | 6 | DataTypePtr get_return_type_impl(const DataTypes& /*arguments*/) const override { |
408 | 6 | return std::make_shared<DataTypeString>(); |
409 | 6 | } |
410 | | |
411 | 37 | Status open(FunctionContext* context, FunctionContext::FunctionStateScope scope) override { |
412 | 37 | if (scope != FunctionContext::THREAD_LOCAL) { |
413 | 6 | return Status::OK(); |
414 | 6 | } |
415 | 31 | if (!context->is_col_constant(1)) { |
416 | 0 | return Status::InvalidArgument( |
417 | 0 | "character argument to convert function must be constant."); |
418 | 0 | } |
419 | 31 | const auto& character_data = context->get_constant_col(1)->column_ptr->get_data_at(0); |
420 | 31 | 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 | 31 | return Status::OK(); |
427 | 31 | } |
428 | | |
429 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
430 | 14 | uint32_t result, size_t input_rows_count) const override { |
431 | 14 | ColumnPtr argument_column = |
432 | 14 | block.get_by_position(arguments[0]).column->convert_to_full_column_if_const(); |
433 | 14 | const ColumnString* str_col = static_cast<const ColumnString*>(argument_column.get()); |
434 | 14 | const auto& str_offset = str_col->get_offsets(); |
435 | 14 | const auto& str_chars = str_col->get_chars(); |
436 | 14 | auto col_res = ColumnString::create(); |
437 | 14 | auto& res_offset = col_res->get_offsets(); |
438 | 14 | auto& res_chars = col_res->get_chars(); |
439 | 14 | res_offset.resize(input_rows_count); |
440 | | // max pinyin size is 6 + 1 (first '~') for utf8 chinese word 3 |
441 | 14 | size_t pinyin_size = (str_chars.size() + 2) / 3 * 7; |
442 | 14 | ColumnString::check_chars_length(pinyin_size, 0); |
443 | 14 | res_chars.resize(pinyin_size); |
444 | | |
445 | 14 | size_t in_len = 0, out_len = 0; |
446 | 49 | for (int i = 0; i < input_rows_count; ++i) { |
447 | 35 | in_len = str_offset[i] - str_offset[i - 1]; |
448 | 35 | const char* in = reinterpret_cast<const char*>(&str_chars[str_offset[i - 1]]); |
449 | 35 | char* out = reinterpret_cast<char*>(&res_chars[res_offset[i - 1]]); |
450 | 35 | _utf8_to_pinyin(in, in_len, out, &out_len); |
451 | 35 | res_offset[i] = res_offset[i - 1] + out_len; |
452 | 35 | } |
453 | 14 | res_chars.resize(res_offset[input_rows_count - 1]); |
454 | 14 | block.replace_by_position(result, std::move(col_res)); |
455 | 14 | return Status::OK(); |
456 | 14 | } |
457 | | |
458 | 35 | void _utf8_to_pinyin(const char* in, size_t in_len, char* out, size_t* out_len) const { |
459 | 225 | auto do_memcpy = [](char*& dest, const char*& from, size_t size) { |
460 | 225 | memcpy_small_allow_read_write_overflow15(dest, from, size); |
461 | 225 | dest += size; |
462 | 225 | from += size; |
463 | 225 | }; |
464 | 35 | auto from = in; |
465 | 35 | auto dest = out; |
466 | | |
467 | 273 | while (from - in < in_len) { |
468 | 238 | auto length = get_utf8_byte_length(*from); |
469 | 238 | if (length != 3) { |
470 | 225 | do_memcpy(dest, from, length); |
471 | 225 | } else { |
472 | | // convert utf8 to unicode code to get pinyin offset |
473 | 13 | if (auto tmp = (((int)(*from & 0x0F)) << 12) | (((int)(*(from + 1) & 0x3F)) << 6) | |
474 | 13 | (*(from + 2) & 0x3F); |
475 | 13 | tmp >= START_UNICODE_OFFSET and tmp < END_UNICODE_OFFSET) { |
476 | 13 | const char* buf = nullptr; |
477 | 13 | if (tmp >= START_UNICODE_OFFSET && tmp < MID_UNICODE_OFFSET) { |
478 | 2 | buf = PINYIN_DICT1 + (tmp - START_UNICODE_OFFSET) * MAX_PINYIN_LEN; |
479 | 11 | } else if (tmp >= MID_UNICODE_OFFSET && tmp < END_UNICODE_OFFSET) { |
480 | 11 | buf = PINYIN_DICT2 + (tmp - MID_UNICODE_OFFSET) * MAX_PINYIN_LEN; |
481 | 11 | } |
482 | | |
483 | 13 | auto end = strchr(buf, ' '); |
484 | | // max len for pinyin is 6 |
485 | 13 | int len = MAX_PINYIN_LEN; |
486 | 13 | if (end != nullptr && end - buf < MAX_PINYIN_LEN) { |
487 | 3 | len = end - buf; |
488 | 3 | } |
489 | | // set first char '~' just make sure all english word lower than chinese word |
490 | 13 | *dest = 126; |
491 | 13 | memcpy(dest + 1, buf, len); |
492 | 13 | dest += (len + 1); |
493 | 13 | from += 3; |
494 | 13 | } else { |
495 | 0 | do_memcpy(dest, from, 3); |
496 | 0 | } |
497 | 13 | } |
498 | 238 | } |
499 | | |
500 | 35 | *out_len = dest - out; |
501 | 35 | } |
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 | 323 | 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 | 316 | bool is_variadic() const override { return true; } |
609 | | |
610 | 315 | DataTypePtr get_return_type_impl(const DataTypes& arguments) const override { |
611 | 315 | return make_nullable(std::make_shared<DataTypeString>()); |
612 | 315 | } |
613 | 630 | bool use_default_implementation_for_nulls() const override { return false; } |
614 | | |
615 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
616 | 315 | uint32_t result, size_t input_rows_count) const override { |
617 | 315 | DCHECK_GE(arguments.size(), 2); |
618 | | |
619 | 315 | int argument_size = arguments.size(); |
620 | 315 | std::vector<ColumnPtr> str_columns(argument_size - 1); |
621 | 315 | std::vector<const ColumnString::Offsets*> offsets_list(argument_size - 1); |
622 | 315 | 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 | 709 | for (size_t i = 1; i < argument_size; ++i) { |
626 | 394 | if (auto const_column = check_and_get_column<const ColumnConst>( |
627 | 394 | *block.get_by_position(arguments[i]).column)) { |
628 | | // ignore null |
629 | 4 | if (const_column->only_null()) { |
630 | 0 | str_columns[i - 1] = nullptr; |
631 | 4 | } else { |
632 | 4 | auto str_column = ColumnString::create(); |
633 | 4 | auto& chars = str_column->get_chars(); |
634 | 4 | auto& offsets = str_column->get_offsets(); |
635 | 4 | offsets.resize(1); |
636 | 4 | const ColumnInt32* int_column; |
637 | 4 | if (auto* nullable = check_and_get_column<const ColumnNullable>( |
638 | 4 | const_column->get_data_column())) { |
639 | 0 | int_column = assert_cast<const ColumnInt32*>( |
640 | 0 | nullable->get_nested_column_ptr().get()); |
641 | 4 | } else { |
642 | 4 | int_column = |
643 | 4 | assert_cast<const ColumnInt32*>(&const_column->get_data_column()); |
644 | 4 | } |
645 | 4 | int int_val = int_column->get_int(0); |
646 | 4 | integer_to_char_(0, &int_val, chars, offsets); |
647 | 4 | str_columns[i - 1] = |
648 | 4 | ColumnConst::create(std::move(str_column), input_rows_count); |
649 | 4 | } |
650 | 4 | offsets_list[i - 1] = nullptr; |
651 | 4 | chars_list[i - 1] = nullptr; |
652 | 390 | } else { |
653 | 390 | auto str_column = ColumnString::create(); |
654 | 390 | auto& chars = str_column->get_chars(); |
655 | 390 | auto& offsets = str_column->get_offsets(); |
656 | | // data.resize(input_rows_count); |
657 | 390 | offsets.resize(input_rows_count); |
658 | | |
659 | 390 | if (auto nullable = check_and_get_column<const ColumnNullable>( |
660 | 390 | *block.get_by_position(arguments[i]).column)) { |
661 | 23 | const auto* int_data = |
662 | 23 | assert_cast<const ColumnInt32*>(nullable->get_nested_column_ptr().get()) |
663 | 23 | ->get_data() |
664 | 23 | .data(); |
665 | 23 | const auto* null_map_data = nullable->get_null_map_data().data(); |
666 | 148 | for (size_t j = 0; j < input_rows_count; ++j) { |
667 | | // ignore null |
668 | 125 | if (null_map_data[j]) { |
669 | 23 | offsets[j] = offsets[j - 1]; |
670 | 102 | } else { |
671 | 102 | integer_to_char_(j, int_data + j, chars, offsets); |
672 | 102 | } |
673 | 125 | } |
674 | 367 | } else { |
675 | 367 | const auto* int_data = assert_cast<const ColumnInt32*>( |
676 | 367 | block.get_by_position(arguments[i]).column.get()) |
677 | 367 | ->get_data() |
678 | 367 | .data(); |
679 | 778 | for (size_t j = 0; j < input_rows_count; ++j) { |
680 | 411 | integer_to_char_(j, int_data + j, chars, offsets); |
681 | 411 | } |
682 | 367 | } |
683 | 390 | offsets_list[i - 1] = &str_column->get_offsets(); |
684 | 390 | chars_list[i - 1] = &str_column->get_chars(); |
685 | 390 | str_columns[i - 1] = std::move(str_column); |
686 | 390 | } |
687 | 394 | } |
688 | | |
689 | 315 | auto null_map = ColumnUInt8::create(input_rows_count, 0); |
690 | 315 | auto res = ColumnString::create(); |
691 | 315 | auto& res_data = res->get_chars(); |
692 | 315 | auto& res_offset = res->get_offsets(); |
693 | | |
694 | 315 | size_t res_reserve_size = 0; |
695 | 709 | for (size_t i = 0; i < argument_size - 1; ++i) { |
696 | 394 | if (!str_columns[i]) { |
697 | 0 | continue; |
698 | 0 | } |
699 | 394 | if (auto const_column = check_and_get_column<const ColumnConst>(*str_columns[i])) { |
700 | 4 | auto str_column = |
701 | 4 | assert_cast<const ColumnString*>(&(const_column->get_data_column())); |
702 | 4 | auto& offsets = str_column->get_offsets(); |
703 | 4 | res_reserve_size += (offsets[0] - offsets[-1]) * input_rows_count; |
704 | 390 | } else { |
705 | 926 | for (size_t j = 0; j < input_rows_count; ++j) { |
706 | 536 | size_t append = (*offsets_list[i])[j] - (*offsets_list[i])[j - 1]; |
707 | | // check whether the output might overflow(unlikely) |
708 | 536 | 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 | 536 | res_reserve_size += append; |
713 | 536 | } |
714 | 390 | } |
715 | 394 | } |
716 | 315 | 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 | 315 | ColumnString::check_chars_length(res_reserve_size, 0); |
720 | 315 | res_data.resize(res_reserve_size); |
721 | 315 | res_offset.resize(input_rows_count); |
722 | | |
723 | 674 | for (size_t i = 0; i < input_rows_count; ++i) { |
724 | 359 | int current_length = 0; |
725 | 923 | for (size_t j = 0; j < argument_size - 1; ++j) { |
726 | 564 | if (!str_columns[j]) { |
727 | 0 | continue; |
728 | 0 | } |
729 | 564 | if (auto const_column = check_and_get_column<const ColumnConst>(*str_columns[j])) { |
730 | 28 | auto str_column = assert_cast<const ColumnString*, TypeCheckOnRelease::DISABLE>( |
731 | 28 | &(const_column->get_data_column())); |
732 | 28 | auto data_item = str_column->get_data_at(0); |
733 | 28 | memcpy_small_allow_read_write_overflow15( |
734 | 28 | &res_data[res_offset[i - 1]] + current_length, data_item.data, |
735 | 28 | data_item.size); |
736 | 28 | current_length += data_item.size; |
737 | 536 | } else { |
738 | 536 | auto& current_offsets = *offsets_list[j]; |
739 | 536 | auto& current_chars = *chars_list[j]; |
740 | | |
741 | 536 | int size = current_offsets[i] - current_offsets[i - 1]; |
742 | 536 | if (size > 0) { |
743 | 513 | memcpy_small_allow_read_write_overflow15( |
744 | 513 | &res_data[res_offset[i - 1]] + current_length, |
745 | 513 | ¤t_chars[current_offsets[i - 1]], size); |
746 | 513 | current_length += size; |
747 | 513 | } |
748 | 536 | } |
749 | 564 | } |
750 | 359 | res_offset[i] = res_offset[i - 1] + current_length; |
751 | 359 | } |
752 | | |
753 | | // validate utf8 |
754 | 315 | auto* null_map_data = null_map->get_data().data(); |
755 | 674 | for (size_t i = 0; i < input_rows_count; ++i) { |
756 | 359 | if (!validate_utf8((const char*)(&res_data[res_offset[i - 1]]), |
757 | 359 | res_offset[i] - res_offset[i - 1])) { |
758 | 136 | null_map_data[i] = 1; |
759 | 136 | } |
760 | 359 | } |
761 | | |
762 | 315 | block.get_by_position(result).column = |
763 | 315 | ColumnNullable::create(std::move(res), std::move(null_map)); |
764 | 315 | return Status::OK(); |
765 | 315 | } |
766 | | |
767 | | private: |
768 | | void integer_to_char_(int line_num, const int* num, ColumnString::Chars& chars, |
769 | 517 | IColumn::Offsets& offsets) const { |
770 | 517 | if (0 == *num) { |
771 | 26 | chars.push_back('\0'); |
772 | 26 | offsets[line_num] = offsets[line_num - 1] + 1; |
773 | 26 | return; |
774 | 26 | } |
775 | 491 | const char* bytes = (const char*)(num); |
776 | 491 | if constexpr (std::endian::native == std::endian::little) { |
777 | 491 | int k = 3; |
778 | 1.88k | for (; k >= 0; --k) { |
779 | 1.88k | if (bytes[k]) { |
780 | 491 | break; |
781 | 491 | } |
782 | 1.88k | } |
783 | 491 | offsets[line_num] = offsets[line_num - 1] + k + 1; |
784 | 1.06k | for (; k >= 0; --k) { |
785 | 569 | chars.push_back(bytes[k] ? bytes[k] : '\0'); |
786 | 569 | } |
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 | 491 | } |
804 | | }; |
805 | | |
806 | | class FunctionNgramSearch : public IFunction { |
807 | | public: |
808 | | static constexpr auto name = "ngram_search"; |
809 | 23 | static FunctionPtr create() { return std::make_shared<FunctionNgramSearch>(); } |
810 | 1 | String get_name() const override { return name; } |
811 | 15 | size_t get_number_of_arguments() const override { return 3; } |
812 | 15 | DataTypePtr get_return_type_impl(const DataTypes& arguments) const override { |
813 | 15 | return std::make_shared<DataTypeFloat64>(); |
814 | 15 | } |
815 | | |
816 | | // ngram_search(text,pattern,gram_num) |
817 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
818 | 14 | uint32_t result, size_t input_rows_count) const override { |
819 | 14 | CHECK_EQ(arguments.size(), 3); |
820 | 14 | auto col_res = ColumnFloat64::create(); |
821 | 14 | bool col_const[3]; |
822 | 14 | ColumnPtr argument_columns[3]; |
823 | 56 | for (int i = 0; i < 3; ++i) { |
824 | 42 | std::tie(argument_columns[i], col_const[i]) = |
825 | 42 | unpack_if_const(block.get_by_position(arguments[i]).column); |
826 | 42 | } |
827 | 14 | auto pattern = assert_cast<const ColumnString*>(argument_columns[1].get())->get_data_at(0); |
828 | 14 | auto gram_num = assert_cast<const ColumnInt32*>(argument_columns[2].get())->get_element(0); |
829 | 14 | const auto* text_col = assert_cast<const ColumnString*>(argument_columns[0].get()); |
830 | | |
831 | 14 | if (col_const[0]) { |
832 | 0 | _execute_impl<true>(text_col, pattern, gram_num, *col_res, input_rows_count); |
833 | 14 | } else { |
834 | 14 | _execute_impl<false>(text_col, pattern, gram_num, *col_res, input_rows_count); |
835 | 14 | } |
836 | | |
837 | 14 | block.replace_by_position(result, std::move(col_res)); |
838 | 14 | return Status::OK(); |
839 | 14 | } |
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 | 173 | uint32_t sub_str_hash(const char* data, int32_t length) const { |
849 | 173 | constexpr static uint32_t seed = 0; |
850 | 173 | return crc32c::Extend(seed, (const uint8_t*)data, length); |
851 | 173 | } |
852 | | |
853 | | template <bool column_const> |
854 | | void _execute_impl(const ColumnString* text_col, StringRef& pattern, int gram_num, |
855 | 14 | ColumnFloat64& res, size_t size) const { |
856 | 14 | auto& res_data = res.get_data(); |
857 | 14 | res_data.resize_fill(size, 0); |
858 | | // If the length of the pattern is less than gram_num, return 0. |
859 | 14 | 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 | 14 | NgramMap pattern_map; |
865 | 14 | 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 | 14 | std::vector<uint32_t> restore_map; |
868 | | |
869 | 35 | for (int i = 0; i < size; i++) { |
870 | 21 | auto text = text_col->get_data_at(index_check_const<column_const>(i)); |
871 | 21 | if (text.size < gram_num) { |
872 | | // If the length of the text is less than gram_num, return 0. |
873 | 4 | continue; |
874 | 4 | } |
875 | 17 | restore_map.reserve(text.size); |
876 | 17 | auto [text_count, intersection_count] = |
877 | 17 | get_text_set(text, gram_num, pattern_map, restore_map); |
878 | | |
879 | | // 2 * |Intersection| / (|text substr set| + |pattern substr set|) |
880 | 17 | res_data[i] = 2.0 * intersection_count / (text_count + pattern_count); |
881 | 17 | } |
882 | 14 | } Unexecuted instantiation: _ZNK5doris19FunctionNgramSearch13_execute_implILb1EEEvPKNS_9ColumnStrIjEERNS_9StringRefEiRNS_12ColumnVectorILNS_13PrimitiveTypeE9EEEm _ZNK5doris19FunctionNgramSearch13_execute_implILb0EEEvPKNS_9ColumnStrIjEERNS_9StringRefEiRNS_12ColumnVectorILNS_13PrimitiveTypeE9EEEm Line | Count | Source | 855 | 14 | ColumnFloat64& res, size_t size) const { | 856 | 14 | auto& res_data = res.get_data(); | 857 | 14 | res_data.resize_fill(size, 0); | 858 | | // If the length of the pattern is less than gram_num, return 0. | 859 | 14 | 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 | 14 | NgramMap pattern_map; | 865 | 14 | 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 | 14 | std::vector<uint32_t> restore_map; | 868 | | | 869 | 35 | for (int i = 0; i < size; i++) { | 870 | 21 | auto text = text_col->get_data_at(index_check_const<column_const>(i)); | 871 | 21 | if (text.size < gram_num) { | 872 | | // If the length of the text is less than gram_num, return 0. | 873 | 4 | continue; | 874 | 4 | } | 875 | 17 | restore_map.reserve(text.size); | 876 | 17 | auto [text_count, intersection_count] = | 877 | 17 | get_text_set(text, gram_num, pattern_map, restore_map); | 878 | | | 879 | | // 2 * |Intersection| / (|text substr set| + |pattern substr set|) | 880 | 17 | res_data[i] = 2.0 * intersection_count / (text_count + pattern_count); | 881 | 17 | } | 882 | 14 | } |
|
883 | | |
884 | 14 | size_t get_pattern_set(NgramMap& pattern_map, StringRef& pattern, int gram_num) const { |
885 | 14 | size_t pattern_count = 0; |
886 | 87 | for (int i = 0; i + gram_num <= pattern.size; i++) { |
887 | 73 | uint32_t cur_hash = sub_str_hash(pattern.data + i, gram_num); |
888 | 73 | if (!pattern_map.contains(cur_hash)) { |
889 | 43 | pattern_map[cur_hash] = found_in_pattern; |
890 | 43 | pattern_count++; |
891 | 43 | } |
892 | 73 | } |
893 | 14 | return pattern_count; |
894 | 14 | } |
895 | | |
896 | | std::pair<size_t, size_t> get_text_set(StringRef& text, int gram_num, NgramMap& pattern_map, |
897 | 17 | std::vector<uint32_t>& restore_map) const { |
898 | 17 | restore_map.clear(); |
899 | | //intersection_count indicates a substring both in pattern and text. |
900 | 17 | size_t text_count = 0, intersection_count = 0; |
901 | 117 | for (int i = 0; i + gram_num <= text.size; i++) { |
902 | 100 | uint32_t cur_hash = sub_str_hash(text.data + i, gram_num); |
903 | 100 | auto& val = pattern_map[cur_hash]; |
904 | 100 | if (val == not_found) { |
905 | 26 | val ^= found_in_text; |
906 | 26 | DCHECK(val == found_in_text); |
907 | | // only found in text |
908 | 26 | text_count++; |
909 | 26 | restore_map.push_back(cur_hash); |
910 | 74 | } else if (val == found_in_pattern) { |
911 | 39 | val ^= found_in_text; |
912 | 39 | DCHECK(val == found_in_pattern_and_text); |
913 | | // found in text and pattern |
914 | 39 | text_count++; |
915 | 39 | intersection_count++; |
916 | 39 | restore_map.push_back(cur_hash); |
917 | 39 | } |
918 | 100 | } |
919 | | // Restore the pattern_map. |
920 | 65 | for (auto& restore_hash : restore_map) { |
921 | 65 | pattern_map[restore_hash] ^= found_in_text; |
922 | 65 | } |
923 | | |
924 | 17 | return {text_count, intersection_count}; |
925 | 17 | } |
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 | 99 | static FunctionPtr create() { return std::make_shared<FunctionTranslate>(); } |
934 | 1 | String get_name() const override { return name; } |
935 | 91 | size_t get_number_of_arguments() const override { return 3; } |
936 | | |
937 | 91 | DataTypePtr get_return_type_impl(const DataTypes& arguments) const override { |
938 | 91 | return std::make_shared<DataTypeString>(); |
939 | 91 | }; |
940 | | |
941 | 7 | DataTypes get_variadic_argument_types_impl() const override { |
942 | 7 | return {std::make_shared<DataTypeString>(), std::make_shared<DataTypeString>(), |
943 | 7 | std::make_shared<DataTypeString>()}; |
944 | 7 | } |
945 | | |
946 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
947 | 148 | uint32_t result, size_t input_rows_count) const override { |
948 | 148 | CHECK_EQ(arguments.size(), 3); |
949 | 148 | auto col_res = ColumnString::create(); |
950 | 148 | bool col_const[3]; |
951 | 148 | ColumnPtr argument_columns[3]; |
952 | 592 | for (int i = 0; i < 3; ++i) { |
953 | 444 | col_const[i] = is_column_const(*block.get_by_position(arguments[i]).column); |
954 | 444 | } |
955 | 148 | argument_columns[0] = col_const[0] ? static_cast<const ColumnConst&>( |
956 | 20 | *block.get_by_position(arguments[0]).column) |
957 | 20 | .convert_to_full_column() |
958 | 148 | : block.get_by_position(arguments[0]).column; |
959 | 148 | default_preprocess_parameter_columns(argument_columns, col_const, {1, 2}, block, arguments); |
960 | | |
961 | 148 | const auto* col_source = assert_cast<const ColumnString*>(argument_columns[0].get()); |
962 | 148 | const auto* col_from = assert_cast<const ColumnString*>(argument_columns[1].get()); |
963 | 148 | const auto* col_to = assert_cast<const ColumnString*>(argument_columns[2].get()); |
964 | | |
965 | 148 | bool is_ascii = col_source->is_ascii() && col_from->is_ascii() && col_to->is_ascii(); |
966 | 148 | auto impl_vectors = impl_vectors_utf8<false>; |
967 | 148 | if (col_const[1] && col_const[2] && is_ascii) { |
968 | 34 | impl_vectors = impl_vectors_ascii<true>; |
969 | 114 | } else if (col_const[1] && col_const[2]) { |
970 | 1 | impl_vectors = impl_vectors_utf8<true>; |
971 | 113 | } else if (is_ascii) { |
972 | 88 | impl_vectors = impl_vectors_ascii<false>; |
973 | 88 | } |
974 | 148 | impl_vectors(col_source, col_from, col_to, col_res.get()); |
975 | 148 | block.get_by_position(result).column = std::move(col_res); |
976 | 148 | return Status::OK(); |
977 | 148 | } |
978 | | |
979 | | private: |
980 | | template <bool IsConst> |
981 | | static void impl_vectors_ascii(const ColumnString* col_source, const ColumnString* col_from, |
982 | 122 | const ColumnString* col_to, ColumnString* col_res) { |
983 | 122 | auto& res_chars = col_res->get_chars(); |
984 | 122 | auto& res_offsets = col_res->get_offsets(); |
985 | 122 | res_chars.reserve(col_source->get_chars().size()); |
986 | 122 | res_offsets.reserve(col_source->get_offsets().size()); |
987 | 122 | DCHECK_EQ(col_res->size(), 0); |
988 | 122 | AsciiMap map; |
989 | 122 | if (IsConst) { |
990 | 34 | const auto& from_str = col_from->get_data_at(0); |
991 | 34 | const auto& to_str = col_to->get_data_at(0); |
992 | 34 | 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 | 24 | res_offsets.insert(col_source->get_offsets().begin(), |
995 | 24 | col_source->get_offsets().end()); |
996 | 24 | res_chars.insert(col_source->get_chars().begin(), col_source->get_chars().end()); |
997 | 214 | for (int i = 0; i < res_chars.size(); ++i) { |
998 | 190 | res_chars[i] = map[res_chars[i]]; // translate the chars |
999 | 190 | } |
1000 | 24 | return; // no need to translate |
1001 | 24 | } |
1002 | 34 | } |
1003 | | |
1004 | 98 | auto res_size = 0; |
1005 | 98 | auto* begin_data = col_res->get_chars().data(); |
1006 | 216 | for (size_t i = 0; i < col_source->size(); ++i) { |
1007 | 118 | const auto& source_str = col_source->get_data_at(i); |
1008 | 118 | if (!IsConst) { |
1009 | 104 | const auto& from_str = col_from->get_data_at(i); |
1010 | 104 | const auto& to_str = col_to->get_data_at(i); |
1011 | 104 | build_translate_map_ascii(map, from_str, to_str); |
1012 | 104 | } |
1013 | 118 | auto* dst_data = begin_data + res_size; |
1014 | 118 | res_size += translate_ascii(source_str, map, dst_data); |
1015 | | |
1016 | 118 | res_offsets.push_back(res_size); |
1017 | 118 | } |
1018 | 98 | DCHECK_GE(res_chars.capacity(), res_size); |
1019 | 98 | res_chars.resize(res_size); |
1020 | 98 | } _ZN5doris17FunctionTranslate18impl_vectors_asciiILb1EEEvPKNS_9ColumnStrIjEES5_S5_PS3_ Line | Count | Source | 982 | 34 | const ColumnString* col_to, ColumnString* col_res) { | 983 | 34 | auto& res_chars = col_res->get_chars(); | 984 | 34 | auto& res_offsets = col_res->get_offsets(); | 985 | 34 | res_chars.reserve(col_source->get_chars().size()); | 986 | 34 | res_offsets.reserve(col_source->get_offsets().size()); | 987 | 34 | DCHECK_EQ(col_res->size(), 0); | 988 | 34 | AsciiMap map; | 989 | 34 | if (IsConst) { | 990 | 34 | const auto& from_str = col_from->get_data_at(0); | 991 | 34 | const auto& to_str = col_to->get_data_at(0); | 992 | 34 | 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 | 24 | res_offsets.insert(col_source->get_offsets().begin(), | 995 | 24 | col_source->get_offsets().end()); | 996 | 24 | res_chars.insert(col_source->get_chars().begin(), col_source->get_chars().end()); | 997 | 214 | for (int i = 0; i < res_chars.size(); ++i) { | 998 | 190 | res_chars[i] = map[res_chars[i]]; // translate the chars | 999 | 190 | } | 1000 | 24 | return; // no need to translate | 1001 | 24 | } | 1002 | 34 | } | 1003 | | | 1004 | 10 | auto res_size = 0; | 1005 | 10 | auto* begin_data = col_res->get_chars().data(); | 1006 | 24 | for (size_t i = 0; i < col_source->size(); ++i) { | 1007 | 14 | const auto& source_str = col_source->get_data_at(i); | 1008 | 14 | 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 | 14 | auto* dst_data = begin_data + res_size; | 1014 | 14 | res_size += translate_ascii(source_str, map, dst_data); | 1015 | | | 1016 | 14 | res_offsets.push_back(res_size); | 1017 | 14 | } | 1018 | | DCHECK_GE(res_chars.capacity(), res_size); | 1019 | 10 | res_chars.resize(res_size); | 1020 | 10 | } |
_ZN5doris17FunctionTranslate18impl_vectors_asciiILb0EEEvPKNS_9ColumnStrIjEES5_S5_PS3_ Line | Count | Source | 982 | 88 | const ColumnString* col_to, ColumnString* col_res) { | 983 | 88 | auto& res_chars = col_res->get_chars(); | 984 | 88 | auto& res_offsets = col_res->get_offsets(); | 985 | 88 | res_chars.reserve(col_source->get_chars().size()); | 986 | 88 | res_offsets.reserve(col_source->get_offsets().size()); | 987 | 88 | DCHECK_EQ(col_res->size(), 0); | 988 | 88 | AsciiMap map; | 989 | 88 | 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 | 88 | auto res_size = 0; | 1005 | 88 | auto* begin_data = col_res->get_chars().data(); | 1006 | 192 | for (size_t i = 0; i < col_source->size(); ++i) { | 1007 | 104 | const auto& source_str = col_source->get_data_at(i); | 1008 | 104 | if (!IsConst) { | 1009 | 104 | const auto& from_str = col_from->get_data_at(i); | 1010 | 104 | const auto& to_str = col_to->get_data_at(i); | 1011 | 104 | build_translate_map_ascii(map, from_str, to_str); | 1012 | 104 | } | 1013 | 104 | auto* dst_data = begin_data + res_size; | 1014 | 104 | res_size += translate_ascii(source_str, map, dst_data); | 1015 | | | 1016 | 104 | res_offsets.push_back(res_size); | 1017 | 104 | } | 1018 | | DCHECK_GE(res_chars.capacity(), res_size); | 1019 | 88 | res_chars.resize(res_size); | 1020 | 88 | } |
|
1021 | | |
1022 | | // return true if no need delete char |
1023 | | bool static build_translate_map_ascii(AsciiMap& map, const StringRef& from_str, |
1024 | 138 | const StringRef& to_str) { |
1025 | 17.8k | for (size_t i = 0; i < map.size(); ++i) { |
1026 | 17.6k | map[i] = i; // initialize map to identity |
1027 | 17.6k | } |
1028 | 138 | std::array<UInt8, 128> set_map {0}; |
1029 | 138 | const auto min_size = std::min(from_str.size, to_str.size); |
1030 | | // all ascii characters are in the range [0, 127] |
1031 | 476 | for (size_t i = 0; i < min_size; ++i) { |
1032 | 338 | auto from_char = from_str.data[i]; |
1033 | 338 | auto to_char = to_str.data[i]; |
1034 | 338 | if (set_map[from_char] == 0) { |
1035 | 243 | set_map[from_char] = 1; |
1036 | 243 | map[from_char] = to_char; |
1037 | 243 | } |
1038 | 338 | } |
1039 | | |
1040 | 138 | bool need_delete_char = false; |
1041 | | |
1042 | 207 | for (size_t i = min_size; i < from_str.size; ++i) { |
1043 | 69 | auto from_char = from_str.data[i]; |
1044 | 69 | if (set_map[from_char] == 0) { |
1045 | 57 | set_map[from_char] = 1; |
1046 | 57 | map[from_char] = DELETE_CHAR; // delete this char |
1047 | 57 | need_delete_char = true; |
1048 | 57 | } |
1049 | 69 | } |
1050 | 138 | return need_delete_char; |
1051 | 138 | } |
1052 | | |
1053 | 118 | static size_t translate_ascii(const StringRef& source_str, AsciiMap& map, UInt8* dst_data) { |
1054 | 118 | auto* begin_data = dst_data; |
1055 | 640 | for (size_t i = 0; i < source_str.size; ++i) { |
1056 | 522 | auto c = source_str.data[i]; |
1057 | 522 | if (map[c] == DELETE_CHAR) { |
1058 | 35 | continue; // delete this char |
1059 | 35 | } |
1060 | 487 | *dst_data++ = map[c]; |
1061 | 487 | } |
1062 | 118 | return dst_data - begin_data; |
1063 | 118 | } |
1064 | | |
1065 | | template <bool IsConst> |
1066 | | static void impl_vectors_utf8(const ColumnString* col_source, const ColumnString* col_from, |
1067 | 26 | const ColumnString* col_to, ColumnString* col_res) { |
1068 | 26 | col_res->get_chars().reserve(col_source->get_chars().size()); |
1069 | 26 | col_res->get_offsets().reserve(col_source->get_offsets().size()); |
1070 | 26 | std::unordered_map<std::string_view, std::string_view> translate_map; |
1071 | 26 | if (IsConst) { |
1072 | 1 | const auto& from_str = col_from->get_data_at(0); |
1073 | 1 | const auto& to_str = col_to->get_data_at(0); |
1074 | 1 | translate_map = |
1075 | 1 | build_translate_map_utf8(from_str.to_string_view(), to_str.to_string_view()); |
1076 | 1 | } |
1077 | 394 | for (size_t i = 0; i < col_source->size(); ++i) { |
1078 | 368 | const auto& source_str = col_source->get_data_at(i); |
1079 | 368 | if (!IsConst) { |
1080 | 367 | const auto& from_str = col_from->get_data_at(i); |
1081 | 367 | const auto& to_str = col_to->get_data_at(i); |
1082 | 367 | translate_map = build_translate_map_utf8(from_str.to_string_view(), |
1083 | 367 | to_str.to_string_view()); |
1084 | 367 | } |
1085 | 368 | auto translated_str = translate_utf8(source_str.to_string_view(), translate_map); |
1086 | 368 | col_res->insert_data(translated_str.data(), translated_str.size()); |
1087 | 368 | } |
1088 | 26 | } _ZN5doris17FunctionTranslate17impl_vectors_utf8ILb0EEEvPKNS_9ColumnStrIjEES5_S5_PS3_ Line | Count | Source | 1067 | 25 | const ColumnString* col_to, ColumnString* col_res) { | 1068 | 25 | col_res->get_chars().reserve(col_source->get_chars().size()); | 1069 | 25 | col_res->get_offsets().reserve(col_source->get_offsets().size()); | 1070 | 25 | std::unordered_map<std::string_view, std::string_view> translate_map; | 1071 | 25 | 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 | 392 | for (size_t i = 0; i < col_source->size(); ++i) { | 1078 | 367 | const auto& source_str = col_source->get_data_at(i); | 1079 | 367 | if (!IsConst) { | 1080 | 367 | const auto& from_str = col_from->get_data_at(i); | 1081 | 367 | const auto& to_str = col_to->get_data_at(i); | 1082 | 367 | translate_map = build_translate_map_utf8(from_str.to_string_view(), | 1083 | 367 | to_str.to_string_view()); | 1084 | 367 | } | 1085 | 367 | auto translated_str = translate_utf8(source_str.to_string_view(), translate_map); | 1086 | 367 | col_res->insert_data(translated_str.data(), translated_str.size()); | 1087 | 367 | } | 1088 | 25 | } |
_ZN5doris17FunctionTranslate17impl_vectors_utf8ILb1EEEvPKNS_9ColumnStrIjEES5_S5_PS3_ Line | Count | Source | 1067 | 1 | const ColumnString* col_to, ColumnString* col_res) { | 1068 | 1 | col_res->get_chars().reserve(col_source->get_chars().size()); | 1069 | 1 | col_res->get_offsets().reserve(col_source->get_offsets().size()); | 1070 | 1 | std::unordered_map<std::string_view, std::string_view> translate_map; | 1071 | 1 | if (IsConst) { | 1072 | 1 | const auto& from_str = col_from->get_data_at(0); | 1073 | 1 | const auto& to_str = col_to->get_data_at(0); | 1074 | 1 | translate_map = | 1075 | 1 | build_translate_map_utf8(from_str.to_string_view(), to_str.to_string_view()); | 1076 | 1 | } | 1077 | 2 | for (size_t i = 0; i < col_source->size(); ++i) { | 1078 | 1 | const auto& source_str = col_source->get_data_at(i); | 1079 | 1 | 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 | 1 | auto translated_str = translate_utf8(source_str.to_string_view(), translate_map); | 1086 | 1 | col_res->insert_data(translated_str.data(), translated_str.size()); | 1087 | 1 | } | 1088 | 1 | } |
|
1089 | | |
1090 | | static std::unordered_map<std::string_view, std::string_view> build_translate_map_utf8( |
1091 | 368 | const std::string_view& from_str, const std::string_view& to_str) { |
1092 | 368 | std::unordered_map<std::string_view, std::string_view> translate_map; |
1093 | 1.98k | for (size_t i = 0, from_char_size = 0, j = 0, to_char_size = 0; i < from_str.size(); |
1094 | 1.61k | i += from_char_size, j += to_char_size) { |
1095 | 1.61k | from_char_size = get_utf8_byte_length(from_str[i]); |
1096 | 1.61k | to_char_size = j < to_str.size() ? get_utf8_byte_length(to_str[j]) : 0; |
1097 | 1.61k | auto from_char = from_str.substr(i, from_char_size); |
1098 | 1.61k | if (translate_map.find(from_char) == translate_map.end()) { |
1099 | 876 | translate_map[from_char] = |
1100 | 876 | j < to_str.size() ? to_str.substr(j, to_char_size) : std::string_view(); |
1101 | 876 | } |
1102 | 1.61k | } |
1103 | 368 | return translate_map; |
1104 | 368 | } |
1105 | | |
1106 | | static std::string translate_utf8( |
1107 | | const std::string_view& source_str, |
1108 | 368 | std::unordered_map<std::string_view, std::string_view>& translate_map) { |
1109 | 368 | std::string result; |
1110 | 368 | result.reserve(source_str.size()); |
1111 | 2.01k | for (size_t i = 0, char_size = 0; i < source_str.size(); i += char_size) { |
1112 | 1.65k | char_size = get_utf8_byte_length(source_str[i]); |
1113 | 1.65k | auto c = source_str.substr(i, char_size); |
1114 | 1.65k | if (translate_map.find(c) != translate_map.end()) { |
1115 | 255 | if (!translate_map[c].empty()) { |
1116 | 159 | result.append(translate_map[c]); |
1117 | 159 | } |
1118 | 1.39k | } else { |
1119 | 1.39k | result.append(c); |
1120 | 1.39k | } |
1121 | 1.65k | } |
1122 | 368 | return result; |
1123 | 368 | } |
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 | 172 | static FunctionPtr create() { return std::make_shared<FunctionXPathString>(); } |
1142 | 1 | String get_name() const override { return name; } |
1143 | 164 | size_t get_number_of_arguments() const override { return 2; } |
1144 | 164 | DataTypePtr get_return_type_impl(const DataTypes& arguments) const override { |
1145 | 164 | return make_nullable(std::make_shared<DataTypeString>()); |
1146 | 164 | } |
1147 | | |
1148 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
1149 | 246 | uint32_t result, size_t input_rows_count) const override { |
1150 | 246 | CHECK_EQ(arguments.size(), 2); |
1151 | 246 | auto col_res = ColumnNullable::create(ColumnString::create(), ColumnUInt8::create()); |
1152 | 246 | const auto& [left_col, left_const] = |
1153 | 246 | unpack_if_const(block.get_by_position(arguments[0]).column); |
1154 | 246 | const auto& [right_col, right_const] = |
1155 | 246 | unpack_if_const(block.get_by_position(arguments[1]).column); |
1156 | 246 | const auto& xml_col = *assert_cast<const ColumnString*>(left_col.get()); |
1157 | 246 | const auto& xpath_col = *assert_cast<const ColumnString*>(right_col.get()); |
1158 | | |
1159 | 246 | Status status; |
1160 | 246 | if (left_const && right_const) { |
1161 | 0 | status = execute_vector<true, true>(input_rows_count, xml_col, xpath_col, *col_res); |
1162 | 246 | } else if (left_const) { |
1163 | 42 | status = execute_vector<true, false>(input_rows_count, xml_col, xpath_col, *col_res); |
1164 | 204 | } else if (right_const) { |
1165 | 51 | status = execute_vector<false, true>(input_rows_count, xml_col, xpath_col, *col_res); |
1166 | 153 | } else { |
1167 | 153 | status = execute_vector<false, false>(input_rows_count, xml_col, xpath_col, *col_res); |
1168 | 153 | } |
1169 | 246 | if (!status.ok()) { |
1170 | 1 | return status; |
1171 | 1 | } |
1172 | | |
1173 | 245 | block.get_by_position(result).column = std::move(col_res); |
1174 | 245 | return Status::OK(); |
1175 | 246 | } |
1176 | | |
1177 | | private: |
1178 | 331 | static Status parse_xml(const StringRef& xml_str, pugi::xml_document& xml_doc) { |
1179 | 331 | pugi::xml_parse_result result = xml_doc.load_buffer(xml_str.data, xml_str.size); |
1180 | 331 | if (!result) { |
1181 | 1 | return Status::InvalidArgument("Function {} failed to parse XML string: {}", name, |
1182 | 1 | result.description()); |
1183 | 1 | } |
1184 | 330 | return Status::OK(); |
1185 | 331 | } |
1186 | | |
1187 | 340 | 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 | 340 | try { |
1190 | | // NOTE!!!: don't use to_string_view(), because xpath_str maybe not null-terminated |
1191 | 340 | xpath_query = pugi::xpath_query(xpath_str.to_string().c_str()); |
1192 | 340 | } 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 | 340 | return Status::OK(); |
1197 | 340 | } |
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 | 246 | const ColumnString& xpath_col, ColumnNullable& res_col) { |
1202 | 246 | pugi::xml_document xml_doc; |
1203 | 246 | pugi::xpath_query xpath_query; |
1204 | | // first check right_const, because we want to check empty input first |
1205 | 246 | if constexpr (right_const) { |
1206 | 51 | auto xpath_str = xpath_col.get_data_at(0); |
1207 | 51 | 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 | 50 | RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query)); |
1213 | 50 | } |
1214 | 50 | if constexpr (left_const) { |
1215 | 42 | auto xml_str = xml_col.get_data_at(0); |
1216 | 42 | 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 | 41 | RETURN_IF_ERROR(parse_xml(xml_str, xml_doc)); |
1222 | 41 | } |
1223 | | |
1224 | 633 | for (size_t i = 0; i < input_rows_count; ++i) { |
1225 | 388 | if constexpr (!right_const) { |
1226 | 308 | auto xpath_str = xpath_col.get_data_at(i); |
1227 | 308 | if (xpath_str.empty()) { |
1228 | | // should return null if xpath_str is empty |
1229 | 18 | res_col.insert_default(); |
1230 | 18 | continue; |
1231 | 18 | } |
1232 | 290 | RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query)); |
1233 | 290 | } |
1234 | 327 | if constexpr (!left_const) { |
1235 | 327 | auto xml_str = xml_col.get_data_at(i); |
1236 | 327 | if (xml_str.empty()) { |
1237 | | // should return null if xml_str is empty |
1238 | 20 | res_col.insert_default(); |
1239 | 20 | continue; |
1240 | 20 | } |
1241 | 307 | RETURN_IF_ERROR(parse_xml(xml_str, xml_doc)); |
1242 | 307 | } |
1243 | 306 | std::string text; |
1244 | 388 | try { |
1245 | 388 | text = xpath_query.evaluate_string(xml_doc); |
1246 | 388 | } 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 | 349 | res_col.insert_data(text.data(), text.size()); |
1251 | 349 | } |
1252 | 245 | return Status::OK(); |
1253 | 246 | } Unexecuted instantiation: _ZN5doris19FunctionXPathString14execute_vectorILb1ELb1EEENS_6StatusEmRKNS_9ColumnStrIjEES6_RNS_14ColumnNullableE _ZN5doris19FunctionXPathString14execute_vectorILb1ELb0EEENS_6StatusEmRKNS_9ColumnStrIjEES6_RNS_14ColumnNullableE Line | Count | Source | 1201 | 42 | const ColumnString& xpath_col, ColumnNullable& res_col) { | 1202 | 42 | pugi::xml_document xml_doc; | 1203 | 42 | 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 | 42 | if constexpr (left_const) { | 1215 | 42 | auto xml_str = xml_col.get_data_at(0); | 1216 | 42 | 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 | 41 | RETURN_IF_ERROR(parse_xml(xml_str, xml_doc)); | 1222 | 41 | } | 1223 | | | 1224 | 103 | for (size_t i = 0; i < input_rows_count; ++i) { | 1225 | 61 | if constexpr (!right_const) { | 1226 | 61 | auto xpath_str = xpath_col.get_data_at(i); | 1227 | 61 | 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 | 60 | RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query)); | 1233 | 60 | } | 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 | 61 | std::string text; | 1244 | 61 | try { | 1245 | 61 | text = xpath_query.evaluate_string(xml_doc); | 1246 | 61 | } 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 | 60 | res_col.insert_data(text.data(), text.size()); | 1251 | 60 | } | 1252 | 42 | return Status::OK(); | 1253 | 42 | } |
_ZN5doris19FunctionXPathString14execute_vectorILb0ELb1EEENS_6StatusEmRKNS_9ColumnStrIjEES6_RNS_14ColumnNullableE Line | Count | Source | 1201 | 51 | const ColumnString& xpath_col, ColumnNullable& res_col) { | 1202 | 51 | pugi::xml_document xml_doc; | 1203 | 51 | pugi::xpath_query xpath_query; | 1204 | | // first check right_const, because we want to check empty input first | 1205 | 51 | if constexpr (right_const) { | 1206 | 51 | auto xpath_str = xpath_col.get_data_at(0); | 1207 | 51 | 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 | 50 | RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query)); | 1213 | 50 | } | 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 | 131 | 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 | 80 | if constexpr (!left_const) { | 1235 | 80 | auto xml_str = xml_col.get_data_at(i); | 1236 | 80 | if (xml_str.empty()) { | 1237 | | // should return null if xml_str is empty | 1238 | 5 | res_col.insert_default(); | 1239 | 5 | continue; | 1240 | 5 | } | 1241 | 75 | RETURN_IF_ERROR(parse_xml(xml_str, xml_doc)); | 1242 | 75 | } | 1243 | 75 | std::string text; | 1244 | 80 | try { | 1245 | 80 | text = xpath_query.evaluate_string(xml_doc); | 1246 | 80 | } 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 | 75 | res_col.insert_data(text.data(), text.size()); | 1251 | 75 | } | 1252 | 51 | return Status::OK(); | 1253 | 51 | } |
_ZN5doris19FunctionXPathString14execute_vectorILb0ELb0EEENS_6StatusEmRKNS_9ColumnStrIjEES6_RNS_14ColumnNullableE Line | Count | Source | 1201 | 153 | const ColumnString& xpath_col, ColumnNullable& res_col) { | 1202 | 153 | pugi::xml_document xml_doc; | 1203 | 153 | 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 | 399 | for (size_t i = 0; i < input_rows_count; ++i) { | 1225 | 247 | if constexpr (!right_const) { | 1226 | 247 | auto xpath_str = xpath_col.get_data_at(i); | 1227 | 247 | if (xpath_str.empty()) { | 1228 | | // should return null if xpath_str is empty | 1229 | 17 | res_col.insert_default(); | 1230 | 17 | continue; | 1231 | 17 | } | 1232 | 230 | RETURN_IF_ERROR(build_xpath_query(xpath_str, xpath_query)); | 1233 | 230 | } | 1234 | 247 | if constexpr (!left_const) { | 1235 | 247 | auto xml_str = xml_col.get_data_at(i); | 1236 | 247 | if (xml_str.empty()) { | 1237 | | // should return null if xml_str is empty | 1238 | 15 | res_col.insert_default(); | 1239 | 15 | continue; | 1240 | 15 | } | 1241 | 232 | RETURN_IF_ERROR(parse_xml(xml_str, xml_doc)); | 1242 | 232 | } | 1243 | 231 | std::string text; | 1244 | 247 | try { | 1245 | 247 | text = xpath_query.evaluate_string(xml_doc); | 1246 | 247 | } 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 | 214 | res_col.insert_data(text.data(), text.size()); | 1251 | 214 | } | 1252 | 152 | return Status::OK(); | 1253 | 153 | } |
|
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 | 37 | static bool is_variadic() { return true; } |
1262 | 36 | static DataTypePtr get_return_type_impl(const DataTypes& arguments) { |
1263 | 36 | if (arguments[0].get()->is_nullable()) { |
1264 | 12 | return make_nullable(std::make_shared<DataTypeString>()); |
1265 | 12 | } |
1266 | 24 | return std::make_shared<DataTypeString>(); |
1267 | 36 | } |
1268 | | |
1269 | | static bool is_return_nullable(bool has_nullable, |
1270 | 36 | const std::vector<ColumnWithConstAndNullMap>& cols_info) { |
1271 | 36 | return cols_info[0].null_map != nullptr; |
1272 | 36 | } |
1273 | | |
1274 | | static bool execute_const_null(ColumnString::MutablePtr& res_col, |
1275 | | PaddedPODArray<UInt8>& res_null_map_data, |
1276 | 2 | size_t input_rows_count, size_t null_index) { |
1277 | 2 | 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 | 2 | return false; |
1283 | 2 | } |
1284 | | |
1285 | | static void execute(const std::vector<ColumnWithConstAndNullMap>& column_infos, |
1286 | | ColumnString::MutablePtr& res_col, PaddedPODArray<UInt8>& res_null_map_data, |
1287 | 36 | size_t input_rows_count) { |
1288 | 36 | static constexpr char SEPARATOR = ','; |
1289 | 36 | const auto& bit_data = |
1290 | 36 | assert_cast<const ColumnInt64&>(*column_infos[0].nested_col).get_data(); |
1291 | 36 | std::vector<const ColumnString*> str_cols(column_infos.size()); |
1292 | 284 | for (size_t i = 1; i < column_infos.size(); ++i) { |
1293 | 248 | str_cols[i] = assert_cast<const ColumnString*>(column_infos[i].nested_col); |
1294 | 248 | } |
1295 | | |
1296 | 202 | for (size_t row = 0; row < input_rows_count; ++row) { |
1297 | 166 | if (column_infos[0].is_null_at(row)) { |
1298 | 10 | res_col->insert_default(); |
1299 | 10 | res_null_map_data[row] = 1; |
1300 | 10 | continue; |
1301 | 10 | } |
1302 | | |
1303 | 156 | uint64_t bit = bit_data[column_infos[0].is_const ? 0 : row]; |
1304 | 156 | uint64_t col_pos = __builtin_ffsll(bit); |
1305 | 156 | ColumnString::Chars data; |
1306 | 454 | while (col_pos != 0 && col_pos < column_infos.size() && bit != 0) { |
1307 | 298 | 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 | 260 | auto s_ref = str_cols[col_pos]->get_data_at( |
1313 | 260 | column_infos[col_pos].is_const ? 0 : row); |
1314 | 260 | data.insert(s_ref.data, s_ref.data + s_ref.size); |
1315 | 260 | data.push_back(SEPARATOR); |
1316 | 260 | } |
1317 | 298 | bit &= ~(1ULL << (col_pos - 1)); |
1318 | 298 | col_pos = __builtin_ffsll(bit); |
1319 | 298 | } |
1320 | | // remove the last ',' |
1321 | 156 | if (!data.empty()) { |
1322 | 141 | data.pop_back(); |
1323 | 141 | } |
1324 | 156 | res_col->insert_data(reinterpret_cast<const char*>(data.data()), data.size()); |
1325 | 156 | } |
1326 | 36 | } |
1327 | | }; |
1328 | | |
1329 | | class FunctionExportSet : public IFunction { |
1330 | | public: |
1331 | | static constexpr auto name = "export_set"; |
1332 | 77 | 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 | 70 | bool is_variadic() const override { return true; } |
1336 | 69 | DataTypePtr get_return_type_impl(const DataTypes& arguments) const override { |
1337 | 69 | return std::make_shared<DataTypeString>(); |
1338 | 69 | } |
1339 | | |
1340 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
1341 | 69 | uint32_t result, size_t input_rows_count) const override { |
1342 | 69 | auto res_col = ColumnString::create(); |
1343 | | |
1344 | 69 | const size_t arg_size = arguments.size(); |
1345 | 69 | bool col_const[5]; |
1346 | 69 | ColumnPtr arg_cols[5]; |
1347 | 69 | bool all_const = true; |
1348 | 244 | for (int i = 1; i < arg_size; ++i) { |
1349 | 175 | col_const[i] = is_column_const(*block.get_by_position(arguments[i]).column); |
1350 | 175 | all_const = all_const && col_const[i]; |
1351 | 175 | } |
1352 | 69 | std::tie(arg_cols[0], col_const[0]) = |
1353 | 69 | unpack_if_const(block.get_by_position(arguments[0]).column); |
1354 | 69 | if (arg_size == 3) { |
1355 | 49 | default_preprocess_parameter_columns(arg_cols, col_const, {1, 2}, block, arguments); |
1356 | 49 | } else if (arg_size == 4) { |
1357 | 3 | default_preprocess_parameter_columns(arg_cols, col_const, {1, 2, 3}, block, arguments); |
1358 | 17 | } else if (arg_size == 5) { |
1359 | 17 | default_preprocess_parameter_columns(arg_cols, col_const, {1, 2, 3, 4}, block, |
1360 | 17 | arguments); |
1361 | 17 | } |
1362 | | |
1363 | 69 | const auto* bit_col = assert_cast<const ColumnInt128*>(arg_cols[0].get()); |
1364 | 69 | const auto* on_col = assert_cast<const ColumnString*>(arg_cols[1].get()); |
1365 | 69 | const auto* off_col = assert_cast<const ColumnString*>(arg_cols[2].get()); |
1366 | 69 | const ColumnString* sep_col = nullptr; |
1367 | 69 | const ColumnInt32* num_bits_col = nullptr; |
1368 | 69 | if (arg_size > 3) { |
1369 | 20 | sep_col = assert_cast<const ColumnString*>(arg_cols[3].get()); |
1370 | 20 | if (arg_size == 5) { |
1371 | 17 | num_bits_col = assert_cast<const ColumnInt32*>(arg_cols[4].get()); |
1372 | 17 | } |
1373 | 20 | } |
1374 | | |
1375 | 246 | for (size_t i = 0; i < input_rows_count; ++i) { |
1376 | 177 | uint64_t bit = |
1377 | 177 | check_and_get_bit(bit_col->get_element(index_check_const(i, col_const[0]))); |
1378 | | |
1379 | 177 | size_t idx_for_args = all_const ? 0 : i; |
1380 | 177 | StringRef on = on_col->get_data_at(idx_for_args); |
1381 | 177 | StringRef off = off_col->get_data_at(idx_for_args); |
1382 | 177 | StringRef separator(",", 1); |
1383 | 177 | int8_t num_of_bits = 64; |
1384 | | |
1385 | 177 | if (arg_size > 3) { |
1386 | 104 | separator = sep_col->get_data_at(idx_for_args); |
1387 | 104 | if (arg_size == 5) { |
1388 | 77 | num_of_bits = |
1389 | 77 | check_and_get_num_of_bits(num_bits_col->get_element(idx_for_args)); |
1390 | 77 | } |
1391 | 104 | } |
1392 | | |
1393 | 177 | execute_single(bit, on, off, separator, num_of_bits, *res_col); |
1394 | 177 | } |
1395 | 69 | block.replace_by_position(result, std::move(res_col)); |
1396 | 69 | return Status::OK(); |
1397 | 69 | } |
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 | 177 | uint64_t check_and_get_bit(__int128 col_bit_val) const { |
1405 | 177 | if (col_bit_val > ULLONG_MAX) { |
1406 | 3 | return LLONG_MAX; |
1407 | 174 | } else if (col_bit_val < LLONG_MIN) { |
1408 | 1 | return LLONG_MIN; |
1409 | 1 | } |
1410 | 173 | return static_cast<uint64_t>(col_bit_val); |
1411 | 177 | } |
1412 | | |
1413 | | // If the input value is not in the range [0, 64], return default value 64 |
1414 | 77 | int8_t check_and_get_num_of_bits(int32_t col_num_of_bits_val) const { |
1415 | 77 | if (col_num_of_bits_val >= 0 && col_num_of_bits_val <= 64) { |
1416 | 71 | return static_cast<int8_t>(col_num_of_bits_val); |
1417 | 71 | } |
1418 | 6 | return 64; |
1419 | 77 | } |
1420 | | |
1421 | | void execute_single(uint64_t bit, const StringRef& on, const StringRef& off, |
1422 | | const StringRef& separator, int8_t num_of_bits, |
1423 | 177 | ColumnString& res_col) const { |
1424 | 177 | ColumnString::Chars data; |
1425 | 177 | data.reserve(std::max(on.size, off.size) * num_of_bits + |
1426 | 177 | separator.size * (num_of_bits - 1)); |
1427 | | |
1428 | 5.03k | while (bit && num_of_bits) { |
1429 | 4.86k | if (bit & 1) { |
1430 | 3.04k | data.insert(on.data, on.data + on.size); |
1431 | 3.04k | } else { |
1432 | 1.82k | data.insert(off.data, off.data + off.size); |
1433 | 1.82k | } |
1434 | 4.86k | bit >>= 1; |
1435 | 4.86k | if (--num_of_bits) { |
1436 | 4.79k | data.insert(separator.data, separator.data + separator.size); |
1437 | 4.79k | } |
1438 | 4.86k | } |
1439 | | |
1440 | 177 | if (num_of_bits > 0) { |
1441 | 111 | ColumnString::Chars off_sep_combo; |
1442 | 111 | off_sep_combo.reserve(separator.size + off.size); |
1443 | 111 | off_sep_combo.insert(off_sep_combo.end(), off.data, off.data + off.size); |
1444 | 111 | off_sep_combo.insert(off_sep_combo.end(), separator.data, |
1445 | 111 | separator.data + separator.size); |
1446 | | |
1447 | 3.30k | for (size_t i = 0; i < num_of_bits; ++i) { |
1448 | 3.19k | data.insert(off_sep_combo.data(), off_sep_combo.data() + off_sep_combo.size()); |
1449 | 3.19k | } |
1450 | 111 | data.erase(data.end() - separator.size, data.end()); |
1451 | 111 | } |
1452 | | |
1453 | 177 | res_col.insert_data(reinterpret_cast<const char*>(data.data()), data.size()); |
1454 | 177 | } |
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 | 44.2k | 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 | 44.2k | bool is_variadic() const override { return true; } |
1466 | 59.6k | bool use_default_implementation_for_nulls() const override { return false; } |
1467 | 44.1k | DataTypePtr get_return_type_impl(const DataTypes& arguments) const override { |
1468 | 44.1k | return std::make_shared<DataTypeInt64>(); |
1469 | 44.1k | } |
1470 | | |
1471 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
1472 | 15.3k | uint32_t result, size_t input_rows_count) const override { |
1473 | 15.3k | DCHECK_GE(arguments.size(), 1); |
1474 | | |
1475 | 15.3k | auto argument_size = arguments.size(); |
1476 | 15.3k | std::vector<ColumnPtr> argument_columns(argument_size); |
1477 | 15.3k | std::vector<PrimitiveType> argument_primitive_types(argument_size); |
1478 | | |
1479 | 31.0k | for (size_t i = 0; i < argument_size; ++i) { |
1480 | 15.7k | argument_columns[i] = |
1481 | 15.7k | block.get_by_position(arguments[i]).column->convert_to_full_column_if_const(); |
1482 | 15.7k | argument_primitive_types[i] = |
1483 | 15.7k | block.get_by_position(arguments[i]).type->get_primitive_type(); |
1484 | 15.7k | } |
1485 | | |
1486 | 15.3k | auto res_col = ColumnInt64::create(); |
1487 | 15.3k | auto& res_data = res_col->get_data(); |
1488 | 15.3k | res_data.resize_fill(input_rows_count, 0); |
1489 | | |
1490 | 15.5M | for (size_t i = 0; i < input_rows_count; ++i) { |
1491 | 15.5M | uint32_t hash_val = 0; |
1492 | 31.0M | for (size_t j = 0; j < argument_size; ++j) { |
1493 | 15.5M | const auto& column = argument_columns[j]; |
1494 | 15.5M | auto primitive_type = argument_primitive_types[j]; |
1495 | 15.5M | auto val = column->get_data_at(i); |
1496 | 15.5M | if (val.data != nullptr) { |
1497 | 15.4M | hash_val = RawValue::zlib_crc32(val.data, val.size, primitive_type, hash_val); |
1498 | 15.4M | } else { |
1499 | 27.8k | hash_val = HashUtil::zlib_crc_hash_null(hash_val); |
1500 | 27.8k | } |
1501 | 15.5M | } |
1502 | 15.5M | res_data[i] = hash_val; |
1503 | 15.5M | } |
1504 | | |
1505 | 15.3k | block.replace_by_position(result, std::move(res_col)); |
1506 | 15.3k | return Status::OK(); |
1507 | 15.3k | } |
1508 | | }; |
1509 | | |
1510 | | class FunctionUnicodeNormalize : public IFunction { |
1511 | | public: |
1512 | | static constexpr auto name = "unicode_normalize"; |
1513 | | |
1514 | 23 | static FunctionPtr create() { return std::make_shared<FunctionUnicodeNormalize>(); } |
1515 | | |
1516 | 5 | String get_name() const override { return name; } |
1517 | | |
1518 | 15 | size_t get_number_of_arguments() const override { return 2; } |
1519 | | |
1520 | 15 | DataTypePtr get_return_type_impl(const DataTypes& arguments) const override { |
1521 | 15 | if (arguments.size() != 2 || !is_string_type(arguments[0]->get_primitive_type()) || |
1522 | 15 | !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 | 15 | return arguments[0]; |
1528 | 15 | } |
1529 | | |
1530 | 16 | ColumnNumbers get_arguments_that_are_always_constant() const override { return {1}; } |
1531 | | |
1532 | 32 | Status open(FunctionContext* context, FunctionContext::FunctionStateScope scope) override { |
1533 | 32 | if (scope == FunctionContext::THREAD_LOCAL) { |
1534 | 17 | return Status::OK(); |
1535 | 17 | } |
1536 | | |
1537 | 15 | if (!context->is_col_constant(1)) { |
1538 | 2 | return Status::InvalidArgument( |
1539 | 2 | "The second argument 'mode' of function {} must be constant", get_name()); |
1540 | 2 | } |
1541 | | |
1542 | 13 | auto* const_col = context->get_constant_col(1); |
1543 | 13 | auto mode_ref = const_col->column_ptr->get_data_at(0); |
1544 | 13 | std::string lower_mode = doris::to_lower(std::string(doris::trim(mode_ref.to_string()))); |
1545 | | |
1546 | 13 | UErrorCode status = U_ZERO_ERROR; |
1547 | 13 | const icu::Normalizer2* normalizer = nullptr; |
1548 | | |
1549 | 13 | if (lower_mode == "nfc") { |
1550 | 5 | normalizer = icu::Normalizer2::getInstance(nullptr, "nfc", UNORM2_COMPOSE, status); |
1551 | 8 | } else if (lower_mode == "nfd") { |
1552 | 2 | normalizer = icu::Normalizer2::getNFDInstance(status); |
1553 | 6 | } else if (lower_mode == "nfkc") { |
1554 | 0 | normalizer = icu::Normalizer2::getInstance(nullptr, "nfkc", UNORM2_COMPOSE, status); |
1555 | 6 | } else if (lower_mode == "nfkd") { |
1556 | 2 | normalizer = icu::Normalizer2::getNFKDInstance(status); |
1557 | 4 | } else if (lower_mode == "nfkc_cf") { |
1558 | 2 | normalizer = icu::Normalizer2::getInstance(nullptr, "nfkc_cf", UNORM2_COMPOSE, status); |
1559 | 2 | } else { |
1560 | 2 | return Status::InvalidArgument( |
1561 | 2 | "Invalid normalization mode '{}' for function {}. " |
1562 | 2 | "Supported modes: NFC, NFD, NFKC, NFKD, NFKC_CF", |
1563 | 2 | lower_mode, get_name()); |
1564 | 2 | } |
1565 | | |
1566 | 11 | 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 | 11 | auto state = std::make_shared<UnicodeNormalizeState>(); |
1573 | 11 | state->normalizer = normalizer; |
1574 | 11 | context->set_function_state(scope, state); |
1575 | 11 | return Status::OK(); |
1576 | 11 | } |
1577 | | |
1578 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
1579 | 11 | uint32_t result, size_t input_rows_count) const override { |
1580 | 11 | auto* state = reinterpret_cast<UnicodeNormalizeState*>( |
1581 | 11 | context->get_function_state(FunctionContext::FRAGMENT_LOCAL)); |
1582 | 11 | if (state == nullptr || state->normalizer == nullptr) { |
1583 | 0 | return Status::RuntimeError("unicode_normalize function state is not initialized"); |
1584 | 0 | } |
1585 | | |
1586 | 11 | ColumnPtr col = |
1587 | 11 | block.get_by_position(arguments[0]).column->convert_to_full_column_if_const(); |
1588 | 11 | const auto* col_str = check_and_get_column<ColumnString>(col.get()); |
1589 | 11 | 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 | 11 | const auto& data = col_str->get_chars(); |
1596 | 11 | const auto& offsets = col_str->get_offsets(); |
1597 | | |
1598 | 11 | auto res = ColumnString::create(); |
1599 | 11 | auto& res_data = res->get_chars(); |
1600 | 11 | auto& res_offsets = res->get_offsets(); |
1601 | | |
1602 | 11 | size_t rows = offsets.size(); |
1603 | 11 | res_offsets.resize(rows); |
1604 | | |
1605 | 11 | std::string tmp; |
1606 | 22 | for (size_t i = 0; i < rows; ++i) { |
1607 | 11 | const char* begin = reinterpret_cast<const char*>(&data[offsets[i - 1]]); |
1608 | 11 | size_t len = offsets[i] - offsets[i - 1]; |
1609 | | |
1610 | 11 | normalize_one(state->normalizer, begin, len, tmp); |
1611 | 11 | StringOP::push_value_string(tmp, i, res_data, res_offsets); |
1612 | 11 | } |
1613 | | |
1614 | 11 | block.replace_by_position(result, std::move(res)); |
1615 | 11 | return Status::OK(); |
1616 | 11 | } |
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 | 11 | std::string& output) { |
1625 | 11 | if (length == 0) { |
1626 | 1 | output.clear(); |
1627 | 1 | return; |
1628 | 1 | } |
1629 | | |
1630 | 10 | icu::StringPiece sp(input, static_cast<int32_t>(length)); |
1631 | 10 | icu::UnicodeString src16 = icu::UnicodeString::fromUTF8(sp); |
1632 | | |
1633 | 10 | UErrorCode status = U_ZERO_ERROR; |
1634 | 10 | UNormalizationCheckResult quick = normalizer->quickCheck(src16, status); |
1635 | 10 | if (U_SUCCESS(status) && quick == UNORM_YES) { |
1636 | 4 | output.assign(input, length); |
1637 | 4 | return; |
1638 | 4 | } |
1639 | | |
1640 | 6 | icu::UnicodeString result16; |
1641 | 6 | status = U_ZERO_ERROR; |
1642 | 6 | normalizer->normalize(src16, result16, status); |
1643 | 6 | if (U_FAILURE(status)) { |
1644 | 0 | output.assign(input, length); |
1645 | 0 | return; |
1646 | 0 | } |
1647 | | |
1648 | 6 | output.clear(); |
1649 | 6 | result16.toUTF8String(output); |
1650 | 6 | } |
1651 | | }; |
1652 | | |
1653 | | using FunctionMakeSet = FunctionNeedsToHandleNull<MakeSetImpl, PrimitiveType::TYPE_STRING>; |
1654 | | |
1655 | 7 | void register_function_string_misc(SimpleFunctionFactory& factory) { |
1656 | 7 | factory.register_function<FunctionAutoPartitionName>(); |
1657 | 7 | factory.register_function<FunctionConvertTo>(); |
1658 | 7 | factory.register_function<FunctionIntToChar>(); |
1659 | 7 | factory.register_function<FunctionRandomBytes>(); |
1660 | 7 | factory.register_function<FunctionTranslate>(); |
1661 | 7 | factory.register_function<FunctionNgramSearch>(); |
1662 | 7 | factory.register_function<FunctionXPathString>(); |
1663 | 7 | factory.register_function<FunctionCrc32Internal>(); |
1664 | 7 | factory.register_function<FunctionMakeSet>(); |
1665 | 7 | factory.register_function<FunctionExportSet>(); |
1666 | 7 | factory.register_function<FunctionUnicodeNormalize>(); |
1667 | 7 | } |
1668 | | |
1669 | | #include "common/compile_check_avoid_end.h" |
1670 | | } // namespace doris |