use std::ffi;
use std::error;
use std::fmt;
use std::str;
use libc;
use libc::c_int;
use {raw, ErrorCode};
pub struct Error {
klass: c_int,
message: String,
}
impl Error {
pub fn last_error() -> Option<Error> {
::init();
unsafe {
let last = raw::giterr_last();
if last.is_null() {None} else {Some(Error::from_raw(last))}
}
}
pub unsafe fn from_raw(raw: *const raw::git_error) -> Error {
let ptr = (*raw).message as *const _;
let message = ffi::c_str_to_bytes(&ptr);
let message = str::from_utf8(message).unwrap();
Error {
klass: (*raw).klass,
message: message.to_string(),
}
}
pub fn from_str(s: &str) -> Error {
Error {
message: s.to_string(),
klass: raw::GIT_ERROR as libc::c_int,
}
}
pub fn code(&self) -> ErrorCode {
match self.raw_code() {
raw::GIT_OK => super::ErrorCode::GenericError,
raw::GIT_ERROR => super::ErrorCode::GenericError,
raw::GIT_ENOTFOUND => super::ErrorCode::NotFound,
raw::GIT_EEXISTS => super::ErrorCode::Exists,
raw::GIT_EAMBIGUOUS => super::ErrorCode::Ambiguous,
raw::GIT_EBUFS => super::ErrorCode::BufSize,
raw::GIT_EUSER => super::ErrorCode::User,
raw::GIT_EBAREREPO => super::ErrorCode::BareRepo,
raw::GIT_EUNBORNBRANCH => super::ErrorCode::UnbornBranch,
raw::GIT_EUNMERGED => super::ErrorCode::Unmerged,
raw::GIT_ENONFASTFORWARD => super::ErrorCode::NotFastForward,
raw::GIT_EINVALIDSPEC => super::ErrorCode::InvalidSpec,
raw::GIT_EMERGECONFLICT => super::ErrorCode::MergeConflict,
raw::GIT_ELOCKED => super::ErrorCode::Locked,
raw::GIT_EMODIFIED => super::ErrorCode::Modified,
raw::GIT_PASSTHROUGH => super::ErrorCode::GenericError,
raw::GIT_ITEROVER => super::ErrorCode::GenericError,
}
}
pub fn raw_code(&self) -> raw::git_error_code {
macro_rules! check( ($($e:ident),*) => (
$(if self.klass == raw::$e as c_int { raw::$e }) else *
else {
raw::GIT_ERROR
}
) );
check!(
GIT_OK,
GIT_ERROR,
GIT_ENOTFOUND,
GIT_EEXISTS,
GIT_EAMBIGUOUS,
GIT_EBUFS,
GIT_EUSER,
GIT_EBAREREPO,
GIT_EUNBORNBRANCH,
GIT_EUNMERGED,
GIT_ENONFASTFORWARD,
GIT_EINVALIDSPEC,
GIT_EMERGECONFLICT,
GIT_ELOCKED,
GIT_EMODIFIED,
GIT_PASSTHROUGH,
GIT_ITEROVER
)
}
pub fn message(&self) -> &str { self.message.as_slice() }
}
impl error::Error for Error {
fn description(&self) -> &str { self.message.as_slice() }
fn detail(&self) -> Option<String> { None }
}
impl fmt::Show for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
try!(write!(f, "[{}] ", self.klass));
write!(f, "{}", self.message)
}
}