gix-config 0.59.0

A git-config file parser and editor from the gitoxide project
Documentation
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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
use bstr::BStr;
use gix_features::threading::OwnShared;

use crate::{
    AsBStrOpt, File,
    file::{self, IntoBStringOpt, Metadata, SectionId, SectionMut, rename_section, write::ends_with_newline},
    lookup,
    parse::{Event, FrontMatterEvents, Span, section},
};

impl IntoBStringOpt for Option<bstr::BString> {
    fn into_bstring_opt(self) -> Option<bstr::BString> {
        self
    }
}

impl IntoBStringOpt for bstr::BString {
    fn into_bstring_opt(self) -> Option<bstr::BString> {
        Some(self)
    }
}

impl IntoBStringOpt for String {
    fn into_bstring_opt(self) -> Option<bstr::BString> {
        Some(self.into())
    }
}

impl IntoBStringOpt for Vec<u8> {
    fn into_bstring_opt(self) -> Option<bstr::BString> {
        Some(self.into())
    }
}

impl<const N: usize> IntoBStringOpt for [u8; N] {
    fn into_bstring_opt(self) -> Option<bstr::BString> {
        Some(self.to_vec().into())
    }
}

impl<T: crate::AsBStr + ?Sized> IntoBStringOpt for &T {
    fn into_bstring_opt(self) -> Option<bstr::BString> {
        Some(self.as_bstr().to_owned())
    }
}

