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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
use crate::abi::{
error::{bail, format_err, Result},
human_readable::{is_whitespace, parse_identifier},
HumanReadableParser, ParamType,
};
#[derive(Debug, Clone, PartialEq)]
pub struct FieldDeclaration {
pub name: String,
pub ty: FieldType,
}
impl FieldDeclaration {
pub fn new(name: String, ty: FieldType) -> Self {
Self { name, ty }
}
pub fn name(&self) -> &str {
&self.name
}
pub fn r#type(&self) -> &FieldType {
&self.ty
}
}
#[derive(Debug, Clone, PartialEq)]
pub enum FieldType {
Elementary(ParamType),
Struct(StructFieldType),
Mapping(Box<MappingType>),
}
impl FieldType {
pub fn is_mapping(&self) -> bool {
matches!(self, FieldType::Mapping(_))
}
pub(crate) fn as_struct(&self) -> Option<&StructFieldType> {
match self {
FieldType::Struct(s) => Some(s),
_ => None,
}
}
}
#[derive(Debug, Clone, PartialEq)]
pub struct MappingType {
key_type: ParamType,
value_type: FieldType,
}
#[derive(Debug, Clone, PartialEq)]
pub struct StructFieldDeclaration {
name: String,
ty: StructFieldType,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct StructType {
name: String,
projections: Vec<String>,
}
impl StructType {
pub fn new(name: String, projections: Vec<String>) -> Self {
Self { name, projections }
}
pub fn name(&self) -> &str {
&self.name
}
}
#[derive(Debug, Clone, PartialEq)]
pub enum StructFieldType {
Type(StructType),
Array(Box<StructFieldType>),
FixedArray(Box<StructFieldType>, usize),
}
impl StructFieldType {
pub fn name(&self) -> &str {
match self {
StructFieldType::Type(ty) => &ty.name,
StructFieldType::Array(ty) => ty.name(),
StructFieldType::FixedArray(ty, _) => ty.name(),
}
}
pub fn projections(&self) -> &[String] {
match self {
StructFieldType::Type(ty) => &ty.projections,
StructFieldType::Array(ty) => ty.projections(),
StructFieldType::FixedArray(ty, _) => ty.projections(),
}
}
pub fn identifier(&self) -> String {
let name = self.name();
let path = self.projections().join(".");
if path.is_empty() {
name.to_string()
} else {
format!("{path}.{name}")
}
}
pub fn as_param(&self, tuple: ParamType) -> ParamType {
match self {
StructFieldType::Type(_) => tuple,
StructFieldType::Array(ty) => ty.as_param(ParamType::Array(Box::new(tuple))),
StructFieldType::FixedArray(ty, size) => {
ty.as_param(ParamType::FixedArray(Box::new(tuple), *size))
}
}
}
pub fn parse(mut input: &str) -> Result<FieldType> {
let mut projections = Vec::new();
loop {
let ty = parse_identifier(&mut input)?;
let mut chars = input.chars();
match chars.next() {
None => {
return Ok(FieldType::Struct(StructFieldType::Type(StructType {
name: ty,
projections,
})))
}
Some(' ') | Some('\t') | Some('[') => {
let mut size = String::new();
loop {
match chars.next() {
None => bail!("Expected Array `{}`", input),
Some(' ') | Some('\t') => {
if !size.is_empty() {
bail!(
"Illegal whitespace in array size after `{}` in `{}`",
size,
input
)
}
}
Some(']') => {
let ty = StructType { name: ty, projections };
return if size.is_empty() {
Ok(FieldType::Struct(StructFieldType::Array(Box::new(
StructFieldType::Type(ty),
))))
} else {
let size = size.parse().map_err(|_| {
format_err!("Illegal array size `{}` at `{}`", size, input)
})?;
Ok(FieldType::Struct(StructFieldType::FixedArray(
Box::new(StructFieldType::Type(ty)),
size,
)))
}
}
Some(c) => {
if c.is_numeric() {
size.push(c);
} else {
bail!("Illegal char `{}` inner array `{}`", c, input)
}
}
}
}
}
Some('.') => {
input = chars.as_str();
projections.push(ty);
}
Some(c) => {
bail!("Illegal char `{}` at `{}`", c, input)
}
}
}
}
}
#[derive(Debug, Clone, PartialEq)]
pub struct SolStruct {
pub name: String,
pub fields: Vec<FieldDeclaration>,
}
impl SolStruct {
pub fn parse(s: &str) -> Result<Self> {
let mut input = s.trim();
if !input.starts_with("struct ") {
bail!("Not a struct `{}`", input)
}
input = &input[6..];
let name = parse_identifier(&mut input)?;
let mut chars = input.chars();
loop {
match chars.next() {
None => bail!("Expected struct"),
Some('{') => {
input = chars
.as_str()
.trim()
.strip_suffix('}')
.ok_or_else(|| format_err!("Expected closing `}}` in `{}`", s))?
.trim_end();
let fields = if input.is_empty() {
Vec::new()
} else {
input
.split(';')
.filter(|s| !s.is_empty())
.map(parse_struct_field)
.collect::<Result<Vec<_>, _>>()?
};
return Ok(SolStruct { name, fields })
}
Some(' ') | Some('\t') => continue,
Some(c) => {
bail!("Illegal char `{}` at `{}`", c, s)
}
}
}
}
pub fn name(&self) -> &str {
&self.name
}
pub fn fields(&self) -> &Vec<FieldDeclaration> {
&self.fields
}
pub fn has_nameless_field(&self) -> bool {
self.fields.iter().any(|f| f.name.is_empty())
}
pub fn as_tuple(&self) -> Option<ParamType> {
let mut params = Vec::with_capacity(self.fields.len());
for field in self.fields() {
if let FieldType::Elementary(ref param) = field.ty {
params.push(param.clone())
} else {
return None
}
}
Some(ParamType::Tuple(params))
}
}
fn strip_field_identifier(input: &mut &str) -> Result<String> {
let mut iter = input.trim_end().rsplitn(2, is_whitespace);
let name = iter
.next()
.ok_or_else(|| format_err!("Expected field identifier"))
.map(|mut s| parse_identifier(&mut s))??;
*input =
iter.next().ok_or_else(|| format_err!("Expected field type in `{}`", input))?.trim_end();
Ok(name)
}
fn parse_struct_field(s: &str) -> Result<FieldDeclaration> {
let mut input = s.trim_start();
if !input.starts_with("mapping") {
input = input
.split('=')
.next()
.ok_or_else(|| format_err!("Expected field definition `{}`", s))?
.trim_end();
}
let name = strip_field_identifier(&mut input)?;
Ok(FieldDeclaration { name, ty: parse_field_type(input)? })
}
fn parse_field_type(s: &str) -> Result<FieldType> {
let mut input = s.trim_start();
if input.starts_with("mapping") {
return Ok(FieldType::Mapping(Box::new(parse_mapping(input)?)))
}
if input.ends_with(" payable") {
input = input[..input.len() - 7].trim_end();
}
if let Ok(ty) = HumanReadableParser::parse_type(input) {
Ok(FieldType::Elementary(ty))
} else {
StructFieldType::parse(input.trim_end())
}
}
fn parse_mapping(s: &str) -> Result<MappingType> {
let mut input = s.trim();
if !input.starts_with("mapping") {
bail!("Not a mapping `{}`", input)
}
input = input[7..].trim_start();
let mut iter = input.trim_start_matches('(').trim_end_matches(')').splitn(2, "=>");
let key_type = iter
.next()
.ok_or_else(|| format_err!("Expected mapping key type at `{}`", input))
.map(str::trim)
.map(HumanReadableParser::parse_type)??;
let is_illegal_ty = matches!(
&key_type,
ParamType::Array(_) | ParamType::FixedArray(_, _) | ParamType::Tuple(_)
);
if is_illegal_ty {
bail!("Expected elementary mapping key type at `{}` got {:?}", input, key_type)
}
let value_type = iter
.next()
.ok_or_else(|| format_err!("Expected mapping value type at `{}`", input))
.map(str::trim)
.map(parse_field_type)??;
Ok(MappingType { key_type, value_type })
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn can_parse_simple_struct() {
assert_eq!(
SolStruct::parse("struct MyStruct{uint256 x; uint256 y;}").unwrap(),
SolStruct {
name: "MyStruct".to_string(),
fields: vec![
FieldDeclaration {
name: "x".to_string(),
ty: FieldType::Elementary(ParamType::Uint(256)),
},
FieldDeclaration {
name: "y".to_string(),
ty: FieldType::Elementary(ParamType::Uint(256)),
},
],
}
);
}
#[test]
fn can_parse_struct() {
assert_eq!(
SolStruct::parse("struct MyStruct{uint256 x; uint256 y; bytes[] _b; string[10] s; mapping(address => uint256) m;}").unwrap(),
SolStruct {
name: "MyStruct".to_string(),
fields: vec![
FieldDeclaration {
name: "x".to_string(),
ty: FieldType::Elementary(ParamType::Uint(256)),
},
FieldDeclaration {
name: "y".to_string(),
ty: FieldType::Elementary(ParamType::Uint(256)),
},
FieldDeclaration {
name: "_b".to_string(),
ty: FieldType::Elementary(ParamType::Array(Box::new(ParamType::Bytes))),
},
FieldDeclaration {
name: "s".to_string(),
ty: FieldType::Elementary(ParamType::FixedArray(Box::new(ParamType::String), 10)),
},
FieldDeclaration {
name: "m".to_string(),
ty: FieldType::Mapping(Box::new(
MappingType {
key_type: ParamType::Address,
value_type: FieldType::Elementary(ParamType::Uint(256))
}
)),
},
],
}
);
}
#[test]
fn can_parse_struct_projections() {
assert_eq!(
SolStruct::parse("struct MyStruct{uint256 x; Some.Other.Inner _other;}").unwrap(),
SolStruct {
name: "MyStruct".to_string(),
fields: vec![
FieldDeclaration {
name: "x".to_string(),
ty: FieldType::Elementary(ParamType::Uint(256)),
},
FieldDeclaration {
name: "_other".to_string(),
ty: FieldType::Struct(StructFieldType::Type(StructType {
name: "Inner".to_string(),
projections: vec!["Some".to_string(), "Other".to_string()]
})),
},
],
}
);
}
#[test]
fn can_parse_structs() {
[
"struct Demo {bytes x; address payable d;}",
"struct Demo2 {bytes[10] x; mapping(bool=> bool) d; int256 value;}",
"struct Struct { Other.MyStruct s; bool voted; address delegate; uint vote; }",
]
.iter()
.for_each(|s| {
SolStruct::parse(s).unwrap();
});
}
#[test]
fn can_parse_mapping_type() {
assert_eq!(
parse_mapping("mapping(string=> string)").unwrap(),
MappingType {
key_type: ParamType::String,
value_type: FieldType::Elementary(ParamType::String)
}
);
}
#[test]
fn can_parse_nested_mappings() {
assert_eq!(
parse_mapping("mapping(string=> mapping(string=> string))").unwrap(),
MappingType {
key_type: ParamType::String,
value_type: FieldType::Mapping(Box::new(MappingType {
key_type: ParamType::String,
value_type: FieldType::Elementary(ParamType::String),
})),
}
);
}
#[test]
fn can_detect_illegal_mappings_key_type() {
[
"mapping(string[]=> mapping(string=> string))",
"mapping(bytes[10] => bool)",
"mapping(uint256[10] => bool)",
"mapping(Item=> bool)",
"mapping(Item[]=> mapping(address => bool))",
]
.iter()
.for_each(|s| {
parse_mapping(s).unwrap_err();
});
}
#[test]
fn can_parse_mappings() {
[
"mapping(string=> mapping(string=> string))",
"mapping(string=> mapping(string=> mapping(string=> mapping(string=> string))))",
"mapping(bool=> bool)",
"mapping(bytes32 => bool)",
"mapping(bytes=> bool)",
"mapping(uint256=> mapping(address => bool))",
]
.iter()
.for_each(|s| {
parse_mapping(s).unwrap();
});
}
#[test]
fn can_strip_field_ident() {
let mut s = "uint256 _myvar,
";
let name = strip_field_identifier(&mut s).unwrap();
assert_eq!("_myvar", name);
assert_eq!("uint256", s);
}
}