2021-03-29 09:18:52 +00:00
|
|
|
use std::fs::File;
|
|
|
|
use std::io;
|
2022-05-08 03:36:12 +00:00
|
|
|
use std::ops::{Deref, DerefMut};
|
2021-03-29 09:18:52 +00:00
|
|
|
|
2023-04-05 13:28:25 +00:00
|
|
|
/// A trivial wrapper for [`memmap2::Mmap`] (or `Vec<u8>` on WASM).
|
2021-03-29 09:18:52 +00:00
|
|
|
#[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]
|
2021-03-29 09:18:52 +00:00
|
|
|
pub unsafe fn map(file: File) -> io::Result<Self> {
|
2023-04-19 18:00:48 +00:00
|
|
|
// Safety: this is in fact not safe.
|
|
|
|
unsafe { memmap2::Mmap::map(&file).map(Mmap) }
|
2021-03-29 09:18:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
impl Mmap {
|
2021-03-31 07:19:29 +00:00
|
|
|
#[inline]
|
2021-03-29 09:18:52 +00:00
|
|
|
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]
|
2021-03-29 09:18:52 +00:00
|
|
|
fn deref(&self) -> &[u8] {
|
2022-11-29 11:01:17 +00:00
|
|
|
&self.0
|
2021-03-29 09:18:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-28 10:43:51 +00:00
|
|
|
impl AsRef<[u8]> for Mmap {
|
|
|
|
fn as_ref(&self) -> &[u8] {
|
2023-04-09 21:07:18 +00:00
|
|
|
&self.0
|
2022-05-28 10:43:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-08 03:36:12 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
pub struct MmapMut(memmap2::MmapMut);
|
|
|
|
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
pub struct MmapMut(Vec<u8>);
|
|
|
|
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
impl MmapMut {
|
|
|
|
#[inline]
|
|
|
|
pub fn map_anon(len: usize) -> io::Result<Self> {
|
|
|
|
let mmap = memmap2::MmapMut::map_anon(len)?;
|
|
|
|
Ok(MmapMut(mmap))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn flush(&mut self) -> io::Result<()> {
|
|
|
|
self.0.flush()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn make_read_only(self) -> std::io::Result<Mmap> {
|
|
|
|
let mmap = self.0.make_read_only()?;
|
|
|
|
Ok(Mmap(mmap))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
impl MmapMut {
|
|
|
|
#[inline]
|
|
|
|
pub fn map_anon(len: usize) -> io::Result<Self> {
|
|
|
|
let data = Vec::with_capacity(len);
|
|
|
|
Ok(MmapMut(data))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn flush(&mut self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn make_read_only(self) -> std::io::Result<Mmap> {
|
|
|
|
Ok(Mmap(self.0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Deref for MmapMut {
|
|
|
|
type Target = [u8];
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn deref(&self) -> &[u8] {
|
2022-11-29 11:01:17 +00:00
|
|
|
&self.0
|
2022-05-08 03:36:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl DerefMut for MmapMut {
|
|
|
|
#[inline]
|
|
|
|
fn deref_mut(&mut self) -> &mut [u8] {
|
2022-11-29 11:01:17 +00:00
|
|
|
&mut self.0
|
2022-05-08 03:36:12 +00:00
|
|
|
}
|
|
|
|
}
|