#![allow(missing_docs)]
use std::{error, fmt, io};
use std::borrow::Borrow;
#[derive(Debug)]
pub struct Error {
kind: ErrorKind,
cause: Option<Box<dyn error::Error>>,
}
#[derive(Debug, PartialEq)]
pub enum ErrorKind {
Unknown,
UnexpectedSignal,
Init,
Unsupported,
VersionMismatch,
InvalidEventSpec,
AllocInit,
Unloaded,
NotAttached,
AlreadyAttached,
BadScope,
LogFileRequired,
Running,
NotRunning,
BusyTarget,
BadTarget,
Forbidden,
}
impl error::Error for Error {
fn description(&self) -> &str {
match self.kind {
ErrorKind::Init => "missing hwpmc in kernel",
ErrorKind::Unloaded => "hwpmc unloaded from kernel",
ErrorKind::Unsupported => "unsupported CPU",
ErrorKind::VersionMismatch => "unexpected hwpmc version",
ErrorKind::Running => "cannot set running counter",
ErrorKind::NotRunning => "counter not running",
ErrorKind::AllocInit => "failed to allocate counter",
ErrorKind::BusyTarget => "target is busy",
ErrorKind::BadTarget => "target PID does not exist",
ErrorKind::NotAttached => "PMC not attached to target processes",
ErrorKind::AlreadyAttached => "PMC already attached to target process",
ErrorKind::Forbidden => "forbidden",
_ => "unknown error",
}
}
fn cause(&self) -> Option<&dyn error::Error> {
match self.cause {
None => None,
Some(ref b) => Some(b.borrow()),
}
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self)
}
}
#[doc(hidden)]
impl PartialEq for Error {
fn eq(&self, other: &Error) -> bool {
self.kind == other.kind
}
}
impl Error {
pub fn kind(&self) -> &ErrorKind {
&self.kind
}
}
pub(crate) fn new_os_error(kind: ErrorKind) -> Error {
Error {
kind,
cause: Some(Box::new(io::Error::last_os_error())),
}
}
pub(crate) fn new_error(kind: ErrorKind) -> Error {
Error { kind, cause: None }
}