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
use std::{
collections::HashMap,
fmt::Debug,
hash::Hash,
io::Read,
path::{Path, PathBuf},
};
use crate::ast;
use crate::diagnostic::Diagnostic;
use crate::rules;
use crate::validation;
pub struct Parser<ID>
where
ID: Eq + Hash + Clone + Debug,
{
lalrpop_results: HashMap<ID, ParseFileResult<ID>>,
}
#[derive(Debug, Clone)]
pub struct ParseFileResult<ID>
where
ID: Eq + Hash + Clone + Debug,
{
pub id: ID,
pub ast: Option<ast::Aidl>,
pub diagnostics: Vec<Diagnostic>,
}
impl<ID> Parser<ID>
where
ID: Eq + Hash + Clone + Debug,
{
pub fn new() -> Self {
Parser {
lalrpop_results: HashMap::new(),
}
}
pub fn add_content(&mut self, id: ID, content: &str) {
let lookup = line_col::LineColLookup::new(content);
let mut diagnostics = Vec::new();
let rule_result =
rules::aidl::OptAidlParser::new().parse(&lookup, &mut diagnostics, content);
let lalrpop_result = match rule_result {
Ok(file) => ParseFileResult {
id: id.clone(),
ast: file,
diagnostics,
},
Err(e) => {
if let Some(diagnostic) = Diagnostic::from_parse_error(&lookup, e) {
diagnostics.push(diagnostic)
}
ParseFileResult {
id: id.clone(),
ast: None,
diagnostics,
}
}
};
self.lalrpop_results.insert(id, lalrpop_result);
}
pub fn remove_content(&mut self, id: ID) {
self.lalrpop_results.remove(&id);
}
pub fn validate(&self) -> HashMap<ID, ParseFileResult<ID>> {
let keys = self.collect_item_keys();
validation::validate(keys, self.lalrpop_results.clone())
}
fn collect_item_keys(&self) -> HashMap<ast::ItemKey, ast::ItemKind> {
self.lalrpop_results
.iter()
.map(|(_, fr)| &fr.ast)
.flatten()
.map(|f| (f.get_key(), f.item.get_kind()))
.collect()
}
}
impl Parser<PathBuf> {
pub fn add_file<P: AsRef<Path>>(&mut self, path: P) -> std::io::Result<()> {
let mut file = std::fs::File::open(path.as_ref())?;
let mut buffer = String::new();
file.read_to_string(&mut buffer)?;
self.add_content(PathBuf::from(path.as_ref()), &buffer);
Ok(())
}
}
impl<ID> Default for Parser<ID>
where
ID: Eq + Hash + Clone + Debug,
{
fn default() -> Self {
Self::new()
}
}
#[cfg(test)]
mod test {
use super::*;
use anyhow::Result;
#[test]
fn test_validate() -> Result<()> {
let interface_aidl = r#"
package com.bwa.aidl_test;
import com.bwa.aidl_test.MyEnum;
import com.bwa.aidl_test.MyEnum;
import com.bwa.aidl_test.MyEnum;
import com.bwa.aidl_test.MyParcelable;
import com.bwa.aidl_test.MyUnexisting;
interface MyInterface {
const int MY_CONST = 12;
/**
* Be polite and say hello
*/
//String hello(MyEnum e, MyParcelable);
String servus(MyEnum e, MyWrong);
String bonjour(MyEnum e, MyUnexisting);
}
"#;
let enum_aidl = r#"
package com.bwa.aidl_test;
enum MyEnum {
VALUE1 = 1,
VALUE2 = 2,
}
"#;
let parcelable_aidl = r#"
package com.bwa.aidl_test;
parcelable MyParcelable {
String name;
byte[] data;
}
"#;
let mut parser = Parser::new();
parser.add_content(0, interface_aidl);
parser.add_content(1, parcelable_aidl);
parser.add_content(2, enum_aidl);
let res = parser.validate();
assert_eq!(res.len(), 3);
println!("...\nDiagnostics 1:\n{:#?}", res[&0].diagnostics);
println!("...\nDiagnostics 2:\n{:#?}", res[&1].diagnostics);
println!("...\nDiagnostics 3:\n{:#?}", res[&2].diagnostics);
Ok(())
}
}