Move the cli into it’s own library

This commit is contained in:
Syrus
2020-07-22 21:32:45 -07:00
parent ad58fea8ae
commit 8cab73e34f
29 changed files with 253 additions and 71 deletions

View File

@@ -0,0 +1,31 @@
use crate::store::StoreOptions;
use anyhow::{Context, Result};
use std::path::PathBuf;
use structopt::StructOpt;
use wasmer::*;
#[derive(Debug, StructOpt)]
/// The options for the `wasmer validate` subcommand
pub struct Validate {
/// File to validate as WebAssembly
#[structopt(name = "FILE", parse(from_os_str))]
path: PathBuf,
#[structopt(flatten)]
store: StoreOptions,
}
impl Validate {
/// Runs logic for the `validate` subcommand
pub fn execute(&self) -> Result<()> {
self.inner_execute()
.context(format!("failed to validate `{}`", self.path.display()))
}
fn inner_execute(&self) -> Result<()> {
let (store, _engine_type, _compiler_type) = self.store.get_store()?;
let module_contents = std::fs::read(&self.path)?;
Module::validate(&store, &module_contents)?;
eprintln!("Validation passed for `{}`.", self.path.display());
Ok(())
}
}