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
use super::IType;
use super::IRecordType;
use crate::FaaSModuleInterface;
use crate::FaaSFunctionSignature;
use serde::Serialize;
use serde::Serializer;
use std::fmt;
use std::collections::HashMap;
use std::collections::HashSet;
use itertools::Itertools;
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct FaaSInterface<'a> {
pub modules: HashMap<&'a str, FaaSModuleInterface<'a>>,
}
impl<'a> fmt::Display for FaaSInterface<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let type_text_view = |arg_ty: &IType, record_types: &HashMap<u64, IRecordType>| {
match arg_ty {
IType::Record(record_type_id) => {
let record = record_types.get(record_type_id).unwrap();
record.name.clone()
}
t => format!("{:?}", t),
}
};
let mut printed_record_types: HashSet<&IRecordType> = HashSet::new();
for (_, module_interface) in self.modules.iter() {
for (_, record_type) in module_interface.record_types.iter() {
if printed_record_types.insert(record_type) {
continue;
}
writeln!(f, "{} {{", record_type.name)?;
for field in record_type.fields.iter() {
writeln!(
f,
" {}: {}",
field.name,
type_text_view(&field.ty, &module_interface.record_types)
)?;
}
writeln!(f, "}}")?;
}
}
for (name, module_interface) in self.modules.iter() {
writeln!(f, "\n{}:", *name)?;
for function_signature in module_interface.function_signatures.iter() {
write!(f, " fn {}(", function_signature.name)?;
let args = function_signature
.arguments
.iter()
.map(|arg| {
format!(
"{}: {}",
arg.name,
type_text_view(&arg.ty, &module_interface.record_types)
)
})
.join(", ");
let outputs = function_signature.outputs;
if outputs.is_empty() {
writeln!(f, "{})", args)?;
} else if outputs.len() == 1 {
writeln!(
f,
"{}) -> {}",
args,
type_text_view(&outputs[0], &module_interface.record_types)
)?;
} else {
unimplemented!()
}
}
}
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 FunctionSignature<'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 function_signatures: Vec<FunctionSignature<'a>>,
pub record_types: Vec<RecordType<'a>>,
}
#[derive(Serialize)]
pub struct Interface<'a> {
pub modules: Vec<Module<'a>>,
}
fn serialize_function_signature<'a>(
signature: &'a FaaSFunctionSignature<'_>,
) -> FunctionSignature<'a> {
let arguments = signature
.arguments
.iter()
.map(|arg| (&arg.name, &arg.ty))
.collect();
FunctionSignature {
name: signature.name,
arguments,
output_types: signature.outputs,
}
}
fn serialize_record_type<'a, 'b>(record: (&'a u64, &'b IRecordType)) -> RecordType<'b> {
let fields = record
.1
.fields
.iter()
.map(|field| (&field.name, &field.ty))
.collect::<Vec<_>>();
RecordType {
name: record.1.name.as_str(),
id: *record.0,
fields,
}
}
let modules: Vec<_> = self
.modules
.iter()
.map(|(name, interface)| {
let function_signatures = interface
.function_signatures
.iter()
.map(serialize_function_signature)
.collect();
let record_types: Vec<_> = interface
.record_types
.iter()
.map(serialize_record_type)
.collect();
Module {
name,
function_signatures,
record_types,
}
})
.collect();
Interface { modules }.serialize(serializer)
}
}