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
pub(crate) mod symbol;
#[doc(hidden)]
pub mod build {
include!(concat!(env!("OUT_DIR"), "/built.rs"));
}
use std::{collections::HashMap, convert::TryFrom};
use crate::xds::config::core::v3::Metadata as ProtoMetadata;
pub use symbol::{Key, Reference, Symbol};
pub type DynamicMetadata = HashMap<Key, Value>;
pub const KEY: &str = "quilkin.dev";
#[derive(
Clone, Debug, PartialOrd, serde::Serialize, serde::Deserialize, Eq, Ord, schemars::JsonSchema,
)]
#[serde(untagged)]
pub enum Value {
Bool(bool),
Number(u64),
List(Vec<Value>),
String(String),
Bytes(bytes::Bytes),
}
impl Value {
pub fn as_bytes(&self) -> Option<&bytes::Bytes> {
match self {
Self::Bytes(value) => Some(value),
_ => None,
}
}
pub fn as_string(&self) -> Option<&str> {
match self {
Self::String(value) => Some(value),
_ => None,
}
}
pub fn as_mut_string(&mut self) -> Option<&mut String> {
match self {
Self::String(value) => Some(value),
_ => None,
}
}
}
impl std::fmt::Display for Value {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match &self {
Self::Bool(value) => value.fmt(f),
Self::Number(value) => value.fmt(f),
Self::String(value) => value.fmt(f),
Self::Bytes(value) => crate::utils::base64_encode(value).fmt(f),
Self::List(values) => {
write!(f, "[")?;
let mut first = true;
for value in values {
if first {
first = false;
} else {
write!(f, ",")?;
}
value.fmt(f)?;
}
write!(f, "]")
}
}
}
}
macro_rules! from_value {
(($name:ident) { $($typ:ty => $ex:expr),+ $(,)? }) => {
$(
impl From<$typ> for Value {
fn from($name: $typ) -> Self {
$ex
}
}
)+
}
}
from_value! {
(value) {
bool => Self::Bool(value),
u64 => Self::Number(value),
Vec<Self> => Self::List(value),
String => Self::String(value),
&str => Self::String(value.into()),
bytes::Bytes => Self::Bytes(value),
}
}
impl<const N: usize> From<[u8; N]> for Value {
fn from(value: [u8; N]) -> Self {
Self::Bytes(bytes::Bytes::copy_from_slice(&value))
}
}
impl<const N: usize> From<&[u8; N]> for Value {
fn from(value: &[u8; N]) -> Self {
Self::Bytes(bytes::Bytes::copy_from_slice(value))
}
}
impl PartialEq for Value {
fn eq(&self, other: &Self) -> bool {
match (self, other) {
(Self::Bool(a), Self::Bool(b)) => a == b,
(Self::Bool(_), _) => false,
(Self::Number(a), Self::Number(b)) => a == b,
(Self::Number(num), Self::Bytes(bytes)) => {
bytes.len() == 1 && *num == u64::from(bytes[0])
}
(Self::Number(_), _) => false,
(Self::List(a), Self::List(b)) => a == b,
(Self::List(_), _) => false,
(Self::String(a), Self::String(b)) => a == b,
(Self::Bytes(a), Self::Bytes(b)) => a == b,
(Self::String(a), Self::Bytes(b)) | (Self::Bytes(b), Self::String(a)) => a == b,
(Self::String(_), _) => false,
(Self::Bytes(_), _) => false,
}
}
}
impl From<Value> for prost_types::Value {
fn from(value: Value) -> Self {
use prost_types::value::Kind;
Self {
kind: Some(match value {
Value::Number(number) => Kind::NumberValue(number as f64),
Value::String(string) => Kind::StringValue(string),
Value::Bool(value) => Kind::BoolValue(value),
Value::Bytes(bytes) => Kind::ListValue(prost_types::ListValue {
values: bytes
.into_iter()
.map(|number| prost_types::Value {
kind: Some(Kind::NumberValue(number as f64)),
})
.collect(),
}),
Value::List(list) => Kind::ListValue(prost_types::ListValue {
values: list.into_iter().map(From::from).collect(),
}),
}),
}
}
}
impl TryFrom<prost_types::Value> for Value {
type Error = eyre::Report;
fn try_from(value: prost_types::Value) -> Result<Self, Self::Error> {
use prost_types::value::Kind;
let value = match value.kind {
Some(value) => value,
None => return Err(eyre::eyre!("unexpected missing value")),
};
match value {
Kind::NullValue(_) => Err(eyre::eyre!("unexpected missing value")),
Kind::NumberValue(number) => Ok(Self::Number(number as u64)),
Kind::StringValue(string) => Ok(Self::String(string)),
Kind::BoolValue(value) => Ok(Self::Bool(value)),
Kind::ListValue(list) => Ok(Self::List(
list.values
.into_iter()
.map(prost_types::Value::try_into)
.collect::<crate::Result<_>>()?,
)),
Kind::StructValue(_) => Err(eyre::eyre!("unexpected struct value")),
}
}
}
#[derive(
Default, Debug, serde::Deserialize, serde::Serialize, PartialEq, Clone, Eq, schemars::JsonSchema,
)]
#[non_exhaustive]
pub struct MetadataView<T: Default> {
#[serde(default, rename = "quilkin.dev")]
pub known: T,
#[serde(flatten)]
pub unknown: serde_json::Map<String, serde_json::Value>,
}
impl<T: Default> MetadataView<T> {
pub fn new(known: impl Into<T>) -> Self {
Self {
known: known.into(),
unknown: <_>::default(),
}
}
pub fn with_unknown(
known: impl Into<T>,
unknown: serde_json::Map<String, serde_json::Value>,
) -> Self {
Self {
known: known.into(),
unknown,
}
}
}
impl<T, E> From<T> for MetadataView<T>
where
T: TryFrom<prost_types::Struct, Error = E> + Default,
{
fn from(known: T) -> Self {
Self {
known,
unknown: <_>::default(),
}
}
}
impl<T: Into<prost_types::Struct> + Default> From<MetadataView<T>> for ProtoMetadata {
fn from(metadata: MetadataView<T>) -> Self {
let mut filter_metadata = HashMap::new();
filter_metadata.insert(String::from("quilkin.dev"), metadata.known.into());
filter_metadata.extend(
metadata
.unknown
.into_iter()
.filter_map(|(k, v)| crate::prost::struct_from_json(v).map(|v| (k, v))),
);
Self {
filter_metadata,
..<_>::default()
}
}
}
impl<T, E> TryFrom<ProtoMetadata> for MetadataView<T>
where
T: TryFrom<prost_types::Struct, Error = E> + Default,
{
type Error = E;
fn try_from(mut value: ProtoMetadata) -> Result<Self, Self::Error> {
let known = value
.filter_metadata
.remove(KEY)
.map(T::try_from)
.transpose()?
.unwrap_or_default();
let value = prost_types::value::Kind::StructValue(prost_types::Struct {
fields: value
.filter_metadata
.into_iter()
.map(|(k, v)| {
(
k,
prost_types::Value {
kind: Some(prost_types::value::Kind::StructValue(v)),
},
)
})
.collect(),
});
Ok(Self {
known,
unknown: crate::prost::mapping_from_kind(value).unwrap_or_default(),
})
}
}