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
use crate::error::{ErrorKind, Result};
use crate::types::*;
use serde::Serializer;
use serde_derive::Serialize;
#[derive(Clone, Debug, Default, Serialize)]
pub struct DataPoint {
pub tpch_query: Option<u32>,
pub scale_factor: Option<u32>,
pub selection_variant: Option<ArgSelectionVariant>,
pub hostname: String,
pub execution_method: Option<ArgExecutionMethod>,
#[serde(serialize_with = "serialize_vec")]
pub device_codename: Option<Vec<String>>,
pub threads: Option<usize>,
pub relation_memory_type: Option<ArgMemType>,
pub relation_memory_location: Option<u16>,
pub page_type: Option<ArgPageType>,
pub tuples: Option<usize>,
pub bytes: Option<usize>,
pub warm_up: Option<bool>,
pub ns: Option<f64>,
}
impl DataPoint {
pub fn new() -> Result<Self> {
let hostname =
hostname::get_hostname().ok_or_else(|| ErrorKind::from("Couldn't get hostname"))?;
let dp = DataPoint {
hostname,
..DataPoint::default()
};
Ok(dp)
}
}
fn serialize_vec<S, T>(option: &Option<Vec<T>>, ser: S) -> std::result::Result<S::Ok, S::Error>
where
S: Serializer,
T: ToString,
{
if let Some(vec) = option {
let record = vec
.iter()
.enumerate()
.map(|(i, e)| {
if i == 0 {
e.to_string()
} else {
",".to_owned() + &e.to_string()
}
})
.collect::<String>();
ser.serialize_str(&record)
} else {
ser.serialize_none()
}
}