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
use crate::{
follow::{LineDataBuffer, LineText},
story::{Line, LineBuffer},
};
pub fn process_buffer(into_buffer: &mut LineBuffer, from_buffer: LineDataBuffer) {
let mut iter = from_buffer
.into_iter()
.filter(|line| !line.text.trim().is_empty())
.peekable();
while let Some(mut line) = iter.next() {
let (glue, whitespace) = check_for_whitespace_and_glue(&line, iter.peek());
trim_extra_whitespace(&mut line);
add_line_ending(&mut line, glue, whitespace);
into_buffer.push(Line {
text: line.text,
tags: line.tags,
});
}
}
fn check_for_whitespace_and_glue(line: &LineText, next_line: Option<&LineText>) -> (bool, bool) {
let glue = next_line
.map(|next_line| line.glue_end || next_line.glue_begin)
.unwrap_or(false);
let whitespace = glue && {
next_line
.map(|next_line| line.text.ends_with(' ') || next_line.text.starts_with(' '))
.unwrap_or(false)
};
(glue, whitespace)
}
fn trim_extra_whitespace(line: &mut LineText) {
let trimmed = line.text.split_whitespace().collect::<Vec<_>>().join(" ");
line.text = trimmed;
}
fn add_line_ending(line: &mut LineText, glue: bool, whitespace: bool) {
if !glue || whitespace {
let mut text = line.text.trim().to_string();
if whitespace {
text.push(' ');
}
if !glue {
text.push('\n');
}
line.text = text;
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::follow::LineTextBuilder;
#[test]
fn processing_line_buffer_removes_empty_lines() {
let text = "Mr. and Mrs. Doubtfire";
let buffer = vec![
LineTextBuilder::from_string(text).build(),
LineTextBuilder::from_string("").build(),
LineTextBuilder::from_string(text).build(),
];
let mut processed = Vec::new();
process_buffer(&mut processed, buffer);
assert_eq!(processed.len(), 2);
assert_eq!(processed[0].text.trim(), text);
assert_eq!(processed[1].text.trim(), text);
}
#[test]
fn processing_line_buffer_trims_extra_whitespace() {
let buffer = vec![
LineTextBuilder::from_string(" Hello, World! ").build(),
LineTextBuilder::from_string(" Hello right back at you! ").build(),
];
let mut processed = Vec::new();
process_buffer(&mut processed, buffer);
assert_eq!(processed.len(), 2);
assert_eq!(processed[0].text.trim(), "Hello, World!");
assert_eq!(processed[1].text.trim(), "Hello right back at you!");
}
#[test]
fn processing_line_buffer_adds_newlines_if_no_glue() {
let text = "Mr. and Mrs. Doubtfire";
let buffer = vec![
LineTextBuilder::from_string(text).build(),
LineTextBuilder::from_string(text).build(),
];
let mut processed = Vec::new();
process_buffer(&mut processed, buffer);
assert!(processed[0].text.ends_with('\n'));
assert!(processed[1].text.ends_with('\n'));
}
#[test]
fn processing_line_buffer_removes_newlines_between_lines_with_glue_end_on_first() {
let text = "Mr. and Mrs. Doubtfire";
let buffer = vec![
LineTextBuilder::from_string(text).with_glue_end().build(),
LineTextBuilder::from_string(text).build(),
];
let mut processed = Vec::new();
process_buffer(&mut processed, buffer);
assert!(!processed[0].text.ends_with('\n'));
assert!(processed[1].text.ends_with('\n'));
}
#[test]
fn processing_line_buffer_removes_newlines_between_lines_with_glue_start_on_second() {
let text = "Mr. and Mrs. Doubtfire";
let buffer = vec![
LineTextBuilder::from_string(text).build(),
LineTextBuilder::from_string(text).with_glue_begin().build(),
];
let mut processed = Vec::new();
process_buffer(&mut processed, buffer);
assert!(!processed[0].text.ends_with('\n'));
assert!(processed[1].text.ends_with('\n'));
}
#[test]
fn processing_line_buffer_with_glue_works_across_empty_lines() {
let text = "Mr. and Mrs. Doubtfire";
let buffer = vec![
LineTextBuilder::from_string(text).build(),
LineTextBuilder::from_string("").build(),
LineTextBuilder::from_string(text).with_glue_begin().build(),
];
let mut processed = Vec::new();
process_buffer(&mut processed, buffer);
assert!(!processed[0].text.ends_with('\n'));
assert!(processed[1].text.ends_with('\n'));
}
#[test]
fn processing_line_buffer_sets_newline_on_last_line_regardless_of_glue() {
let line = LineTextBuilder::from_string("Mr. and Mrs. Doubtfire")
.with_glue_end()
.build();
let buffer = vec![line];
let mut processed = Vec::new();
process_buffer(&mut processed, buffer);
assert!(processed[0].text.ends_with('\n'));
}
#[test]
fn processing_line_buffer_keeps_single_whitespace_between_lines_with_glue() {
let line1 = LineTextBuilder::from_string("Ends with whitespace before glue, ")
.with_glue_end()
.build();
let line2 = LineTextBuilder::from_string(" starts with whitespace after glue")
.with_glue_begin()
.build();
let buffer = vec![line1, line2];
let mut processed = Vec::new();
process_buffer(&mut processed, buffer);
assert!(processed[0].text.ends_with(' '));
assert!(!processed[1].text.starts_with(' '));
}
#[test]
fn processing_line_buffer_preserves_tags() {
let text = "Mr. and Mrs. Doubtfire";
let tags = vec!["tag 1".to_string(), "tag 2".to_string()];
let line = LineTextBuilder::from_string(text).with_tags(&tags).build();
let buffer = vec![line];
let mut processed = Vec::new();
process_buffer(&mut processed, buffer);
assert_eq!(processed[0].tags, tags);
}
#[test]
fn only_single_whitespaces_are_left_between_words_after_processing() {
let text = "A line with just enough whitespace";
let line = LineTextBuilder::from_string(text).build();
let buffer = vec![line];
let mut processed = Vec::new();
process_buffer(&mut processed, buffer);
assert_eq!(&processed[0].text, "A line with just enough whitespace\n");
}
}