wasmer/src/bin/wasmer.rs

114 lines
3.1 KiB
Rust
Raw Normal View History

2018-11-06 14:51:01 +00:00
extern crate structopt;
2018-11-28 05:15:33 +00:00
extern crate wasmer;
use std::fs::File;
use std::io;
use std::io::Read;
2018-10-14 21:48:59 +00:00
use std::path::PathBuf;
use std::process::exit;
use structopt::StructOpt;
2018-11-28 05:15:33 +00:00
use wasmer::*;
#[derive(Debug, StructOpt)]
#[structopt(name = "wasmer", about = "WASM execution runtime.")]
2018-10-14 21:47:35 +00:00
/// The options for the wasmer Command Line Interface
enum CLIOptions {
/// Run a WebAssembly file. Formats accepted: wasm, wast
#[structopt(name = "run")]
2018-10-14 21:48:59 +00:00
Run(Run),
2018-11-26 05:31:32 +00:00
/// Update wasmer to the latest version
#[structopt(name = "self-update")]
SelfUpdate,
2018-10-14 21:47:35 +00:00
}
#[derive(Debug, StructOpt)]
struct Run {
#[structopt(short = "d", long = "debug")]
debug: bool,
2018-12-06 11:32:53 +00:00
/// Input file
#[structopt(parse(from_os_str))]
path: PathBuf,
2018-12-06 11:32:53 +00:00
/// Application arguments
#[structopt(name = "--", raw(multiple="true"))]
args: Vec<String>,
}
2018-12-06 11:32:53 +00:00
2018-10-14 21:48:59 +00:00
/// Read the contents of a file
2018-11-15 08:50:54 +00:00
fn read_file_contents(path: &PathBuf) -> Result<Vec<u8>, io::Error> {
let mut buffer: Vec<u8> = Vec::new();
let mut file = File::open(path)?;
file.read_to_end(&mut buffer)?;
Ok(buffer)
}
/// Execute a WASM/WAT file
2018-12-06 11:32:53 +00:00
fn execute_wasm(options: &Run) -> Result<(), String> {
let wasm_path = &options.path;
let mut wasm_binary: Vec<u8> = read_file_contents(wasm_path).map_err(|err| {
2018-11-15 21:31:37 +00:00
format!(
"Can't read the file {}: {}",
wasm_path.as_os_str().to_string_lossy(),
err
)
})?;
2018-12-06 11:32:53 +00:00
if !webassembly::utils::is_wasm_binary(&wasm_binary) {
2018-11-15 21:31:37 +00:00
wasm_binary = wabt::wat2wasm(wasm_binary)
.map_err(|err| format!("Can't convert from wast to wasm: {:?}", err))?;
}
2018-12-06 11:32:53 +00:00
// TODO: We should instantiate after compilation, so we provide the
// emscripten environment conditionally based on the module
2018-11-20 19:11:58 +00:00
let import_object = apis::generate_emscripten_env();
let isa = webassembly::get_isa();
debug!("webassembly - creating module");
let module = webassembly::compile(wasm_binary).map_err(|err| format!("Can't create the WebAssembly module: {}", err))?;
let instance_options = webassembly::InstanceOptions {
mock_missing_imports: true,
mock_missing_globals: true,
mock_missing_tables: true,
use_emscripten: apis::is_emscripten_module(&module),
show_progressbar: true,
isa: isa,
};
debug!("webassembly - creating instance");
let mut instance = webassembly::Instance::new(
&module,
import_object,
instance_options,
).map_err(|err| format!("Can't instantiate the WebAssembly module: {}", err))?;
2018-11-07 10:47:06 +00:00
2018-12-11 00:23:14 +00:00
webassembly::start_instance(&module, &mut instance, options.path.to_str().unwrap(), options.args.iter().map(|arg| arg.as_str()).collect())
}
2018-10-14 21:47:35 +00:00
fn run(options: Run) {
2018-12-06 11:32:53 +00:00
match execute_wasm(&options) {
Ok(()) => {}
Err(message) => {
2018-11-15 08:50:54 +00:00
// let name = options.path.as_os_str().to_string_lossy();
println!("{}", message);
exit(1);
}
}
}
2018-10-14 21:47:35 +00:00
fn main() {
let options = CLIOptions::from_args();
match options {
CLIOptions::Run(options) => run(options),
2018-11-26 05:31:32 +00:00
CLIOptions::SelfUpdate => update::self_update(),
2018-10-14 21:47:35 +00:00
}
}