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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
use crate::{
config::Config,
encoding::CompositionGraphEncoder,
graph::{
Component, ComponentId, CompositionGraph, EncodeOptions, ExportIndex, ImportIndex,
InstanceId,
},
};
use anyhow::{anyhow, bail, Result};
use indexmap::IndexMap;
use std::{collections::VecDeque, path::Path};
use wasmparser::{
types::{ComponentInstanceType, TypesRef},
ComponentExternalKind, ComponentTypeRef,
};
pub const ROOT_COMPONENT_NAME: &str = "$input";
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub(crate) struct InstanceImportRef {
pub(crate) component: ComponentId,
pub(crate) import: ImportIndex,
}
struct Dependency {
dependent: usize,
import: InstanceImportRef,
instance: String,
export: Option<String>,
}
struct CompositionGraphBuilder<'a> {
config: &'a Config,
graph: CompositionGraph<'a>,
instances: IndexMap<String, InstanceId>,
}
impl<'a> CompositionGraphBuilder<'a> {
fn new(root_path: &Path, config: &'a Config) -> Result<Self> {
let mut graph = CompositionGraph::new();
graph.add_component(Component::from_file(ROOT_COMPONENT_NAME, root_path)?)?;
Ok(Self {
config,
graph,
instances: Default::default(),
})
}
fn add_component(&mut self, name: &str) -> Result<Option<ComponentId>> {
if let Some((id, _)) = self.graph.get_component_by_name(name) {
return Ok(Some(id));
}
match self.find_component(name)? {
Some(component) => Ok(Some(self.graph.add_component(component)?)),
None => Ok(None),
}
}
fn find_component(&self, name: &str) -> Result<Option<Component<'a>>> {
if let Some(dep) = self.config.dependencies.get(name) {
log::debug!(
"component with name `{name}` has an explicit path of `{path}`",
path = dep.path.display()
);
return Ok(Some(Component::from_file(
name,
self.config.dir.join(&dep.path),
)?));
}
log::info!("searching for a component with name `{name}`");
for dir in std::iter::once(&self.config.dir).chain(self.config.search_paths.iter()) {
if let Some(component) = Self::parse_component(dir, name)? {
return Ok(Some(component));
}
}
Ok(None)
}
fn parse_component(dir: &Path, name: &str) -> Result<Option<Component<'a>>> {
let mut path = dir.join(name);
for ext in ["wasm", "wat"] {
path.set_extension(ext);
if !path.is_file() {
log::info!("component `{path}` does not exist", path = path.display());
continue;
}
return Ok(Some(Component::from_file(name, &path)?));
}
Ok(None)
}
fn instantiate(&mut self, name: &str, component_name: &str) -> Result<Option<(usize, bool)>> {
if let Some(index) = self.instances.get_index_of(name) {
return Ok(Some((index, true)));
}
match self.add_component(component_name)? {
Some(component_id) => {
let (index, prev) = self
.instances
.insert_full(name.to_string(), self.graph.instantiate(component_id)?);
assert!(prev.is_none());
Ok(Some((index, false)))
}
None => {
if self.config.disallow_imports {
bail!("a dependency named `{component_name}` could not be found and instance imports are not allowed");
}
log::warn!("instance `{name}` will be imported because a dependency named `{component_name}` could not be found");
Ok(None)
}
}
}
fn find_compatible_instance(
&self,
instance: usize,
dependent: usize,
arg_name: &str,
ty: &ComponentInstanceType,
types: TypesRef,
) -> Result<Option<ExportIndex>> {
let (instance_name, instance_id) = self.instances.get_index(instance).unwrap();
let (_, component) = self.graph.get_component_of_instance(*instance_id).unwrap();
let (dependent_name, dependent_instance_id) = self.instances.get_index(dependent).unwrap();
if component.is_instance_subtype_of(ty, types) {
log::debug!("instance `{instance_name}` can be used for argument `{arg_name}` of instance `{dependent_name}`");
return Ok(None);
}
log::debug!("searching for compatible export from instance `{instance_name}` for argument `{arg_name}` of instance `{dependent_name}`");
let export = component.find_compatible_export(ty, types).ok_or_else(|| {
anyhow!(
"component `{path}` is not compatible with import `{arg_name}` of component `{dependent_path}`",
path = component.path().unwrap().display(),
dependent_path = self.graph.get_component_of_instance(*dependent_instance_id).unwrap().1.path().unwrap().display(),
)
})?;
log::debug!(
"export `{export_name}` (export index {export}) from instance `{instance_name}` can be used for argument `{arg_name}` of instance `{dependent_name}`",
export = export.0,
export_name = component.exports.get_index(export.0).unwrap().0,
);
Ok(Some(export))
}
fn resolve_export_index(
&self,
export: &str,
instance: usize,
dependent_path: &Path,
arg_name: &str,
ty: &ComponentInstanceType,
types: TypesRef,
) -> Result<ExportIndex> {
let (_, instance_id) = self.instances.get_index(instance).unwrap();
let (_, component) = self.graph.get_component_of_instance(*instance_id).unwrap();
match component.export_by_name(export) {
Some((export_index, _, kind, index)) if kind == ComponentExternalKind::Instance => {
let export_ty = component.types.component_instance_at(index).unwrap();
if !ComponentInstanceType::is_subtype_of(export_ty, component.types(), ty, types) {
bail!("component `{path}` exports an instance named `{export}` but it is not compatible with import `{arg_name}` of component `{dependent_path}`",
path = component.path().unwrap().display(),
dependent_path = dependent_path.display(),
)
}
Ok(export_index)
}
_ => bail!(
"component `{path}` does not export an instance named `{export}`",
path = component.path().unwrap().display(),
),
}
}
fn resolve_import_ref(
&self,
r: InstanceImportRef,
) -> (&Component, &str, &ComponentInstanceType) {
let component = self.graph.get_component(r.component).unwrap();
let (name, _, ty) = component.import(r.import).unwrap();
match ty {
ComponentTypeRef::Instance(index) => (
component,
name,
component
.types
.type_at(index, false)
.unwrap()
.as_component_instance_type()
.unwrap(),
),
_ => unreachable!("should not have an instance import ref to a non-instance import"),
}
}
fn process_dependency(&mut self, dependency: Dependency) -> Result<Option<(usize, bool)>> {
let name = self.config.dependency_name(&dependency.instance);
log::info!(
"processing dependency `{name}` from instance `{dependent_name}` to instance `{instance}`",
dependent_name = self.instances.get_index(dependency.dependent).unwrap().0,
instance = dependency.instance
);
match self.instantiate(&dependency.instance, name)? {
Some((instance, existing)) => {
let (dependent, import_name, import_type) =
self.resolve_import_ref(dependency.import);
let export = match &dependency.export {
Some(export) => Some(self.resolve_export_index(
export,
instance,
dependent.path().unwrap(),
import_name,
import_type,
dependent.types.as_ref(),
)?),
None => self.find_compatible_instance(
instance,
dependency.dependent,
import_name,
import_type,
dependent.types.as_ref(),
)?,
};
self.graph.connect(
self.instances[instance],
export,
self.instances[dependency.dependent],
dependency.import.import,
)?;
Ok(Some((instance, existing)))
}
None => {
if let Some(export) = &dependency.export {
bail!("an explicit export `{export}` cannot be specified for imported instance `{name}`");
}
Ok(None)
}
}
}
fn push_dependencies(&self, instance: usize, queue: &mut VecDeque<Dependency>) -> Result<()> {
let (instance_name, instance_id) = self.instances.get_index(instance).unwrap();
let config = self.config.instantiations.get(instance_name);
let (component_id, component) = self.graph.get_component_of_instance(*instance_id).unwrap();
let count = queue.len();
for (import, name, _, ty) in component.imports() {
match ty {
ComponentTypeRef::Instance(_) => {}
_ => bail!(
"component `{path}` has a non-instance import named `{name}`",
path = component.path().unwrap().display()
),
}
log::debug!("adding dependency for argument `{name}` (import index {import}) from instance `{instance_name}` to the queue", import = import.0);
let arg = config.and_then(|c| c.arguments.get(name));
queue.push_back(Dependency {
dependent: instance,
import: InstanceImportRef {
component: component_id,
import,
},
instance: arg
.map(|arg| arg.instance.clone())
.unwrap_or_else(|| name.to_string()),
export: arg.and_then(|arg| arg.export.clone()),
});
}
if let Some(config) = config {
for arg in config.arguments.keys() {
if !component.imports.contains_key(arg) {
bail!(
"component `{path}` has no import named `{arg}`",
path = component.path().unwrap().display()
);
}
}
}
if count == queue.len() && instance == 0 {
bail!(
"component `{path}` does not import any instances",
path = component.path().unwrap().display()
);
}
Ok(())
}
fn build(mut self) -> Result<(InstanceId, CompositionGraph<'a>)> {
let mut queue: VecDeque<Dependency> = VecDeque::new();
let (root_instance, existing) = self
.instantiate(ROOT_COMPONENT_NAME, ROOT_COMPONENT_NAME)?
.unwrap();
assert!(!existing);
self.push_dependencies(0, &mut queue)?;
while let Some(dependency) = queue.pop_front() {
if let Some((instance, existing)) = self.process_dependency(dependency)? {
if !existing {
self.push_dependencies(instance, &mut queue)?;
}
}
}
Ok((self.instances[root_instance], self.graph))
}
}
pub struct ComponentComposer<'a> {
component: &'a Path,
config: &'a Config,
}
impl<'a> ComponentComposer<'a> {
pub fn new(component: &'a Path, config: &'a Config) -> Self {
Self { component, config }
}
pub fn compose(&self) -> Result<Vec<u8>> {
let (root_instance, graph) =
CompositionGraphBuilder::new(self.component, self.config)?.build()?;
if graph.instances.len() == 1 {
bail!(
"no dependencies of component `{path}` were found",
path = self.component.display()
);
}
CompositionGraphEncoder::new(
EncodeOptions {
define_components: !self.config.import_components,
export: Some(root_instance),
validate: false,
},
&graph,
)
.encode()
}
}