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
use crate::{proto, get_properties};
use crate::base::{Release, ValueProperties};
use std::collections::HashMap;
use crate::errors::*;
#[derive(Debug, Default)]
pub struct Analysis {
pub privacy_definition: proto::PrivacyDefinition,
pub components: HashMap<u32, proto::Component>,
pub component_count: u32,
pub submission_count: u32,
pub release: Release,
}
impl Analysis {
pub fn new() -> Self {
Analysis {
privacy_definition: proto::PrivacyDefinition {
group_size: 1,
neighboring: proto::privacy_definition::Neighboring::AddRemove as i32,
strict_parameter_checks: false,
protect_overflow: false,
protect_elapsed_time: false,
protect_memory_utilization: false,
protect_floating_point: true,
protect_sensitivity: true
},
components: HashMap::new(),
component_count: 0,
submission_count: 0,
release: Release::new(),
}
}
pub fn properties(&self, id: u32) -> Result<ValueProperties> {
let (properties, warnings) = get_properties(
Some(self.privacy_definition.clone()),
self.components.clone(),
self.release.clone(),
vec![id]
)?;
if !warnings.is_empty() {
bail!("{:?}", warnings)
}
properties.get(&id).cloned()
.ok_or_else(|| Error::from(format!("Failure to propagate properties to node {}", id)))
}
}
include!(concat!(env!("OUT_DIR"), "/bindings_analysis.rs"));
pub mod builders {
include!(concat!(env!("OUT_DIR"), "/bindings_builders.rs"));
}
#[cfg(test)]
mod test_bindings {
use crate::bindings::Analysis;
use crate::bindings::*;
use ndarray::arr1;
fn build_analysis() -> Result<()> {
let mut analysis = Analysis::new();
let lit_2 = analysis.literal().value(2.0.into()).build();
let lit_3 = analysis.literal().value(3.0.into()).build();
let _lit_5 = analysis.add(lit_2, lit_3).build();
let col_a = analysis.literal()
.value(arr1(&[1., 2., 3.]).into_dyn().into())
.build();
analysis.mean(col_a).build();
analysis.count(col_a).build();
Ok(())
}
#[test]
fn test_analysis() {
build_analysis().unwrap();
}
}