Coverage Report

Created: 2026-03-25 04:28

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exec/common/agg_utils.h
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
18
#pragma once
19
20
#include <variant>
21
#include <vector>
22
23
#include "core/arena.h"
24
#include "exec/common/hash_table/hash_map_context.h"
25
#include "exec/common/hash_table/hash_map_util.h"
26
#include "exec/common/hash_table/ph_hash_map.h"
27
#include "exec/common/hash_table/string_hash_map.h"
28
29
namespace doris {
30
31
template <typename T>
32
using AggData = PHHashMap<T, AggregateDataPtr, HashCRC32<T>>;
33
template <typename T>
34
using AggDataNullable = DataWithNullKey<AggData<T>>;
35
36
using AggregatedDataWithoutKey = AggregateDataPtr;
37
using AggregatedDataWithStringKey = PHHashMap<StringRef, AggregateDataPtr>;
38
using AggregatedDataWithShortStringKey = StringHashMap<AggregateDataPtr>;
39
40
using AggregatedDataWithUInt32KeyPhase2 =
41
        PHHashMap<UInt32, AggregateDataPtr, HashMixWrapper<UInt32>>;
42
using AggregatedDataWithUInt64KeyPhase2 =
43
        PHHashMap<UInt64, AggregateDataPtr, HashMixWrapper<UInt64>>;
44
45
using AggregatedDataWithNullableUInt32KeyPhase2 =
46
        DataWithNullKey<AggregatedDataWithUInt32KeyPhase2>;
47
using AggregatedDataWithNullableUInt64KeyPhase2 =
48
        DataWithNullKey<AggregatedDataWithUInt64KeyPhase2>;
49
using AggregatedDataWithNullableShortStringKey = DataWithNullKey<AggregatedDataWithShortStringKey>;
50
51
using AggregatedMethodVariants = std::variant<
52
        std::monostate, MethodSerialized<AggregatedDataWithStringKey>,
53
        MethodOneNumber<UInt8, AggData<UInt8>>, MethodOneNumber<UInt16, AggData<UInt16>>,
54
        MethodOneNumber<UInt32, AggData<UInt32>>, MethodOneNumber<UInt64, AggData<UInt64>>,
55
        MethodStringNoCache<AggregatedDataWithShortStringKey>,
56
        MethodOneNumber<UInt128, AggData<UInt128>>, MethodOneNumber<UInt256, AggData<UInt256>>,
57
        MethodOneNumber<UInt32, AggregatedDataWithUInt32KeyPhase2>,
58
        MethodOneNumber<UInt64, AggregatedDataWithUInt64KeyPhase2>,
59
        MethodSingleNullableColumn<MethodOneNumber<UInt8, AggDataNullable<UInt8>>>,
60
        MethodSingleNullableColumn<MethodOneNumber<UInt16, AggDataNullable<UInt16>>>,
61
        MethodSingleNullableColumn<MethodOneNumber<UInt32, AggDataNullable<UInt32>>>,
62
        MethodSingleNullableColumn<MethodOneNumber<UInt64, AggDataNullable<UInt64>>>,
63
        MethodSingleNullableColumn<
64
                MethodOneNumber<UInt32, AggregatedDataWithNullableUInt32KeyPhase2>>,
65
        MethodSingleNullableColumn<
66
                MethodOneNumber<UInt64, AggregatedDataWithNullableUInt64KeyPhase2>>,
67
        MethodSingleNullableColumn<MethodOneNumber<UInt128, AggDataNullable<UInt128>>>,
68
        MethodSingleNullableColumn<MethodOneNumber<UInt256, AggDataNullable<UInt256>>>,
69
        MethodSingleNullableColumn<MethodStringNoCache<AggregatedDataWithNullableShortStringKey>>,
70
        MethodKeysFixed<AggData<UInt64>>, MethodKeysFixed<AggData<UInt72>>,
71
        MethodKeysFixed<AggData<UInt96>>, MethodKeysFixed<AggData<UInt104>>,
72
        MethodKeysFixed<AggData<UInt128>>, MethodKeysFixed<AggData<UInt136>>,
73
        MethodKeysFixed<AggData<UInt256>>>;
74
75
struct AggregatedDataVariants
76
        : public DataVariants<AggregatedMethodVariants, MethodSingleNullableColumn, MethodOneNumber,
77
                              DataWithNullKey> {
78
    AggregatedDataWithoutKey without_key = nullptr;
79
80
82.1k
    void init(const std::vector<DataTypePtr>& data_types, HashKeyType type) {
81
82.1k
        bool nullable = data_types.size() == 1 && data_types[0]->is_nullable();
82
83
82.1k
        switch (type) {
84
1
        case HashKeyType::without_key:
85
1
            break;
86
17.1k
        case HashKeyType::serialized:
87
17.1k
            method_variant.emplace<MethodSerialized<AggregatedDataWithStringKey>>();
88
17.1k
            break;
89
3.86k
        case HashKeyType::int8_key:
90
3.86k
            emplace_single<UInt8, AggData<UInt8>>(nullable);
91
3.86k
            break;
92
1.65k
        case HashKeyType::int16_key:
93
1.65k
            emplace_single<UInt16, AggData<UInt16>>(nullable);
94
1.65k
            break;
95
6.57k
        case HashKeyType::int32_key:
96
6.57k
            emplace_single<UInt32, AggData<UInt32>>(nullable);
97
6.57k
            break;
98
14.4k
        case HashKeyType::int32_key_phase2:
99
14.4k
            emplace_single<UInt32, AggregatedDataWithUInt32KeyPhase2>(nullable);
100
14.4k
            break;
101
4.67k
        case HashKeyType::int64_key:
102
4.67k
            emplace_single<UInt64, AggData<UInt64>>(nullable);
103
4.67k
            break;
104
10.1k
        case HashKeyType::int64_key_phase2:
105
10.1k
            emplace_single<UInt64, AggregatedDataWithUInt64KeyPhase2>(nullable);
106
10.1k
            break;
107
633
        case HashKeyType::int128_key:
108
633
            emplace_single<UInt128, AggData<UInt128>>(nullable);
109
633
            break;
110
11
        case HashKeyType::int256_key:
111
11
            emplace_single<UInt256, AggData<UInt256>>(nullable);
112
11
            break;
113
6.86k
        case HashKeyType::string_key:
114
6.86k
            if (nullable) {
115
5.64k
                method_variant.emplace<MethodSingleNullableColumn<
116
5.64k
                        MethodStringNoCache<AggregatedDataWithNullableShortStringKey>>>();
117
5.64k
            } else {
118
1.21k
                method_variant.emplace<MethodStringNoCache<AggregatedDataWithShortStringKey>>();
119
1.21k
            }
120
6.86k
            break;
121
1.41k
        case HashKeyType::fixed64:
122
1.41k
            method_variant.emplace<MethodKeysFixed<AggData<UInt64>>>(get_key_sizes(data_types));
123
1.41k
            break;
124
1.48k
        case HashKeyType::fixed72:
125
1.48k
            method_variant.emplace<MethodKeysFixed<AggData<UInt72>>>(get_key_sizes(data_types));
126
1.48k
            break;
127
830
        case HashKeyType::fixed96:
128
830
            method_variant.emplace<MethodKeysFixed<AggData<UInt96>>>(get_key_sizes(data_types));
129
830
            break;
130
1.75k
        case HashKeyType::fixed104:
131
1.75k
            method_variant.emplace<MethodKeysFixed<AggData<UInt104>>>(get_key_sizes(data_types));
132
1.75k
            break;
133
216
        case HashKeyType::fixed128:
134
216
            method_variant.emplace<MethodKeysFixed<AggData<UInt128>>>(get_key_sizes(data_types));
135
216
            break;
136
2.55k
        case HashKeyType::fixed136:
137
2.55k
            method_variant.emplace<MethodKeysFixed<AggData<UInt136>>>(get_key_sizes(data_types));
138
2.55k
            break;
139
7.91k
        case HashKeyType::fixed256:
140
7.91k
            method_variant.emplace<MethodKeysFixed<AggData<UInt256>>>(get_key_sizes(data_types));
141
7.91k
            break;
142
1
        default:
143
1
            throw Exception(ErrorCode::INTERNAL_ERROR,
144
1
                            "AggregatedDataVariants meet invalid key type, type={}", type);
145
82.1k
        }
146
82.1k
    }
147
};
148
149
using AggregatedDataVariantsUPtr = std::unique_ptr<AggregatedDataVariants>;
150
using ArenaUPtr = std::unique_ptr<Arena>;
151
152
struct AggregateDataContainer {
153
public:
154
    AggregateDataContainer(size_t size_of_key, size_t size_of_aggregate_states)
155
79.0k
            : _size_of_key(size_of_key), _size_of_aggregate_states(size_of_aggregate_states) {}
156
157
60.0k
    int64_t memory_usage() const { return _arena_pool.size(); }
158
159
    template <typename KeyType>
160
4.97M
    AggregateDataPtr append_data(const KeyType& key) {
161
4.97M
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
4.97M
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
26.2k
            _expand();
165
26.2k
        }
166
167
4.97M
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
4.97M
        auto* aggregate_data = _current_agg_data;
169
4.97M
        ++_total_count;
170
4.97M
        ++_index_in_sub_container;
171
4.97M
        _current_agg_data += _size_of_aggregate_states;
172
4.97M
        _current_keys += _size_of_key;
173
4.97M
        return aggregate_data;
174
4.97M
    }
_ZN5doris22AggregateDataContainer11append_dataINS_9StringRefEEEPcRKT_
Line
Count
Source
160
245k
    AggregateDataPtr append_data(const KeyType& key) {
161
245k
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
245k
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
6.02k
            _expand();
165
6.02k
        }
166
167
245k
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
245k
        auto* aggregate_data = _current_agg_data;
169
245k
        ++_total_count;
170
245k
        ++_index_in_sub_container;
171
245k
        _current_agg_data += _size_of_aggregate_states;
172
245k
        _current_keys += _size_of_key;
173
245k
        return aggregate_data;
174
245k
    }
