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
use crate::errors::PartitionerBuilderParseError;
use std::{
fmt,
hash::{Hash, Hasher},
str::FromStr,
};
use twox_hash::XxHash64;
#[derive(Clone, Debug, Eq, PartialEq)]
#[non_exhaustive]
pub enum PartitionerBuilder {
Count {
shard: u64,
total_shards: u64,
},
Hash {
shard: u64,
total_shards: u64,
},
}
pub trait Partitioner: fmt::Debug {
fn test_matches(&mut self, test_name: &str) -> bool;
}
impl PartitionerBuilder {
pub fn build(&self) -> Box<dyn Partitioner> {
match self {
PartitionerBuilder::Count {
shard,
total_shards,
} => Box::new(CountPartitioner::new(*shard, *total_shards)),
PartitionerBuilder::Hash {
shard,
total_shards,
} => Box::new(HashPartitioner::new(*shard, *total_shards)),
}
}
}
impl FromStr for PartitionerBuilder {
type Err = PartitionerBuilderParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
if let Some(input) = s.strip_prefix("hash:") {
let (shard, total_shards) = parse_shards(input, "hash:M/N")?;
Ok(PartitionerBuilder::Hash {
shard,
total_shards,
})
} else if let Some(input) = s.strip_prefix("count:") {
let (shard, total_shards) = parse_shards(input, "count:M/N")?;
Ok(PartitionerBuilder::Count {
shard,
total_shards,
})
} else {
Err(PartitionerBuilderParseError::new(
None,
format!(
"partition input '{}' must begin with \"hash:\" or \"count:\"",
s
),
))
}
}
}
fn parse_shards(
input: &str,
expected_format: &'static str,
) -> Result<(u64, u64), PartitionerBuilderParseError> {
let mut split = input.splitn(2, '/');
let shard_str = split.next().expect("split should have at least 1 element");
let total_shards_str = split.next().ok_or_else(|| {
PartitionerBuilderParseError::new(
Some(expected_format),
format!("expected input '{}' to be in the format M/N", input),
)
})?;
let shard: u64 = shard_str.parse().map_err(|err| {
PartitionerBuilderParseError::new(
Some(expected_format),
format!("failed to parse shard '{}' as u64: {}", shard_str, err),
)
})?;
let total_shards: u64 = total_shards_str.parse().map_err(|err| {
PartitionerBuilderParseError::new(
Some(expected_format),
format!(
"failed to parse total_shards '{}' as u64: {}",
total_shards_str, err
),
)
})?;
if !(1..=total_shards).contains(&shard) {
return Err(PartitionerBuilderParseError::new(
Some(expected_format),
format!(
"shard {} must be a number between 1 and total shards {}, inclusive",
shard, total_shards
),
));
}
Ok((shard, total_shards))
}
#[derive(Clone, Debug)]
struct CountPartitioner {
shard_minus_one: u64,
total_shards: u64,
curr: u64,
}
impl CountPartitioner {
fn new(shard: u64, total_shards: u64) -> Self {
let shard_minus_one = shard - 1;
Self {
shard_minus_one,
total_shards,
curr: 0,
}
}
}
impl Partitioner for CountPartitioner {
fn test_matches(&mut self, _test_name: &str) -> bool {
let matches = self.curr == self.shard_minus_one;
self.curr = (self.curr + 1) % self.total_shards;
matches
}
}
#[derive(Clone, Debug)]
struct HashPartitioner {
shard_minus_one: u64,
total_shards: u64,
}
impl HashPartitioner {
fn new(shard: u64, total_shards: u64) -> Self {
let shard_minus_one = shard - 1;
Self {
shard_minus_one,
total_shards,
}
}
}
impl Partitioner for HashPartitioner {
fn test_matches(&mut self, test_name: &str) -> bool {
let mut hasher = XxHash64::default();
test_name.hash(&mut hasher);
hasher.finish() % self.total_shards == self.shard_minus_one
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn partitioner_builder_from_str() {
let successes = vec![
(
"hash:1/2",
PartitionerBuilder::Hash {
shard: 1,
total_shards: 2,
},
),
(
"hash:1/1",
PartitionerBuilder::Hash {
shard: 1,
total_shards: 1,
},
),
(
"hash:99/200",
PartitionerBuilder::Hash {
shard: 99,
total_shards: 200,
},
),
];
let failures = vec![
"foo",
"hash",
"hash:",
"hash:1",
"hash:1/",
"hash:0/2",
"hash:3/2",
"hash:m/2",
"hash:1/n",
"hash:1/2/3",
];
for (input, output) in successes {
assert_eq!(
PartitionerBuilder::from_str(input).unwrap_or_else(|err| panic!(
"expected input '{}' to succeed, failed with: {}",
input, err
)),
output,
"success case '{}' matches",
input,
);
}
for input in failures {
PartitionerBuilder::from_str(input)
.expect_err(&format!("expected input '{}' to fail", input));
}
}
}