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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
|
/**
* 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.
*/
#ifndef ORC_OPTIONS_HH
#define ORC_OPTIONS_HH
#include "orc/Int128.hh"
#include "orc/OrcFile.hh"
#include "orc/Reader.hh"
#include <limits>
namespace orc {
enum ColumnSelection {
ColumnSelection_NONE = 0,
ColumnSelection_NAMES = 1,
ColumnSelection_FIELD_IDS = 2,
ColumnSelection_TYPE_IDS = 3,
};
/**
* ReaderOptions Implementation
*/
struct ReaderOptionsPrivate {
uint64_t tailLocation;
std::ostream* errorStream;
MemoryPool* memoryPool;
std::string serializedTail;
ReaderMetrics* metrics;
ReaderOptionsPrivate() {
tailLocation = std::numeric_limits<uint64_t>::max();
errorStream = &std::cerr;
memoryPool = getDefaultPool();
metrics = nullptr;
}
};
ReaderOptions::ReaderOptions() : privateBits(std::make_unique<ReaderOptionsPrivate>()) {
// PASS
}
ReaderOptions::ReaderOptions(const ReaderOptions& rhs)
: privateBits(std::make_unique<ReaderOptionsPrivate>(*(rhs.privateBits.get()))) {
// PASS
}
ReaderOptions::ReaderOptions(ReaderOptions& rhs) {
// swap privateBits with rhs
privateBits.swap(rhs.privateBits);
}
ReaderOptions& ReaderOptions::operator=(const ReaderOptions& rhs) {
if (this != &rhs) {
privateBits.reset(new ReaderOptionsPrivate(*(rhs.privateBits.get())));
}
return *this;
}
ReaderOptions::~ReaderOptions() {
// PASS
}
ReaderOptions& ReaderOptions::setMemoryPool(MemoryPool& pool) {
privateBits->memoryPool = &pool;
return *this;
}
MemoryPool* ReaderOptions::getMemoryPool() const {
return privateBits->memoryPool;
}
ReaderOptions& ReaderOptions::setReaderMetrics(ReaderMetrics* metrics) {
privateBits->metrics = metrics;
return *this;
}
ReaderMetrics* ReaderOptions::getReaderMetrics() const {
return privateBits->metrics;
}
ReaderOptions& ReaderOptions::setTailLocation(uint64_t offset) {
privateBits->tailLocation = offset;
return *this;
}
uint64_t ReaderOptions::getTailLocation() const {
return privateBits->tailLocation;
}
ReaderOptions& ReaderOptions::setSerializedFileTail(const std::string& value) {
privateBits->serializedTail = value;
return *this;
}
std::string ReaderOptions::getSerializedFileTail() const {
return privateBits->serializedTail;
}
ReaderOptions& ReaderOptions::setErrorStream(std::ostream& stream) {
privateBits->errorStream = &stream;
return *this;
}
std::ostream* ReaderOptions::getErrorStream() const {
return privateBits->errorStream;
}
/**
* RowReaderOptions Implementation
*/
struct RowReaderOptionsPrivate {
ColumnSelection selection;
std::list<uint64_t> includedColumnIndexes;
std::list<std::string> includedColumnNames;
uint64_t dataStart;
uint64_t dataLength;
bool throwOnHive11DecimalOverflow;
int32_t forcedScaleOnHive11Decimal;
bool enableLazyDecoding;
std::shared_ptr<SearchArgument> sargs;
std::string readerTimezone;
RowReaderOptions::IdReadIntentMap idReadIntentMap;
bool useTightNumericVector;
std::shared_ptr<Type> readType;
bool throwOnSchemaEvolutionOverflow;
RowReaderOptionsPrivate() {
selection = ColumnSelection_NONE;
dataStart = 0;
dataLength = std::numeric_limits<uint64_t>::max();
throwOnHive11DecimalOverflow = true;
forcedScaleOnHive11Decimal = 6;
enableLazyDecoding = false;
readerTimezone = "GMT";
useTightNumericVector = false;
throwOnSchemaEvolutionOverflow = false;
}
};
RowReaderOptions::RowReaderOptions() : privateBits(std::make_unique<RowReaderOptionsPrivate>()) {
// PASS
}
RowReaderOptions::RowReaderOptions(const RowReaderOptions& rhs)
: privateBits(std::make_unique<RowReaderOptionsPrivate>(*(rhs.privateBits.get()))) {
// PASS
}
RowReaderOptions::RowReaderOptions(RowReaderOptions& rhs) {
// swap privateBits with rhs
privateBits.swap(rhs.privateBits);
}
RowReaderOptions& RowReaderOptions::operator=(const RowReaderOptions& rhs) {
if (this != &rhs) {
privateBits.reset(new RowReaderOptionsPrivate(*(rhs.privateBits.get())));
}
return *this;
}
RowReaderOptions::~RowReaderOptions() {
// PASS
}
RowReaderOptions& RowReaderOptions::include(const std::list<uint64_t>& include) {
privateBits->selection = ColumnSelection_FIELD_IDS;
privateBits->includedColumnIndexes.assign(include.begin(), include.end());
privateBits->includedColumnNames.clear();
privateBits->idReadIntentMap.clear();
return *this;
}
RowReaderOptions& RowReaderOptions::include(const std::list<std::string>& include) {
privateBits->selection = ColumnSelection_NAMES;
privateBits->includedColumnNames.assign(include.begin(), include.end());
privateBits->includedColumnIndexes.clear();
privateBits->idReadIntentMap.clear();
return *this;
}
RowReaderOptions& RowReaderOptions::includeTypes(const std::list<uint64_t>& types) {
privateBits->selection = ColumnSelection_TYPE_IDS;
privateBits->includedColumnIndexes.assign(types.begin(), types.end());
privateBits->includedColumnNames.clear();
privateBits->idReadIntentMap.clear();
return *this;
}
RowReaderOptions& RowReaderOptions::includeTypesWithIntents(
const IdReadIntentMap& idReadIntentMap) {
privateBits->selection = ColumnSelection_TYPE_IDS;
privateBits->includedColumnIndexes.clear();
privateBits->idReadIntentMap.clear();
for (const auto& typeIntentPair : idReadIntentMap) {
privateBits->idReadIntentMap[typeIntentPair.first] = typeIntentPair.second;
privateBits->includedColumnIndexes.push_back(typeIntentPair.first);
}
privateBits->includedColumnNames.clear();
return *this;
}
RowReaderOptions& RowReaderOptions::range(uint64_t offset, uint64_t length) {
privateBits->dataStart = offset;
privateBits->dataLength = length;
return *this;
}
bool RowReaderOptions::getIndexesSet() const {
return privateBits->selection == ColumnSelection_FIELD_IDS;
}
bool RowReaderOptions::getTypeIdsSet() const {
return privateBits->selection == ColumnSelection_TYPE_IDS;
}
const std::list<uint64_t>& RowReaderOptions::getInclude() const {
return privateBits->includedColumnIndexes;
}
bool RowReaderOptions::getNamesSet() const {
return privateBits->selection == ColumnSelection_NAMES;
}
const std::list<std::string>& RowReaderOptions::getIncludeNames() const {
return privateBits->includedColumnNames;
}
uint64_t RowReaderOptions::getOffset() const {
return privateBits->dataStart;
}
uint64_t RowReaderOptions::getLength() const {
return privateBits->dataLength;
}
RowReaderOptions& RowReaderOptions::throwOnHive11DecimalOverflow(bool shouldThrow) {
privateBits->throwOnHive11DecimalOverflow = shouldThrow;
return *this;
}
bool RowReaderOptions::getThrowOnHive11DecimalOverflow() const {
return privateBits->throwOnHive11DecimalOverflow;
}
RowReaderOptions& RowReaderOptions::throwOnSchemaEvolutionOverflow(bool shouldThrow) {
privateBits->throwOnSchemaEvolutionOverflow = shouldThrow;
return *this;
}
bool RowReaderOptions::getThrowOnSchemaEvolutionOverflow() const {
return privateBits->throwOnSchemaEvolutionOverflow;
}
RowReaderOptions& RowReaderOptions::forcedScaleOnHive11Decimal(int32_t forcedScale) {
privateBits->forcedScaleOnHive11Decimal = forcedScale;
return *this;
}
int32_t RowReaderOptions::getForcedScaleOnHive11Decimal() const {
return privateBits->forcedScaleOnHive11Decimal;
}
bool RowReaderOptions::getEnableLazyDecoding() const {
return privateBits->enableLazyDecoding;
}
RowReaderOptions& RowReaderOptions::setEnableLazyDecoding(bool enable) {
privateBits->enableLazyDecoding = enable;
return *this;
}
RowReaderOptions& RowReaderOptions::searchArgument(std::unique_ptr<SearchArgument> sargs) {
privateBits->sargs = std::move(sargs);
return *this;
}
std::shared_ptr<SearchArgument> RowReaderOptions::getSearchArgument() const {
return privateBits->sargs;
}
RowReaderOptions& RowReaderOptions::setTimezoneName(const std::string& zoneName) {
privateBits->readerTimezone = zoneName;
return *this;
}
const std::string& RowReaderOptions::getTimezoneName() const {
return privateBits->readerTimezone;
}
const RowReaderOptions::IdReadIntentMap RowReaderOptions::getIdReadIntentMap() const {
return privateBits->idReadIntentMap;
}
RowReaderOptions& RowReaderOptions::setUseTightNumericVector(bool useTightNumericVector) {
privateBits->useTightNumericVector = useTightNumericVector;
return *this;
}
bool RowReaderOptions::getUseTightNumericVector() const {
return privateBits->useTightNumericVector;
}
RowReaderOptions& RowReaderOptions::setReadType(std::shared_ptr<Type> type) {
privateBits->readType = std::move(type);
return *this;
}
std::shared_ptr<Type>& RowReaderOptions::getReadType() const {
return privateBits->readType;
}
} // namespace orc
#endif
|