_ZN5doris22AggregateDataContainer11append_dataIhEEPcRKT_
Line
Count
Source
160
3.20k
    AggregateDataPtr append_data(const KeyType& key) {
161
3.20k
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
3.20k
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
1.60k
            _expand();
165
1.60k
        }
166
167
3.20k
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
3.20k
        auto* aggregate_data = _current_agg_data;
169
3.20k
        ++_total_count;
170
3.20k
        ++_index_in_sub_container;
171
3.20k
        _current_agg_data += _size_of_aggregate_states;
172
3.20k
        _current_keys += _size_of_key;
173
3.20k
        return aggregate_data;
174
3.20k
    }
_ZN5doris22AggregateDataContainer11append_dataItEEPcRKT_
Line
Count
Source
160
2.42k
    AggregateDataPtr append_data(const KeyType& key) {
161
2.42k
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
2.42k
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
489
            _expand();
165
489
        }
166
167
2.42k
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
2.42k
        auto* aggregate_data = _current_agg_data;
169
2.42k
        ++_total_count;
170
2.42k
        ++_index_in_sub_container;
171
2.42k
        _current_agg_data += _size_of_aggregate_states;
172
2.42k
        _current_keys += _size_of_key;
173
2.42k
        return aggregate_data;
174
2.42k
    }
