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
use anyhow::*;
use move_core_types::{
identifier::Identifier,
language_storage::{StructTag, TypeTag},
};
pub use move_idl_types::*;
use move_model::{
model::GlobalEnv,
ty::{self, Type},
};
pub fn get_type_tag_for_type(move_type: &Type) -> Result<Option<TypeTag>> {
use ty::Type::*;
let tag = match move_type {
Primitive(prim) => {
use ty::PrimitiveType::*;
match prim {
Bool => TypeTag::Bool,
U8 => TypeTag::U8,
U64 => TypeTag::U64,
U128 => TypeTag::U128,
Address => TypeTag::Address,
Signer => TypeTag::Signer,
Num | Range | EventStore => {
bail!("Type {:?} is not allowed in scripts.", move_type)
}
}
}
Vector(ty) => {
let tag = match get_type_tag_for_type(ty)? {
Some(tag) => tag,
None => return Ok(None),
};
TypeTag::Vector(Box::new(tag))
}
Tuple(_)
| Struct(_, _, _)
| TypeParameter(_)
| Fun(_, _)
| TypeDomain(_)
| ResourceDomain(..)
| Error
| Var(_)
| Reference(_, _) => return Ok(None),
};
Ok(Some(tag))
}
pub fn get_idl_type_for_type(env: &GlobalEnv, ty: &Type) -> Result<IDLType> {
use ty::PrimitiveType;
Ok(match ty {
Type::Primitive(pr) => match pr {
PrimitiveType::Bool => IDLType::Bool,
PrimitiveType::U8 => IDLType::U8,
PrimitiveType::U64 => IDLType::U64,
PrimitiveType::U128 => IDLType::U128,
PrimitiveType::Address => IDLType::Address,
PrimitiveType::Signer => IDLType::Signer,
ty => bail!("unknown primitive {:?}", ty),
},
Type::Tuple(inner) => IDLType::Tuple(
inner
.iter()
.map(|v| get_idl_type_for_type(env, v))
.collect::<Result<Vec<_>>>()?,
),
Type::Vector(inner) => IDLType::Vector(Box::new(get_idl_type_for_type(env, inner)?)),
Type::Struct(_, _, ty_args) => {
let (struct_env, _) = ty
.get_struct(env)
.ok_or_else(|| anyhow!("struct could not be found"))?;
let module_id = &struct_env.module_env.get_verified_module().self_id();
IDLType::Struct(IDLStructType {
name: StructTag {
address: *module_id.address(),
module: module_id.name().to_owned(),
name: Identifier::new(
struct_env
.get_name()
.display(struct_env.symbol_pool())
.to_string(),
)?,
type_params: vec![],
}
.into(),
ty_args: ty_args
.iter()
.map(|tp| get_idl_type_for_type(env, tp))
.collect::<Result<Vec<_>>>()?,
})
}
Type::TypeParameter(n) => IDLType::TypeParam(*n),
ty => bail!("could not process type {:?}", ty),
})
}