VolatileSlice

Struct VolatileSlice 

Source
pub struct VolatileSlice<'a, B = ()> { /* private fields */ }
Expand description

A slice of raw memory that supports volatile access.

Implementations§

Source§

impl<'a> VolatileSlice<'a, ()>

Source

pub unsafe fn new(addr: *mut u8, size: usize) -> VolatileSlice<'a>

Creates a slice of raw memory that must support volatile access.

§Safety

To use this safely, the caller must guarantee that the memory at addr is size bytes long and is available for the duration of the lifetime of the new VolatileSlice. The caller must also guarantee that all other users of the given chunk of memory are using volatile accesses.

Source§

impl<'a, B: BitmapSlice> VolatileSlice<'a, B>

Source

pub unsafe fn with_bitmap( addr: *mut u8, size: usize, bitmap: B, mmap: Option<&'a MmapInfo>, ) -> VolatileSlice<'a, B>

Creates a slice of raw memory that must support volatile access, and uses the provided bitmap object for dirty page tracking.

§Safety

To use this safely, the caller must guarantee that the memory at addr is size bytes long and is available for the duration of the lifetime of the new VolatileSlice. The caller must also guarantee that all other users of the given chunk of memory are using volatile accesses.

Source

pub fn ptr_guard(&self) -> PtrGuard

Returns a guard for the pointer to the underlying memory.

Source

pub fn ptr_guard_mut(&self) -> PtrGuardMut

Returns a mutable guard for the pointer to the underlying memory.

Source

pub fn len(&self) -> usize

Gets the size of this slice.

Source

pub fn is_empty(&self) -> bool

Checks if the slice is empty.

Source

pub fn bitmap(&self) -> &B

Borrows the inner BitmapSlice.

Source

pub fn split_at(&self, mid: usize) -> Result<(Self, Self)>

Divides one slice into two at an index.

§Example
let vslice = VolatileSlice::from(&mut mem[..]);

let (start, end) = vslice.split_at(8).expect("Could not split VolatileSlice");
assert_eq!(8, start.len());
assert_eq!(24, end.len());
Source

pub fn subslice(&self, offset: usize, count: usize) -> Result<Self>

Returns a subslice of this VolatileSlice starting at offset with count length.

The returned subslice is a copy of this slice with the address increased by offset bytes and the size set to count bytes.

Source

pub fn offset(&self, count: usize) -> Result<VolatileSlice<'a, B>>

Returns a subslice of this VolatileSlice starting at offset.

The returned subslice is a copy of this slice with the address increased by count bytes and the size reduced by count bytes.

Source

pub fn copy_to<T>(&self, buf: &mut [T]) -> usize
where T: ByteValued,

Copies as many elements of type T as possible from this slice to buf.

Copies self.len() or buf.len() times the size of T bytes, whichever is smaller, to buf. The copy happens from smallest to largest address in T sized chunks using volatile reads.

§Examples
let mut mem = [0u8; 32];
let vslice = VolatileSlice::from(&mut mem[..]);
let mut buf = [5u8; 16];
let res = vslice.copy_to(&mut buf[..]);

assert_eq!(16, res);
for &v in &buf[..] {
    assert_eq!(v, 0);
}
Source

pub fn copy_to_volatile_slice<S: BitmapSlice>( &self, slice: VolatileSlice<'_, S>, )

Copies as many bytes as possible from this slice to the provided slice.

The copies happen in an undefined order.

§Examples
vslice.copy_to_volatile_slice(
    vslice
        .get_slice(16, 16)
        .expect("Could not get VolatileSlice"),
);
Source

pub fn copy_from<T>(&self, buf: &[T])
where T: ByteValued,

Copies as many elements of type T as possible from buf to this slice.

The copy happens from smallest to largest address in T sized chunks using volatile writes.

§Examples
let mut mem = [0u8; 32];
let vslice = VolatileSlice::from(&mut mem[..]);

let buf = [5u8; 64];
vslice.copy_from(&buf[..]);

for i in 0..4 {
    let val = vslice
        .get_ref::<u32>(i * 4)
        .expect("Could not get value")
        .load();
    assert_eq!(val, 0x05050505);
}

Trait Implementations§

Source§

impl<B: BitmapSlice> Bytes<usize> for VolatileSlice<'_, B>

Source§

fn write(&self, buf: &[u8], addr: usize) -> Result<usize>

§Examples
  • Write a slice of size 5 at offset 1020 of a 1024-byte VolatileSlice.
let mut mem = [0u8; 1024];
let vslice = VolatileSlice::from(&mut mem[..]);
let res = vslice.write(&[1, 2, 3, 4, 5], 1020);

assert!(res.is_ok());
assert_eq!(res.unwrap(), 4);
Source§

fn read(&self, buf: &mut [u8], addr: usize) -> Result<usize>

§Examples
  • Read a slice of size 16 at offset 1010 of a 1024-byte VolatileSlice.
let mut mem = [0u8; 1024];
let vslice = VolatileSlice::from(&mut mem[..]);
let buf = &mut [0u8; 16];
let res = vslice.read(buf, 1010);

assert!(res.is_ok());
assert_eq!(res.unwrap(), 14);
Source§

fn write_slice(&self, buf: &[u8], addr: usize) -> Result<()>

§Examples
  • Write a slice at offset 256.
let res = vslice.write_slice(&[1, 2, 3, 4, 5], 256);

assert!(res.is_ok());
assert_eq!(res.unwrap(), ());
Source§

fn read_slice(&self, buf: &mut [u8], addr: usize) -> Result<()>

§Examples
  • Read a slice of size 16 at offset 256.
let buf = &mut [0u8; 16];
let res = vslice.read_slice(buf, 256);

assert!(res.is_ok());
Source§

type E = Error

Associated error codes
Source§

fn read_volatile_from<F>( &self, addr: usize, src: &mut F, count: usize, ) -> Result<usize>
where F: ReadVolatile,

Reads up to count bytes from src and writes them into the container at addr. Unlike VolatileRead::read_volatile, this function retries on EINTR being returned from the underlying I/O read operation. Read more
Source§

fn read_exact_volatile_from<F>( &self, addr: usize, src: &mut F, count: usize, ) -> Result<()>
where F: ReadVolatile,

Reads exactly count bytes from an object and writes them into the container at addr. Read more
Source§

fn write_volatile_to<F>( &self, addr: usize, dst: &mut F, count: usize, ) -> Result<usize>
where F: WriteVolatile,

Reads up to count bytes from the container at addr and writes them into dst. Unlike VolatileWrite::write_volatile, this function retries on EINTR being returned by the underlying I/O write operation. Read more
Source§

fn write_all_volatile_to<F>( &self, addr: usize, dst: &mut F, count: usize, ) -> Result<()>
where F: WriteVolatile,

Reads exactly count bytes from the container at addr and writes them into an object. Read more
Source§

fn store<T: AtomicAccess>( &self, val: T, addr: usize, order: Ordering, ) -> Result<()>

Atomically store a value at the specified address.
Source§

fn load<T: AtomicAccess>(&self, addr: usize, order: Ordering) -> Result<T>

Atomically load a value from the specified address.
Source§

fn write_obj<T: ByteValued>(&self, val: T, addr: A) -> Result<(), Self::E>

Writes an object into the container at addr. Read more
Source§

fn read_obj<T: ByteValued>(&self, addr: A) -> Result<T, Self::E>

Reads an object from the container at addr. Read more
Source§

impl<'a, B: Clone> Clone for VolatileSlice<'a, B>

Source§

fn clone(&self) -> VolatileSlice<'a, B>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a, B: Debug> Debug for VolatileSlice<'a, B>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> From<&'a mut [u8]> for VolatileSlice<'a, ()>

Source§

fn from(value: &'a mut [u8]) -> Self

Converts to this type from the input type.
Source§

impl<'a, B: BitmapSlice> From<VolatileSlice<'a, B>> for VolatileArrayRef<'a, u8, B>

Source§

fn from(slice: VolatileSlice<'a, B>) -> Self

Converts to this type from the input type.
Source§

impl<B: BitmapSlice> VolatileMemory for VolatileSlice<'_, B>

Source§

type B = B

Type used for dirty memory tracking.
Source§

fn len(&self) -> usize

Gets the size of this slice.
Source§

fn get_slice(&self, offset: usize, count: usize) -> Result<VolatileSlice<'_, B>>

Returns a VolatileSlice of count bytes starting at offset. Read more
Source§

fn is_empty(&self) -> bool

Check whether the region is empty.
Source§

fn as_volatile_slice(&self) -> VolatileSlice<'_, BS<'_, Self::B>>

Gets a slice of memory for the entire region that supports volatile access.
Source§

fn get_ref<T: ByteValued>( &self, offset: usize, ) -> Result<VolatileRef<'_, T, BS<'_, Self::B>>>

Gets a VolatileRef at offset.
Source§

fn get_array_ref<T: ByteValued>( &self, offset: usize, n: usize, ) -> Result<VolatileArrayRef<'_, T, BS<'_, Self::B>>>

Returns a VolatileArrayRef of n elements starting at offset.
Source§

unsafe fn aligned_as_ref<T: ByteValued>(&self, offset: usize) -> Result<&T>

Returns a reference to an instance of T at offset. Read more
Source§

unsafe fn aligned_as_mut<T: ByteValued>(&self, offset: usize) -> Result<&mut T>

Returns a mutable reference to an instance of T at offset. Mutable accesses performed using the resulting reference are not automatically accounted for by the dirty bitmap tracking functionality. Read more
Source§

fn get_atomic_ref<T: AtomicInteger>(&self, offset: usize) -> Result<&T>

Returns a reference to an instance of T at offset. Mutable accesses performed using the resulting reference are not automatically accounted for by the dirty bitmap tracking functionality. Read more
Source§

fn compute_end_offset(&self, base: usize, offset: usize) -> Result<usize>

Returns the sum of base and offset if it is valid to access a range of offset bytes starting at base. Read more
Source§

impl<'a, B: Copy> Copy for VolatileSlice<'a, B>

Auto Trait Implementations§

§

impl<'a, B> Freeze for VolatileSlice<'a, B>
where B: Freeze,

§

impl<'a, B = ()> !RefUnwindSafe for VolatileSlice<'a, B>

§

impl<'a, B = ()> !Send for VolatileSlice<'a, B>

§

impl<'a, B = ()> !Sync for VolatileSlice<'a, B>

§

impl<'a, B> Unpin for VolatileSlice<'a, B>
where B: Unpin,

§

impl<'a, B = ()> !UnwindSafe for VolatileSlice<'a, B>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.