Coverage Report

Created: 2026-09-14 06:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/proc/self/cwd/internal/number.h
Line
Count
Source
1
// Copyright 2022 Google LLC
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
//     https://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
#ifndef THIRD_PARTY_CEL_CPP_INTERNAL_NUMBER_H_
16
#define THIRD_PARTY_CEL_CPP_INTERNAL_NUMBER_H_
17
18
#include <cstdint>
19
#include <limits>
20
21
#include "absl/types/variant.h"
22
23
namespace cel::internal {
24
25
constexpr int64_t kInt64Max = std::numeric_limits<int64_t>::max();
26
constexpr int64_t kInt64Min = std::numeric_limits<int64_t>::lowest();
27
constexpr uint64_t kUint64Max = std::numeric_limits<uint64_t>::max();
28
constexpr uint64_t kUintToIntMax = static_cast<uint64_t>(kInt64Max);
29
constexpr double kDoubleToIntMax = static_cast<double>(kInt64Max);
30
constexpr double kDoubleToIntMin = static_cast<double>(kInt64Min);
31
constexpr double kDoubleToUintMax = static_cast<double>(kUint64Max);
32
33
// The highest integer values that are round-trippable after rounding and
34
// casting to double.
35
template <typename T>
36
0
constexpr int RoundingError() {
37
0
  return 1 << (std::numeric_limits<T>::digits -
38
0
               std::numeric_limits<double>::digits - 1);
39
0
}
Unexecuted instantiation: int cel::internal::RoundingError<long>()
Unexecuted instantiation: int cel::internal::RoundingError<unsigned long>()
40
41
constexpr double kMaxDoubleRepresentableAsInt =
42
    static_cast<double>(kInt64Max - RoundingError<int64_t>());
43
constexpr double kMaxDoubleRepresentableAsUint =
44
    static_cast<double>(kUint64Max - RoundingError<uint64_t>());
45
46
#define CEL_ABSL_VISIT_CONSTEXPR
47
48
using NumberVariant = absl::variant<double, uint64_t, int64_t>;
49
50
enum class ComparisonResult {
51
  kLesser,
52
  kEqual,
53
  kGreater,
54
  // Special case for nan.
55
  kNanInequal
56
};
57
58
// Return the inverse relation (i.e. Invert(cmp(b, a)) is the same as cmp(a, b).
59
269k
constexpr ComparisonResult Invert(ComparisonResult result) {
60
269k
  switch (result) {
61
10.7k
    case ComparisonResult::kLesser:
62
10.7k
      return ComparisonResult::kGreater;
63
254k
    case ComparisonResult::kGreater:
64
254k
      return ComparisonResult::kLesser;
65
1.56k
    case ComparisonResult::kEqual:
66
1.56k
      return ComparisonResult::kEqual;
67
3.30k
    case ComparisonResult::kNanInequal:
68
3.30k
      return ComparisonResult::kNanInequal;
69
269k
  }
70
269k
}
71
72
template <typename OutType>
73
struct ConversionVisitor {
74
  template <typename InType>
75
801k
  constexpr OutType operator()(InType v) {
76
801k
    return static_cast<OutType>(v);
77
801k
  }
long cel::internal::ConversionVisitor<long>::operator()<double>(double)
Line
Count
Source
75
69.1k
  constexpr OutType operator()(InType v) {
76
69.1k
    return static_cast<OutType>(v);
77
69.1k
  }
long cel::internal::ConversionVisitor<long>::operator()<unsigned long>(unsigned long)
Line
Count
Source
75
4.34k
  constexpr OutType operator()(InType v) {
76
4.34k
    return static_cast<OutType>(v);
77
4.34k
  }
long cel::internal::ConversionVisitor<long>::operator()<long>(long)
Line
Count
Source
75
383k
  constexpr OutType operator()(InType v) {
76
383k
    return static_cast<OutType>(v);
77
383k
  }
unsigned long cel::internal::ConversionVisitor<unsigned long>::operator()<double>(double)
Line
Count
Source
75
3.71k
  constexpr OutType operator()(InType v) {
76
3.71k
    return static_cast<OutType>(v);
77
3.71k
  }
unsigned long cel::internal::ConversionVisitor<unsigned long>::operator()<unsigned long>(unsigned long)
Line
Count
Source
75
301
  constexpr OutType operator()(InType v) {
76
301
    return static_cast<OutType>(v);
77
301
  }
unsigned long cel::internal::ConversionVisitor<unsigned long>::operator()<long>(long)
Line
Count
Source
75
340k
  constexpr OutType operator()(InType v) {
76
340k
    return static_cast<OutType>(v);
77
340k
  }
Unexecuted instantiation: double cel::internal::ConversionVisitor<double>::operator()<double>(double)
Unexecuted instantiation: double cel::internal::ConversionVisitor<double>::operator()<unsigned long>(unsigned long)
Unexecuted instantiation: double cel::internal::ConversionVisitor<double>::operator()<long>(long)
78
};
79
80
template <typename T>
81
282k
constexpr ComparisonResult Compare(T a, T b) {
82
282k
  return (a > b)    ? ComparisonResult::kGreater
83
282k
         : (a == b) ? ComparisonResult::kEqual
84
22.1k
                    : ComparisonResult::kLesser;
85
282k
}
cel::internal::ComparisonResult cel::internal::Compare<double>(double, double)
Line
Count
Source
81
267k
constexpr ComparisonResult Compare(T a, T b) {
82
267k
  return (a > b)    ? ComparisonResult::kGreater
83
267k
         : (a == b) ? ComparisonResult::kEqual
84
15.1k
                    : ComparisonResult::kLesser;
85
267k
}
cel::internal::ComparisonResult cel::internal::Compare<unsigned long>(unsigned long, unsigned long)
Line
Count
Source
81
14.1k
constexpr ComparisonResult Compare(T a, T b) {
82
14.1k
  return (a > b)    ? ComparisonResult::kGreater
83
14.1k
         : (a == b) ? ComparisonResult::kEqual
84
6.99k
                    : ComparisonResult::kLesser;
85
14.1k
}
Unexecuted instantiation: cel::internal::ComparisonResult cel::internal::Compare<long>(long, long)
86
87
275k
constexpr ComparisonResult DoubleCompare(double a, double b) {
88
  // constexpr friendly isnan check.
89
275k
  if (!(a == a) || !(b == b)) {
90
7.57k
    return ComparisonResult::kNanInequal;
91
7.57k
  }
92
267k
  return Compare(a, b);
93
275k
}
94
95
// Implement generic numeric comparison against double value.
96
struct DoubleCompareVisitor {
97
293k
  constexpr explicit DoubleCompareVisitor(double v) : v(v) {}
98
99
0
  constexpr ComparisonResult operator()(double other) const {
100
0
    return DoubleCompare(v, other);
101
0
  }
102
103
261k
  constexpr ComparisonResult operator()(uint64_t other) const {
104
261k
    if (v > kDoubleToUintMax) {
105
7.14k
      return ComparisonResult::kGreater;
106
254k
    } else if (v < 0) {
107
4.87k
      return ComparisonResult::kLesser;
108
249k
    } else {
109
249k
      return DoubleCompare(v, static_cast<double>(other));
110
249k
    }
111
261k
  }
112
113
31.8k
  constexpr ComparisonResult operator()(int64_t other) const {
114
31.8k
    if (v > kDoubleToIntMax) {
115
3.01k
      return ComparisonResult::kGreater;
116
28.8k
    } else if (v < kDoubleToIntMin) {
117
3.01k
      return ComparisonResult::kLesser;
118
25.8k
    } else {
119
25.8k
      return DoubleCompare(v, static_cast<double>(other));
120
25.8k
    }
121
31.8k
  }
122
  double v;
123
};
124
125
// Implement generic numeric comparison against uint value.
126
// Delegates to double comparison if either variable is double.
127
struct UintCompareVisitor {
128
269k
  constexpr explicit UintCompareVisitor(uint64_t v) : v(v) {}
129
130
242k
  constexpr ComparisonResult operator()(double other) const {
131
242k
    return Invert(DoubleCompareVisitor(other)(v));
132
242k
  }
133
134
0
  constexpr ComparisonResult operator()(uint64_t other) const {
135
0
    return Compare(v, other);
136
0
  }
137
138
27.3k
  constexpr ComparisonResult operator()(int64_t other) const {
139
27.3k
    if (v > kUintToIntMax || other < 0) {
140
13.2k
      return ComparisonResult::kGreater;
141
14.1k
    } else {
142
14.1k
      return Compare(v, static_cast<uint64_t>(other));
143
14.1k
    }
144
27.3k
  }
145
  uint64_t v;
146
};
147
148
// Implement generic numeric comparison against int value.
149
// Delegates to uint / double if either value is uint / double.
150
struct IntCompareVisitor {
151
27.0k
  constexpr explicit IntCompareVisitor(int64_t v) : v(v) {}
152
153
12.9k
  constexpr ComparisonResult operator()(double other) {
154
12.9k
    return Invert(DoubleCompareVisitor(other)(v));
155
12.9k
  }
156
157
14.1k
  constexpr ComparisonResult operator()(uint64_t other) {
158
14.1k
    return Invert(UintCompareVisitor(other)(v));
159
14.1k
  }
160
161
0
  constexpr ComparisonResult operator()(int64_t other) {
162
0
    return Compare(v, other);
163
0
  }
164
  int64_t v;
165
};
166
167
struct CompareVisitor {
168
320k
  explicit constexpr CompareVisitor(NumberVariant rhs) : rhs(rhs) {}
169
170
37.9k
  CEL_ABSL_VISIT_CONSTEXPR ComparisonResult operator()(double v) {
171
37.9k
    return absl::visit(DoubleCompareVisitor(v), rhs);
172
37.9k
  }
173
174
255k
  CEL_ABSL_VISIT_CONSTEXPR ComparisonResult operator()(uint64_t v) {
175
255k
    return absl::visit(UintCompareVisitor(v), rhs);
176
255k
  }
177
178
27.0k
  CEL_ABSL_VISIT_CONSTEXPR ComparisonResult operator()(int64_t v) {
179
27.0k
    return absl::visit(IntCompareVisitor(v), rhs);
180
27.0k
  }
181
  NumberVariant rhs;
182
};
183
184
struct LosslessConvertibleToIntVisitor {
185
94.7k
  constexpr bool operator()(double value) const {
186
94.7k
    return value >= kDoubleToIntMin && value <= kMaxDoubleRepresentableAsInt &&
187
91.9k
           value == static_cast<double>(static_cast<int64_t>(value));
188
94.7k
  }
189
5.78k
  constexpr bool operator()(uint64_t value) const {
190
5.78k
    return value <= kUintToIntMax;
191
5.78k
  }
192
383k
  constexpr bool operator()(int64_t value) const { return true; }
193
};
194
195
struct LosslessConvertibleToUintVisitor {
196
28.6k
  constexpr bool operator()(double value) const {
197
28.6k
    return value >= 0 && value <= kMaxDoubleRepresentableAsUint &&
198
25.5k
           value == static_cast<double>(static_cast<uint64_t>(value));
199
28.6k
  }
200
301
  constexpr bool operator()(uint64_t value) const { return true; }
201
345k
  constexpr bool operator()(int64_t value) const { return value >= 0; }
202
};
203
204
// Utility class for CEL number operations.
205
//
206
// In CEL expressions, comparisons between different numeric types are treated
207
// as all happening on the same continuous number line. This generally means
208
// that integers and doubles in convertible range are compared after converting
209
// to doubles (tolerating some loss of precision).
210
//
211
// This extends to key lookups -- {1: 'abc'}[1.0f] is expected to work since
212
// 1.0 == 1 in CEL.
213
class Number {
214
 public:
215
  // Factories to resolve ambiguous overload resolution against literals.
216
445k
  static constexpr Number FromInt64(int64_t value) { return Number(value); }
217
255k
  static constexpr Number FromUint64(uint64_t value) { return Number(value); }
218
342k
  static constexpr Number FromDouble(double value) { return Number(value); }
219
220
389k
  constexpr explicit Number(double double_value) : value_(double_value) {}
221
484k
  constexpr explicit Number(int64_t int_value) : value_(int_value) {}
222
295k
  constexpr explicit Number(uint64_t uint_value) : value_(uint_value) {}
223
224
  // Return a double representation of the value.
225
0
  CEL_ABSL_VISIT_CONSTEXPR double AsDouble() const {
226
0
    return absl::visit(internal::ConversionVisitor<double>(), value_);
227
0
  }
228
229
  // Return signed int64 representation for the value.
230
  // Caller must guarantee the underlying value is representatble as an
231
  // int.
232
457k
  CEL_ABSL_VISIT_CONSTEXPR int64_t AsInt() const {
233
457k
    return absl::visit(internal::ConversionVisitor<int64_t>(), value_);
234
457k
  }
235
236
  // Return unsigned int64 representation for the value.
237
  // Caller must guarantee the underlying value is representable as an
238
  // uint.
239
344k
  CEL_ABSL_VISIT_CONSTEXPR uint64_t AsUint() const {
240
344k
    return absl::visit(internal::ConversionVisitor<uint64_t>(), value_);
241
344k
  }
242
243
  // For key lookups, check if the conversion to signed int is lossless.
244
484k
  CEL_ABSL_VISIT_CONSTEXPR bool LosslessConvertibleToInt() const {
245
484k
    return absl::visit(internal::LosslessConvertibleToIntVisitor(), value_);
246
484k
  }
247
248
  // For key lookups, check if the conversion to unsigned int is lossless.
249
374k
  CEL_ABSL_VISIT_CONSTEXPR bool LosslessConvertibleToUint() const {
250
374k
    return absl::visit(internal::LosslessConvertibleToUintVisitor(), value_);
251
374k
  }
252
253
18.7k
  CEL_ABSL_VISIT_CONSTEXPR bool operator<(Number other) const {
254
18.7k
    return Compare(other) == internal::ComparisonResult::kLesser;
255
18.7k
  }
256
257
9.97k
  CEL_ABSL_VISIT_CONSTEXPR bool operator<=(Number other) const {
258
9.97k
    internal::ComparisonResult cmp = Compare(other);
259
9.97k
    return cmp != internal::ComparisonResult::kGreater &&
260
6.11k
           cmp != internal::ComparisonResult::kNanInequal;
261
9.97k
  }
262
263
18.0k
  CEL_ABSL_VISIT_CONSTEXPR bool operator>(Number other) const {
264
18.0k
    return Compare(other) == internal::ComparisonResult::kGreater;
265
18.0k
  }
266
267
17.0k
  CEL_ABSL_VISIT_CONSTEXPR bool operator>=(Number other) const {
268
17.0k
    internal::ComparisonResult cmp = Compare(other);
269
17.0k
    return cmp != internal::ComparisonResult::kLesser &&
270
5.37k
           cmp != internal::ComparisonResult::kNanInequal;
271
17.0k
  }
272
273
257k
  CEL_ABSL_VISIT_CONSTEXPR bool operator==(Number other) const {
274
257k
    return Compare(other) == internal::ComparisonResult::kEqual;
275
257k
  }
276
277
0
  CEL_ABSL_VISIT_CONSTEXPR bool operator!=(Number other) const {
278
0
    return Compare(other) != internal::ComparisonResult::kEqual;
279
0
  }
280
281
  // Visit the underlying number representation, a variant of double, uint64_t,
282
  // or int64_t.
283
  template <typename T, typename Op>
284
  T visit(Op&& op) const {
285
    return absl::visit(std::forward<Op>(op), value_);
286
  }
287
288
 private:
289
  internal::NumberVariant value_;
290
291
  CEL_ABSL_VISIT_CONSTEXPR internal::ComparisonResult Compare(
292
320k
      Number other) const {
293
320k
    return absl::visit(internal::CompareVisitor(other.value_), value_);
294
320k
  }
295
};
296
297
}  // namespace cel::internal
298
299
#endif  // THIRD_PARTY_CEL_CPP_INTERNAL_NUMBER_H_