_ZN5doris22AggregateDataContainer11append_dataIjEEPcRKT_
Line
Count
Source
160
2.52M
    AggregateDataPtr append_data(const KeyType& key) {
161
2.52M
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
2.52M
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
9.86k
            _expand();
165
9.86k
        }
166
167
2.52M
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
2.52M
        auto* aggregate_data = _current_agg_data;
169
2.52M
        ++_total_count;
170
2.52M
        ++_index_in_sub_container;
171
2.52M
        _current_agg_data += _size_of_aggregate_states;
172
2.52M
        _current_keys += _size_of_key;
173
2.52M
        return aggregate_data;
174
2.52M
    }
_ZN5doris22AggregateDataContainer11append_dataImEEPcRKT_
Line
Count
Source
160
2.17M
    AggregateDataPtr append_data(const KeyType& key) {
161
2.17M
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
2.17M
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
4.82k
            _expand();
165
4.82k
        }
166
167
2.17M
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
2.17M
        auto* aggregate_data = _current_agg_data;
169
2.17M
        ++_total_count;
170
2.17M
        ++_index_in_sub_container;
171
2.17M
        _current_agg_data += _size_of_aggregate_states;
172
2.17M
        _current_keys += _size_of_key;
173
2.17M
        return aggregate_data;
174
2.17M
    }
_ZN5doris22AggregateDataContainer11append_dataIN4wide7integerILm128EjEEEEPcRKT_
Line
Count
Source
160
9.67k
    AggregateDataPtr append_data(const KeyType& key) {
161
9.67k
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
9.67k
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
342
            _expand();
165
342
        }
166
167
9.67k
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
9.67k
        auto* aggregate_data = _current_agg_data;
