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
use std::convert::TryFrom;
use crate::bstr::{BStr, BString, ByteSlice};
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error("{input:?} is not a valid configuration key. Examples are 'core.abbrev' or 'remote.origin.url'")]
InvalidKey { input: BString },
#[error("Key {key:?} could not be parsed")]
SectionKey {
key: BString,
source: git_config::parse::section::key::Error,
},
#[error(transparent)]
SectionHeader(#[from] git_config::parse::section::header::Error),
}
pub(crate) fn apply(
config: &mut git_config::File<'static>,
values: impl IntoIterator<Item = impl AsRef<BStr>>,
source: git_config::Source,
) -> Result<(), Error> {
let mut file = git_config::File::new(git_config::file::Metadata::from(source));
for key_value in values {
let key_value = key_value.as_ref();
let mut tokens = key_value.splitn(2, |b| *b == b'=').map(|v| v.trim());
let key = tokens.next().expect("always one value").as_bstr();
let value = tokens.next();
let key = git_config::parse::key(key.to_str().map_err(|_| Error::InvalidKey { input: key.into() })?)
.ok_or_else(|| Error::InvalidKey { input: key.into() })?;
let mut section = file.section_mut_or_create_new(key.section_name, key.subsection_name)?;
section.push(
git_config::parse::section::Key::try_from(key.value_name.to_owned()).map_err(|err| Error::SectionKey {
source: err,
key: key.value_name.into(),
})?,
value.map(|v| v.as_bstr()),
);
}
config.append(file);
Ok(())
}