-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy patharray.cpp
More file actions
157 lines (125 loc) · 3.57 KB
/
array.cpp
File metadata and controls
157 lines (125 loc) · 3.57 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#include "array.h"
#include "numeric.h"
#include <stdexcept>
namespace clickhouse {
ColumnArray::ColumnArray(ColumnRef data)
: ColumnArray(data, std::make_shared<ColumnUInt64>())
{
}
ColumnArray::ColumnArray(ColumnRef data, std::shared_ptr<ColumnUInt64> offsets)
: Column(Type::CreateArray(data->Type()))
, data_(data)
, offsets_(offsets)
{
}
ColumnArray::ColumnArray(ColumnArray&& other)
: Column(other.Type())
, data_(std::move(other.data_))
, offsets_(std::move(other.offsets_))
{
}
void ColumnArray::AppendAsColumn(ColumnRef array) {
// appending data may throw (i.e. due to ype check failure), so do it first to avoid partly modified state.
data_->Append(array);
AddOffset(array->Size());
}
ColumnRef ColumnArray::GetAsColumn(size_t n) const {
if (n >= Size())
throw ValidationError("Index is out ouf bounds: " + std::to_string(n));
return data_->Slice(GetOffset(n), GetSize(n));
}
ColumnRef ColumnArray::Slice(size_t begin, size_t size) const {
if (size && begin + size > Size())
throw ValidationError("Slice indexes are out of bounds");
auto result = std::make_shared<ColumnArray>(data_->Slice(GetOffset(begin), GetOffset(begin + size) - GetOffset(begin)));
for (size_t i = 0; i < size; i++)
result->AddOffset(GetSize(begin + i));
return result;
}
ColumnRef ColumnArray::CloneEmpty() const {
return std::make_shared<ColumnArray>(data_->CloneEmpty());
}
void ColumnArray::Append(ColumnRef column) {
if (auto col = column->As<ColumnArray>()) {
for (size_t i = 0; i < col->Size(); ++i) {
AppendAsColumn(col->GetAsColumn(i));
}
}
}
void ColumnArray::Reserve(size_t new_cap) {
data_->Reserve(new_cap);
offsets_->Reserve(new_cap);
}
size_t ColumnArray::Capacity() const {
return data_->Capacity();
}
bool ColumnArray::LoadPrefix(InputStream* input, size_t rows) {
if (!rows) {
return true;
}
return data_->LoadPrefix(input, rows);
}
bool ColumnArray::LoadBody(InputStream* input, size_t rows) {
if (!rows) {
return true;
}
if (!offsets_->LoadBody(input, rows)) {
return false;
}
const auto nested_rows = (*offsets_)[rows - 1];
if (nested_rows == 0) {
return true;
}
if (!data_->LoadBody(input, nested_rows)) {
return false;
}
return true;
}
void ColumnArray::SavePrefix(OutputStream* output) {
data_->SavePrefix(output);
}
void ColumnArray::SaveBody(OutputStream* output) {
offsets_->SaveBody(output);
if (data_->Size() > 0) {
data_->SaveBody(output);
}
}
void ColumnArray::Clear() {
offsets_->Clear();
data_->Clear();
}
size_t ColumnArray::Size() const {
return offsets_->Size();
}
size_t ColumnArray::MemoryUsage() const {
return offsets_->MemoryUsage() + data_->MemoryUsage();
}
void ColumnArray::Swap(Column& other) {
auto & col = dynamic_cast<ColumnArray &>(other);
data_.swap(col.data_);
offsets_.swap(col.offsets_);
}
void ColumnArray::OffsetsIncrease(size_t n) {
offsets_->Append(n);
}
size_t ColumnArray::GetOffset(size_t n) const {
return (n == 0) ? 0 : (*offsets_)[n - 1];
}
void ColumnArray::AddOffset(size_t n) {
if (offsets_->Size() == 0) {
offsets_->Append(n);
} else {
offsets_->Append((*offsets_)[offsets_->Size() - 1] + n);
}
}
size_t ColumnArray::GetSize(size_t n) const {
return (n == 0) ? (*offsets_)[n] : ((*offsets_)[n] - (*offsets_)[n - 1]);
}
ColumnRef ColumnArray::GetData() {
return data_;
}
void ColumnArray::Reset() {
data_.reset();
offsets_.reset();
}
}