169
9.67k
        ++_total_count;
170
9.67k
        ++_index_in_sub_container;
171
9.67k
        _current_agg_data += _size_of_aggregate_states;
172
9.67k
        _current_keys += _size_of_key;
173
9.67k
        return aggregate_data;
174
9.67k
    }
_ZN5doris22AggregateDataContainer11append_dataIN4wide7integerILm256EjEEEEPcRKT_
Line
Count
Source
160
4.42k
    AggregateDataPtr append_data(const KeyType& key) {
161
4.42k
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
4.42k
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
673
            _expand();
165
673
        }
166
167
4.42k
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
4.42k
        auto* aggregate_data = _current_agg_data;
169
4.42k
        ++_total_count;
170
4.42k
        ++_index_in_sub_container;
171
4.42k
        _current_agg_data += _size_of_aggregate_states;
172
4.42k
        _current_keys += _size_of_key;
173
4.42k
        return aggregate_data;
174
4.42k
    }
_ZN5doris22AggregateDataContainer11append_dataINS_6UInt72EEEPcRKT_
Line
Count
Source
160
1.02k
    AggregateDataPtr append_data(const KeyType& key) {
161
1.02k
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
1.02k
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
506
            _expand();
165
506
        }
166
167
1.02k
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
1.02k
        auto* aggregate_data = _current_agg_data;
169
1.02k
        ++_total_count;
170
1.02k
        ++_index_in_sub_container;
171
1.02k
        _current_agg_data += _size_of_aggregate_states;
172
1.02k
        _current_keys += _size_of_key;
173
1.02k
        return aggregate_data;
174
1.02k
    }
_ZN5doris22AggregateDataContainer11append_dataINS_6UInt96EEEPcRKT_
Line
Count
Source
160
8.96k
    AggregateDataPtr append_data(const KeyType& key) {
161
8.96k
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
8.96k
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
607
            _expand();
165
607
        }
166
167
8.96k
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
8.96k
        auto* aggregate_data = _current_agg_data;
169
8.96k
        ++_total_count;
170
8.96k
        ++_index_in_sub_container;
171
8.96k
        _current_agg_data += _size_of_aggregate_states;
172
8.96k
        _current_keys += _size_of_key;
173
8.96k
        return aggregate_data;
174
8.96k
    }
_ZN5doris22AggregateDataContainer11append_dataINS_7UInt104EEEPcRKT_
Line
Count
Source
160
4.81k
    AggregateDataPtr append_data(const KeyType& key) {
161
4.81k
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
4.81k
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
437
            _expand();
165
437
        }
166
167
4.81k
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
4.81k
        auto* aggregate_data = _current_agg_data;
169
4.81k
        ++_total_count;
170
4.81k
        ++_index_in_sub_container;
171
4.81k
        _current_agg_data += _size_of_aggregate_states;
172
4.81k
        _current_keys += _size_of_key;
173
4.81k
        return aggregate_data;
174
4.81k
    }
_ZN5doris22AggregateDataContainer11append_dataINS_7UInt136EEEPcRKT_
Line
Count
Source
160
1.94k
    AggregateDataPtr append_data(const KeyType& key) {
161
1.94k
        DCHECK_EQ(sizeof(KeyType), _size_of_key);
162
        // SUB_CONTAINER_CAPACITY should add a new sub container, and also expand when it is zero
163
1.94k
        if (UNLIKELY(_index_in_sub_container % SUB_CONTAINER_CAPACITY == 0)) {
164
913
            _expand();
165
913
        }
166
167
1.94k
        *reinterpret_cast<KeyType*>(_current_keys) = key;
168
1.94k
        auto* aggregate_data = _current_agg_data;
169
1.94k
        ++_total_count;
170
1.94k
        ++_index_in_sub_container;
171
1.94k
        _current_agg_data += _size_of_aggregate_states;
172
1.94k
        _current_keys += _size_of_key;
173
1.94k
        return aggregate_data;
174
1.94k
    }
175
176
    template <typename Derived, bool IsConst>
