neocortex
Shared memory crate designed for simplicity, safety, and extensibility. With minimal dependencies on libc and tracing, this crate wraps unsafe shared memory operations in a user-friendly API.
Quick Start
Install using the (currently) only built-in lock implementation. See examples below for more instructions.
System Requirements
- Operating System: Linux, macOS, or other UNIX-like operating systems.
- Dependencies: Users must ensure
libcis available in their system's standard library.
Safety Guarantees
- Error Handling: As
libcsyscalls are inherently unsafe, no guarantees can be made that all allocated resources are properly cleaned up on a failure. This crate provides two error variants,CleanSystemandDirtySystemto indicate whether or not the error is leaving any dangling resources. All system errors also provides additional error information from the operating system on top of our custom error messages. - Error Logging: As an additional safety guarantee, all
DirtySystemerrors that are not properly handled (currently only in someDropimplementations) will emit atracing::error!event.
Features
- Simple API: Offers an easy-to-use interface for shared memory operations, abstracting
libccomplexities. - Clear Error Handling: Distinguishes between
CleanandDirtysystem errors. - Built-in Synchronization: Includes a semaphore-based lock for safe shared memory access. (requires crate feature "semaphore").
- Extendable: Flexibility to implement custom synchronization logic through the
CortexSynctrait.
Examples
Simple example using the built-in semaphore lock:
use ;
// Initialize a segment of shared memory with the value 42.0
let key = 123;
let cortex = new
.key
.
.unwrap;
// Attaching to an existing segment of shared memory requires explicit type annotations
let attached: = attach.unwrap;
assert_eq!;
// Write to shared memory
let new_val = 12.34;
cortex.write.unwrap;
assert_eq!;
The semaphore module comes with some pre-defined permissions, these permissions dictates which OS users can interact with the semaphore. Using with_default_lock defaults to OwnerOnly which is the most restrictive mode. Check out SemaphorePermission for other modes, or use the Custom enum-variant to set your own permissions.
use ;
let settings = SemaphoreSettings ;
let cortex = new
.key
.
.unwrap;