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
use std::convert::TryFrom;
use bytes::Bytes;
use crate::filters::CreationError;
#[derive(Clone, Debug, PartialEq, schemars::JsonSchema)]
pub enum ConfigType {
#[schemars(with = "serde_json::Value")]
Static(serde_json::Value),
#[schemars(skip)]
Dynamic(prost_types::Any),
}
impl ConfigType {
pub fn deserialize<TextConfiguration, BinaryConfiguration>(
self,
filter_name: &str,
) -> Result<(serde_json::Value, TextConfiguration), CreationError>
where
BinaryConfiguration: prost::Message + Default,
TextConfiguration:
serde::Serialize + for<'de> serde::Deserialize<'de> + TryFrom<BinaryConfiguration>,
CreationError: From<<BinaryConfiguration as TryInto<TextConfiguration>>::Error>,
{
match self {
ConfigType::Static(ref config) => serde_yaml::to_string(config)
.and_then(|raw_config| {
serde_yaml::from_str::<TextConfiguration>(raw_config.as_str())
})
.map_err(|err| {
CreationError::DeserializeFailed(format!(
"filter `{filter_name}`: failed to YAML deserialize config: {err}",
))
})
.and_then(|config| {
Self::get_json_config(filter_name, &config)
.map(|config_json| (config_json, config))
}),
ConfigType::Dynamic(config) => prost::Message::decode(Bytes::from(config.value))
.map_err(|err| {
CreationError::DeserializeFailed(format!(
"filter `{filter_name}`: config decode error: {err}",
))
})
.and_then(|config| TextConfiguration::try_from(config).map_err(From::from))
.and_then(|config| {
Self::get_json_config(filter_name, &config)
.map(|config_json| (config_json, config))
}),
}
}
fn get_json_config<T>(filter_name: &str, config: &T) -> Result<serde_json::Value, CreationError>
where
T: serde::Serialize + for<'de> serde::Deserialize<'de>,
{
serde_json::to_value(config).map_err(|err| {
CreationError::DeserializeFailed(format!(
"filter `{filter_name}`: failed to serialize config to json: {err}",
))
})
}
}
impl<'de> serde::Deserialize<'de> for ConfigType {
fn deserialize<D>(de: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
serde_json::Value::deserialize(de).map(ConfigType::Static)
}
}
impl serde::Serialize for ConfigType {
fn serialize<S>(&self, ser: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
match self {
Self::Static(value) => value.serialize(ser),
Self::Dynamic(_) => Err(serde::ser::Error::custom(
"Protobuf configs can't be serialized.",
)),
}
}
}
impl From<serde_json::Value> for ConfigType {
fn from(value: serde_json::Value) -> Self {
Self::Static(value)
}
}
#[cfg(test)]
mod tests {
use super::ConfigType;
use serde::{Deserialize, Serialize};
#[test]
fn get_json_config() {
#[derive(Debug, Eq, PartialEq, Clone, Serialize, Deserialize)]
struct TestConfig {
name: String,
value: usize,
}
let expected_config = TestConfig {
name: "bebop".into(),
value: 98,
};
let config_json = ConfigType::get_json_config("my-filter", &expected_config).unwrap();
assert_eq!(
serde_json::json!({
"name": "bebop",
"value": 98,
}),
config_json
)
}
}