177
    class IteratorBase {
178
        using Container =
179
                std::conditional_t<IsConst, const AggregateDataContainer, AggregateDataContainer>;
180
181
        Container* container = nullptr;
182
        uint32_t index;
183
        uint32_t sub_container_index;
184
        uint32_t index_in_sub_container;
185
186
        friend class HashTable;
187
188
    public:
189
79.0k
        IteratorBase() = default;
190
        IteratorBase(Container* container_, uint32_t index_)
191
5.14M
                : container(container_), index(index_) {
192
5.14M
            sub_container_index = index / SUB_CONTAINER_CAPACITY;
193
5.14M
            index_in_sub_container = index - sub_container_index * SUB_CONTAINER_CAPACITY;
194
5.14M
        }
195
196
71.1k
        bool operator==(const IteratorBase& rhs) const { return index == rhs.index; }
197
5.00M
        bool operator!=(const IteratorBase& rhs) const { return index != rhs.index; }
198
199
4.95M
        Derived& operator++() {
200
4.95M
            index++;
201
4.95M
            index_in_sub_container++;
202
4.95M
            if (index_in_sub_container == SUB_CONTAINER_CAPACITY) {
203
356
                index_in_sub_container = 0;
204
356
                sub_container_index++;
205
356
            }
206
4.95M
            return static_cast<Derived&>(*this);
207
4.95M
        }
208
209
        template <typename KeyType>
210
4.94M
        KeyType get_key() {
211
4.94M
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
4.94M
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
4.94M
                    [index_in_sub_container];
214
4.94M
        }
_ZN5doris22AggregateDataContainer12IteratorBaseINS0_8IteratorELb0EE7get_keyINS_9StringRefEEET_v
Line
Count
Source
210
344k
        KeyType get_key() {
211
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
344k
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
344k
                    [index_in_sub_container];
214
344k
        }
_ZN5doris22AggregateDataContainer12IteratorBaseINS0_8IteratorELb0EE7get_keyIhEET_v
Line
Count
Source
210
3.20k
        KeyType get_key() {
211
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
3.20k
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
3.20k
                    [index_in_sub_container];
214
3.20k
        }
_ZN5doris22AggregateDataContainer12IteratorBaseINS0_8IteratorELb0EE7get_keyItEET_v
Line
Count
Source
210
2.41k
        KeyType get_key() {
211
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
2.41k
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
2.41k
                    [index_in_sub_container];
214
2.41k
        }
_ZN5doris22AggregateDataContainer12IteratorBaseINS0_8IteratorELb0EE7get_keyIjEET_v
Line
Count
Source
210
2.42M
        KeyType get_key() {
211
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
2.42M
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
2.42M
                    [index_in_sub_container];
214
2.42M
        }
_ZN5doris22AggregateDataContainer12IteratorBaseINS0_8IteratorELb0EE7get_keyImEET_v
Line
Count
Source
210
2.14M
        KeyType get_key() {
211
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
2.14M
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
2.14M
                    [index_in_sub_container];
214
2.14M
        }
_ZN5doris22AggregateDataContainer12IteratorBaseINS0_8IteratorELb0EE7get_keyIN4wide7integerILm128EjEEEET_v
Line
Count
Source
210
8.96k
        KeyType get_key() {
211
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
8.96k
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
8.96k
                    [index_in_sub_container];
214
8.96k
        }
_ZN5doris22AggregateDataContainer12IteratorBaseINS0_8IteratorELb0EE7get_keyIN4wide7integerILm256EjEEEET_v
Line
Count
Source
210
6.35k
        KeyType get_key() {
211
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
6.35k
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
6.35k
                    [index_in_sub_container];
214
6.35k
        }
_ZN5doris22AggregateDataContainer12IteratorBaseINS0_8IteratorELb0EE7get_keyINS_6UInt72EEET_v
Line
Count
Source
210
1.02k
        KeyType get_key() {
211
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
1.02k
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
1.02k
                    [index_in_sub_container];
214
1.02k
        }
_ZN5doris22AggregateDataContainer12IteratorBaseINS0_8IteratorELb0EE7get_keyINS_6UInt96EEET_v
Line
Count
Source
210
8.93k
        KeyType get_key() {
211
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
8.93k
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
8.93k
                    [index_in_sub_container];
214
8.93k
        }
_ZN5doris22AggregateDataContainer12IteratorBaseINS0_8IteratorELb0EE7get_keyINS_7UInt104EEET_v
Line
Count
Source
210
4.81k
        KeyType get_key() {
211
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
4.81k
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
4.81k
                    [index_in_sub_container];
214
4.81k
        }
_ZN5doris22AggregateDataContainer12IteratorBaseINS0_8IteratorELb0EE7get_keyINS_7UInt136EEET_v
Line
Count
Source
210
1.94k
        KeyType get_key() {
211
            DCHECK_EQ(sizeof(KeyType), container->_size_of_key);
212
1.94k
            return ((KeyType*)(container->_key_containers[sub_container_index]))
213
1.94k
                    [index_in_sub_container];
214
1.94k
        }
215
216
4.77M
        AggregateDataPtr get_aggregate_data() {
217
4.77M
            return &(container->_value_containers[sub_container_index]
218
4.77M
                                                 [container->_size_of_aggregate_states *
219
4.77M
                                                  index_in_sub_container]);
220
4.77M
        }
221
    };
