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
use std::fs::File;
use std::io::{self, prelude::*};
use std::path::Path;
use ahash::AHashMap;
use log::warn;
const READER_CAPACITY: usize = 128 * 1024;
#[derive(Debug, Clone, Copy, Default)]
struct Counts {
first: usize,
second: usize,
}
#[derive(Debug, Clone, Copy, Default)]
pub struct Options {
pub normalize: bool,
pub strip_hex: bool,
}
pub fn from_readers<R1, R2, W>(opt: Options, before: R1, after: R2, writer: W) -> io::Result<()>
where
R1: BufRead,
R2: BufRead,
W: Write,
{
let mut stack_counts = AHashMap::default();
let total1 = parse_stack_counts(opt, &mut stack_counts, before, true)?;
let total2 = parse_stack_counts(opt, &mut stack_counts, after, false)?;
if opt.normalize && total1 != total2 {
for counts in stack_counts.values_mut() {
counts.first = (counts.first as f64 * total2 as f64 / total1 as f64) as usize;
}
}
write_stacks(&stack_counts, writer)
}
pub fn from_files<P1, P2, W>(
opt: Options,
file_before: P1,
file_after: P2,
writer: W,
) -> io::Result<()>
where
P1: AsRef<Path>,
P2: AsRef<Path>,
W: Write,
{
let file1 = File::open(file_before)?;
let reader1 = io::BufReader::with_capacity(READER_CAPACITY, file1);
let file2 = File::open(file_after)?;
let reader2 = io::BufReader::with_capacity(READER_CAPACITY, file2);
from_readers(opt, reader1, reader2, writer)
}
fn parse_stack_counts<R>(
opt: Options,
stack_counts: &mut AHashMap<String, Counts>,
mut reader: R,
is_first: bool,
) -> io::Result<usize>
where
R: BufRead,
{
let mut total = 0;
let mut line = String::new();
let mut stripped_fractional_samples = false;
loop {
line.clear();
if reader.read_line(&mut line)? == 0 {
break;
}
if let Some((stack, count)) =
parse_line(&line, opt.strip_hex, &mut stripped_fractional_samples)
{
let mut counts = stack_counts.entry(stack).or_default();
if is_first {
counts.first += count;
} else {
counts.second += count;
}
total += count;
} else {
warn!("Unable to parse line: {}", line);
}
}
Ok(total)
}
fn write_stacks<W>(stack_counts: &AHashMap<String, Counts>, mut writer: W) -> io::Result<()>
where
W: Write,
{
for (stack, &Counts { first, second }) in stack_counts {
writeln!(writer, "{} {} {}", stack, first, second)?;
}
Ok(())
}
fn parse_line(
line: &str,
strip_hex: bool,
stripped_fractional_samples: &mut bool,
) -> Option<(String, usize)> {
let samplesi = line.rfind(' ')?;
let mut samples = line[samplesi + 1..].trim_end();
if let Some(doti) = samples.find('.') {
if !samples[..doti]
.chars()
.chain(samples[doti + 1..].chars())
.all(|c| c.is_digit(10))
{
return None;
}
if !*stripped_fractional_samples && !samples[doti + 1..].chars().all(|c| c == '0') {
*stripped_fractional_samples = true;
warn!("The input data has fractional sample counts that will be truncated to integers");
}
samples = &samples[..doti];
}
let nsamples = samples.parse::<usize>().ok()?;
let stack = line[..samplesi].trim_end();
if strip_hex {
Some((strip_hex_address(stack), nsamples))
} else {
Some((stack.to_string(), nsamples))
}
}
fn strip_hex_address(mut stack: &str) -> String {
let mut stripped = String::with_capacity(stack.len());
while let Some(idx) = stack.find("0x") {
stripped.push_str(&stack[..idx + 2]);
let ndigits = stack[idx + 2..]
.chars()
.take_while(|c| c.is_digit(16))
.count();
if ndigits > 0 {
stripped.push_str("...");
}
stack = &stack[idx + 2 + ndigits..];
}
stripped.push_str(stack);
stripped
}