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
use serde::Serialize;
use serde_json::{json, Value};
use super::timestamp::Timestamp;
#[derive(Debug, Clone)]
pub enum MarkerTiming {
Instant(Timestamp),
Interval(Timestamp, Timestamp),
IntervalStart(Timestamp),
IntervalEnd(Timestamp),
}
pub trait ProfilerMarker {
const MARKER_TYPE_NAME: &'static str;
fn schema() -> MarkerSchema;
fn json_marker_data(&self) -> Value;
}
#[derive(Debug, Clone, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct MarkerSchema {
#[serde(rename = "name")]
pub type_name: &'static str,
#[serde(rename = "display")]
pub locations: Vec<MarkerLocation>,
#[serde(skip_serializing_if = "Option::is_none")]
pub chart_label: Option<&'static str>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tooltip_label: Option<&'static str>,
#[serde(skip_serializing_if = "Option::is_none")]
pub table_label: Option<&'static str>,
#[serde(rename = "data")]
pub fields: Vec<MarkerSchemaField>,
}
#[derive(Debug, Clone, Serialize)]
#[serde(rename_all = "kebab-case")]
pub enum MarkerLocation {
MarkerChart,
MarkerTable,
TimelineOverview,
TimelineMemory,
TimelineIPC,
#[serde(rename = "timeline-fileio")]
TimelineFileIO,
StackChart,
}
#[derive(Debug, Clone, Serialize)]
#[serde(untagged)]
pub enum MarkerSchemaField {
Static(MarkerStaticField),
Dynamic(MarkerDynamicField),
}
#[derive(Debug, Clone, Serialize)]
pub struct MarkerStaticField {
pub label: &'static str,
pub value: &'static str,
}
#[derive(Debug, Clone, Serialize)]
pub struct MarkerDynamicField {
pub key: &'static str,
#[serde(skip_serializing_if = "str::is_empty")]
pub label: &'static str,
pub format: MarkerFieldFormat,
#[serde(skip_serializing_if = "Option::is_none")]
pub searchable: Option<bool>,
}
#[derive(Debug, Clone, Serialize)]
#[serde(rename_all = "kebab-case")]
pub enum MarkerFieldFormat {
Url,
FilePath,
String,
Duration,
Time,
Seconds,
Milliseconds,
Microseconds,
Nanoseconds,
Bytes,
Percentage,
Integer,
Decimal,
}
#[derive(Debug, Clone)]
pub struct TracingMarker();
impl ProfilerMarker for TracingMarker {
const MARKER_TYPE_NAME: &'static str = "tracing";
fn json_marker_data(&self) -> Value {
json!({
"type": Self::MARKER_TYPE_NAME,
})
}
fn schema() -> MarkerSchema {
MarkerSchema {
type_name: Self::MARKER_TYPE_NAME,
locations: vec![
MarkerLocation::MarkerChart,
MarkerLocation::MarkerTable,
MarkerLocation::TimelineOverview,
],
chart_label: None,
tooltip_label: None,
table_label: None,
fields: vec![],
}
}
}
#[derive(Debug, Clone)]
pub struct TextMarker(pub String);
impl ProfilerMarker for TextMarker {
const MARKER_TYPE_NAME: &'static str = "Text";
fn json_marker_data(&self) -> Value {
json!({
"type": Self::MARKER_TYPE_NAME,
"name": self.0
})
}
fn schema() -> MarkerSchema {
MarkerSchema {
type_name: Self::MARKER_TYPE_NAME,
locations: vec![MarkerLocation::MarkerChart, MarkerLocation::MarkerTable],
chart_label: Some("{marker.data.name}"),
tooltip_label: None,
table_label: Some("{marker.name} - {marker.data.name}"),
fields: vec![MarkerSchemaField::Dynamic(MarkerDynamicField {
key: "name",
label: "Details",
format: MarkerFieldFormat::String,
searchable: None,
})],
}
}
}