Struct memmap2::MmapOptions
source · pub struct MmapOptions { /* private fields */ }
Expand description
A memory map builder, providing advanced options and flags for specifying memory map behavior.
MmapOptions
can be used to create an anonymous memory map using map_anon()
, or a
file-backed memory map using one of map()
, map_mut()
, map_exec()
,
map_copy()
, or map_copy_read_only()
.
§Safety
All file-backed memory map constructors are marked unsafe
because of the potential for
Undefined Behavior (UB) using the map if the underlying file is subsequently modified, in or
out of process. Applications must consider the risk and take appropriate precautions when
using file-backed maps. Solutions such as file permissions, locks or process-private (e.g.
unlinked) files exist but are platform specific and limited.
Implementations§
source§impl MmapOptions
impl MmapOptions
sourcepub fn new() -> MmapOptions
pub fn new() -> MmapOptions
Creates a new set of options for configuring and creating a memory map.
§Example
use memmap2::{MmapMut, MmapOptions};
// Create a new memory map builder.
let mut mmap_options = MmapOptions::new();
// Configure the memory map builder using option setters, then create
// a memory map using one of `mmap_options.map_anon`, `mmap_options.map`,
// `mmap_options.map_mut`, `mmap_options.map_exec`, or `mmap_options.map_copy`:
let mut mmap: MmapMut = mmap_options.len(36).map_anon()?;
// Use the memory map:
mmap.copy_from_slice(b"...data to copy to the memory map...");
sourcepub fn offset(&mut self, offset: u64) -> &mut Self
pub fn offset(&mut self, offset: u64) -> &mut Self
Configures the memory map to start at byte offset
from the beginning of the file.
This option has no effect on anonymous memory maps.
By default, the offset is 0.
§Example
use memmap2::MmapOptions;
use std::fs::File;
let mmap = unsafe {
MmapOptions::new()
.offset(30)
.map(&File::open("LICENSE-APACHE")?)?
};
assert_eq!(&b"Apache License"[..],
&mmap[..14]);
sourcepub fn len(&mut self, len: usize) -> &mut Self
pub fn len(&mut self, len: usize) -> &mut Self
Configures the created memory mapped buffer to be len
bytes long.
This option is mandatory for anonymous memory maps.
For file-backed memory maps, the length will default to the file length.
§Example
use memmap2::MmapOptions;
use std::fs::File;
let mmap = unsafe {
MmapOptions::new()
.len(9)
.map(&File::open("README.md")?)?
};
assert_eq!(&b"# memmap2"[..], &mmap[..]);
sourcepub fn stack(&mut self) -> &mut Self
pub fn stack(&mut self) -> &mut Self
Configures the anonymous memory map to be suitable for a process or thread stack.
This option corresponds to the MAP_STACK
flag on Linux. It has no effect on Windows.
This option has no effect on file-backed memory maps.
§Example
use memmap2::MmapOptions;
let stack = MmapOptions::new().stack().len(4096).map_anon();
sourcepub fn huge(&mut self, page_bits: Option<u8>) -> &mut Self
pub fn huge(&mut self, page_bits: Option<u8>) -> &mut Self
Configures the anonymous memory map to be allocated using huge pages.
This option corresponds to the MAP_HUGETLB
flag on Linux. It has no effect on Windows.
The size of the requested page can be specified in page bits. If not provided, the system default is requested. The requested length should be a multiple of this, or the mapping will fail.
This option has no effect on file-backed memory maps.
§Example
use memmap2::MmapOptions;
let stack = MmapOptions::new().huge(Some(21)).len(2*1024*1024).map_anon();
sourcepub fn populate(&mut self) -> &mut Self
pub fn populate(&mut self) -> &mut Self
Populate (prefault) page tables for a mapping.
For a file mapping, this causes read-ahead on the file. This will help to reduce blocking on page faults later.
This option corresponds to the MAP_POPULATE
flag on Linux. It has no effect on Windows.
§Example
use memmap2::MmapOptions;
use std::fs::File;
let file = File::open("LICENSE-MIT")?;
let mmap = unsafe {
MmapOptions::new().populate().map(&file)?
};
assert_eq!(&b"Copyright"[..], &mmap[..9]);
sourcepub unsafe fn map<T: MmapAsRawDesc>(&self, file: T) -> Result<Mmap>
pub unsafe fn map<T: MmapAsRawDesc>(&self, file: T) -> Result<Mmap>
Creates a read-only memory map backed by a file.
§Errors
This method returns an error when the underlying system call fails, which can happen for a variety of reasons, such as when the file is not open with read permissions.
§Example
use memmap2::MmapOptions;
use std::fs::File;
use std::io::Read;
let mut file = File::open("LICENSE-APACHE")?;
let mut contents = Vec::new();
file.read_to_end(&mut contents)?;
let mmap = unsafe {
MmapOptions::new().map(&file)?
};
assert_eq!(&contents[..], &mmap[..]);
sourcepub unsafe fn map_exec<T: MmapAsRawDesc>(&self, file: T) -> Result<Mmap>
pub unsafe fn map_exec<T: MmapAsRawDesc>(&self, file: T) -> Result<Mmap>
Creates a readable and executable memory map backed by a file.
§Errors
This method returns an error when the underlying system call fails, which can happen for a variety of reasons, such as when the file is not open with read permissions.
sourcepub unsafe fn map_mut<T: MmapAsRawDesc>(&self, file: T) -> Result<MmapMut>
pub unsafe fn map_mut<T: MmapAsRawDesc>(&self, file: T) -> Result<MmapMut>
Creates a writeable memory map backed by a file.
§Errors
This method returns an error when the underlying system call fails, which can happen for a variety of reasons, such as when the file is not open with read and write permissions.
§Example
use std::fs::OpenOptions;
use std::path::PathBuf;
use memmap2::MmapOptions;
let path: PathBuf = /* path to file */
let file = OpenOptions::new().read(true).write(true).create(true).open(&path)?;
file.set_len(13)?;
let mut mmap = unsafe {
MmapOptions::new().map_mut(&file)?
};
mmap.copy_from_slice(b"Hello, world!");
sourcepub unsafe fn map_copy<T: MmapAsRawDesc>(&self, file: T) -> Result<MmapMut>
pub unsafe fn map_copy<T: MmapAsRawDesc>(&self, file: T) -> Result<MmapMut>
Creates a copy-on-write memory map backed by a file.
Data written to the memory map will not be visible by other processes, and will not be carried through to the underlying file.
§Errors
This method returns an error when the underlying system call fails, which can happen for a variety of reasons, such as when the file is not open with writable permissions.
§Example
use memmap2::MmapOptions;
use std::fs::File;
use std::io::Write;
let file = File::open("LICENSE-APACHE")?;
let mut mmap = unsafe { MmapOptions::new().map_copy(&file)? };
(&mut mmap[..]).write_all(b"Hello, world!")?;
sourcepub unsafe fn map_copy_read_only<T: MmapAsRawDesc>(
&self,
file: T
) -> Result<Mmap>
pub unsafe fn map_copy_read_only<T: MmapAsRawDesc>( &self, file: T ) -> Result<Mmap>
Creates a copy-on-write read-only memory map backed by a file.
§Errors
This method returns an error when the underlying system call fails, which can happen for a variety of reasons, such as when the file is not open with read permissions.
§Example
use memmap2::MmapOptions;
use std::fs::File;
use std::io::Read;
let mut file = File::open("README.md")?;
let mut contents = Vec::new();
file.read_to_end(&mut contents)?;
let mmap = unsafe {
MmapOptions::new().map_copy_read_only(&file)?
};
assert_eq!(&contents[..], &mmap[..]);
sourcepub fn map_anon(&self) -> Result<MmapMut>
pub fn map_anon(&self) -> Result<MmapMut>
Creates an anonymous memory map.
The memory map length should be configured using MmapOptions::len()
before creating an anonymous memory map, otherwise a zero-length mapping
will be crated.
§Errors
This method returns an error when the underlying system call fails or
when len > isize::MAX
.
sourcepub fn map_raw<T: MmapAsRawDesc>(&self, file: T) -> Result<MmapRaw>
pub fn map_raw<T: MmapAsRawDesc>(&self, file: T) -> Result<MmapRaw>
Creates a raw memory map.
§Errors
This method returns an error when the underlying system call fails, which can happen for a variety of reasons, such as when the file is not open with read and write permissions.
sourcepub fn map_raw_read_only<T: MmapAsRawDesc>(&self, file: T) -> Result<MmapRaw>
pub fn map_raw_read_only<T: MmapAsRawDesc>(&self, file: T) -> Result<MmapRaw>
Creates a read-only raw memory map
This is primarily useful to avoid intermediate Mmap
instances when
read-only access to files modified elsewhere are required.
§Errors
This method returns an error when the underlying system call fails
Trait Implementations§
source§impl Clone for MmapOptions
impl Clone for MmapOptions
source§fn clone(&self) -> MmapOptions
fn clone(&self) -> MmapOptions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more