You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
use std::{
|
|
|
|
fmt::{Debug, Display, Formatter},
|
|
|
|
path::PathBuf,
|
|
|
|
};
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Error {
|
|
|
|
IOError(std::io::Error),
|
|
|
|
InvalidObjectType(u32),
|
|
|
|
StringError(&'static str),
|
|
|
|
MissingSectionHeader(&'static str),
|
|
|
|
MissingSectionData(&'static str),
|
|
|
|
InvalidSectionData,
|
|
|
|
LinkingError(Trace),
|
|
|
|
}
|
|
|
|
|
|
|
|
// "backtrace" for error origin
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Trace {
|
|
|
|
origin: PathBuf,
|
|
|
|
offset: u64, // 0 indicates unknown/invalid
|
|
|
|
source_info: Option<Box<dyn SourceInfo>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait SourceInfo: Debug + Display {
|
|
|
|
fn line(&self) -> u64;
|
|
|
|
|
|
|
|
// todo
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<std::io::Error> for Error {
|
|
|
|
fn from(err: std::io::Error) -> Self {
|
|
|
|
Self::IOError(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for Error {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "TODO!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for Trace {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "TODO!")
|
|
|
|
}
|
|
|
|
}
|