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
use crate::context::Context;
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum Type {
Unit,
Bool,
Uint(u8),
B256,
String(u64),
Array(Aggregate),
Union(Aggregate),
Struct(Aggregate),
Contract,
ContractCaller(AbiInstance),
}
impl Type {
pub fn as_string(&self, context: &Context) -> String {
let sep_types_str = |agg_content: &AggregateContent, sep: &str| {
agg_content
.field_types()
.iter()
.map(|ty| ty.as_string(context))
.collect::<Vec<_>>()
.join(sep)
};
match self {
Type::Unit => "()".into(),
Type::Bool => "bool".into(),
Type::Uint(nbits) => format!("u{}", nbits),
Type::B256 => "b256".into(),
Type::String(n) => format!("string<{}>", n),
Type::Array(agg) => {
let (ty, cnt) = &context.aggregates[agg.0].array_type();
format!("[{}; {}]", ty.as_string(context), cnt)
}
Type::Union(agg) => {
let agg_content = &context.aggregates[agg.0];
format!("{{ {} }}", sep_types_str(agg_content, " | "))
}
Type::Struct(agg) => {
let agg_content = &context.aggregates[agg.0];
format!("{{ {} }}", sep_types_str(agg_content, ", "))
}
Type::Contract => "contract".into(),
Type::ContractCaller(_) => "TODO CONTRACT CALLER".into(),
}
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash)]
pub struct Aggregate(pub generational_arena::Index);
#[doc(hidden)]
#[derive(Debug, Clone, PartialEq)]
pub enum AggregateContent {
ArrayType(Type, u64),
FieldTypes(Vec<Type>),
}
impl Aggregate {
pub fn new_struct(context: &mut Context, field_types: Vec<Type>) -> Self {
Aggregate(
context
.aggregates
.insert(AggregateContent::FieldTypes(field_types)),
)
}
pub fn new_array(context: &mut Context, element_type: Type, count: u64) -> Self {
Aggregate(
context
.aggregates
.insert(AggregateContent::ArrayType(element_type, count)),
)
}
pub fn get_field_type(&self, context: &Context, indices: &[u64]) -> Option<Type> {
indices.iter().fold(Some(Type::Struct(*self)), |ty, idx| {
ty.and_then(|ty| match ty {
Type::Struct(agg) => context.aggregates[agg.0]
.field_types()
.get(*idx as usize)
.cloned(),
_otherwise => None,
})
})
}
pub fn get_elem_type(&self, context: &Context) -> Option<Type> {
if let AggregateContent::ArrayType(ty, _) = context.aggregates[self.0] {
Some(ty)
} else {
None
}
}
}
impl AggregateContent {
pub fn field_types(&self) -> &Vec<Type> {
match self {
AggregateContent::FieldTypes(types) => types,
AggregateContent::ArrayType(..) => panic!("Getting field types from array aggregate."),
}
}
pub fn array_type(&self) -> (&Type, &u64) {
match self {
AggregateContent::FieldTypes(..) => panic!("Getting array type from fields aggregate."),
AggregateContent::ArrayType(ty, cnt) => (ty, cnt),
}
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash)]
pub struct AbiInstance(pub generational_arena::Index);
#[doc(hidden)]
#[derive(Debug, Clone, PartialEq)]
pub struct AbiInstanceContent {
pub name: Vec<String>,
pub address: String,
}
impl AbiInstance {
pub fn new(
context: &mut Context,
mut name_prefixes: Vec<String>,
name_suffix: String,
address: String,
) -> Self {
name_prefixes.push(name_suffix);
AbiInstance(context.abi_instances.insert(AbiInstanceContent {
name: name_prefixes,
address,
}))
}
}