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
#[derive(Debug, PartialEq, Clone)]
pub struct TraversalExplanation {
    final_t: Vec<String>,
    original: Vec<String>,
    intermediate: Vec<IntermediateRepr>,
}

impl TraversalExplanation {
    pub fn final_t(&self) -> &Vec<String> {
        &self.final_t
    }
    pub fn original(&self) -> &Vec<String> {
        &self.original
    }

    pub fn intermediate(&self) -> &Vec<IntermediateRepr> {
        &self.intermediate
    }
}
#[derive(Debug, PartialEq, Clone)]
pub struct IntermediateRepr {
    traversal: Vec<String>,
    strategy: String,
    category: String,
}

impl IntermediateRepr {
    pub fn new(traversal: Vec<String>, strategy: String, category: String) -> IntermediateRepr {
        IntermediateRepr {
            traversal,
            strategy,
            category,
        }
    }
}
impl TraversalExplanation {
    pub fn new(
        original: Vec<String>,
        final_t: Vec<String>,
        intermediate: Vec<IntermediateRepr>,
    ) -> TraversalExplanation {
        TraversalExplanation {
            final_t,
            original,
            intermediate,
        }
    }
}

#[derive(Debug, PartialEq, Clone)]
pub struct TraversalMetrics {
    duration: f64,
    metrics: Vec<Metric>,
}

impl TraversalMetrics {
    pub fn duration(&self) -> &f64 {
        &self.duration
    }

    pub fn metrics(&self) -> &Vec<Metric> {
        &self.metrics
    }
}

impl TraversalMetrics {
    pub fn new(duration: f64, metrics: Vec<Metric>) -> Self {
        TraversalMetrics { duration, metrics }
    }
}

#[derive(Debug, PartialEq, Clone)]
pub struct Metric {
    id: String,
    duration: f64,
    name: String,
    count: i64,
    traversers: i64,
    perc_duration: f64,
    nested: Vec<Metric>,
}

impl Metric {
    pub fn id(&self) -> &String {
        &self.id
    }
    pub fn name(&self) -> &String {
        &self.name
    }
    pub fn duration(&self) -> &f64 {
        &self.duration
    }

    pub fn perc_duration(&self) -> &f64 {
        &self.perc_duration
    }
    pub fn count(&self) -> &i64 {
        &self.count
    }
    pub fn traversers(&self) -> &i64 {
        &self.traversers
    }
}

impl Metric {
    pub fn new<T, V>(
        id: T,
        name: V,
        duration: f64,
        count: i64,
        traversers: i64,
        perc_duration: f64,
        nested: Vec<Metric>,
    ) -> Self
    where
        T: Into<String>,
        V: Into<String>,
    {
        Metric {
            id: id.into(),
            name: name.into(),
            duration,
            count,
            traversers,
            perc_duration,
            nested,
        }
    }
}