Enum gix_config::parse::Event
source · pub enum Event<'a> {
Comment(Comment<'a>),
SectionHeader(Header<'a>),
SectionKey(Key<'a>),
Value(Cow<'a, BStr>),
Newline(Cow<'a, BStr>),
ValueNotDone(Cow<'a, BStr>),
ValueDone(Cow<'a, BStr>),
Whitespace(Cow<'a, BStr>),
KeyValueSeparator,
}
Expand description
Syntactic events that occurs in the config. Despite all these variants
holding a Cow
instead over a simple reference, the parser will only emit
borrowed Cow
variants.
The Cow
is used here for ease of inserting new, typically owned events as used
in the File
struct when adding values, allowing a mix of owned and borrowed
values.
Variants§
Comment(Comment<'a>)
A comment with a comment tag and the comment itself. Note that the
comment itself may contain additional whitespace and comment markers
at the beginning, like # comment
or ; comment
.
SectionHeader(Header<'a>)
A section header containing the section name and a subsection, if it
exists. For instance, remote "origin"
is parsed to remote
as section
name and origin
as subsection name.
SectionKey(Key<'a>)
A name to a value in a section, like url
in remote.origin.url
.
Value(Cow<'a, BStr>)
A completed value. This may be any single-line string, including the empty string if an implicit boolean value is used. Note that these values may contain spaces and any special character. This value is also unprocessed, so it may contain double quotes that should be normalized before interpretation.
Newline(Cow<'a, BStr>)
Represents any token used to signify a newline character. On Unix
platforms, this is typically just \n
, but can be any valid newline
sequence. Multiple newlines (such as \n\n
) will be merged as a single
newline event containing a string of multiple newline characters.
ValueNotDone(Cow<'a, BStr>)
Any value that isn’t completed. This occurs when the value is continued
onto the next line by ending it with a backslash.
A Newline
event is guaranteed after, followed by
either a ValueDone, a Whitespace, or another ValueNotDone.
ValueDone(Cow<'a, BStr>)
The last line of a value which was continued onto another line.
With this it’s possible to obtain the complete value by concatenating
the prior ValueNotDone
events.
Whitespace(Cow<'a, BStr>)
A continuous section of insignificant whitespace.
Note that values with internal whitespace will not be separated by this event, hence interior whitespace there is always part of the value.
KeyValueSeparator
This event is emitted when the parser counters a valid =
character
separating the key and value.
This event is necessary as it eliminates the ambiguity for whitespace
events between a key and value event.
Implementations§
source§impl Event<'_>
impl Event<'_>
sourcepub fn to_bstring(&self) -> BString
pub fn to_bstring(&self) -> BString
Serialize this type into a BString
for convenience.
Note that to_string()
can also be used, but might not be lossless.
sourcepub fn to_bstr_lossy(&self) -> &BStr
pub fn to_bstr_lossy(&self) -> &BStr
Turn ourselves into the text we represent, lossy.
Note that this will be partial in case of ValueNotDone
which doesn’t include the backslash, and SectionHeader
will only
provide their name, lacking the sub-section name.
Trait Implementations§
source§impl<'a> Ord for Event<'a>
impl<'a> Ord for Event<'a>
source§impl<'a> PartialEq for Event<'a>
impl<'a> PartialEq for Event<'a>
source§impl<'a> PartialOrd for Event<'a>
impl<'a> PartialOrd for Event<'a>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more