2014-12-02 08:20:48 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
//! Error handling utilities. WIP.
|
|
|
|
|
|
|
|
use std::fmt;
|
2015-01-28 07:34:18 -06:00
|
|
|
use std::fmt::{Debug, Formatter};
|
2014-12-02 08:20:48 -06:00
|
|
|
|
2015-01-22 18:31:00 -06:00
|
|
|
use std::old_io::IoError;
|
2014-12-02 08:20:48 -06:00
|
|
|
|
|
|
|
pub type CliError = Box<Error + 'static>;
|
|
|
|
pub type CliResult<T> = Result<T, CliError>;
|
|
|
|
|
|
|
|
pub type CommandError = Box<Error + 'static>;
|
|
|
|
pub type CommandResult<T> = Result<T, CommandError>;
|
|
|
|
|
|
|
|
pub trait Error {
|
|
|
|
fn description(&self) -> &str;
|
|
|
|
|
|
|
|
fn detail(&self) -> Option<&str> { None }
|
|
|
|
fn cause(&self) -> Option<&Error> { None }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait FromError<E> {
|
|
|
|
fn from_err(err: E) -> Self;
|
|
|
|
}
|
|
|
|
|
2015-01-28 07:34:18 -06:00
|
|
|
impl Debug for Box<Error + 'static> {
|
2014-12-02 08:20:48 -06:00
|
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
|
|
|
write!(f, "{}", self.description())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<E: Error + 'static> FromError<E> for Box<Error + 'static> {
|
|
|
|
fn from_err(err: E) -> Box<Error + 'static> {
|
|
|
|
box err as Box<Error>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Error for &'a str {
|
|
|
|
fn description<'b>(&'b self) -> &'b str {
|
|
|
|
*self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Error for String {
|
|
|
|
fn description<'a>(&'a self) -> &'a str {
|
2015-02-18 13:48:57 -06:00
|
|
|
&self[..]
|
2014-12-02 08:20:48 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-08 12:27:03 -06:00
|
|
|
impl<'a> Error for Box<Error + 'a> {
|
|
|
|
fn description(&self) -> &str { (**self).description() }
|
|
|
|
fn detail(&self) -> Option<&str> { (**self).detail() }
|
|
|
|
fn cause(&self) -> Option<&Error> { (**self).cause() }
|
|
|
|
}
|
|
|
|
|
2014-12-02 08:20:48 -06:00
|
|
|
impl FromError<()> for () {
|
|
|
|
fn from_err(_: ()) -> () { () }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromError<IoError> for IoError {
|
|
|
|
fn from_err(error: IoError) -> IoError { error }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Error for IoError {
|
|
|
|
fn description(&self) -> &str {
|
|
|
|
self.desc
|
|
|
|
}
|
|
|
|
fn detail(&self) -> Option<&str> {
|
2015-02-18 13:48:57 -06:00
|
|
|
self.detail.as_ref().map(|s| &s[..])
|
2014-12-02 08:20:48 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-09 03:25:45 -06:00
|
|
|
|
2014-12-02 08:20:48 -06:00
|
|
|
//fn iter_map_err<T, U, E, I: Iterator<Result<T,E>>>(iter: I,
|