/// Mutating low-level access methods.
impl File {
    /// Returns the last mutable section with a given `name` and optional `subsection_name`, _if it exists_.
    pub fn section_mut(
        &mut self,
        name: impl AsRef<str>,
        subsection_name: impl AsBStrOpt,
    ) -> Result<SectionMut<'_>, lookup::existing::Error> {
        self.section_mut_inner(name.as_ref(), subsection_name.as_bstr_opt())
    }

    fn section_mut_inner<'a>(
        &'a mut self,
        name: &str,
        subsection_name: Option<&BStr>,
    ) -> Result<SectionMut<'a>, lookup::existing::Error> {
        let id = self
            .section_ids_by_name_and_subname(name, subsection_name)?
            .next_back()
            .expect("BUG: Section lookup vec was empty");
        let nl = self.detect_newline_style_smallvec();
        Ok(self
            .section_mut_from_id(id, nl)
            .expect("BUG: Section did not have id from lookup"))
    }

    /// Returns the last found mutable section with a given `key`, identifying the name and subsection name like `core` or `remote.origin`.
    pub fn section_mut_by_key(&mut self, key: impl crate::AsBStr) -> Result<SectionMut<'_>, lookup::existing::Error> {
        let key = section::unvalidated::KeyRef::parse(&key).ok_or(lookup::existing::Error::KeyMissing)?;
        self.section_mut_inner(key.section_name, key.subsection_name)
    }

    /// Return the mutable section identified by `id`, or `None` if it didn't exist.
    ///
    /// Note that `id` is stable across deletions and insertions.
    pub fn section_mut_by_id(&mut self, id: SectionId) -> Option<SectionMut<'_>> {
        let nl = self.detect_newline_style_smallvec();
        self.section_mut_from_id(id, nl)
    }

    /// Returns the last mutable section with a given `name` and optional `subsection_name`, _if it exists_, or create a new section.
    pub fn section_mut_or_create_new(
        &mut self,
        name: impl AsRef<str>,
        subsection_name: impl AsBStrOpt,
    ) -> Result<SectionMut<'_>, section::header::Error> {
        self.section_mut_or_create_new_inner(name.as_ref(), subsection_name.as_bstr_opt())
    }

    pub(crate) fn section_mut_or_create_new_inner<'a>(
        &'a mut self,
        name: &str,
        subsection_name: Option<&BStr>,
    ) -> Result<SectionMut<'a>, section::header::Error> {
        self.section_mut_or_create_new_filter_inner(name, subsection_name, |_| true)
    }

    /// Returns an mutable section with a given `name` and optional `subsection_name`, _if it exists_ **and** passes `filter`, or create
    /// a new section.
    pub fn section_mut_or_create_new_filter(
        &mut self,
        name: impl AsRef<str>,
        subsection_name: impl AsBStrOpt,
        filter: impl FnMut(&Metadata) -> bool,
    ) -> Result<SectionMut<'_>, section::header::Error> {
        self.section_mut_or_create_new_filter_inner(name.as_ref(), subsection_name.as_bstr_opt(), filter)
    }

    pub(crate) fn section_mut_or_create_new_filter_inner<'a>(
        &'a mut self,
        name: &str,
        subsection_name: Option<&BStr>,
        mut filter: impl FnMut(&Metadata) -> bool,
    ) -> Result<SectionMut<'a>, section::header::Error> {
        match self
            .section_ids_by_name_and_subname(name, subsection_name)
            .ok()
            .and_then(|it| {
                it.rev()
                    .find(|id| self.sections.get(id).is_some_and(|s| filter(&s.meta)))
            }) {
            Some(id) => {
                let nl = self.detect_newline_style_smallvec();
                Ok(self
                    .section_mut_from_id(id, nl)
                    .expect("BUG: Section did not have id from lookup"))
            }
            None => self.new_section_inner(name, subsection_name.map(bstr::BString::from)),
        }
    }

    /// Returns the last found mutable section with a given `name` and optional `subsection_name`, that matches `filter`, _if it exists_.
    ///
    /// If there are sections matching `section_name` and `subsection_name` but the `filter` rejects all of them, `Ok(None)`
    /// is returned.
    pub fn section_mut_filter(
        &mut self,
        name: impl AsRef<str>,
        subsection_name: impl AsBStrOpt,
        filter: impl FnMut(&Metadata) -> bool,
    ) -> Result<Option<file::SectionMut<'_>>, lookup::existing::Error> {
        self.section_mut_filter_inner(name.as_ref(), subsection_name.as_bstr_opt(), filter)
    }

    fn section_mut_filter_inner<'a>(
        &'a mut self,
        name: &str,
        subsection_name: Option<&BStr>,
        mut filter: impl FnMut(&Metadata) -> bool,
    ) -> Result<Option<file::SectionMut<'a>>, lookup::existing::Error> {
        let id = self
            .section_ids_by_name_and_subname(name, 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.section_mut_from_id(id, nl)))
    }

    /// Like [`section_mut_filter()`][File::section_mut_filter()], but identifies the with a given `key`,
    /// like `core` or `remote.origin`.
    pub fn section_mut_filter_by_key(
        &mut self,
        key: impl crate::AsBStr,
        filter: impl FnMut(&Metadata) -> bool,
    ) -> Result<Option<file::SectionMut<'_>>, lookup::existing::Error> {
        let key = section::unvalidated::KeyRef::parse(&key).ok_or(lookup::existing::Error::KeyMissing)?;
        self.section_mut_filter_inner(key.section_name, key.subsection_name, filter)
    }

    /// Adds a new section. If a subsection name was provided, then
    /// the generated header will use the modern subsection syntax.
    /// Returns a reference to the new section for immediate editing.
    ///
    /// # Examples
    ///
    /// Creating a new empty section:
    ///
    /// ```
    /// # use gix_config::File;
    /// # use std::convert::TryFrom;
    /// let mut git_config = gix_config::File::default();
    /// let section = git_config.new_section("hello", "world")?;
    /// let nl = section.newline().to_owned();
    /// assert_eq!(git_config.to_string(), format!("[hello \"world\"]{nl}"));
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    ///
    /// Creating a new empty section and adding values to it:
    ///
    /// ```
    /// # use gix_config::File;
    /// # use std::convert::TryFrom;
    /// # use bstr::ByteSlice;
    /// # use gix_config::parse::section;
    /// let mut git_config = gix_config::File::default();
    /// let mut section = git_config.new_section("hello", "world")?;
    /// section.push("a", Some("b".into()))?;
    /// let nl = section.newline().to_owned();
    /// assert_eq!(git_config.to_string(), format!("[hello \"world\"]{nl}\ta = b{nl}"));
    /// let _section = git_config.new_section("core", None);
    /// assert_eq!(git_config.to_string(), format!("[hello \"world\"]{nl}\ta = b{nl}[core]{nl}"));
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn new_section(
        &mut self,
        name: impl AsRef<str>,
        subsection: impl IntoBStringOpt,
    ) -> Result<SectionMut<'_>, section::header::Error> {
        self.new_section_inner(name.as_ref(), subsection.into_bstring_opt())
    }

    fn new_section_inner(
        &mut self,
        name: &str,
        subsection: Option<bstr::BString>,
    ) -> Result<SectionMut<'_>, section::header::Error> {
        let section = file::SectionData::new(name, subsection, OwnShared::clone(&self.meta), &mut self.backing)?;
        let id = self.push_section_internal(section);
        let nl = self.detect_newline_style_smallvec();
        let mut section = self.section_mut_from_id(id, nl).expect("each id yields a section");
        section.push_newline()?;
        Ok(section)
    }

    /// Removes the section with `name` and `subsection_name`, returning it if there was a matching section.
    /// If multiple sections have the same name, then the last one is returned. Note that
    /// later sections with the same name have precedent over earlier ones.
    ///
    /// # Examples
    ///
    /// Creating and removing a section:
    ///
    /// ```
    /// # use gix_config::File;
    /// # use std::convert::TryFrom;
    /// let mut git_config = gix_config::File::try_from(
    /// r#"[hello "world"]
    ///     some-value = 4
    /// "#)?;
    ///
    /// let section = git_config.remove_section("hello", "world");
    /// assert!(section.is_some());
    /// assert_eq!(git_config.to_string(), "");
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    ///
    /// Precedence example for removing sections with the same name:
    ///
    /// ```
    /// # use gix_config::File;
    /// # use std::convert::TryFrom;
    /// let mut git_config = gix_config::File::try_from(
    /// r#"[hello "world"]
    ///     some-value = 4
    /// [hello "world"]
    ///     some-value = 5
    /// "#)?;
    ///
    /// let section = git_config.remove_section("hello", "world");
    /// assert!(section.is_some());
    /// assert_eq!(git_config.to_string(), "[hello \"world\"]\n    some-value = 4\n");
    /// # Ok::<(), Box<dyn std::error::Error>>(())
    /// ```
    pub fn remove_section(&mut self, name: impl AsRef<str>, subsection_name: impl AsBStrOpt) -> Option<file::Section> {
        let id = self
            .section_ids_by_name_and_subname(name.as_ref(), subsection_name.as_bstr_opt())
            .ok()
            .and_then(|mut ids| ids.next_back());
        let id = id?;
        self.remove_section_by_id(id)
    }

    /// Remove the section identified by `id` if it exists and return it, or return `None` if no such section was present.
    ///
    /// Note that section ids are unambiguous even in the face of removals and additions of sections.
    pub fn remove_section_by_id(&mut self, id: SectionId) -> Option<file::Section> {
        let section = self.sections.remove(&id)?;
        let position = self.section_order_position(id);
        self.section_order.remove(position);
        let lookup_name = section::Name(section.header.name.to_bstring_in(&self.backing));
        file::util::remove_section_id_from_lookup(
            &mut self.section_lookup_tree,
            &lookup_name,
            section
                .header
                .subsection_name
                .as_ref()
                .map(|name| name.value_in(&self.backing)),
            id,
        );
        Some(file::Section::from_data(&section, &self.backing))
    }

    /// Removes the section with `name` and `subsection_name` that passed `filter`, returning the removed section
    /// if at least one section matched the `filter`.
    /// If multiple sections have the same name, then the last one is returned. Note that
    /// later sections with the same name have precedent over earlier ones.
    pub fn remove_section_filter(
        &mut self,
        name: impl AsRef<str>,
        subsection_name: impl AsBStrOpt,
        filter: impl FnMut(&Metadata) -> bool,
    ) -> Option<file::Section> {
        self.remove_section_filter_inner(name.as_ref(), subsection_name.as_bstr_opt(), filter)
    }

    fn remove_section_filter_inner(
        &mut self,
        name: &str,
        subsection_name: Option<&BStr>,
        mut filter: impl FnMut(&Metadata) -> bool,
    ) -> Option<file::Section> {
        let id = self
            .section_ids_by_name_and_subname(name, subsection_name)
            .ok()
            .into_iter()
            .flatten()
            .rev()
            .find(|id| self.sections.get(id).is_some_and(|section| filter(&section.meta)));
        let id = id?;
        self.remove_section_by_id(id)
    }

    /// Adds the provided `section` to the config, returning a mutable reference to it for immediate editing.
    /// Note that its meta-data will remain as is.
    pub fn push_section(&mut self, section: file::Section) -> Result<SectionMut<'_>, crate::parse::span::Error> {
        let section = section.into_data(&mut self.backing)?;
        let id = self.push_section_internal(section);
        let nl = self.detect_newline_style_smallvec();
        Ok(self.section_mut_from_id(id, nl).expect("each id yields a section"))
    }

    /// Renames all sections with `name` and `subsection_name` to use `new_name` and `new_subsection_name`.
    ///
    /// Multiple sections may have the same name, and all matching sections are renamed. Existing sections with the target name
    /// are preserved.
    pub fn rename_section(
        &mut self,
        name: impl AsRef<str>,
        subsection_name: impl AsBStrOpt,
        new_name: impl AsRef<str>,
        new_subsection_name: impl IntoBStringOpt,
    ) -> Result<(), rename_section::Error> {
        self.rename_section_filter(name, subsection_name, new_name, new_subsection_name, |_| true)
    }

    /// Renames all sections with `name` and `subsection_name` that pass `filter` to use `new_name` and
    /// `new_subsection_name`.
    ///
    /// Existing sections with the target name are preserved.
    ///
    /// Note that the otherwise unused [`lookup::existing::Error::KeyMissing`] variant is used to indicate
    /// that the `filter` rejected all candidates, leading to no section being renamed after all.
    pub fn rename_section_filter(
        &mut self,
        name: impl AsRef<str>,
        subsection_name: impl AsBStrOpt,
        new_name: impl AsRef<str>,
        new_subsection_name: impl IntoBStringOpt,
        mut filter: impl FnMut(&Metadata) -> bool,
    ) -> Result<(), rename_section::Error> {
        let ids: Vec<_> = self
            .section_ids_by_name_and_subname(name.as_ref(), subsection_name.as_bstr_opt())?
            .filter(|id| filter(&self.sections.get(id).expect("each id has a section").meta))
            .collect();
        if ids.is_empty() {
            return Err(rename_section::Error::Lookup(lookup::existing::Error::KeyMissing));
        }
        let header = section::HeaderData::new_in(new_name, new_subsection_name.into_bstring_opt(), &mut self.backing)?;
        for id in ids {
            file::util::set_section_header(
                self.sections
                    .get_mut(&id)
                    .expect("each id from the lookup has a section"),
                &self.backing,
                &mut self.section_lookup_tree,
                &self.section_order,
                header.clone(),
            );
        }
        Ok(())
    }

    /// Append another File to the end of ourselves, without losing any information.
    pub fn append(&mut self, other: Self) -> Result<&mut Self, crate::parse::span::Error> {
        self.append_or_insert(other, None)
    }

    /// Append another File to the end of ourselves, without losing any information.
    pub(crate) fn append_or_insert(
        &mut self,
        mut other: Self,
        mut insert_after: Option<SectionId>,
    ) -> Result<&mut Self, crate::parse::span::Error> {
        let nl = self.detect_newline_style_smallvec();
        let our_last_section_before_append =
            insert_after.or_else(|| (self.next_section_id != 0).then(|| SectionId(self.next_section_id - 1)));
        let needs_separator = if other.frontmatter_events.is_empty() {
            false
        } else {
            let lhs_ends_with_newline = match our_last_section_before_append {
                Some(id) => self
                    .frontmatter_post_section
                    .get(&id)
                    .is_none_or(|events| ends_with_newline(events, &self.backing, &nl, true)),
                None => ends_with_newline(self.frontmatter_events.as_ref(), &self.backing, &nl, true),
            };
            !lhs_ends_with_newline
                && !other
                    .frontmatter_events
                    .first()
                    .is_none_or(|event| event.to_bstr_lossy_in(&other.backing).starts_with(nl.as_ref()))
        };
        let separator = needs_separator
            .then(|| Span::append(&mut self.backing, nl.as_ref()).map(Event::Newline))
            .transpose()?;
        other.rebase_events(self.backing.len())?;
        self.backing.extend_from_slice(&other.backing);

        fn extend_with_separator(lhs: &mut FrontMatterEvents, separator: Option<Event>, rhs: FrontMatterEvents) {
            if let Some(separator) = separator {
                lhs.push(separator);
            }
            lhs.extend(rhs);
        }
        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 Ok(self);
        }

        match our_last_section_before_append {
            Some(last_id) => extend_with_separator(
                self.frontmatter_post_section.entry(last_id).or_default(),
                separator,
                other.frontmatter_events,
            ),
            None => extend_with_separator(&mut self.frontmatter_events, separator, other.frontmatter_events),
        }
        Ok(self)
    }

    fn rebase_events(&mut self, offset: usize) -> Result<(), crate::parse::span::Error> {
        for event in &mut self.frontmatter_events {
            event.rebase(offset)?;
        }
        for events in self.frontmatter_post_section.values_mut() {
            for event in events {
                event.rebase(offset)?;
            }
        }
        for section in self.sections.values_mut() {
            section.header.rebase(offset)?;
            for event in &mut section.body.0 {
                event.rebase(offset)?;
            }
        }
        Ok(())
    }

    pub(crate) fn section_mut_from_id(
        &mut self,
        id: SectionId,
        newline: smallvec::SmallVec<[u8; 2]>,
    ) -> Option<SectionMut<'_>> {
        let section = self.sections.get_mut(&id)?;
        let lookup = file::mutable::section::LookupMut {
            tree: &mut self.section_lookup_tree,
            order: &self.section_order,
        };
        Some(section.to_mut(&mut self.backing, lookup, newline))
    }
}