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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
use std::borrow::Cow;
use bstr::BStr;
use gix_features::threading::OwnShared;
use crate::{
file::{self, rename_section, write::ends_with_newline, MetadataFilter, SectionBodyIdsLut, SectionId, SectionMut},
lookup,
parse::{section, Event, FrontMatterEvents},
File,
};
impl<'event> File<'event> {
pub fn section_mut<'a>(
&'a mut self,
name: impl AsRef<str>,
subsection_name: Option<&BStr>,
) -> Result<SectionMut<'a, 'event>, lookup::existing::Error> {
let id = self
.section_ids_by_name_and_subname(name.as_ref(), subsection_name)?
.rev()
.next()
.expect("BUG: Section lookup vec was empty");
let nl = self.detect_newline_style_smallvec();
Ok(self
.sections
.get_mut(&id)
.expect("BUG: Section did not have id from lookup")
.to_mut(nl))
}
pub fn section_mut_by_key<'a, 'b>(
&'a mut self,
key: impl Into<&'b BStr>,
) -> Result<SectionMut<'a, 'event>, lookup::existing::Error> {
let key = section::unvalidated::Key::parse(key).ok_or(lookup::existing::Error::KeyMissing)?;
self.section_mut(key.section_name, key.subsection_name)
}
pub fn section_mut_by_id<'a>(&'a mut self, id: SectionId) -> Option<SectionMut<'a, 'event>> {
let nl = self.detect_newline_style_smallvec();
self.sections.get_mut(&id).map(|s| s.to_mut(nl))
}
pub fn section_mut_or_create_new<'a>(
&'a mut self,
name: impl AsRef<str>,
subsection_name: Option<&BStr>,
) -> Result<SectionMut<'a, 'event>, section::header::Error> {
self.section_mut_or_create_new_filter(name, subsection_name, &mut |_| true)
}
pub fn section_mut_or_create_new_filter<'a>(
&'a mut self,
name: impl AsRef<str>,
subsection_name: Option<&BStr>,
filter: &mut MetadataFilter,
) -> Result<SectionMut<'a, 'event>, section::header::Error> {
let name = name.as_ref();
match self
.section_ids_by_name_and_subname(name.as_ref(), subsection_name)
.ok()
.and_then(|it| {
it.rev().find(|id| {
let s = &self.sections[id];
filter(s.meta())
})
}) {
Some(id) => {
let nl = self.detect_newline_style_smallvec();
Ok(self
.sections
.get_mut(&id)
.expect("BUG: Section did not have id from lookup")
.to_mut(nl))
}
None => self.new_section(name.to_owned(), subsection_name.map(|n| Cow::Owned(n.to_owned()))),
}
}
pub fn section_mut_filter<'a>(
&'a mut self,
name: impl AsRef<str>,
subsection_name: Option<&BStr>,
filter: &mut MetadataFilter,
) -> Result<Option<file::SectionMut<'a, 'event>>, lookup::existing::Error> {
let id = self
.section_ids_by_name_and_subname(name.as_ref(), subsection_name)?
.rev()
.find(|id| {
let s = &self.sections[id];
filter(s.meta())
});
let nl = self.detect_newline_style_smallvec();
Ok(id.and_then(move |id| self.sections.get_mut(&id).map(move |s| s.to_mut(nl))))
}
pub fn section_mut_filter_by_key<'a, 'b>(
&'a mut self,
key: impl Into<&'b BStr>,
filter: &mut MetadataFilter,
) -> Result<Option<file::SectionMut<'a, 'event>>, lookup::existing::Error> {
let key = section::unvalidated::Key::parse(key).ok_or(lookup::existing::Error::KeyMissing)?;
self.section_mut_filter(key.section_name, key.subsection_name, filter)
}
pub fn new_section(
&mut self,
name: impl Into<Cow<'event, str>>,
subsection: impl Into<Option<Cow<'event, BStr>>>,
) -> Result<SectionMut<'_, 'event>, section::header::Error> {
let id = self.push_section_internal(file::Section::new(name, subsection, OwnShared::clone(&self.meta))?);
let nl = self.detect_newline_style_smallvec();
let mut section = self.sections.get_mut(&id).expect("each id yields a section").to_mut(nl);
section.push_newline();
Ok(section)
}
pub fn remove_section<'a>(
&mut self,
name: &str,
subsection_name: impl Into<Option<&'a BStr>>,
) -> Option<file::Section<'event>> {
let id = self
.section_ids_by_name_and_subname(name, subsection_name.into())
.ok()?
.rev()
.next()?;
self.remove_section_by_id(id)
}
pub fn remove_section_by_id(&mut self, id: SectionId) -> Option<file::Section<'event>> {
self.section_order
.remove(self.section_order.iter().position(|v| *v == id)?);
let section = self.sections.remove(&id)?;
let lut = self
.section_lookup_tree
.get_mut(§ion.header.name)
.expect("lookup cache still has name to be deleted");
for entry in lut {
match section.header.subsection_name.as_deref() {
Some(subsection_name) => {
if let SectionBodyIdsLut::NonTerminal(map) = entry {
if let Some(ids) = map.get_mut(subsection_name) {
ids.remove(ids.iter().position(|v| *v == id).expect("present"));
break;
}
}
}
None => {
if let SectionBodyIdsLut::Terminal(ids) = entry {
ids.remove(ids.iter().position(|v| *v == id).expect("present"));
break;
}
}
}
}
Some(section)
}
pub fn remove_section_filter<'a>(
&mut self,
name: &str,
subsection_name: impl Into<Option<&'a BStr>>,
filter: &mut MetadataFilter,
) -> Option<file::Section<'event>> {
let id = self
.section_ids_by_name_and_subname(name, subsection_name.into())
.ok()?
.rev()
.find(|id| filter(self.sections.get(id).expect("each id has a section").meta()))?;
self.section_order.remove(
self.section_order
.iter()
.position(|v| *v == id)
.expect("known section id"),
);
self.sections.remove(&id)
}
pub fn push_section(
&mut self,
section: file::Section<'event>,
) -> Result<SectionMut<'_, 'event>, section::header::Error> {
let id = self.push_section_internal(section);
let nl = self.detect_newline_style_smallvec();
let section = self.sections.get_mut(&id).expect("each id yields a section").to_mut(nl);
Ok(section)
}
pub fn rename_section<'a>(
&mut self,
name: impl AsRef<str>,
subsection_name: impl Into<Option<&'a BStr>>,
new_name: impl Into<Cow<'event, str>>,
new_subsection_name: impl Into<Option<Cow<'event, BStr>>>,
) -> Result<(), rename_section::Error> {
let id = self
.section_ids_by_name_and_subname(name.as_ref(), subsection_name.into())?
.rev()
.next()
.expect("list of sections were empty, which violates invariant");
let section = self.sections.get_mut(&id).expect("known section-id");
section.header = section::Header::new(new_name, new_subsection_name)?;
Ok(())
}
pub fn rename_section_filter<'a>(
&mut self,
name: impl AsRef<str>,
subsection_name: impl Into<Option<&'a BStr>>,
new_name: impl Into<Cow<'event, str>>,
new_subsection_name: impl Into<Option<Cow<'event, BStr>>>,
filter: &mut MetadataFilter,
) -> Result<(), rename_section::Error> {
let id = self
.section_ids_by_name_and_subname(name.as_ref(), subsection_name.into())?
.rev()
.find(|id| filter(self.sections.get(id).expect("each id has a section").meta()))
.ok_or(rename_section::Error::Lookup(lookup::existing::Error::KeyMissing))?;
let section = self.sections.get_mut(&id).expect("known section-id");
section.header = section::Header::new(new_name, new_subsection_name)?;
Ok(())
}
pub fn append(&mut self, other: Self) -> &mut Self {
self.append_or_insert(other, None)
}
pub(crate) fn append_or_insert(&mut self, mut other: Self, mut insert_after: Option<SectionId>) -> &mut Self {
let nl = self.detect_newline_style_smallvec();
fn extend_and_assure_newline<'a>(
lhs: &mut FrontMatterEvents<'a>,
rhs: FrontMatterEvents<'a>,
nl: &impl AsRef<[u8]>,
) {
if !ends_with_newline(lhs.as_ref(), nl, true)
&& !rhs.first().map_or(true, |e| e.to_bstr_lossy().starts_with(nl.as_ref()))
{
lhs.push(Event::Newline(Cow::Owned(nl.as_ref().into())))
}
lhs.extend(rhs);
}
#[allow(clippy::unnecessary_lazy_evaluations)]
let our_last_section_before_append =
insert_after.or_else(|| (self.section_id_counter != 0).then(|| SectionId(self.section_id_counter - 1)));
for id in std::mem::take(&mut other.section_order) {
let section = other.sections.remove(&id).expect("present");
let new_id = match insert_after {
Some(id) => {
let new_id = self.insert_section_after(section, id);
insert_after = Some(new_id);
new_id
}
None => self.push_section_internal(section),
};
if let Some(post_matter) = other.frontmatter_post_section.remove(&id) {
self.frontmatter_post_section.insert(new_id, post_matter);
}
}
if other.frontmatter_events.is_empty() {
return self;
}
match our_last_section_before_append {
Some(last_id) => extend_and_assure_newline(
self.frontmatter_post_section.entry(last_id).or_default(),
other.frontmatter_events,
&nl,
),
None => extend_and_assure_newline(&mut self.frontmatter_events, other.frontmatter_events, &nl),
}
self
}
}