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
use crate::Tabled;
pub struct ExpandedDisplay {
format_record_splitter: Option<fn(usize) -> String>,
format_value: Option<Box<dyn Fn(&str) -> String>>,
fields: Vec<String>,
records: Vec<Vec<String>>,
}
impl ExpandedDisplay {
pub fn new<T: Tabled>(iter: impl IntoIterator<Item = T>) -> Self {
let data = iter.into_iter().map(|i| i.fields()).collect();
let header = T::headers();
Self {
records: data,
fields: header,
format_record_splitter: None,
format_value: None,
}
}
pub fn header_template(&mut self, f: fn(usize) -> String) -> &mut Self {
self.format_record_splitter = Some(f);
self
}
pub fn formatter(&mut self, f: impl Fn(&str) -> String + 'static) -> &mut Self {
self.format_value = Some(Box::new(f));
self
}
pub fn truncate(&mut self, max: usize, tail: impl AsRef<str>) -> &mut Self {
let tail = tail.as_ref().to_string();
self.format_value = Some(Box::new(move |s| {
let mut trucated = truncate(s, max);
if trucated.len() < s.len() {
trucated.push_str(&tail);
}
trucated
}));
self
}
pub fn wrap(&mut self, max: usize) -> &mut Self {
self.format_value = Some(Box::new(move |s| wrap(s, max)));
self
}
}
impl std::fmt::Display for ExpandedDisplay {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let format_value = |value: &String| match &self.format_value {
Some(f) => (f)(value),
None => value.to_string(),
};
let fields = self
.fields
.iter()
.map(|f| {
let escaped = format!("{:?}", f);
escaped
.chars()
.skip(1)
.take(escaped.len() - 1 - 1)
.collect::<String>()
})
.collect::<Vec<_>>();
let max_field_width = fields
.iter()
.map(|f| papergrid::string_width(f))
.max()
.unwrap_or_default();
let values = self
.records
.iter()
.map(|record| {
assert_eq!(record.len(), fields.len());
record.iter().map(format_value).collect::<Vec<_>>()
})
.collect::<Vec<_>>();
let max_values_length = values
.iter()
.map(|record| {
record
.iter()
.map(|v| v.lines().map(papergrid::string_width).max())
.max()
})
.max()
.unwrap_or_default()
.unwrap_or_default()
.unwrap_or_default();
for (i, values) in values.into_iter().enumerate() {
match self.format_record_splitter {
Some(f_header) => {
let header = (f_header)(i);
writeln!(f, "{}", header)?;
}
None => {
write_header_template(f, i, max_field_width, max_values_length)?;
}
}
for (value, field) in values.iter().zip(fields.iter()) {
write_record_line(f, field, value, max_field_width)?;
}
}
Ok(())
}
}
fn write_header_template(
f: &mut std::fmt::Formatter<'_>,
index: usize,
max_field_width: usize,
max_values_length: usize,
) -> std::fmt::Result {
let mut template = format!("-[ RECORD {} ]-", index);
let default_template_length = template.len();
let max_line_width = std::cmp::max(
max_field_width + 3 + max_values_length,
default_template_length,
);
let rest_to_print = max_line_width - default_template_length;
if rest_to_print > 0 {
if max_field_width + 2 > default_template_length {
let part1 = (max_field_width + 1) - default_template_length;
let part2 = rest_to_print - part1 - 1;
template.extend(
std::iter::repeat('-')
.take(part1)
.chain(std::iter::once('+'))
.chain(std::iter::repeat('-').take(part2)),
);
} else {
template.extend(std::iter::repeat('-').take(rest_to_print));
}
}
writeln!(f, "{}", template)?;
Ok(())
}
fn write_record_line(
f: &mut std::fmt::Formatter<'_>,
field: &str,
value: &str,
max_field_width: usize,
) -> std::fmt::Result {
if value.is_empty() {
writeln!(f, "{:width$} | {}", field, value, width = max_field_width)?;
return Ok(());
}
for (i, line) in value.lines().enumerate() {
let field = if i == 0 { field } else { "" };
writeln!(f, "{:width$} | {}", field, line, width = max_field_width)?;
}
Ok(())
}
fn truncate(s: &str, max: usize) -> String {
crate::width::strip(s, max)
}
fn wrap(s: &str, max: usize) -> String {
crate::width::split(s, max)
}