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
mod lib;

use argh::FromArgs;
use cargo_metadata::camino::Utf8PathBuf;

use lib::{build, default_build_dir, Profile, Target};

/// Build the web-viewer.
#[derive(FromArgs)]
#[argh(subcommand, name = "build-web-viewer")]
pub struct Args {
    /// compile for release and run wasm-opt.
    ///
    /// Mutually exclusive with `--debug`.
    /// NOTE: --release also removes debug symbols which are otherwise useful for in-browser profiling.
    #[argh(switch)]
    release: bool,

    /// compile for debug and don't run wasm-opt.
    ///
    /// Mutually exclusive with `--release`.
    #[argh(switch)]
    debug: bool,

    /// keep debug symbols, even in release builds.
    /// This gives better callstacks on panics, and also allows for in-browser profiling of the Wasm.
    #[argh(switch, short = 'g')]
    debug_symbols: bool,

    /// target to build for.
    #[argh(option, short = 't', long = "target", default = "Target::Browser")]
    target: Target,

    /// set the output directory. This is a path relative to the cargo workspace root.
    #[argh(option, short = 'o', long = "out")]
    build_dir: Option<Utf8PathBuf>,

    /// comma-separated list of features to pass on to `re_viewer`
    #[argh(option, short = 'F', long = "features", default = "default_features()")]
    features: String,

    /// whether to exclude default features from `re_viewer` wasm build
    #[argh(switch, long = "no-default-features")]
    no_default_features: bool,
}

fn default_features() -> String {
    "analytics".to_owned()
}

pub fn main(args: Args) -> anyhow::Result<()> {
    let profile = if args.release && !args.debug {
        Profile::Release
    } else if !args.release && args.debug {
        Profile::Debug
    } else {
        return Err(anyhow::anyhow!(
            "Exactly one of --release or --debug must be set"
        ));
    };

    let build_dir = args.build_dir.unwrap_or_else(default_build_dir);

    build(
        profile,
        args.debug_symbols,
        args.target,
        &build_dir,
        args.no_default_features,
        &args.features,
    )
}