forked from apache/doris
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_type_hll.cpp
More file actions
137 lines (120 loc) · 5.55 KB
/
Copy pathdata_type_hll.cpp
File metadata and controls
137 lines (120 loc) · 5.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include "core/data_type/data_type_hll.h"
#include <string.h>
#include <utility>
#include "agent/be_exec_version_manager.h"
#include "core/assert_cast.h"
#include "core/column/column.h"
#include "core/column/column_complex.h"
#include "core/column/column_const.h"
#include "core/string_buffer.hpp"
#include "util/slice.h"
namespace doris {
// Two part of binary: <size array> | <hll data array>
// first: const flag| row num | real_saved_num | hll1 size | hll2 size | ...
// second: hll1 | hll2 | ...
char* DataTypeHLL::serialize(const IColumn& column, char* buf, int be_exec_version) const {
const auto* hll_column = &column;
size_t real_need_copy_num = 0;
buf = serialize_const_flag_and_row_num(&hll_column, buf, &real_need_copy_num);
// In the code below, if the real_need_copy_num is 0, an empty vector will be created. A vector with size 0 may return nullptr from data()
// https://en.cppreference.com/w/cpp/container/vector/data
// `If size() is 0, data() may or may not return a null pointer.`
// This would trigger a ubsan error: `null pointer passed as argument 2, which is declared to never be null`
// Other data types don't have this issue because they use Doris internal pod array that guarantees data won't be nullptr.
if (real_need_copy_num == 0) {
return buf;
}
const auto& data_column = assert_cast<const ColumnHLL&>(*hll_column);
std::vector<size_t> hll_size_array(real_need_copy_num);
auto allocate_len_size = sizeof(size_t) * real_need_copy_num;
char* buf_start = buf;
buf += allocate_len_size;
for (size_t i = 0; i < real_need_copy_num; ++i) {
const auto& hll = data_column.get_element(i);
size_t actual_size = hll.serialize(reinterpret_cast<uint8_t*>(buf));
hll_size_array[i] = actual_size;
buf += actual_size;
}
memcpy(buf_start, hll_size_array.data(), allocate_len_size);
return buf;
}
// Two part of binary: <size array> | <hll data array>
// first: const flag| row num | real_saved_num | hll1 size | hll2 size | ...
// second: hll1 | hll2 | ...
const char* DataTypeHLL::deserialize(const char* buf, MutableColumnPtr* column,
int be_exec_version) const {
auto* origin_column = column->get();
size_t real_have_saved_num = 0;
buf = deserialize_const_flag_and_row_num(buf, column, &real_have_saved_num);
auto& data_column = assert_cast<ColumnHLL&>(*origin_column);
auto& data = data_column.get_data();
data.resize(real_have_saved_num);
if (real_have_saved_num == 0) {
// If real_have_saved_num is 0, we don't need to deserialize any data.
return buf;
}
std::vector<size_t> hll_size_array(real_have_saved_num);
memcpy(hll_size_array.data(), buf, sizeof(size_t) * real_have_saved_num);
buf += sizeof(size_t) * real_have_saved_num;
for (int i = 0; i < real_have_saved_num; ++i) {
data[i].deserialize(Slice(buf, hll_size_array[i]));
buf += hll_size_array[i];
}
return buf;
}
// binary: const flag| row num | real_saved_num | size array | data array
// <size array>: hll1 size | hll1 size | ...
// <data array>: hll1 | hll1 | ...
int64_t DataTypeHLL::get_uncompressed_serialized_bytes(const IColumn& column,
int be_exec_version) const {
auto size = sizeof(bool) + sizeof(size_t) + sizeof(size_t);
bool is_const_column = is_column_const(column);
auto real_need_copy_num = is_const_column ? 1 : column.size();
const IColumn* hll_column = &column;
if (is_const_column) {
const auto& const_column = assert_cast<const ColumnConst&>(column);
hll_column = &(const_column.get_data_column());
}
const auto& data_column = assert_cast<const ColumnHLL&>(*hll_column);
auto allocate_len_size = sizeof(size_t) * real_need_copy_num;
size_t allocate_content_size = 0;
for (size_t i = 0; i < real_need_copy_num; ++i) {
auto& hll = data_column.get_element(i);
allocate_content_size += hll.max_serialized_size();
}
return size + allocate_len_size + allocate_content_size;
}
MutableColumnPtr DataTypeHLL::create_column() const {
return ColumnHLL::create();
}
Status DataTypeHLL::check_column(const IColumn& column) const {
return check_column_non_nested_type<ColumnHLL>(column);
}
void DataTypeHLL::serialize_as_stream(const HyperLogLog& cvalue, BufferWritable& buf) {
std::string memory_buffer(cvalue.max_serialized_size(), '0');
size_t actual_size = cvalue.serialize((uint8_t*)memory_buffer.data());
memory_buffer.resize(actual_size);
buf.write_binary(memory_buffer);
}
void DataTypeHLL::deserialize_as_stream(HyperLogLog& value, BufferReadable& buf) {
std::string str;
buf.read_binary(str);
value.deserialize(Slice(str));
}
} // namespace doris