Skip to content

a wrapper for memmap2 to easily cast mmap'ed memory to structs in rust

License

Notifications You must be signed in to change notification settings

mostlymaxi/mmapcell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MmapCell

A common use case for mmap in C is to cast the mmap backed region to a struct:

MyStruct* mmap_backed_mystruct;
int fd;

fd = open(path, O_RDWR | O_CREAT, 0644);
ftruncate(fd, sizeof(MyStruct));

mmap_backed_mystruct = (MyStruct*)mmap(0, sizeof(MyStruct), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);

Example

This is a helpful wrapper for the same usecase:

   use mmapcell::MmapCell;

   #[repr(C)]
   struct MyStruct {
      thing1: i32,
      thing2: f64,
   }

   let mut cell = unsafe {
       MmapCell::<MyStruct>::new_named("/tmp/mystruct-mmap-test.bin")
   }.unwrap();

   let mmap_backed_mystruct = cell.get_mut();

   mmap_backed_mystruct.thing1 = 3;

About

a wrapper for memmap2 to easily cast mmap'ed memory to structs in rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages