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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
use std::collections::{BTreeSet, HashMap};
use std::hash::Hasher;
use fnv::FnvHasher;
use regex::Regex;
use crate::errors::{Error, Result};
use crate::metrics::SEPARATOR_BYTE;
use crate::proto::LabelPair;
fn is_valid_metric_name(name: &str) -> bool {
lazy_static! {
static ref VALIDATOR: Regex =
Regex::new("^[a-zA-Z_:][a-zA-Z0-9_:]*$").expect("Regex to be valid.");
}
VALIDATOR.is_match(name)
}
fn is_valid_label_name(name: &str) -> bool {
lazy_static! {
static ref VALIDATOR: Regex =
Regex::new("^[a-zA-Z_][a-zA-Z0-9_]*$").expect("Regex to be valid.");
}
VALIDATOR.is_match(name)
}
#[derive(Clone, Debug)]
pub struct Desc {
pub fq_name: String,
pub help: String,
pub const_label_pairs: Vec<LabelPair>,
pub variable_labels: Vec<String>,
pub id: u64,
pub dim_hash: u64,
}
impl Desc {
pub fn new(
fq_name: String,
help: String,
variable_labels: Vec<String>,
const_labels: HashMap<String, String>,
) -> Result<Desc> {
let mut desc = Desc {
fq_name: fq_name.clone(),
help,
const_label_pairs: Vec::with_capacity(const_labels.len()),
variable_labels,
id: 0,
dim_hash: 0,
};
if desc.help.is_empty() {
return Err(Error::Msg("empty help string".into()));
}
if !is_valid_metric_name(&desc.fq_name) {
return Err(Error::Msg(format!(
"'{}' is not a valid metric name",
desc.fq_name
)));
}
let mut label_values = Vec::with_capacity(const_labels.len() + 1);
label_values.push(fq_name);
let mut label_names = BTreeSet::new();
for label_name in const_labels.keys() {
if !is_valid_label_name(label_name) {
return Err(Error::Msg(format!(
"'{}' is not a valid label name",
&label_name
)));
}
if !label_names.insert(label_name.clone()) {
return Err(Error::Msg(format!(
"duplicate const label name {}",
label_name
)));
}
}
for label_name in &label_names {
label_values.push(const_labels.get(label_name).cloned().unwrap());
}
for label_name in &desc.variable_labels {
if !is_valid_label_name(label_name) {
return Err(Error::Msg(format!(
"'{}' is not a valid label name",
&label_name
)));
}
if !label_names.insert(format!("${}", label_name)) {
return Err(Error::Msg(format!(
"duplicate variable label name {}",
label_name
)));
}
}
let mut vh = FnvHasher::default();
for val in &label_values {
vh.write(val.as_bytes());
vh.write_u8(SEPARATOR_BYTE);
}
desc.id = vh.finish();
let mut lh = FnvHasher::default();
lh.write(desc.help.as_bytes());
lh.write_u8(SEPARATOR_BYTE);
for label_name in &label_names {
lh.write(label_name.as_bytes());
lh.write_u8(SEPARATOR_BYTE);
}
desc.dim_hash = lh.finish();
for (key, value) in const_labels {
let mut label_pair = LabelPair::default();
label_pair.set_name(key);
label_pair.set_value(value);
desc.const_label_pairs.push(label_pair);
}
desc.const_label_pairs.sort();
Ok(desc)
}
}
pub trait Describer {
fn describe(&self) -> Result<Desc>;
}
#[cfg(test)]
mod tests {
use std::collections::HashMap;
use crate::desc::{is_valid_label_name, is_valid_metric_name, Desc};
use crate::errors::Error;
#[test]
fn test_is_valid_metric_name() {
let tbl = [
(":", true),
("_", true),
("a", true),
(":9", true),
("_9", true),
("a9", true),
("a_b_9_d:x_", true),
("9", false),
("9:", false),
("9_", false),
("9a", false),
("a-", false),
];
for &(name, expected) in &tbl {
assert_eq!(is_valid_metric_name(name), expected);
}
}
#[test]
fn test_is_valid_label_name() {
let tbl = [
("_", true),
("a", true),
("_9", true),
("a9", true),
("a_b_9_dx_", true),
(":", false),
(":9", false),
("9", false),
("9:", false),
("9_", false),
("9a", false),
("a-", false),
("a_b_9_d:x_", false),
];
for &(name, expected) in &tbl {
assert_eq!(is_valid_label_name(name), expected);
}
}
#[test]
fn test_invalid_const_label_name() {
for &name in &["-dash", "9gag", ":colon", "colon:", "has space"] {
let res = Desc::new(
"name".into(),
"help".into(),
vec![name.into()],
HashMap::new(),
)
.err()
.expect(format!("expected error for {}", name).as_ref());
match res {
Error::Msg(msg) => assert_eq!(msg, format!("'{}' is not a valid label name", name)),
other => panic!(other),
};
}
}
#[test]
fn test_invalid_variable_label_name() {
for &name in &["-dash", "9gag", ":colon", "colon:", "has space"] {
let mut labels = HashMap::new();
labels.insert(name.into(), "value".into());
let res = Desc::new("name".into(), "help".into(), vec![], labels)
.err()
.expect(format!("expected error for {}", name).as_ref());
match res {
Error::Msg(msg) => assert_eq!(msg, format!("'{}' is not a valid label name", name)),
other => panic!(other),
};
}
}
#[test]
fn test_invalid_metric_name() {
for &name in &["-dash", "9gag", "has space"] {
let res = Desc::new(name.into(), "help".into(), vec![], HashMap::new())
.err()
.expect(format!("expected error for {}", name).as_ref());
match res {
Error::Msg(msg) => {
assert_eq!(msg, format!("'{}' is not a valid metric name", name))
}
other => panic!(other),
};
}
}
}