fork of https://github.com/rustwasm/wasm-pack for the needs of NextGraph.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.9 KiB
68 lines
1.9 KiB
//! Code related to error handling for wasm-pack
|
|
use serde_json;
|
|
use std::borrow::Cow;
|
|
use std::io;
|
|
use toml;
|
|
|
|
#[derive(Debug, Fail)]
|
|
pub enum Error {
|
|
/// Maps any underlying I/O errors that are thrown to this variant
|
|
#[fail(display = "{}", _0)]
|
|
Io(#[cause] io::Error),
|
|
#[fail(display = "{}", _0)]
|
|
SerdeJson(#[cause] serde_json::Error),
|
|
#[fail(display = "{}", _0)]
|
|
SerdeToml(#[cause] toml::de::Error),
|
|
#[fail(display = "{}. stderr:\n\n{}", message, stderr)]
|
|
Cli { message: String, stderr: String },
|
|
#[fail(display = "{}", message)]
|
|
CrateConfig { message: String },
|
|
}
|
|
|
|
impl Error {
|
|
pub fn cli(message: &str, stderr: Cow<str>) -> Result<(), Self> {
|
|
Err(Error::Cli {
|
|
message: message.to_string(),
|
|
stderr: stderr.to_string(),
|
|
})
|
|
}
|
|
|
|
pub fn crate_config(message: &str) -> Result<(), Self> {
|
|
Err(Error::CrateConfig {
|
|
message: message.to_string(),
|
|
})
|
|
}
|
|
|
|
pub fn error_type(&self) -> String {
|
|
match self {
|
|
Error::Io(_) => "There was an I/O error. Details:\n\n",
|
|
Error::SerdeJson(_) => "There was an JSON error. Details:\n\n",
|
|
Error::SerdeToml(_) => "There was an TOML error. Details:\n\n",
|
|
Error::Cli {
|
|
message: _,
|
|
stderr: _,
|
|
} => "There was an error while calling another CLI tool. Details:\n\n",
|
|
Error::CrateConfig { message: _ } => {
|
|
"There was a crate configuration error. Details:\n\n"
|
|
}
|
|
}.to_string()
|
|
}
|
|
}
|
|
|
|
impl From<io::Error> for Error {
|
|
fn from(e: io::Error) -> Self {
|
|
Error::Io(e)
|
|
}
|
|
}
|
|
|
|
impl From<serde_json::Error> for Error {
|
|
fn from(e: serde_json::Error) -> Self {
|
|
Error::SerdeJson(e)
|
|
}
|
|
}
|
|
|
|
impl From<toml::de::Error> for Error {
|
|
fn from(e: toml::de::Error) -> Self {
|
|
Error::SerdeToml(e)
|
|
}
|
|
}
|
|
|