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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
use BINARY_FOLDER_NAME;
use CARGO;
use Cultures;
use Error;
use EXE_FILE_EXTENSION;
use MSI_FILE_EXTENSION;
use Platform;
use Result;
use semver::Version;
use std::env;
use std::io::ErrorKind;
use std::path::PathBuf;
use std::process::{Command, Stdio};
use TARGET_FOLDER_NAME;
use toml::Value;
use WIX;
use WIX_COMPILER;
use WIX_LINKER;
use WIX_OBJECT_FILE_EXTENSION;
use WIX_PATH_KEY;
use WIX_SOURCE_FILE_EXTENSION;
use WIX_SOURCE_FILE_NAME;
#[derive(Debug, Clone)]
pub struct Builder<'a> {
bin_path: Option<&'a str>,
capture_output: bool,
culture: Cultures,
input: Option<&'a str>,
locale: Option<&'a str>,
name: Option<&'a str>,
no_build: bool,
output: Option<&'a str>,
version: Option<&'a str>,
}
impl<'a> Builder<'a> {
pub fn new() -> Self {
Builder {
bin_path: None,
capture_output: true,
culture: Cultures::EnUs,
input: None,
locale: None,
name: None,
no_build: false,
output: None,
version: None,
}
}
pub fn bin_path(&mut self, b: Option<&'a str>) -> &mut Self {
self.bin_path = b;
self
}
pub fn capture_output(&mut self, c: bool) -> &mut Self {
self.capture_output = c;
self
}
pub fn culture(&mut self, c: Cultures) -> &mut Self {
self.culture = c;
self
}
pub fn input(&mut self, i: Option<&'a str>) -> &mut Self {
self.input = i;
self
}
pub fn locale(&mut self, l: Option<&'a str>) -> &mut Self {
self.locale = l;
self
}
pub fn name(&mut self, p: Option<&'a str>) -> &mut Self {
self.name = p;
self
}
pub fn no_build(&mut self, n: bool) -> &mut Self {
self.no_build = n;
self
}
pub fn output(&mut self, o: Option<&'a str>) -> &mut Self {
self.output = o;
self
}
pub fn version(&mut self, v: Option<&'a str>) -> &mut Self {
self.version = v;
self
}
pub fn build(&mut self) -> Execution {
Execution {
bin_path: self.bin_path.map(PathBuf::from),
capture_output: self.capture_output,
culture: self.culture.clone(),
input: self.input.map(PathBuf::from),
locale: self.locale.map(PathBuf::from),
name: self.name.map(String::from),
no_build: self.no_build,
output: self.output.map(PathBuf::from),
version: self.version.map(String::from),
}
}
}
impl<'a> Default for Builder<'a> {
fn default() -> Self {
Builder::new()
}
}
#[derive(Debug)]
pub struct Execution {
bin_path: Option<PathBuf>,
capture_output: bool,
culture: Cultures,
input: Option<PathBuf>,
locale: Option<PathBuf>,
name: Option<String>,
no_build: bool,
output: Option<PathBuf>,
version: Option<String>,
}
impl Execution {
pub fn run(self) -> Result<()> {
debug!("bin_path = {:?}", self.bin_path);
debug!("capture_output = {:?}", self.capture_output);
debug!("culture = {:?}", self.culture);
debug!("input = {:?}", self.input);
debug!("locale = {:?}", self.locale);
debug!("name = {:?}", self.name);
debug!("no_build = {:?}", self.no_build);
debug!("output = {:?}", self.output);
debug!("version = {:?}", self.version);
let manifest = super::manifest(None)?;
let name = self.name(&manifest)?;
debug!("name = {:?}", name);
let version = self.version(&manifest)?;
debug!("version = {:?}", version);
let locale = self.locale()?;
debug!("locale = {:?}", locale);
let platform = self.platform();
debug!("platform = {:?}", platform);
let source_wxs = self.wxs_source()?;
debug!("source_wxs = {:?}", source_wxs);
let source_wixobj = self.source_wixobj();
debug!("source_wixobj = {:?}", source_wixobj);
let destination_msi = self.destination_msi(&name, &version, &platform);
debug!("destination_msi = {:?}", destination_msi);
if self.no_build {
warn!("Skipped building the release binary");
} else {
info!("Building the release binary");
let mut builder = Command::new(CARGO);
debug!("builder = {:?}", builder);
if self.capture_output {
trace!("Capturing the '{}' output", CARGO);
builder.stdout(Stdio::null());
builder.stderr(Stdio::null());
}
let status = builder.arg("build").arg("--release").status()?;
if !status.success() {
return Err(Error::Command(CARGO, status.code().unwrap_or(100)));
}
}
info!("Compiling the installer");
let mut compiler = self.compiler()?;
debug!("compiler = {:?}", compiler);
if self.capture_output {
trace!("Capturing the '{}' output", WIX_COMPILER);
compiler.stdout(Stdio::null());
compiler.stderr(Stdio::null());
}
compiler.arg(format!("-dVersion={}", version))
.arg(format!("-dPlatform={}", platform))
.arg("-o")
.arg(&source_wixobj)
.arg(&source_wxs);
debug!("command = {:?}", compiler);
let status = compiler.status().map_err(|err| {
if err.kind() == ErrorKind::NotFound {
Error::Generic(format!(
"The compiler application ({}) could not be found in the PATH environment \
variable. Please check the WiX Toolset (http://wixtoolset.org/) is \
installed and check the WiX Toolset's '{}' folder has been added to the PATH \
system environment variable, the {} system environment variable exists, or use \
the '-b,--bin-path' command line argument.",
WIX_COMPILER,
BINARY_FOLDER_NAME,
WIX_PATH_KEY
))
} else {
err.into()
}
})?;
if !status.success() {
return Err(Error::Command(WIX_COMPILER, status.code().unwrap_or(100)));
}
info!("Linking the installer");
let mut linker = self.linker()?;
debug!("linker = {:?}", linker);
if self.capture_output {
trace!("Capturing the '{}' output", WIX_LINKER);
linker.stdout(Stdio::null());
linker.stderr(Stdio::null());
}
if let Some(l) = locale {
trace!("Using the a WiX localization file");
linker.arg("-loc").arg(l);
}
linker.arg("-ext")
.arg("WixUIExtension")
.arg(format!("-cultures:{}", self.culture))
.arg(&source_wixobj)
.arg("-out")
.arg(&destination_msi);
debug!("command = {:?}", linker);
let status = linker.status().map_err(|err| {
if err.kind() == ErrorKind::NotFound {
Error::Generic(format!(
"The linker application ({}) could not be found in the PATH environment \
variable. Please check the WiX Toolset (http://wixtoolset.org/) is \
installed and check the WiX Toolset's '{}' folder has been added to the PATH \
environment variable, the {} system environment variable exists, or use the \
'-b,--bin-path' command line argument.",
WIX_LINKER,
BINARY_FOLDER_NAME,
WIX_PATH_KEY
))
} else {
err.into()
}
})?;
if !status.success() {
return Err(Error::Command(WIX_LINKER, status.code().unwrap_or(100)));
}
Ok(())
}
fn compiler(&self) -> Result<Command> {
if let Some(mut path) = self.bin_path.as_ref().map(|s| {
let mut p = PathBuf::from(s);
trace!(
"Using the '{}' path to the WiX Toolset's '{}' folder for the compiler",
p.display(),
BINARY_FOLDER_NAME
);
p.push(WIX_COMPILER);
p.set_extension(EXE_FILE_EXTENSION);
p
}) {
if !path.exists() {
path.pop(); Err(Error::Generic(format!(
"The compiler application ('{}') does not exist at the '{}' path specified via \
the '-b,--bin-path' command line argument. Please check the path is correct and \
the compiler application exists at the path.",
WIX_COMPILER,
path.display()
)))
} else {
Ok(Command::new(path))
}
} else {
if let Some(mut path) = env::var_os(WIX_PATH_KEY).map(|s| {
let mut p = PathBuf::from(s);
trace!(
"Using the '{}' path to the WiX Toolset's '{}' folder for the compiler",
p.display(),
BINARY_FOLDER_NAME
);
p.push(BINARY_FOLDER_NAME);
p.push(WIX_COMPILER);
p.set_extension(EXE_FILE_EXTENSION);
p
}) {
if !path.exists() {
path.pop(); Err(Error::Generic(format!(
"The compiler application ('{}') does not exist at the '{}' path specified \
via the {} environment variable. Please check the path is correct and the \
compiler application exists at the path.",
WIX_COMPILER,
path.display(),
WIX_PATH_KEY
)))
} else {
Ok(Command::new(path))
}
} else {
Ok(Command::new(WIX_COMPILER))
}
}
}
fn locale(&self) -> Result<Option<PathBuf>> {
if let Some(locale) = self.locale.as_ref().map(PathBuf::from) {
if locale.exists() {
Ok(Some(locale))
} else {
Err(Error::Generic(format!(
"The '{}' WiX localization file could not be found, or it does not exist. \
Please check the path is correct and the file exists.",
locale.display()
)))
}
} else {
Ok(None)
}
}
fn linker(&self) -> Result<Command> {
if let Some(mut path) = self.bin_path.as_ref().map(|s| {
let mut p = PathBuf::from(s);
trace!(
"Using the '{}' path to the WiX Toolset '{}' folder for the linker",
p.display(),
BINARY_FOLDER_NAME
);
p.push(WIX_LINKER);
p.set_extension(EXE_FILE_EXTENSION);
p
}) {
if !path.exists() {
path.pop(); Err(Error::Generic(format!(
"The linker application ('{}') does not exist at the '{}' path specified via \
the '-b,--bin-path' command line argument. Please check the path is correct \
and the linker application exists at the path.",
WIX_LINKER,
path.display()
)))
} else {
Ok(Command::new(path))
}
} else {
if let Some(mut path) = env::var_os(WIX_PATH_KEY).map(|s| {
let mut p = PathBuf::from(s);
trace!(
"Using the '{}' path to the WiX Toolset's '{}' folder for the linker",
p.display(),
BINARY_FOLDER_NAME
);
p.push(BINARY_FOLDER_NAME);
p.push(WIX_LINKER);
p.set_extension(EXE_FILE_EXTENSION);
p
}) {
if !path.exists() {
path.pop(); Err(Error::Generic(format!(
"The linker application ('{}') does not exist at the '{}' path specified \
via the {} environment variable. Please check the path is correct and the \
linker application exists at the path.",
WIX_LINKER,
path.display(),
WIX_PATH_KEY
)))
} else {
Ok(Command::new(path))
}
} else {
Ok(Command::new(WIX_LINKER))
}
}
}
fn platform(&self) -> Platform {
if cfg!(target_arch = "x86_64") {
Platform::X64
} else {
Platform::X86
}
}
fn name(&self, manifest: &Value) -> Result<String> {
if let Some(ref p) = self.name {
Ok(p.to_owned())
} else {
manifest.get("package")
.and_then(|p| p.as_table())
.and_then(|t| t.get("name"))
.and_then(|n| n.as_str())
.map(String::from)
.ok_or(Error::Manifest("name"))
}
}
fn destination_msi(&self, name: &str, version: &Version, platform: &Platform) -> PathBuf {
if let Some(ref o) = self.output {
PathBuf::from(o)
} else {
let mut destination_msi = PathBuf::from(TARGET_FOLDER_NAME);
destination_msi.push(WIX);
destination_msi.push(&format!(
"{}-{}-{}.{}",
name,
version,
platform.arch(),
MSI_FILE_EXTENSION
));
destination_msi
}
}
fn source_wixobj(&self) -> PathBuf {
let mut source_wixobj = PathBuf::from(TARGET_FOLDER_NAME);
source_wixobj.push(WIX);
source_wixobj.push(WIX_SOURCE_FILE_NAME);
source_wixobj.set_extension(WIX_OBJECT_FILE_EXTENSION);
source_wixobj
}
fn wxs_source(&self) -> Result<PathBuf> {
if let Some(p) = self.input.as_ref().map(|s| PathBuf::from(s)) {
if p.exists() {
if p.is_dir() {
Err(Error::Generic(format!(
"The '{}' path is not a file. Please check the path and ensure it is to \
a WiX Source (wxs) file.",
p.display()
)))
} else {
trace!("Using the '{}' WiX source file", p.display());
Ok(p)
}
} else {
Err(Error::Generic(format!(
"The '{0}' file does not exist. Consider using the 'cargo \
wix print WXS > {0}' command to create it.",
p.display()
)))
}
} else {
trace!("Using the default WiX source file");
let mut main_wxs = PathBuf::from(WIX);
main_wxs.push(WIX_SOURCE_FILE_NAME);
main_wxs.set_extension(WIX_SOURCE_FILE_EXTENSION);
if main_wxs.exists() {
Ok(main_wxs)
} else {
Err(Error::Generic(format!(
"The '{0}' file does not exist. Consider using the 'cargo wix init' command to \
create it.",
main_wxs.display()
)))
}
}
}
fn version(&self, manifest: &Value) -> Result<Version> {
if let Some(ref v) = self.version {
Version::parse(v).map_err(Error::from)
} else {
manifest.get("package")
.and_then(|p| p.as_table())
.and_then(|t| t.get("version"))
.and_then(|v| v.as_str())
.ok_or(Error::Manifest("version"))
.and_then(|s| Version::parse(s).map_err(Error::from))
}
}
}
impl Default for Execution {
fn default() -> Self {
Builder::new().build()
}
}
#[cfg(test)]
mod tests {
use super::*;
mod builder {
use super::*;
#[test]
fn defaults_are_correct() {
let actual = Builder::new();
assert!(actual.bin_path.is_none());
assert!(actual.capture_output);
assert_eq!(actual.culture, Cultures::EnUs);
assert!(actual.input.is_none());
assert!(actual.locale.is_none());
assert!(actual.name.is_none());
assert!(!actual.no_build);
assert!(actual.output.is_none());
assert!(actual.version.is_none());
}
#[test]
fn bin_path_works() {
const EXPECTED: &str = "C:\\Wix Toolset\\bin";
let mut actual = Builder::new();
actual.bin_path(Some(EXPECTED));
assert_eq!(actual.bin_path, Some(EXPECTED));
}
#[test]
fn capture_output_works() {
let mut actual = Builder::new();
actual.capture_output(false);
assert!(!actual.capture_output);
}
#[test]
fn culture_works() {
const EXPECTED: Cultures = Cultures::FrFr;
let mut actual = Builder::new();
actual.culture(EXPECTED);
assert_eq!(actual.culture, EXPECTED);
}
#[test]
fn input_works() {
const EXPECTED: &str = "C:\\tmp\\hello_world\\wix\\main.wxs";
let mut actual = Builder::new();
actual.input(Some(EXPECTED));
assert_eq!(actual.input, Some(EXPECTED));
}
#[test]
fn locale_works() {
const EXPECTED: &str = "C:\\tmp\\hello_world\\wix\\main.wxl";
let mut actual = Builder::new();
actual.locale(Some(EXPECTED));
assert_eq!(actual.locale, Some(EXPECTED));
}
#[test]
fn name_works() {
const EXPECTED: &str = "Name";
let mut actual = Builder::new();
actual.name(Some(EXPECTED));
assert_eq!(actual.name, Some(EXPECTED));
}
#[test]
fn no_build_works() {
let mut actual = Builder::new();
actual.no_build(true);
assert!(actual.no_build);
}
#[test]
fn output_works() {
const EXPECTED: &str = "C:\\tmp\\hello_world\\output";
let mut actual = Builder::new();
actual.output(Some(EXPECTED));
assert_eq!(actual.output, Some(EXPECTED));
}
#[test]
fn version_works() {
const EXPECTED: &str = "1.2.3";
let mut actual = Builder::new();
actual.version(Some(EXPECTED));
assert_eq!(actual.version, Some(EXPECTED));
}
#[test]
fn build_with_defaults_works() {
let mut b = Builder::new();
let default_execution = b.build();
assert!(default_execution.bin_path.is_none());
assert!(default_execution.capture_output);
assert_eq!(default_execution.culture, Cultures::EnUs);
assert!(default_execution.input.is_none());
assert!(default_execution.locale.is_none());
assert!(default_execution.name.is_none());
assert!(!default_execution.no_build);
assert!(default_execution.output.is_none());
assert!(default_execution.version.is_none());
}
#[test]
fn build_with_all_works() {
const EXPECTED_BIN_PATH: &str = "C:\\Wix Toolset\\bin";
const EXPECTED_CULTURE: Cultures = Cultures::FrFr;
const EXPECTED_INPUT: &str = "C:\\tmp\\hello_world\\wix\\main.wxs";
const EXPECTED_LOCALE: &str = "C:\\tmp\\hello_world\\wix\\main.wxl";
const EXPECTED_NAME: &str = "Name";
const EXPECTED_OUTPUT: &str = "C:\\tmp\\hello_world\\output";
const EXPECTED_VERSION: &str = "1.2.3";
let mut b = Builder::new();
b.bin_path(Some(EXPECTED_BIN_PATH));
b.capture_output(false);
b.culture(EXPECTED_CULTURE);
b.input(Some(EXPECTED_INPUT));
b.locale(Some(EXPECTED_LOCALE));
b.name(Some(EXPECTED_NAME));
b.no_build(true);
b.output(Some(EXPECTED_OUTPUT));
b.version(Some(EXPECTED_VERSION));
let execution = b.build();
assert_eq!(execution.bin_path, Some(EXPECTED_BIN_PATH).map(PathBuf::from));
assert!(!execution.capture_output);
assert_eq!(execution.culture, EXPECTED_CULTURE);
assert_eq!(execution.input, Some(EXPECTED_INPUT).map(PathBuf::from));
assert_eq!(execution.locale, Some(EXPECTED_LOCALE).map(PathBuf::from));
assert_eq!(execution.name, Some(EXPECTED_NAME).map(String::from));
assert!(execution.no_build);
assert_eq!(execution.output, Some(EXPECTED_OUTPUT).map(PathBuf::from));
assert_eq!(execution.version, Some(EXPECTED_VERSION).map(String::from));
}
}
mod execution {
extern crate tempfile;
use super::*;
#[test]
fn compiler_is_correct_with_defaults() {
let expected = Command::new(env::var_os(WIX_PATH_KEY).map(|s| {
let mut p = PathBuf::from(s);
p.push(BINARY_FOLDER_NAME);
p.push(WIX_COMPILER);
p.set_extension(EXE_FILE_EXTENSION);
p
}).unwrap());
let e = Execution::default();
let actual = e.compiler().unwrap();
assert_eq!(format!("{:?}", actual), format!("{:?}", expected));
}
}
}