gix_config/file/mutable/
value.rsuse std::borrow::Cow;
use bstr::BStr;
use crate::{
file,
file::{mutable::section::SectionMut, Index, Size},
lookup,
parse::section,
};
#[derive(PartialEq, Eq, Hash, PartialOrd, Ord, Debug)]
pub struct ValueMut<'borrow, 'lookup, 'event> {
pub(crate) section: SectionMut<'borrow, 'event>,
pub(crate) key: section::ValueName<'lookup>,
pub(crate) index: Index,
pub(crate) size: Size,
}
impl<'borrow, 'event> ValueMut<'borrow, '_, 'event> {
pub fn get(&self) -> Result<Cow<'_, BStr>, lookup::existing::Error> {
self.section.get(&self.key, self.index, self.index + self.size)
}
pub fn set_string(&mut self, input: impl AsRef<str>) {
self.set(input.as_ref());
}
pub fn set<'a>(&mut self, input: impl Into<&'a BStr>) {
if self.size.0 > 0 {
self.section.delete(self.index, self.index + self.size);
}
self.size = self.section.set_internal(self.index, self.key.to_owned(), input.into());
}
pub fn delete(&mut self) {
if self.size.0 > 0 {
self.section.delete(self.index, self.index + self.size);
self.size = Size(0);
}
}
pub fn section(&self) -> &file::Section<'event> {
&self.section
}
pub fn into_section_mut(self) -> file::SectionMut<'borrow, 'event> {
self.section
}
}