rust/compiler/rustc_data_structures/src/memmap.rs

44 lines
876 B
Rust
Raw Normal View History

use std::fs::File;
use std::io;
use std::ops::Deref;
use crate::owning_ref::StableAddress;
/// A trivial wrapper for [`memmap2::Mmap`] that implements [`StableAddress`].
#[cfg(not(target_arch = "wasm32"))]
pub struct Mmap(memmap2::Mmap);
#[cfg(target_arch = "wasm32")]
pub struct Mmap(Vec<u8>);
#[cfg(not(target_arch = "wasm32"))]
impl Mmap {
2021-03-31 07:19:29 +00:00
#[inline]
pub unsafe fn map(file: File) -> io::Result<Self> {
memmap2::Mmap::map(&file).map(Mmap)
}
}
#[cfg(target_arch = "wasm32")]
impl Mmap {
2021-03-31 07:19:29 +00:00
#[inline]
pub unsafe fn map(mut file: File) -> io::Result<Self> {
use std::io::Read;
let mut data = Vec::new();
file.read_to_end(&mut data)?;
Ok(Mmap(data))
}
}
impl Deref for Mmap {
type Target = [u8];
2021-03-31 07:19:29 +00:00
#[inline]
fn deref(&self) -> &[u8] {
&*self.0
}
}
unsafe impl StableAddress for Mmap {}