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
#![warn(rust_2018_idioms)]
#![allow(unknown_lints)]
const BINDGEN_VERSION: &str = env!("CARGO_PKG_VERSION");
use anyhow::{anyhow, bail, Context, Result};
use serde::{Deserialize, Serialize};
use std::convert::TryInto;
use std::io::prelude::*;
use std::{
collections::HashMap,
env,
fs::File,
path::{Path, PathBuf},
process::Command,
};
pub mod bindings;
pub mod interface;
pub mod scaffolding;
use bindings::TargetLanguage;
use interface::ComponentInterface;
use scaffolding::RustScaffolding;
pub fn generate_component_scaffolding<P: AsRef<Path>>(
udl_file: P,
config_file_override: Option<P>,
out_dir_override: Option<P>,
manifest_path_override: Option<P>,
format_code: bool,
) -> Result<()> {
let manifest_path_override = manifest_path_override.as_ref().map(|p| p.as_ref());
let config_file_override = config_file_override.as_ref().map(|p| p.as_ref());
let out_dir_override = out_dir_override.as_ref().map(|p| p.as_ref());
let udl_file = udl_file.as_ref();
let component = parse_udl(&udl_file)?;
let _config = get_config(&component, udl_file, config_file_override);
ensure_versions_compatibility(&udl_file, manifest_path_override)?;
let mut filename = Path::new(&udl_file)
.file_stem()
.ok_or_else(|| anyhow!("not a file"))?
.to_os_string();
filename.push(".uniffi.rs");
let mut out_dir = get_out_dir(&udl_file, out_dir_override)?;
out_dir.push(filename);
let mut f =
File::create(&out_dir).map_err(|e| anyhow!("Failed to create output file: {:?}", e))?;
write!(f, "{}", RustScaffolding::new(&component))
.map_err(|e| anyhow!("Failed to write output file: {:?}", e))?;
if format_code {
Command::new("rustfmt").arg(&out_dir).status()?;
}
Ok(())
}
fn ensure_versions_compatibility(
udl_file: &Path,
manifest_path_override: Option<&Path>,
) -> Result<()> {
let mut metadata_cmd = cargo_metadata::MetadataCommand::new();
match manifest_path_override {
Some(p) => {
metadata_cmd.manifest_path(p);
}
None => {
metadata_cmd.current_dir(guess_crate_root(udl_file)?);
}
};
let metadata = metadata_cmd
.exec()
.map_err(|e| anyhow!("Failed to run cargo metadata: {:?}", e))?;
let uniffi_runtime_deps: Vec<cargo_metadata::Package> = metadata
.packages
.into_iter()
.filter(|p| p.name == "uniffi")
.collect();
if uniffi_runtime_deps.is_empty() {
bail!("It looks like the crate doesn't depend on the `uniffi` runtime. Please add `uniffi` as a dependency.");
}
if uniffi_runtime_deps.len() > 1 {
bail!("It looks like the workspace depends on multiple versions of `uniffi`. Please rectify the problem and try again.");
}
let uniffi_runtime_version = uniffi_runtime_deps[0].version.to_string();
if uniffi_runtime_version != BINDGEN_VERSION {
bail!("The `uniffi` dependency version ({}) is different than `uniffi-bindgen` own version ({}). Please rectify the problem and try again.", uniffi_runtime_version, BINDGEN_VERSION);
}
Ok(())
}
pub fn generate_bindings<P: AsRef<Path>>(
udl_file: P,
config_file_override: Option<P>,
target_languages: Vec<&str>,
out_dir_override: Option<P>,
try_format_code: bool,
) -> Result<()> {
let out_dir_override = out_dir_override.as_ref().map(|p| p.as_ref());
let config_file_override = config_file_override.as_ref().map(|p| p.as_ref());
let udl_file = udl_file.as_ref();
let component = parse_udl(&udl_file)?;
let config = get_config(&component, udl_file, config_file_override)?;
let out_dir = get_out_dir(&udl_file, out_dir_override)?;
for language in target_languages {
bindings::write_bindings(
&config.bindings,
&component,
&out_dir,
language.try_into()?,
try_format_code,
false,
)?;
}
Ok(())
}
pub fn run_tests<P: AsRef<Path>>(
cdylib_dir: P,
udl_file: P,
test_scripts: Vec<&str>,
config_file_override: Option<P>,
) -> Result<()> {
let cdylib_dir = cdylib_dir.as_ref();
let udl_file = udl_file.as_ref();
let config_file_override = config_file_override.as_ref().map(|p| p.as_ref());
let component = parse_udl(&udl_file)?;
let config = get_config(&component, udl_file, config_file_override)?;
let mut language_tests: HashMap<TargetLanguage, Vec<String>> = HashMap::new();
for test_script in test_scripts {
let lang: TargetLanguage = PathBuf::from(test_script)
.extension()
.ok_or_else(|| anyhow!("File has no extension!"))?
.try_into()?;
language_tests
.entry(lang)
.or_default()
.push(test_script.to_owned());
}
for (lang, test_scripts) in language_tests {
bindings::write_bindings(&config.bindings, &component, &cdylib_dir, lang, true, true)?;
bindings::compile_bindings(&config.bindings, &component, &cdylib_dir, lang)?;
for test_script in test_scripts {
bindings::run_script(cdylib_dir, &test_script, lang)?;
}
}
Ok(())
}
fn guess_crate_root(udl_file: &Path) -> Result<&Path> {
let path_guess = udl_file
.parent()
.ok_or_else(|| anyhow!("UDL file has no parent folder!"))?
.parent()
.ok_or_else(|| anyhow!("UDL file has no grand-parent folder!"))?;
if !path_guess.join("Cargo.toml").is_file() {
bail!("UDL file does not appear to be inside a crate")
}
Ok(path_guess)
}
fn get_config(
component: &ComponentInterface,
udl_file: &Path,
config_file_override: Option<&Path>,
) -> Result<Config> {
let default_config: Config = component.into();
let config_file: Option<PathBuf> = match config_file_override {
Some(cfg) => Some(PathBuf::from(cfg)),
None => {
let crate_root = guess_crate_root(udl_file)?.join("uniffi.toml");
match crate_root.canonicalize() {
Ok(f) => Some(f),
Err(_) => None,
}
}
};
match config_file {
Some(path) => {
let contents = slurp_file(&path)
.with_context(|| format!("Failed to read config file from {:?}", &path))?;
let loaded_config: Config = toml::de::from_str(&contents)
.with_context(|| format!("Failed to generate config from file {:?}", &path))?;
Ok(loaded_config.merge_with(&default_config))
}
None => Ok(default_config),
}
}
fn get_out_dir(udl_file: &Path, out_dir_override: Option<&Path>) -> Result<PathBuf> {
Ok(match out_dir_override {
Some(s) => {
std::fs::create_dir_all(&s)?;
s.canonicalize()
.map_err(|e| anyhow!("Unable to find out-dir: {:?}", e))?
}
None => udl_file
.parent()
.ok_or_else(|| anyhow!("File has no parent directory"))?
.to_owned(),
})
}
fn parse_udl(udl_file: &Path) -> Result<ComponentInterface> {
let udl =
slurp_file(udl_file).map_err(|_| anyhow!("Failed to read UDL from {:?}", &udl_file))?;
udl.parse::<interface::ComponentInterface>()
.map_err(|e| anyhow!("Failed to parse UDL: {}", e))
}
fn slurp_file(file_name: &Path) -> Result<String> {
let mut contents = String::new();
let mut f = File::open(file_name)?;
f.read_to_string(&mut contents)?;
Ok(contents)
}
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
struct Config {
#[serde(default)]
bindings: bindings::Config,
}
impl From<&ComponentInterface> for Config {
fn from(ci: &ComponentInterface) -> Self {
Config {
bindings: ci.into(),
}
}
}
pub trait MergeWith {
fn merge_with(&self, other: &Self) -> Self;
}
impl MergeWith for Config {
fn merge_with(&self, other: &Self) -> Self {
Config {
bindings: self.bindings.merge_with(&other.bindings),
}
}
}
impl<T: Clone> MergeWith for Option<T> {
fn merge_with(&self, other: &Self) -> Self {
match (self, other) {
(Some(_), _) => self.clone(),
(None, Some(_)) => other.clone(),
(None, None) => None,
}
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_guessing_of_crate_root_directory_from_udl_file() {
let this_crate_root = PathBuf::from(std::env::var("CARGO_MANIFEST_DIR").unwrap());
let example_crate_root = this_crate_root
.parent()
.expect("should have a parent directory")
.join("./examples/arithmetic");
assert_eq!(
guess_crate_root(&example_crate_root.join("./src/arthmetic.udl")).unwrap(),
example_crate_root
);
let not_a_crate_root = &this_crate_root.join("./src/templates");
assert!(guess_crate_root(¬_a_crate_root.join("./src/example.udl")).is_err());
}
}