222
223
    class Iterator : public IteratorBase<Iterator, false> {
224
    public:
225
        using IteratorBase<Iterator, false>::IteratorBase;
226
    };
227
228
    class ConstIterator : public IteratorBase<ConstIterator, true> {
229
    public:
230
        using IteratorBase<ConstIterator, true>::IteratorBase;
231
    };
232
233
    ConstIterator begin() const { return {this, 0}; }
234
235
    ConstIterator cbegin() const { return begin(); }
236
237
70.4k
    Iterator begin() { return {this, 0}; }
238
239
    ConstIterator end() const { return {this, _total_count}; }
240
    ConstIterator cend() const { return end(); }
241
5.08M
    Iterator end() { return {this, _total_count}; }
242
243
14
    [[nodiscard]] uint32_t total_count() const { return _total_count; }
244
245
35
    size_t estimate_memory(size_t rows) const {
246
35
        bool need_to_expand = false;
247
35
        if (_total_count == 0) {
248
1
            need_to_expand = true;
249
34
        } else if ((_index_in_sub_container + rows) > SUB_CONTAINER_CAPACITY) {
250
18
            need_to_expand = true;
251
18
            rows -= (SUB_CONTAINER_CAPACITY - _index_in_sub_container);
252
18
        }
253
254
35
        if (!need_to_expand) {
255
16
            return 0;
256
16
        }
257
258
19
        size_t count = (rows + SUB_CONTAINER_CAPACITY - 1) / SUB_CONTAINER_CAPACITY;
259
19
        size_t size = _size_of_key * SUB_CONTAINER_CAPACITY;
260
19
        size += _size_of_aggregate_states * SUB_CONTAINER_CAPACITY;
261
19
        size *= count;
262
19
        return size;
263
35
    }
264
265
73.6k
    void init_once() {
266
73.6k
        if (_inited) {
267
3.65k
            return;
268
3.65k
        }
269
69.9k
        _inited = true;
270
69.9k
        iterator = begin();
271
69.9k
    }
272
    Iterator iterator;
273
274
private:
275
26.2k
    void _expand() {
276
26.2k
        _index_in_sub_container = 0;
277
26.2k
        _current_keys = nullptr;
278
26.2k
        _current_agg_data = nullptr;
279
26.2k
        try {
280
26.2k
            _current_keys = _arena_pool.alloc(_size_of_key * SUB_CONTAINER_CAPACITY);
281
26.2k
            _key_containers.emplace_back(_current_keys);
282
283
26.2k
            _current_agg_data = (AggregateDataPtr)_arena_pool.alloc(_size_of_aggregate_states *
284
26.2k
                                                                    SUB_CONTAINER_CAPACITY);
285
26.2k
            _value_containers.emplace_back(_current_agg_data);
286
26.2k
        } catch (...) {
287
0
            if (_current_keys) {
288
0
                _key_containers.pop_back();
289
0
                _current_keys = nullptr;
290
0
            }
291
0
            if (_current_agg_data) {
292
0
                _value_containers.pop_back();
293
0
                _current_agg_data = nullptr;
294
0
            }
295
0
            throw;
296
0
        }
297
26.2k
    }
298
299
    static constexpr uint32_t SUB_CONTAINER_CAPACITY = 8192;
300
    Arena _arena_pool;
301
    std::vector<char*> _key_containers;
302
    std::vector<AggregateDataPtr> _value_containers;
303
    AggregateDataPtr _current_agg_data = nullptr;
304
    char* _current_keys = nullptr;
305
    size_t _size_of_key {};
306
    size_t _size_of_aggregate_states {};
307
    uint32_t _index_in_sub_container {};
308
    uint32_t _total_count {};
309
    bool _inited = false;
310
};
311
} // namespace doris