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
use super::IType;
use super::IRecordType;
use super::IFunctionArg;
use serde::Serialize;
use serde::Serializer;
use std::fmt;
use std::collections::HashMap;
#[derive(Debug, PartialEq, Clone)]
pub struct FaaSInterface<'a> {
pub record_types: HashMap<u64, &'a IRecordType>,
pub modules: HashMap<&'a str, HashMap<&'a str, FaaSFunctionSignature<'a>>>,
}
#[derive(Debug, PartialEq, Clone)]
pub struct FaaSFunctionSignature<'a> {
pub arguments: &'a Vec<IFunctionArg>,
pub output_types: &'a Vec<IType>,
}
impl<'a> fmt::Display for FaaSInterface<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let type_text_view = |arg_ty: &IType| {
match arg_ty {
IType::Record(record_type_id) => {
let record = self.record_types.get(record_type_id).unwrap();
record.name.clone()
}
t => format!("{:?}", t),
}
};
for (_, record_type) in self.record_types.iter() {
writeln!(f, "{} {{", record_type.name)?;
for field in record_type.fields.iter() {
writeln!(f, " {}: {:?}", field.name, type_text_view(&field.ty))?;
}
writeln!(f, "}}")?;
}
if !self.record_types.is_empty() {
writeln!(f)?;
}
for (name, functions) in self.modules.iter() {
writeln!(f, "{}:", *name)?;
for (name, signature) in functions.iter() {
write!(f, " pub fn {}(", name)?;
for arg in signature.arguments {
write!(f, "{}: {}", arg.name, type_text_view(&arg.ty))?;
}
if signature.output_types.is_empty() {
write!(f, ")")?;
} else if signature.output_types.len() == 1 {
write!(f, ") -> {}", type_text_view(&signature.output_types[0]))?;
} else {
unimplemented!()
}
}
writeln!(f)?
}
Ok(())
}
}
impl<'a> Serialize for FaaSInterface<'a> {
fn serialize<S>(&self, serializer: S) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where
S: Serializer,
{
#[derive(Serialize)]
pub struct Function<'a> {
pub name: &'a str,
pub arguments: Vec<(&'a String, &'a IType)>,
pub output_types: &'a Vec<IType>,
}
#[derive(Serialize)]
pub struct RecordType<'a> {
pub name: &'a str,
pub id: u64,
pub fields: Vec<(&'a String, &'a IType)>,
}
#[derive(Serialize)]
pub struct Module<'a> {
pub name: &'a str,
pub functions: Vec<Function<'a>>,
}
#[derive(Serialize)]
pub struct Interface<'a> {
pub record_types: Vec<RecordType<'a>>,
pub modules: Vec<Module<'a>>,
}
let record_types: Vec<_> = self
.record_types
.iter()
.map(|(id, IRecordType { name, fields })| {
let fields = fields
.iter()
.map(|field| (&field.name, &field.ty))
.collect::<Vec<_>>();
RecordType {
name: name.as_str(),
id: *id,
fields,
}
})
.collect();
let modules: Vec<_> = self
.modules
.iter()
.map(|(name, functions)| {
let functions = functions
.iter()
.map(
|(
name,
FaaSFunctionSignature {
arguments,
output_types,
},
)| {
let arguments =
arguments.iter().map(|arg| (&arg.name, &arg.ty)).collect();
Function {
name,
arguments,
output_types,
}
},
)
.collect();
Module { name, functions }
})
.collect();
Interface {
record_types,
modules,
}
.serialize(serializer)
}
}