Newer
Older
/* Copyright (c) 2020 vesoft inc. All rights reserved.
*
* This source code is licensed under Apache 2.0 License,
* attached with Common Clause Condition 1.0, found in the LICENSES directory.
*/
#include "optimizer/OptimizerUtils.h"
namespace nebula {
namespace graph {
Value OptimizerUtils::boundValue(const meta::cpp2::ColumnDef& col,
BoundValueOperator op,
const Value& v) {
switch (op) {
case BoundValueOperator::GREATER_THAN : {
return boundValueWithGT(col, v);
}
case BoundValueOperator::LESS_THAN : {
return boundValueWithLT(col, v);
}
case BoundValueOperator::MAX : {
return boundValueWithMax(col, v);
}
case BoundValueOperator::MIN : {
return boundValueWithMin(col, v);
}
}
return Value::kNullBadType;
}
Value OptimizerUtils::boundValueWithGT(const meta::cpp2::ColumnDef& col, const Value& v) {
auto type = SchemaUtil::propTypeToValueType(col.get_type().get_type());
switch (type) {
case Value::Type::INT : {
if (v.getInt() == std::numeric_limits<int64_t>::max()) {
return v;
} else {
return v + 1;
}
}
case Value::Type::FLOAT : {
if (v.getFloat() > 0.0) {
if (v.getFloat() == std::numeric_limits<double_t>::max()) {
return v;
}
} else if (v.getFloat() == 0.0) {
return Value(std::numeric_limits<double_t>::min());
} else {
if (v.getFloat() == -std::numeric_limits<double_t>::min()) {
return Value(0.0);
}
}
return v.getFloat() + 0.0000000000000001;
}
case Value::Type::BOOL: {
return v;
}
case Value::Type::STRING : {
if (!col.type.__isset.type_length ||
col.get_type().get_type_length() == nullptr) {
return Value::kNullBadType;
}
std::vector<unsigned char> bytes(v.getStr().begin(), v.getStr().end());
for (size_t i = bytes.size();; i--) {
if (i > 0) {
if (bytes[i-1]++ != 255) break;
} else {
return Value(std::string(*col.get_type().get_type_length(), '\377'));
}
}
return Value(std::string(bytes.begin(), bytes.end()));
}
case Value::Type::DATE : {
if (Date(std::numeric_limits<int16_t>::max(), 12, 31) == v.getDate()) {
return v.getDate();
} else if (Date() == v.getDate()) {
return Date(0, 1, 2);
}
auto d = v.getDate();
if (d.day < 31) {
d.day += 1;
} else {
d.day = 1;
if (d.month < 12) {
d.month += 1;
} else {
d.month = 1;
if (d.year < std::numeric_limits<int16_t>::max()) {
d.year += 1;
} else {
return v.getDate();
}
}
}
return Value(d);
}
case Value::Type::TIME : {
auto t = v.getTime();
// Ignore the time zone.
if (t.microsec < std::numeric_limits<int32_t>::max()) {
t.microsec = t.microsec + 1;
} else {
t.microsec = 1;
if (t.sec < 60) {
t.sec += 1;
} else {
t.sec = 1;
if (t.minute < 60) {
t.minute += 1;
} else {
t.minute = 1;
if (t.hour < 24) {
t.hour += 1;
} else {
return v.getTime();
}
}
}
}
return Value(t);
}
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
case Value::Type::DATETIME : {
auto dt = v.getDateTime();
// Ignore the time zone.
if (dt.microsec < std::numeric_limits<int32_t>::max()) {
dt.microsec = dt.microsec + 1;
} else {
dt.microsec = 1;
if (dt.sec < 60) {
dt.sec += 1;
} else {
dt.sec = 1;
if (dt.minute < 60) {
dt.minute += 1;
} else {
dt.minute = 1;
if (dt.hour < 24) {
dt.hour += 1;
} else {
dt.hour = 1;
if (dt.day < 31) {
dt.day += 1;
} else {
dt.day = 1;
if (dt.month < 12) {
dt.month += 1;
} else {
dt.month = 1;
if (dt.year < std::numeric_limits<int16_t>::max()) {
dt.year += 1;
} else {
return v.getDateTime();
}
}
}
}
}
}
}
return Value(dt);
}
case Value::Type::__EMPTY__:
case Value::Type::NULLVALUE:
case Value::Type::VERTEX:
case Value::Type::EDGE:
case Value::Type::LIST:
case Value::Type::SET:
case Value::Type::MAP:
case Value::Type::DATASET:
case Value::Type::PATH: {
DLOG(FATAL) << "Not supported value type " << type
<< "for index.";
return Value::kNullBadType;
DLOG(FATAL) << "Unknown value type " << static_cast<int>(type);
return Value::kNullBadType;
}
Value OptimizerUtils::boundValueWithLT(const meta::cpp2::ColumnDef& col, const Value& v) {
auto type = SchemaUtil::propTypeToValueType(col.get_type().get_type());
switch (type) {
case Value::Type::INT : {
if (v.getInt() == std::numeric_limits<int64_t>::min()) {
return v;
} else {
return v - 1;
}
}
case Value::Type::FLOAT : {
if (v.getFloat() < 0.0) {
if (v.getFloat() == -std::numeric_limits<double_t>::max()) {
return v;
} else if (v.getFloat() == -std::numeric_limits<double_t>::min()) {
return Value(0.0);
}
} else if (v.getFloat() == 0.0) {
return Value(-std::numeric_limits<double_t>::min());
}
return v.getFloat() - 0.0000000000000001;
}
case Value::Type::BOOL: {
return v;
}
case Value::Type::STRING : {
if (!col.type.__isset.type_length || col.get_type().get_type_length() == nullptr) {
return Value::kNullBadType;
}
std::vector<unsigned char> bytes(v.getStr().begin(), v.getStr().end());
for (size_t i = bytes.size();; i--) {
if (i > 0) {
if (bytes[i-1]-- != 0) break;
} else {
return Value(std::string(*col.get_type().get_type_length(), '\0'));
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
}
}
return Value(std::string(bytes.begin(), bytes.end()));
}
case Value::Type::DATE : {
if (Date() == v.getDate()) {
return v.getDate();
}
auto d = v.getDate();
if (d.day > 1) {
d.day -= 1;
} else {
d.day = 31;
if (d.month > 1) {
d.month -= 1;
} else {
d.month = 12;
if (d.year > 1) {
d.year -= 1;
} else {
return v.getDate();
}
}
}
return Value(d);
}
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
case Value::Type::TIME : {
if (Time() == v.getTime()) {
return v.getTime();
}
auto t = v.getTime();
if (t.microsec > 1) {
t.microsec -= 1;
} else {
t.microsec = std::numeric_limits<int32_t>::max();
if (t.sec > 1) {
t.sec -= 1;
} else {
t.sec = 60;
if (t.minute > 1) {
t.minute -= 1;
} else {
t.minute = 60;
if (t.hour > 1) {
t.hour -= 1;
} else {
return v.getTime();
}
}
}
}
return Value(t);
}
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
case Value::Type::DATETIME : {
if (DateTime() == v.getDateTime()) {
return v.getDateTime();
}
auto dt = v.getDateTime();
if (dt.microsec > 1) {
dt.microsec -= 1;
} else {
dt.microsec = std::numeric_limits<int32_t>::max();
if (dt.sec > 1) {
dt.sec -= 1;
} else {
dt.sec = 60;
if (dt.minute > 1) {
dt.minute -= 1;
} else {
dt.minute = 60;
if (dt.hour > 1) {
dt.hour -= 1;
} else {
dt.hour = 24;
if (dt.day > 1) {
dt.day -= 1;
} else {
dt.day = 31;
if (dt.month > 1) {
dt.month -= 1;
} else {
dt.month = 12;
if (dt.year > 1) {
dt.year -= 1;
} else {
return v.getDateTime();
}
}
}
}
}
}
}
return Value(dt);
}
case Value::Type::__EMPTY__:
case Value::Type::NULLVALUE:
case Value::Type::VERTEX:
case Value::Type::EDGE:
case Value::Type::LIST:
case Value::Type::SET:
case Value::Type::MAP:
case Value::Type::DATASET:
case Value::Type::PATH: {
DLOG(FATAL) << "Not supported value type " << type
<< "for index.";
return Value::kNullBadType;
DLOG(FATAL) << "Unknown value type " << static_cast<int>(type);
return Value::kNullBadType;
}
Value OptimizerUtils::boundValueWithMax(const meta::cpp2::ColumnDef& col, const Value& v) {
auto type = SchemaUtil::propTypeToValueType(col.get_type().get_type());
switch (type) {
case Value::Type::INT : {
return Value(std::numeric_limits<int64_t>::max());
}
case Value::Type::FLOAT : {
return Value(std::numeric_limits<double>::max());
}
case Value::Type::BOOL: {
return v;
}
case Value::Type::STRING : {
if (!col.type.__isset.type_length ||
col.get_type().get_type_length() == nullptr) {
return Value::kNullBadType;
return Value(std::string(*col.get_type().get_type_length(), '\377'));
}
case Value::Type::DATE : {
Date d;
d.year = std::numeric_limits<int16_t>::max();
d.month = 12;
d.day = 31;
return Value(d);
}
case Value::Type::TIME: {
Time dt;
dt.hour = 24;
dt.minute = 60;
dt.sec = 60;
dt.microsec = std::numeric_limits<int32_t>::max();
return Value(dt);
}
case Value::Type::DATETIME: {
DateTime dt;
dt.year = std::numeric_limits<int16_t>::max();
dt.month = 12;
dt.day = 31;
dt.hour = 24;
dt.minute = 60;
dt.sec = 60;
dt.microsec = std::numeric_limits<int32_t>::max();
return Value(dt);
}
case Value::Type::__EMPTY__:
case Value::Type::NULLVALUE:
case Value::Type::VERTEX:
case Value::Type::EDGE:
case Value::Type::LIST:
case Value::Type::SET:
case Value::Type::MAP:
case Value::Type::DATASET:
case Value::Type::PATH: {
DLOG(FATAL) << "Not supported value type " << type
<< "for index.";
return Value::kNullBadType;
DLOG(FATAL) << "Unknown value type " << static_cast<int>(type);
return Value::kNullBadType;
}
Value OptimizerUtils::boundValueWithMin(const meta::cpp2::ColumnDef& col, const Value& v) {
auto type = SchemaUtil::propTypeToValueType(col.get_type().get_type());
switch (type) {
case Value::Type::INT : {
return Value(std::numeric_limits<int64_t>::min());
}
case Value::Type::FLOAT : {
return Value(-std::numeric_limits<double>::max());
}
case Value::Type::BOOL: {
return v;
}
case Value::Type::STRING : {
if (!col.type.__isset.type_length ||
col.get_type().get_type_length() == nullptr) {
return Value::kNullBadType;
return Value(std::string(*col.get_type().get_type_length(), '\0'));
}
case Value::Type::DATE : {
return Value(Date());
}
case Value::Type::TIME: {
return Value(Time());
}
case Value::Type::DATETIME : {
return Value(DateTime());
}
case Value::Type::__EMPTY__:
case Value::Type::NULLVALUE:
case Value::Type::VERTEX:
case Value::Type::EDGE:
case Value::Type::LIST:
case Value::Type::SET:
case Value::Type::MAP:
case Value::Type::DATASET:
case Value::Type::PATH: {
DLOG(FATAL) << "Not supported value type " << type
<< "for index.";
return Value::kNullBadType;
DLOG(FATAL) << "Unknown value type " << static_cast<int>(type);
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
return Value::kNullBadType;
}
Value OptimizerUtils::normalizeValue(const meta::cpp2::ColumnDef& col, const Value& v) {
auto type = SchemaUtil::propTypeToValueType(col.get_type().get_type());
switch (type) {
case Value::Type::INT:
case Value::Type::FLOAT:
case Value::Type::BOOL:
case Value::Type::DATE:
case Value::Type::TIME:
case Value::Type::DATETIME: {
return v;
}
case Value::Type::STRING : {
if (!col.type.__isset.type_length ||
col.get_type().get_type_length() == nullptr) {
return Value::kNullBadType;
}
auto len = static_cast<size_t>(*col.get_type().get_type_length());
if (v.getStr().size() > len) {
return Value(v.getStr().substr(0, len));
} else {
std::string s;
s.reserve(len);
s.append(v.getStr()).append(len - v.getStr().size(), '\0');
return Value(std::move(s));
}
}
case Value::Type::__EMPTY__:
case Value::Type::NULLVALUE:
case Value::Type::VERTEX:
case Value::Type::EDGE:
case Value::Type::LIST:
case Value::Type::SET:
case Value::Type::MAP:
case Value::Type::DATASET:
case Value::Type::PATH: {
DLOG(FATAL) << "Not supported value type " << type
<< "for index.";
return Value::kNullBadType;
}
}
DLOG(FATAL) << "Unknown value type " << static_cast<int>(type);
return Value::kNullBadType;;
}
} // namespace graph
} // namespace nebula