binread/file_ptr.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
//! A wrapper type for representing a layer of indirection within a file.
//!
//! A `FilePtr<P, T>` is composed of two types: a pointer type `P` and a value type `T` where
//! the pointer type describes an offset to read the value type from. Once read from the file
//! it can be dereferenced to yield the value it points to.
//!
//! ## Example
//! ```rust
//! use binread::{prelude::*, io::Cursor, FilePtr};
//!
//! #[derive(BinRead)]
//! struct Test {
//! pointer: FilePtr<u32, u8>
//! }
//!
//! let test: Test = Cursor::new(b"\0\0\0\x08\0\0\0\0\xff").read_be().unwrap();
//! assert_eq!(test.pointer.ptr, 8);
//! assert_eq!(*test.pointer, 0xFF);
//! ```
//!
//! Example data mapped out:
//! ```hex
//! [pointer] [value]
//! 00000000: 0000 0008 0000 0000 ff ............
//! ```
//!
//! Use `offset` to change what the pointer is relative to (default: beginning of reader).
use super::*;
use core::fmt;
use core::ops::{Deref, DerefMut};
/// A wrapper type for representing a layer of indirection within a file.
///
/// A `FilePtr<P, T>` is composed of two types: a pointer type `P` and a value type `T` where
/// the pointer type describes and offset to read the value type from. Once read from the file
/// it can be dereferenced to yeild the value it points to.
///
/// ## Example
/// ```rust
/// use binread::{prelude::*, io::Cursor, FilePtr};
///
/// #[derive(BinRead)]
/// struct Test {
/// pointer: FilePtr<u32, u8>
/// }
///
/// let test: Test = Cursor::new(b"\0\0\0\x08\0\0\0\0\xff").read_be().unwrap();
/// assert_eq!(test.pointer.ptr, 8);
/// assert_eq!(*test.pointer, 0xFF);
/// ```
///
/// Example data mapped out:
/// ```hex
/// [pointer] [value]
/// 00000000: 0000 0008 0000 0000 ff ............
/// ```
///
/// Use `offset` to change what the pointer is relative to (default: beginning of reader).
pub struct FilePtr<Ptr: IntoSeekFrom, BR: BinRead> {
pub ptr: Ptr,
pub value: Option<BR>,
}
/// Type alias for 8-bit pointers
pub type FilePtr8<T> = FilePtr<u8, T>;
/// Type alias for 16-bit pointers
pub type FilePtr16<T> = FilePtr<u16, T>;
/// Type alias for 32-bit pointers
pub type FilePtr32<T> = FilePtr<u32, T>;
/// Type alias for 64-bit pointers
pub type FilePtr64<T> = FilePtr<u64, T>;
/// Type alias for 128-bit pointers
pub type FilePtr128<T> = FilePtr<u128, T>;
impl<Ptr: BinRead<Args = ()> + IntoSeekFrom, BR: BinRead> BinRead for FilePtr<Ptr, BR> {
type Args = BR::Args;
fn read_options<R: Read + Seek>(
reader: &mut R,
options: &ReadOptions,
_: Self::Args,
) -> BinResult<Self> {
#[cfg(feature = "debug_template")]
let options = &{
let mut options = *options;
let pos = reader.stream_pos().unwrap();
let type_name = &core::any::type_name::<Ptr>();
if let Some(name) = options.variable_name {
binary_template::write_named(
options.endian,
pos,
type_name,
&format!("ptr_to_{}", name),
);
} else {
binary_template::write(options.endian, pos, type_name);
}
options.dont_output_to_template = true;
options
};
Ok(FilePtr {
ptr: Ptr::read_options(reader, options, ())?,
value: None,
})
}
fn after_parse<R>(&mut self, reader: &mut R, ro: &ReadOptions, args: BR::Args) -> BinResult<()>
where
R: Read + Seek,
{
let relative_to = ro.offset;
let before = reader.stream_pos()?;
reader.seek(SeekFrom::Start(relative_to))?;
reader.seek(self.ptr.into_seek_from())?;
let mut inner: BR = BinRead::read_options(reader, ro, args)?;
inner.after_parse(reader, ro, args)?;
self.value = Some(inner);
reader.seek(SeekFrom::Start(before))?;
Ok(())
}
}
impl<Ptr: BinRead<Args = ()> + IntoSeekFrom, BR: BinRead> FilePtr<Ptr, BR> {
/// Custom parser designed for use with the `parse_with` attribute ([example](crate::attribute#custom-parsers))
/// that reads a [`FilePtr`](FilePtr) then immediately dereferences it into an owned value
pub fn parse<R: Read + Seek>(
reader: &mut R,
options: &ReadOptions,
args: BR::Args,
) -> BinResult<BR> {
let mut ptr: Self = Self::read_options(reader, options, args)?;
let saved_pos = reader.stream_pos()?;
ptr.after_parse(reader, options, args)?;
reader.seek(SeekFrom::Start(saved_pos))?;
Ok(ptr.into_inner())
}
/// Consume the pointer and return the inner type
///
/// # Panics
///
/// Will panic if the file pointer hasn't been properly postprocessed
pub fn into_inner(self) -> BR {
self.value.unwrap()
}
}
/// Used to allow any convert any type castable to i64 into a [`SeekFrom::Current`](io::SeekFrom::Current)
pub trait IntoSeekFrom: Copy {
fn into_seek_from(self) -> SeekFrom;
}
macro_rules! impl_into_seek_from {
($($t:ty),*) => {
$(
impl IntoSeekFrom for $t {
fn into_seek_from(self) -> SeekFrom {
SeekFrom::Current(self as i64)
}
}
)*
};
}
impl_into_seek_from!(i8, i16, i32, i64, i128, u8, u16, u32, u64, u128);
/// ## Panics
/// Will panic if the FilePtr has not been read yet using [`BinRead::after_parse`](BinRead::after_parse)
impl<Ptr: IntoSeekFrom, BR: BinRead> Deref for FilePtr<Ptr, BR> {
type Target = BR;
fn deref(&self) -> &Self::Target {
match self.value.as_ref() {
Some(x) => x,
None => panic!(
"Deref'd FilePtr before reading (make sure to use FilePtr::after_parse first)"
),
}
}
}
/// ## Panics
/// Will panic if the FilePtr has not been read yet using [`BinRead::after_parse`](BinRead::after_parse)
impl<Ptr: IntoSeekFrom, BR: BinRead> DerefMut for FilePtr<Ptr, BR> {
fn deref_mut(&mut self) -> &mut BR {
match self.value.as_mut() {
Some(x) => x,
None => panic!(
"Deref'd FilePtr before reading (make sure to use FilePtr::after_parse first)"
),
}
}
}
impl<Ptr, BR> fmt::Debug for FilePtr<Ptr, BR>
where
Ptr: BinRead<Args = ()> + IntoSeekFrom,
BR: BinRead + fmt::Debug,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if let Some(ref value) = self.value {
fmt::Debug::fmt(value, f)
} else {
write!(f, "UnreadPointer")
}
}
}
impl<Ptr, BR> PartialEq<FilePtr<Ptr, BR>> for FilePtr<Ptr, BR>
where
Ptr: BinRead<Args = ()> + IntoSeekFrom,
BR: BinRead + PartialEq,
{
fn eq(&self, other: &Self) -> bool {
self.deref() == other.deref()
}
}