parent
56f18964f9
commit
7cbfc2e893
@ -0,0 +1,274 @@ |
||||
//! Initializing a crate for packing `.wasm`s.
|
||||
|
||||
use bindgen; |
||||
use build; |
||||
use command::utils::{set_crate_path, create_pkg_dir}; |
||||
use emoji; |
||||
use error::Error; |
||||
use indicatif::HumanDuration; |
||||
use manifest; |
||||
use progressbar::Step; |
||||
use readme; |
||||
use slog::Logger; |
||||
use std::time::Instant; |
||||
use PBAR; |
||||
|
||||
/// Everything required to configure and run the `wasm-pack init` command.
|
||||
pub(crate) struct Build { |
||||
pub crate_path: String, |
||||
pub scope: Option<String>, |
||||
pub disable_dts: bool, |
||||
pub target: String, |
||||
pub debug: bool, |
||||
// build_config: Option<BuildConfig>,
|
||||
pub crate_name: String, |
||||
} |
||||
|
||||
/// The `BuildMode` determines which mode of initialization we are running, and
|
||||
/// what build and install steps we perform.
|
||||
pub enum BuildMode { |
||||
/// Perform all the build and install steps.
|
||||
Normal, |
||||
/// Don't install tools like `wasm-bindgen`, just use the global
|
||||
/// environment's existing versions to do builds.
|
||||
Noinstall, |
||||
} |
||||
|
||||
/// Everything required to configure and run the `wasm-pack build` command.
|
||||
#[derive(Debug,StructOpt)] |
||||
pub struct BuildOptions { |
||||
/// The path to the Rust crate.
|
||||
pub path: Option<String>, |
||||
|
||||
/// The npm scope to use in package.json, if any.
|
||||
#[structopt(long = "scope", short = "s")] |
||||
pub scope: Option<String>, |
||||
|
||||
#[structopt(long = "mode", short = "m", default_value = "normal")] |
||||
/// Sets steps to be run. [possible values: no-install, normal]
|
||||
pub mode: String, |
||||
|
||||
#[structopt(long = "no-typescript")] |
||||
/// By default a *.d.ts file is generated for the generated JS file, but
|
||||
/// this flag will disable generating this TypeScript file.
|
||||
pub disable_dts: bool, |
||||
|
||||
#[structopt(long = "target", short = "t", default_value = "browser")] |
||||
/// Sets the target environment. [possible values: browser, nodejs]
|
||||
pub target: String, |
||||
|
||||
#[structopt(long = "debug")] |
||||
/// Build without --release.
|
||||
debug: bool, |
||||
|
||||
// build config from manifest
|
||||
// build_config: Option<BuildConfig>,
|
||||
} |
||||
|
||||
impl From<BuildOptions> for Build { |
||||
fn from(build_opts: BuildOptions) -> Self { |
||||
let crate_path = set_crate_path(build_opts.path); |
||||
let crate_name = manifest::get_crate_name(&crate_path).unwrap(); |
||||
// let build_config = manifest::xxx(&crate_path).xxx();
|
||||
Build { |
||||
crate_path, |
||||
scope:build_opts.scope, |
||||
disable_dts:build_opts.disable_dts, |
||||
target:build_opts.target, |
||||
debug:build_opts.debug, |
||||
// build_config,
|
||||
crate_name, |
||||
} |
||||
} |
||||
} |
||||
|
||||
type BuildStep = fn(&mut Build, &Step, &Logger) -> Result<(), Error>; |
||||
|
||||
impl Build { |
||||
/// Execute this `Init` command.
|
||||
pub fn run(&mut self, log: &Logger, mode: BuildMode) -> Result<(), Error> { |
||||
let process_steps = Build::get_process_steps(mode); |
||||
|
||||
let mut step_counter = Step::new(process_steps.len()); |
||||
|
||||
let started = Instant::now(); |
||||
|
||||
for (_, process_step) in process_steps { |
||||
process_step(self, &step_counter, log)?; |
||||
step_counter.inc(); |
||||
} |
||||
|
||||
let duration = HumanDuration(started.elapsed()); |
||||
info!(&log, "Done in {}.", &duration); |
||||
info!( |
||||
&log, |
||||
"Your WASM pkg is ready to publish at {}/pkg.", &self.crate_path |
||||
); |
||||
|
||||
PBAR.message(&format!("{} Done in {}", emoji::SPARKLE, &duration)); |
||||
|
||||
PBAR.message(&format!( |
||||
"{} Your WASM pkg is ready to publish at {}/pkg.", |
||||
emoji::PACKAGE, |
||||
&self.crate_path |
||||
)); |
||||
Ok(()) |
||||
} |
||||
|
||||
fn get_process_steps(mode: BuildMode) -> Vec<(&'static str, BuildStep)> { |
||||
macro_rules! steps { |
||||
($($name:ident),+) => { |
||||
{ |
||||
let mut steps: Vec<(&'static str, BuildStep)> = Vec::new(); |
||||
$(steps.push((stringify!($name), Build::$name));)* |
||||
steps |
||||
} |
||||
}; |
||||
($($name:ident,)*) => (steps![$($name),*]) |
||||
} |
||||
match mode { |
||||
BuildMode::Normal => steps![ |
||||
step_check_crate_config, |
||||
step_add_wasm_target, |
||||
step_build_wasm, |
||||
step_create_dir, |
||||
step_create_json, |
||||
step_copy_readme, |
||||
step_install_wasm_bindgen, |
||||
step_run_wasm_bindgen, |
||||
], |
||||
BuildMode::Noinstall => steps![ |
||||
step_check_crate_config, |
||||
step_build_wasm, |
||||
step_create_dir, |
||||
step_create_json, |
||||
step_copy_readme, |
||||
step_run_wasm_bindgen |
||||
], |
||||
} |
||||
} |
||||
|
||||
|
||||
fn step_check_crate_config(&mut self, step: &Step, log: &Logger) -> Result<(), Error> { |
||||
info!(&log, "Checking crate configuration..."); |
||||
manifest::check_crate_config(&self.crate_path, step)?; |
||||
info!(&log, "Crate is correctly configured."); |
||||
Ok(()) |
||||
} |
||||
|
||||
fn step_add_wasm_target(&mut self, step: &Step, log: &Logger) -> Result<(), Error> { |
||||
info!(&log, "Adding wasm-target..."); |
||||
build::rustup_add_wasm_target(step)?; |
||||
info!(&log, "Adding wasm-target was successful."); |
||||
Ok(()) |
||||
} |
||||
|
||||
fn step_build_wasm(&mut self, step: &Step, log: &Logger) -> Result<(), Error> { |
||||
info!(&log, "Building wasm..."); |
||||
build::cargo_build_wasm(&self.crate_path, self.debug, step)?; |
||||
|
||||
#[cfg(not(target_os = "windows"))] |
||||
info!( |
||||
&log, |
||||
"wasm built at {}/target/wasm32-unknown-unknown/release.", &self.crate_path |
||||
); |
||||
#[cfg(target_os = "windows")] |
||||
info!( |
||||
&log, |
||||
"wasm built at {}\\target\\wasm32-unknown-unknown\\release.", &self.crate_path |
||||
); |
||||
Ok(()) |
||||
} |
||||
|
||||
fn step_create_dir(&mut self, step: &Step, log: &Logger) -> Result<(), Error> { |
||||
info!(&log, "Creating a pkg directory..."); |
||||
create_pkg_dir(&self.crate_path, step)?; |
||||
info!(&log, "Created a pkg directory at {}.", &self.crate_path); |
||||
Ok(()) |
||||
} |
||||
|
||||
fn step_create_json(&mut self, step: &Step, log: &Logger) -> Result<(), Error> { |
||||
info!(&log, "Writing a package.json..."); |
||||
manifest::write_package_json( |
||||
&self.crate_path, |
||||
&self.scope, |
||||
self.disable_dts, |
||||
&self.target, |
||||
step, |
||||
)?; |
||||
#[cfg(not(target_os = "windows"))] |
||||
info!( |
||||
&log, |
||||
"Wrote a package.json at {}/pkg/package.json.", &self.crate_path |
||||
); |
||||
#[cfg(target_os = "windows")] |
||||
info!( |
||||
&log, |
||||
"Wrote a package.json at {}\\pkg\\package.json.", &self.crate_path |
||||
); |
||||
Ok(()) |
||||
} |
||||
|
||||
fn step_copy_readme(&mut self, step: &Step, log: &Logger) -> Result<(), Error> { |
||||
info!(&log, "Copying readme from crate..."); |
||||
readme::copy_from_crate(&self.crate_path, step)?; |
||||
#[cfg(not(target_os = "windows"))] |
||||
info!( |
||||
&log, |
||||
"Copied readme from crate to {}/pkg.", &self.crate_path |
||||
); |
||||
#[cfg(target_os = "windows")] |
||||
info!( |
||||
&log, |
||||
"Copied readme from crate to {}\\pkg.", &self.crate_path |
||||
); |
||||
Ok(()) |
||||
} |
||||
|
||||
fn step_install_wasm_bindgen(&mut self, step: &Step, log: &Logger) -> Result<(), Error> { |
||||
info!(&log, "Installing wasm-bindgen-cli..."); |
||||
bindgen::cargo_install_wasm_bindgen(step)?; |
||||
info!(&log, "Installing wasm-bindgen-cli was successful."); |
||||
|
||||
info!(&log, "Getting the crate name from the manifest..."); |
||||
self.crate_name = manifest::get_crate_name(&self.crate_path)?; |
||||
#[cfg(not(target_os = "windows"))] |
||||
info!( |
||||
&log, |
||||
"Got crate name {} from the manifest at {}/Cargo.toml.", |
||||
&self.crate_name, |
||||
&self.crate_path |
||||
); |
||||
#[cfg(target_os = "windows")] |
||||
info!( |
||||
&log, |
||||
"Got crate name {} from the manifest at {}\\Cargo.toml.", |
||||
&self.crate_name, |
||||
&self.crate_path |
||||
); |
||||
Ok(()) |
||||
} |
||||
|
||||
fn step_run_wasm_bindgen(&mut self, step: &Step, log: &Logger) -> Result<(), Error> { |
||||
info!(&log, "Building the wasm bindings..."); |
||||
bindgen::wasm_bindgen_build( |
||||
&self.crate_path, |
||||
&self.crate_name, |
||||
self.disable_dts, |
||||
&self.target, |
||||
self.debug, |
||||
step, |
||||
)?; |
||||
#[cfg(not(target_os = "windows"))] |
||||
info!( |
||||
&log, |
||||
"wasm bindings were built at {}/pkg.", &self.crate_path |
||||
); |
||||
#[cfg(target_os = "windows")] |
||||
info!( |
||||
&log, |
||||
"wasm bindings were built at {}\\pkg.", &self.crate_path |
||||
); |
||||
Ok(()) |
||||
} |
||||
} |
Loading…
Reference in new issue