-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathuint_value.h
More file actions
119 lines (92 loc) · 3.65 KB
/
Copy pathuint_value.h
File metadata and controls
119 lines (92 loc) · 3.65 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
// Copyright 2023 Google LLC
//
// Licensed 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
//
// https://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.
// IWYU pragma: private, include "common/value.h"
// IWYU pragma: friend "common/value.h"
#ifndef THIRD_PARTY_CEL_CPP_COMMON_VALUES_UINT_VALUE_H_
#define THIRD_PARTY_CEL_CPP_COMMON_VALUES_UINT_VALUE_H_
#include <cstdint>
#include <ostream>
#include <string>
#include "absl/base/nullability.h"
#include "absl/status/status.h"
#include "absl/strings/cord.h"
#include "absl/strings/string_view.h"
#include "common/type.h"
#include "common/value_kind.h"
#include "common/values/values.h"
#include "google/protobuf/arena.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/message.h"
namespace cel {
class Value;
class UintValue;
class TypeManager;
// `UintValue` represents values of the primitive `uint` type.
class UintValue final : private common_internal::ValueMixin<UintValue> {
public:
static constexpr ValueKind kKind = ValueKind::kUint;
explicit UintValue(uint64_t value) noexcept : value_(value) {}
UintValue() = default;
UintValue(const UintValue&) = default;
UintValue(UintValue&&) = default;
UintValue& operator=(const UintValue&) = default;
UintValue& operator=(UintValue&&) = default;
constexpr ValueKind kind() const { return kKind; }
absl::string_view GetTypeName() const { return UintType::kName; }
std::string DebugString() const;
// See Value::SerializeTo().
absl::Status SerializeTo(
absl::Nonnull<const google::protobuf::DescriptorPool*> descriptor_pool,
absl::Nonnull<google::protobuf::MessageFactory*> message_factory,
absl::Nonnull<absl::Cord*> value) const;
// See Value::ConvertToJson().
absl::Status ConvertToJson(
absl::Nonnull<const google::protobuf::DescriptorPool*> descriptor_pool,
absl::Nonnull<google::protobuf::MessageFactory*> message_factory,
absl::Nonnull<google::protobuf::Message*> json) const;
absl::Status Equal(
const Value& other,
absl::Nonnull<const google::protobuf::DescriptorPool*> descriptor_pool,
absl::Nonnull<google::protobuf::MessageFactory*> message_factory,
absl::Nonnull<google::protobuf::Arena*> arena, absl::Nonnull<Value*> result) const;
using ValueMixin::Equal;
bool IsZeroValue() const { return NativeValue() == 0; }
constexpr uint64_t NativeValue() const {
return static_cast<uint64_t>(*this);
}
// NOLINTNEXTLINE(google-explicit-constructor)
constexpr operator uint64_t() const noexcept { return value_; }
friend void swap(UintValue& lhs, UintValue& rhs) noexcept {
using std::swap;
swap(lhs.value_, rhs.value_);
}
private:
friend class common_internal::ValueMixin<UintValue>;
uint64_t value_ = 0;
};
template <typename H>
H AbslHashValue(H state, UintValue value) {
return H::combine(std::move(state), value.NativeValue());
}
constexpr bool operator==(UintValue lhs, UintValue rhs) {
return lhs.NativeValue() == rhs.NativeValue();
}
constexpr bool operator!=(UintValue lhs, UintValue rhs) {
return !operator==(lhs, rhs);
}
inline std::ostream& operator<<(std::ostream& out, UintValue value) {
return out << value.DebugString();
}
} // namespace cel
#endif // THIRD_PARTY_CEL_CPP_COMMON_VALUES_UINT_VALUE_H_