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
use std::borrow::Cow;
use bstr::{BStr, ByteSlice};
use crate::{name, AssignmentRef, Name, NameRef, StateRef};
#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone)]
#[cfg_attr(feature = "serde1", derive(serde::Serialize, serde::Deserialize))]
pub enum Kind {
Pattern(git_glob::Pattern),
Macro(Name),
}
mod error {
use bstr::BString;
#[derive(thiserror::Error, Debug)]
#[allow(missing_docs)]
pub enum Error {
#[error("Line {line_number} has a negative pattern, for literal characters use \\!: {line}")]
PatternNegation { line_number: usize, line: BString },
#[error("Attribute in line {line_number} has non-ascii characters or starts with '-': {attribute}")]
AttributeName { line_number: usize, attribute: BString },
#[error("Macro in line {line_number} has non-ascii characters or starts with '-': {macro_name}")]
MacroName { line_number: usize, macro_name: BString },
#[error("Could not unquote attributes line")]
Unquote(#[from] git_quote::ansi_c::undo::Error),
}
}
pub use error::Error;
pub struct Lines<'a> {
lines: bstr::Lines<'a>,
line_no: usize,
}
pub struct Iter<'a> {
attrs: bstr::Fields<'a>,
}
impl<'a> Iter<'a> {
pub fn new(input: &'a BStr) -> Self {
Iter { attrs: input.fields() }
}
fn parse_attr(&self, attr: &'a [u8]) -> Result<AssignmentRef<'a>, name::Error> {
let mut tokens = attr.splitn(2, |b| *b == b'=');
let attr = tokens.next().expect("attr itself").as_bstr();
let possibly_value = tokens.next();
let (attr, state) = if attr.first() == Some(&b'-') {
(&attr[1..], StateRef::Unset)
} else if attr.first() == Some(&b'!') {
(&attr[1..], StateRef::Unspecified)
} else {
(
attr,
possibly_value
.map(|v| StateRef::Value(v.as_bstr()))
.unwrap_or(StateRef::Set),
)
};
Ok(AssignmentRef::new(check_attr(attr)?, state))
}
}
fn check_attr(attr: &BStr) -> Result<NameRef<'_>, name::Error> {
fn attr_valid(attr: &BStr) -> bool {
if attr.first() == Some(&b'-') {
return false;
}
attr.bytes()
.all(|b| matches!(b, b'-' | b'.' | b'_' | b'A'..=b'Z' | b'a'..=b'z' | b'0'..=b'9'))
}
attr_valid(attr)
.then(|| NameRef(attr.to_str().expect("no illformed utf8")))
.ok_or_else(|| name::Error { attribute: attr.into() })
}
impl<'a> Iterator for Iter<'a> {
type Item = Result<AssignmentRef<'a>, name::Error>;
fn next(&mut self) -> Option<Self::Item> {
let attr = self.attrs.next().filter(|a| !a.is_empty())?;
self.parse_attr(attr).into()
}
}
impl<'a> Lines<'a> {
pub fn new(bytes: &'a [u8]) -> Self {
let bom = unicode_bom::Bom::from(bytes);
Lines {
lines: bytes[bom.len()..].lines(),
line_no: 0,
}
}
}
impl<'a> Iterator for Lines<'a> {
type Item = Result<(Kind, Iter<'a>, usize), Error>;
fn next(&mut self) -> Option<Self::Item> {
fn skip_blanks(line: &BStr) -> &BStr {
line.find_not_byteset(BLANKS).map(|pos| &line[pos..]).unwrap_or(line)
}
for line in self.lines.by_ref() {
self.line_no += 1;
let line = skip_blanks(line.into());
if line.first() == Some(&b'#') {
continue;
}
match parse_line(line, self.line_no) {
None => continue,
Some(res) => return Some(res),
}
}
None
}
}
fn parse_line(line: &BStr, line_number: usize) -> Option<Result<(Kind, Iter<'_>, usize), Error>> {
if line.is_empty() {
return None;
}
let (line, attrs): (Cow<'_, _>, _) = if line.starts_with(b"\"") {
let (unquoted, consumed) = match git_quote::ansi_c::undo(line) {
Ok(res) => res,
Err(err) => return Some(Err(err.into())),
};
(unquoted, &line[consumed..])
} else {
line.find_byteset(BLANKS)
.map(|pos| (line[..pos].as_bstr().into(), line[pos..].as_bstr()))
.unwrap_or((line.into(), [].as_bstr()))
};
let kind_res = match line.strip_prefix(b"[attr]") {
Some(macro_name) => check_attr(macro_name.into())
.map(|name| Kind::Macro(name.to_owned()))
.map_err(|err| Error::MacroName {
line_number,
macro_name: err.attribute,
}),
None => {
let pattern = git_glob::Pattern::from_bytes(line.as_ref())?;
if pattern.mode.contains(git_glob::pattern::Mode::NEGATIVE) {
Err(Error::PatternNegation {
line: line.into_owned(),
line_number,
})
} else {
Ok(Kind::Pattern(pattern))
}
}
};
let kind = match kind_res {
Ok(kind) => kind,
Err(err) => return Some(Err(err)),
};
Ok((kind, Iter::new(attrs), line_number)).into()
}
const BLANKS: &[u8] = b" \t\r";