-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathCompare.cpp
165 lines (149 loc) · 4.85 KB
/
Compare.cpp
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
////////////////////////////////////////////////////////////////////////////////
/// DISCLAIMER
///
/// Copyright 2014-2024 ArangoDB GmbH, Cologne, Germany
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
///
/// Licensed under the Business Source License 1.1 (the "License");
/// you may not use this file except in compliance with the License.
/// You may obtain a copy of the License at
///
/// https://github.com/arangodb/arangodb/blob/devel/LICENSE
///
/// 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.
///
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
///
/// @author Max Neunhoeffer
/// @author Jan Steemann
////////////////////////////////////////////////////////////////////////////////
#include "velocypack/Compare.h"
#include "velocypack/Collection.h"
#include "velocypack/Exception.h"
#include "velocypack/Iterator.h"
#include "velocypack/Options.h"
#include "velocypack/Slice.h"
#include "velocypack/ValueType.h"
#include <set>
using namespace arangodb::velocypack;
bool BinaryCompare::equals(Slice lhs, Slice rhs) {
return lhs.binaryEquals(rhs);
}
size_t BinaryCompare::Hash::operator()(
arangodb::velocypack::Slice const& slice) const {
return static_cast<size_t>(slice.hash());
}
bool BinaryCompare::Equal::operator()(
arangodb::velocypack::Slice const& lhs,
arangodb::velocypack::Slice const& rhs) const {
return lhs.binaryEquals(rhs);
}
bool NormalizedCompare::equalsNumbers(Slice lhs, Slice rhs) {
auto lhsType = lhs.type();
if (lhsType == rhs.type()) {
// both types are equal
if (lhsType == ValueType::Int || lhsType == ValueType::SmallInt) {
// use exact comparisons. no need to cast to double
return (lhs.getIntUnchecked() == rhs.getIntUnchecked());
}
if (lhsType == ValueType::UInt) {
// use exact comparisons. no need to cast to double
return (lhs.getUIntUnchecked() == rhs.getUIntUnchecked());
}
// fallthrough to double comparison
}
return (lhs.getNumericValue<double>() == rhs.getNumericValue<double>());
}
bool NormalizedCompare::equalsStrings(Slice lhs, Slice rhs) {
ValueLength nl;
char const* left = lhs.getString(nl);
VELOCYPACK_ASSERT(left != nullptr);
ValueLength nr;
char const* right = rhs.getString(nr);
VELOCYPACK_ASSERT(right != nullptr);
return (nl == nr && (std::memcmp(left, right, nl) == 0));
}
bool NormalizedCompare::equals(Slice lhs, Slice rhs) {
lhs = lhs.resolveExternals();
rhs = rhs.resolveExternals();
ValueType lhsType = valueTypeGroup(lhs.type());
ValueType rhsType = valueTypeGroup(rhs.type());
if (lhsType != rhsType) {
// unequal types => not equal
return false;
}
switch (lhsType) {
case ValueType::Illegal:
case ValueType::None:
case ValueType::Null:
// Null equals Null
case ValueType::MinKey:
case ValueType::MaxKey: {
return true;
}
case ValueType::Bool: {
return (lhs.getBoolean() == rhs.getBoolean());
}
case ValueType::Double:
case ValueType::Int:
case ValueType::UInt:
case ValueType::SmallInt: {
return equalsNumbers(lhs, rhs);
}
case ValueType::String: {
return equalsStrings(lhs, rhs);
}
case ValueType::Array: {
ArrayIterator lhsValue(lhs);
ArrayIterator rhsValue(rhs);
ValueLength const n = lhsValue.size();
if (n != rhsValue.size()) {
// unequal array lengths
return false;
}
for (ValueLength i = 0; i < n; ++i) {
// recurse
if (!equals(lhsValue.value(), rhsValue.value())) {
return false;
}
lhsValue.next();
rhsValue.next();
}
return true;
}
case ValueType::Object: {
std::set<std::string> keys;
// get all keys and bring them in order
Collection::unorderedKeys(lhs, keys);
Collection::unorderedKeys(rhs, keys);
for (auto const& key : keys) {
// recurse
if (!equals(lhs.get(key), rhs.get(key))) {
return false;
}
}
return true;
}
case ValueType::Custom: {
throw Exception(Exception::NotImplemented,
"equals comparison for Custom type is not implemented");
}
default: {
throw Exception(Exception::InternalError,
"invalid value type for equals comparison");
}
}
}
size_t NormalizedCompare::Hash::operator()(
arangodb::velocypack::Slice const& slice) const {
return static_cast<size_t>(slice.normalizedHash());
}
bool NormalizedCompare::Equal::operator()(
arangodb::velocypack::Slice const& lhs,
arangodb::velocypack::Slice const& rhs) const {
return NormalizedCompare::equals(lhs, rhs);
}