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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
use std::{
ffi::{OsStr, OsString},
fmt::{self, Debug, Formatter},
fs::File,
io::{Seek, Write},
path::{Path, PathBuf},
process::{Command, Stdio},
str::FromStr,
};
use anyhow::{Context as _, Error};
use walkdir::{DirEntry, WalkDir};
use zip::write::{FileOptions, ZipWriter};
use crate::BulkCopy;
#[derive(Debug, structopt::StructOpt)]
pub struct Dist {
#[structopt(short, long, help = "A list of components to exclude")]
exclude: Vec<String>,
#[structopt(possible_values = Component::POSSIBLE_VALUES)]
requested_components: Vec<String>,
}
impl Dist {
pub fn run(self) -> Result<(), Error> {
log::info!("Generating release artifacts");
let components = self.components()?;
let cargo = std::env::var_os("CARGO")
.unwrap_or_else(|| OsString::from("cargo"));
let project_root = crate::project_root()?;
let target_dir = project_root.join("target");
let dist = target_dir.join("dist");
clear_directory(&dist).context("Unable to clear the dist directory")?;
let ctx = Context {
cargo,
project_root,
target_dir,
dist,
};
for component in components {
log::info!("Running \"{}\"", component.name);
(component.execute)(&ctx)?;
}
generate_archive(&ctx).context("Unable to generate the zip archive")?;
Ok(())
}
fn components(&self) -> Result<Vec<Component>, Error> {
let mut all_components = if self.requested_components.is_empty() {
Component::POSSIBLE_VALUES
.iter()
.map(ToString::to_string)
.collect()
} else {
self.requested_components.clone()
};
all_components.retain(|name| !self.exclude.contains(name));
all_components
.into_iter()
.map(|name| Component::from_str(&name))
.collect()
}
}
#[derive(Debug, Clone)]
struct Context {
cargo: OsString,
project_root: PathBuf,
target_dir: PathBuf,
dist: PathBuf,
}
type ComponentFunc = fn(&Context) -> Result<(), Error>;
pub struct Component {
name: String,
execute: Box<dyn Fn(&Context) -> Result<(), Error>>,
function_name: &'static str,
}
impl Component {
pub const POSSIBLE_VALUES: &'static [&'static str] =
&["rune", "examples", "strip", "docs"];
fn new<I, F>(name: I, execute: F) -> Self
where
I: Into<String>,
F: Fn(&Context) -> Result<(), Error> + 'static,
{
Component {
name: name.into(),
execute: Box::new(execute),
function_name: std::any::type_name::<F>(),
}
}
}
impl Debug for Component {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
let Component {
name,
execute: _,
function_name,
} = self;
f.debug_struct("Component")
.field("name", name)
.field("execute", function_name)
.finish()
}
}
impl FromStr for Component {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let func = match s {
"strip" => strip_binaries as ComponentFunc,
"examples" => compile_example_runes as ComponentFunc,
"rune" => compile_rune_binary as ComponentFunc,
"docs" => copy_docs as ComponentFunc,
_ => anyhow::bail!(
"Expected one of \"{}\" but found \"{}\"",
Component::POSSIBLE_VALUES.join("\", \""),
s,
),
};
Ok(Component::new(s, func))
}
}
fn copy_docs(ctx: &Context) -> Result<(), Error> {
let Context {
project_root, dist, ..
} = ctx;
std::fs::copy(project_root.join("README.md"), dist.join("README.md"))
.context("Unable to copy the README across")?;
BulkCopy::new(&["*.md"])?
.with_max_depth(1)
.copy(project_root.join(""), dist)?;
Ok(())
}
fn strip_binaries(ctx: &Context) -> Result<(), Error> {
if cfg!(windows) {
return Ok(());
}
let dist = &ctx.dist;
log::debug!("Stripping binaries");
for entry in dist
.read_dir()
.context("Unable to read the dist/ directory")?
{
let entry = entry?;
let path = entry.path();
if !is_strippable(&path) {
continue;
}
if let Err(e) = strip_binary(&path) {
log::warn!(
"Running the `strip` command on \"{}\" failed: {:?}",
path.display(),
e,
);
}
}
Ok(())
}
fn strip_binary(path: &Path) -> Result<(), Error> {
let mut cmd = Command::new("strip");
cmd.arg(&path).arg("--strip-debug");
log::debug!("Executing {:?}", cmd);
let status = cmd.status().context("Unable to execute `strip`")?;
anyhow::ensure!(status.success(), "Strip returned a non-zero exit code");
Ok(())
}
fn is_strippable(path: &Path) -> bool {
if !path.is_file() {
return false;
}
let ext = match path.extension() {
Some(ext) => ext,
None => return true,
};
let ext = match ext.to_str() {
Some(ext) => ext.to_lowercase(),
None => return false,
};
let whitelist = &["a", "exe", "dll", "so"];
whitelist.contains(&ext.as_str())
}
fn generate_archive(ctx: &Context) -> Result<(), Error> {
let Context {
target_dir, dist, ..
} = ctx;
let name = archive_name(target_dir)?;
log::info!("Writing the release archive to \"{}\"", name.display());
let f = File::create(&name).with_context(|| {
format!("Unable to open \"{}\" for writing", name.display())
})?;
let mut writer = ZipWriter::new(f);
for entry in WalkDir::new(dist).into_iter().filter_map(|e| e.ok()) {
let path = entry.path();
log::debug!("Adding \"{}\" to the archive", path.display());
if !entry.file_type().is_file() {
continue;
}
add_entry_to_archive(&mut writer, dist, &entry).with_context(|| {
format!("Unable to add \"{}\" to the archive", path.display())
})?;
}
writer.finish()?;
Ok(())
}
fn add_entry_to_archive<W>(
writer: &mut ZipWriter<W>,
base: &Path,
entry: &DirEntry,
) -> Result<(), Error>
where
W: Write + Seek,
{
let path = entry.path();
let name = path.strip_prefix(base)?;
writer.start_file(name.display().to_string(), FileOptions::default())?;
let mut reader = File::open(path)?;
std::io::copy(&mut reader, writer)?;
writer.flush()?;
Ok(())
}
fn archive_name(target_dir: &Path) -> Result<PathBuf, Error> {
let mut cmd = Command::new("rustc");
cmd.arg("--version").arg("--verbose");
log::debug!("Executing {:?}", cmd);
let output = cmd
.stdout(Stdio::piped())
.stderr(Stdio::inherit())
.output()
.context("Unable to invoke cargo")?;
log::debug!("Output: {:?}", output);
if !output.status.success() {
anyhow::bail!("Rustc failed");
}
let stdout = String::from_utf8_lossy(&output.stdout);
let target_triple = stdout
.lines()
.filter_map(|line| {
if line.contains("host") {
line.split(' ').nth(1)
} else {
None
}
})
.next()
.context("Unable to determine the target triple")?;
let name = format!("rune.{}.zip", target_triple.trim());
Ok(target_dir.join(name))
}
fn compile_example_runes(ctx: &Context) -> Result<(), Error> {
let Context {
cargo,
project_root,
dist,
..
} = ctx;
let example_dir = project_root.join("examples");
let destination_dir = dist.join("examples");
let copy = BulkCopy::new(&[
"**/Runefile.yml",
"*.tflite",
"*.csv",
"*.wav",
"*.png",
"*.md",
])?
.with_blacklist(&["**/rune-rs/*"])?;
for entry in example_dir
.read_dir()
.context("Unable to read the examples directory")?
{
let dir = entry.context("Unable to read the dir entry")?;
let runefile = dir.path().join("Runefile.yml");
if !runefile.exists() {
continue;
}
let name = dir.file_name();
let example = destination_dir.join(&name);
log::info!("Compiling the \"{}\" rune", name.to_string_lossy());
compile_example_rune(cargo, &name, &runefile, &example, project_root)?;
log::info!("Copying example artifacts across");
copy.copy(dir.path(), example)
.context("Unable to copy example artifacts across")?;
}
Ok(())
}
fn compile_example_rune(
cargo: &OsStr,
name: &OsStr,
runefile: &Path,
example: &Path,
project_root: &Path,
) -> Result<(), Error> {
let generated_code = example.join("rust");
let rune = example.join(&name).with_extension("rune");
let mut cmd = Command::new(cargo);
cmd.arg("run")
.arg("--release")
.arg("--package=hotg-rune-cli")
.arg("--bin=rune")
.arg("--")
.arg("build")
.arg(&runefile)
.arg("--cache-dir")
.arg(&generated_code)
.arg("--output")
.arg(rune)
.arg("--unstable")
.arg("--rune-repo-dir")
.arg(project_root);
log::debug!("Executing {:?}", cmd);
let status = cmd.status().context("Unable to run `rune build`")?;
anyhow::ensure!(status.success(), "Building the rune failed");
let mut cmd = Command::new(cargo);
cmd.arg("clean")
.arg("--manifest-path")
.arg(generated_code.join("Cargo.toml"));
log::debug!("Executing {:?}", cmd);
let status = cmd.status().context("Unable to run `rune build`")?;
anyhow::ensure!(status.success(), "Building the rune failed");
Ok(())
}
fn compile_rune_binary(ctx: &Context) -> Result<(), Error> {
let Context {
cargo,
target_dir,
dist,
project_root,
..
} = ctx;
log::info!("Compiling the `rune` binary");
let mut cmd = Command::new(cargo);
cmd.arg("build")
.arg("--package=hotg-rune-cli")
.arg("--release")
.current_dir(project_root);
log::debug!("Executing {:?}", cmd);
let status = cmd.status().context("Unable to invoke `cargo`")?;
log::debug!("Executing {:?}", cmd);
anyhow::ensure!(status.success(), "`cargo build` failed");
BulkCopy::new(&["**/rune", "**/rune.exe"])?
.with_max_depth(1)
.with_blacklist(&["*.d"])?
.copy(target_dir.join("release"), dist)
.context(
"Unable to copy pre-compiled binaries into the dist directory",
)?;
Ok(())
}
fn clear_directory<P: AsRef<Path>>(directory: P) -> Result<(), Error> {
let directory = directory.as_ref();
match std::fs::remove_dir_all(directory) {
Ok(_) => {},
Err(e) if e.kind() == std::io::ErrorKind::NotFound => {
},
Err(e) => return Err(e.into()),
}
std::fs::create_dir_all(directory)?;
Ok(())
}