-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserde_helpers.rs
More file actions
250 lines (221 loc) · 6.48 KB
/
serde_helpers.rs
File metadata and controls
250 lines (221 loc) · 6.48 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
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
//! Custom serde serialization helpers for formatting numeric values with appropriate precision
use serde::Serializer;
/// Round f64 to 2 decimal places (for percentages and simple ratios)
/// Returns null for NaN or infinite values
pub fn round_2<S>(value: &f64, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
if !value.is_finite() {
return serializer.serialize_none();
}
serializer.serialize_f64((value * 100.0).round() / 100.0)
}
/// Round f64 to 4 decimal places (for statistical metrics like mean, std_dev)
/// Returns null for NaN or infinite values
pub fn round_4<S>(value: &f64, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
if !value.is_finite() {
return serializer.serialize_none();
}
serializer.serialize_f64((value * 10000.0).round() / 10000.0)
}
/// Round `Option<f64>` to 2 decimal places
/// Returns null for None or non-finite values
pub fn round_2_opt<S>(value: &Option<f64>, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
match value {
Some(v) if v.is_finite() => {
let rounded = (v * 100.0).round() / 100.0;
serializer.serialize_some(&rounded)
}
_ => serializer.serialize_none(),
}
}
/// Round `Option<f64>` to 4 decimal places
/// Returns null for None or non-finite values
pub fn round_4_opt<S>(value: &Option<f64>, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
match value {
Some(v) if v.is_finite() => {
let rounded = (v * 10000.0).round() / 10000.0;
serializer.serialize_some(&rounded)
}
_ => serializer.serialize_none(),
}
}
/// Round Quartiles fields to 2 decimal places
pub mod quartiles {
use super::*;
use crate::types::Quartiles;
pub fn serialize<S>(value: &Option<Quartiles>, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
match value {
Some(q) => {
use serde::Serialize;
#[derive(Serialize)]
struct RoundedQuartiles {
#[serde(serialize_with = "round_2")]
q1: f64,
#[serde(serialize_with = "round_2")]
q2: f64,
#[serde(serialize_with = "round_2")]
q3: f64,
#[serde(serialize_with = "round_2")]
iqr: f64,
}
let rounded = RoundedQuartiles {
q1: q.q1,
q2: q.q2,
q3: q.q3,
iqr: q.iqr,
};
serializer.serialize_some(&rounded)
}
None => serializer.serialize_none(),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use serde::Serialize;
use serde_json;
#[test]
fn test_round_2() {
#[derive(Serialize)]
struct Test {
#[serde(serialize_with = "round_2")]
value: f64,
}
let test = Test {
value: 6.666666666666667,
};
let json = serde_json::to_string(&test).unwrap();
assert_eq!(json, r#"{"value":6.67}"#);
}
#[test]
fn test_round_4() {
#[derive(Serialize)]
struct Test {
#[serde(serialize_with = "round_4")]
value: f64,
}
let test = Test {
value: 5.466666666666667,
};
let json = serde_json::to_string(&test).unwrap();
assert_eq!(json, r#"{"value":5.4667}"#);
}
#[test]
fn test_round_4_opt_some() {
#[derive(Serialize)]
struct Test {
#[serde(serialize_with = "round_4_opt")]
value: Option<f64>,
}
let test = Test {
value: Some(14.290634073484004),
};
let json = serde_json::to_string(&test).unwrap();
assert_eq!(json, r#"{"value":14.2906}"#);
}
#[test]
fn test_round_4_opt_none() {
#[derive(Serialize)]
struct Test {
#[serde(serialize_with = "round_4_opt")]
value: Option<f64>,
}
let test = Test { value: None };
let json = serde_json::to_string(&test).unwrap();
assert_eq!(json, r#"{"value":null}"#);
}
#[test]
fn test_enum_variant_rounding() {
#[derive(Serialize)]
enum TestEnum {
Numeric {
#[serde(serialize_with = "round_2")]
value: f64,
},
}
let test = TestEnum::Numeric {
value: 6.666666666666667,
};
let json = serde_json::to_string(&test).unwrap();
println!("Enum JSON: {}", json);
assert!(json.contains("6.67"));
}
#[test]
fn test_round_2_nan() {
#[derive(Serialize)]
struct Test {
#[serde(serialize_with = "round_2")]
value: f64,
}
let test = Test { value: f64::NAN };
let json = serde_json::to_string(&test).unwrap();
assert_eq!(json, r#"{"value":null}"#);
}
#[test]
fn test_round_2_infinity() {
#[derive(Serialize)]
struct Test {
#[serde(serialize_with = "round_2")]
value: f64,
}
let test = Test {
value: f64::INFINITY,
};
let json = serde_json::to_string(&test).unwrap();
assert_eq!(json, r#"{"value":null}"#);
}
#[test]
fn test_round_4_neg_infinity() {
#[derive(Serialize)]
struct Test {
#[serde(serialize_with = "round_4")]
value: f64,
}
let test = Test {
value: f64::NEG_INFINITY,
};
let json = serde_json::to_string(&test).unwrap();
assert_eq!(json, r#"{"value":null}"#);
}
#[test]
fn test_round_2_opt_nan() {
#[derive(Serialize)]
struct Test {
#[serde(serialize_with = "round_2_opt")]
value: Option<f64>,
}
let test = Test {
value: Some(f64::NAN),
};
let json = serde_json::to_string(&test).unwrap();
assert_eq!(json, r#"{"value":null}"#);
}
#[test]
fn test_round_4_opt_infinity() {
#[derive(Serialize)]
struct Test {
#[serde(serialize_with = "round_4_opt")]
value: Option<f64>,
}
let test = Test {
value: Some(f64::INFINITY),
};
let json = serde_json::to_string(&test).unwrap();
assert_eq!(json, r#"{"value":null}"#);
}
}