2018-11-06 14:51:01 +00:00
|
|
|
extern crate structopt;
|
2018-10-11 19:29:36 +00:00
|
|
|
|
|
|
|
use std::fs::File;
|
|
|
|
use std::io;
|
|
|
|
use std::io::Read;
|
2018-10-14 21:48:59 +00:00
|
|
|
use std::path::PathBuf;
|
2018-10-11 19:29:36 +00:00
|
|
|
use std::process::exit;
|
|
|
|
|
|
|
|
use structopt::StructOpt;
|
|
|
|
|
2019-01-19 06:28:41 +00:00
|
|
|
use wasmer::webassembly::InstanceABI;
|
2018-11-28 05:15:33 +00:00
|
|
|
use wasmer::*;
|
2019-01-11 05:37:59 +00:00
|
|
|
use wasmer_emscripten;
|
2018-10-11 19:29:36 +00:00
|
|
|
|
|
|
|
#[derive(Debug, StructOpt)]
|
2019-01-19 06:28:41 +00:00
|
|
|
#[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 {
|
2018-10-11 19:29:36 +00:00
|
|
|
#[structopt(short = "d", long = "debug")]
|
|
|
|
debug: bool,
|
2018-12-06 11:32:53 +00:00
|
|
|
|
2018-10-11 19:29:36 +00:00
|
|
|
/// Input file
|
|
|
|
#[structopt(parse(from_os_str))]
|
|
|
|
path: PathBuf,
|
2018-12-06 11:32:53 +00:00
|
|
|
|
|
|
|
/// Application arguments
|
2018-12-15 06:46:11 +00:00
|
|
|
#[structopt(name = "--", raw(multiple = "true"))]
|
2018-12-06 11:32:53 +00:00
|
|
|
args: Vec<String>,
|
2018-10-11 19:29:36 +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> {
|
2018-10-11 19:29:36 +00:00
|
|
|
let mut buffer: Vec<u8> = Vec::new();
|
|
|
|
let mut file = File::open(path)?;
|
|
|
|
file.read_to_end(&mut buffer)?;
|
2018-12-28 12:59:55 +00:00
|
|
|
// We force to close the file
|
|
|
|
drop(file);
|
2018-10-11 19:29:36 +00:00
|
|
|
Ok(buffer)
|
|
|
|
}
|
|
|
|
|
2019-01-19 06:28:41 +00:00
|
|
|
/// 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
|
|
|
|
2018-10-11 19:29:36 +00:00
|
|
|
if !webassembly::utils::is_wasm_binary(&wasm_binary) {
|
2018-11-15 21:31:37 +00:00
|
|
|
wasm_binary = wabt::wat2wasm(wasm_binary)
|
2019-01-18 18:54:16 +00:00
|
|
|
.map_err(|e| format!("Can't convert from wast to wasm: {:?}", e))?;
|
2018-10-11 19:29:36 +00:00
|
|
|
}
|
2018-12-06 11:32:53 +00:00
|
|
|
|
2019-01-19 06:28:41 +00:00
|
|
|
let module = webassembly::compile(&wasm_binary[..])
|
|
|
|
.map_err(|e| format!("Can't compile module: {:?}", e))?;
|
2018-12-11 04:15:41 +00:00
|
|
|
|
2019-01-19 06:28:41 +00:00
|
|
|
let (_abi, import_object) = if wasmer_emscripten::is_emscripten_module(&module) {
|
|
|
|
let emscripten_globals = wasmer_emscripten::EmscriptenGlobals::new();
|
|
|
|
(
|
|
|
|
InstanceABI::Emscripten,
|
|
|
|
wasmer_emscripten::generate_emscripten_env(&emscripten_globals),
|
|
|
|
)
|
2018-12-15 06:46:11 +00:00
|
|
|
} else {
|
2019-01-21 22:43:04 +00:00
|
|
|
(InstanceABI::None, wasmer_runtime::import::ImportObject::new())
|
2018-12-11 04:15:41 +00:00
|
|
|
};
|
|
|
|
|
2019-01-18 06:18:13 +00:00
|
|
|
let mut instance = module
|
|
|
|
.instantiate(import_object)
|
2019-01-19 06:28:41 +00:00
|
|
|
.map_err(|e| format!("Can't instantiate module: {:?}", e))?;
|
2018-11-07 10:47:06 +00:00
|
|
|
|
2019-01-19 06:28:41 +00:00
|
|
|
webassembly::run_instance(
|
2019-01-18 18:54:16 +00:00
|
|
|
&module,
|
2018-12-15 06:46:11 +00:00
|
|
|
&mut instance,
|
|
|
|
options.path.to_str().unwrap(),
|
|
|
|
options.args.iter().map(|arg| arg.as_str()).collect(),
|
2019-01-18 19:15:13 +00:00
|
|
|
)
|
2019-01-19 06:28:41 +00:00
|
|
|
.map_err(|e| format!("{:?}", e))?;
|
|
|
|
Ok(())
|
2018-10-11 19:29:36 +00:00
|
|
|
}
|
|
|
|
|
2018-10-14 21:47:35 +00:00
|
|
|
fn run(options: Run) {
|
2018-12-06 11:32:53 +00:00
|
|
|
match execute_wasm(&options) {
|
2018-10-11 19:29:36 +00:00
|
|
|
Ok(()) => {}
|
|
|
|
Err(message) => {
|
2019-01-20 22:16:13 +00:00
|
|
|
eprintln!("{:?}", message);
|
2018-10-11 19:29:36 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|