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
use crate::{
error::*,
semantic_analysis::{
ast_node::{TypedStorageDeclaration, TypedStructField},
declaration::TypedStorageField,
CopyTypes, TypeCheckedStorageAccess, TypeMapping,
},
type_engine::*,
CallPath, CompileResult, Ident, TypeInfo, TypedDeclaration, TypedFunctionDeclaration,
};
use super::trait_map::TraitMap;
use sway_types::span::Span;
use std::sync::Arc;
type SymbolMap = im::OrdMap<Ident, TypedDeclaration>;
type UseSynonyms = im::HashMap<Ident, Vec<Ident>>;
type UseAliases = im::HashMap<String, Ident>;
#[derive(Clone, Debug, Default, PartialEq)]
pub struct Items {
pub(crate) symbols: SymbolMap,
pub(crate) implemented_traits: TraitMap,
pub(crate) use_synonyms: UseSynonyms,
pub(crate) use_aliases: UseAliases,
pub(crate) declared_storage: Option<TypedStorageDeclaration>,
}
impl Items {
pub fn symbols(&self) -> &SymbolMap {
&self.symbols
}
pub fn apply_storage_load(
&self,
fields: Vec<Ident>,
storage_fields: &[TypedStorageField],
) -> CompileResult<(TypeCheckedStorageAccess, TypeId)> {
match self.declared_storage {
Some(ref storage) => storage.apply_storage_load(fields, storage_fields),
None => err(
vec![],
vec![CompileError::NoDeclaredStorage {
span: fields[0].span().clone(),
}],
),
}
}
pub fn set_storage_declaration(&mut self, decl: TypedStorageDeclaration) -> CompileResult<()> {
if self.declared_storage.is_some() {
return err(
vec![],
vec![CompileError::MultipleStorageDeclarations { span: decl.span() }],
);
}
self.declared_storage = Some(decl);
ok((), vec![], vec![])
}
pub fn get_all_declared_symbols(&self) -> impl Iterator<Item = &TypedDeclaration> {
self.symbols().values()
}
pub(crate) fn insert_symbol(
&mut self,
name: Ident,
item: TypedDeclaration,
) -> CompileResult<()> {
let mut warnings = vec![];
let mut errors = vec![];
if self.symbols.get(&name).is_some() {
match item {
TypedDeclaration::EnumDeclaration { .. }
| TypedDeclaration::StructDeclaration { .. } => {
errors.push(CompileError::ShadowsOtherSymbol { name: name.clone() });
}
TypedDeclaration::GenericTypeForFunctionScope { .. } => {
errors.push(CompileError::GenericShadowsGeneric { name: name.clone() });
}
_ => {
warnings.push(CompileWarning {
span: name.span().clone(),
warning_content: Warning::ShadowsOtherSymbol { name: name.clone() },
});
}
}
}
self.symbols.insert(name, item);
ok((), warnings, errors)
}
pub(crate) fn check_symbol(&self, name: &Ident) -> CompileResult<&TypedDeclaration> {
match self.symbols.get(name) {
Some(decl) => ok(decl, vec![], vec![]),
None => err(
vec![],
vec![CompileError::SymbolNotFound { name: name.clone() }],
),
}
}
pub(crate) fn insert_trait_implementation(
&mut self,
trait_name: CallPath,
type_implementing_for: TypeInfo,
functions_buf: Vec<TypedFunctionDeclaration>,
) -> CompileResult<()> {
let mut warnings = vec![];
let mut errors = vec![];
let new_prefixes = if trait_name.prefixes.is_empty() {
self.use_synonyms
.get(&trait_name.suffix)
.unwrap_or(&trait_name.prefixes)
.clone()
} else {
trait_name.prefixes
};
let trait_name = CallPath {
suffix: trait_name.suffix,
prefixes: new_prefixes,
is_absolute: trait_name.is_absolute,
};
check!(
self.implemented_traits
.insert(trait_name, type_implementing_for, functions_buf),
(),
warnings,
errors
);
ok((), warnings, errors)
}
pub(crate) fn get_methods_for_type(&self, r#type: TypeId) -> Vec<TypedFunctionDeclaration> {
self.implemented_traits
.get_methods_for_type(look_up_type_id(r#type))
}
pub(crate) fn copy_methods_to_type(
&mut self,
old_type: TypeInfo,
new_type: TypeInfo,
type_mapping: &TypeMapping,
) {
let methods = self
.implemented_traits
.get_methods_for_type_by_trait(old_type);
for (trait_name, mut trait_methods) in methods.into_iter() {
trait_methods
.iter_mut()
.for_each(|method| method.copy_types(type_mapping));
self.implemented_traits
.insert(trait_name, new_type.clone(), trait_methods);
}
}
pub(crate) fn get_canonical_path(&self, symbol: &Ident) -> &[Ident] {
self.use_synonyms.get(symbol).map(|v| &v[..]).unwrap_or(&[])
}
pub(crate) fn get_struct_type_fields(
&self,
ty: TypeId,
debug_string: impl Into<String>,
debug_span: &Span,
) -> CompileResult<(Vec<TypedStructField>, Ident)> {
let ty = look_up_type_id(ty);
match ty {
TypeInfo::Struct { name, fields, .. } => ok((fields.to_vec(), name), vec![], vec![]),
TypeInfo::ErrorRecovery => err(vec![], vec![]),
a => err(
vec![],
vec![CompileError::NotAStruct {
name: debug_string.into(),
span: debug_span.clone(),
actually: a.friendly_type_str(),
}],
),
}
}
pub(crate) fn has_storage_declared(&self) -> bool {
self.declared_storage.is_some()
}
pub(crate) fn get_storage_field_descriptors(&self) -> CompileResult<Vec<TypedStorageField>> {
if let Some(fields) = self.declared_storage.as_ref().map(|ds| ds.fields.clone()) {
ok(fields, vec![], vec![])
} else {
let msg = "unknown source location";
let span = Span::new(Arc::from(msg), 0, msg.len(), None).unwrap();
err(vec![], vec![CompileError::NoDeclaredStorage { span }])
}
}
pub(crate) fn find_subfield_type(
&self,
subfield_exp: &[Ident],
) -> CompileResult<(TypeId, TypeId)> {
let mut warnings = vec![];
let mut errors = vec![];
let mut ident_iter = subfield_exp.iter().peekable();
let first_ident = ident_iter.next().unwrap();
let symbol = match self.symbols.get(first_ident).cloned() {
Some(s) => s,
None => {
errors.push(CompileError::UnknownVariable {
var_name: first_ident.clone(),
});
return err(warnings, errors);
}
};
if ident_iter.peek().is_none() {
let ty = check!(
symbol.return_type(),
return err(warnings, errors),
warnings,
errors
);
return ok((ty, ty), warnings, errors);
}
let mut symbol = check!(
symbol.return_type(),
return err(warnings, errors),
warnings,
errors
);
let mut type_fields =
self.get_struct_type_fields(symbol, first_ident.as_str(), first_ident.span());
warnings.append(&mut type_fields.warnings);
errors.append(&mut type_fields.errors);
let (mut fields, struct_name): (Vec<TypedStructField>, Ident) = match type_fields.value {
None => return err(warnings, errors),
Some(value) => value,
};
let mut parent_rover = symbol;
for ident in ident_iter {
let TypedStructField { r#type, .. } =
match fields.iter().find(|x| x.name.as_str() == ident.as_str()) {
Some(field) => field.clone(),
None => {
let available_fields =
fields.iter().map(|x| x.name.as_str()).collect::<Vec<_>>();
errors.push(CompileError::FieldNotFound {
field_name: ident.clone(),
struct_name,
available_fields: available_fields.join(", "),
});
return err(warnings, errors);
}
};
match look_up_type_id(r#type) {
TypeInfo::Struct {
fields: ref l_fields,
..
} => {
parent_rover = symbol;
fields = l_fields.clone();
symbol = r#type;
}
_ => {
fields = vec![];
parent_rover = symbol;
symbol = r#type;
}
}
}
ok((symbol, parent_rover), warnings, errors)
}
}