1 unstable release
0.1.0 | May 24, 2023 |
---|
#541 in Memory management
17KB
257 lines
memoria
A bad memory "profiler" for production.
- Define a
UseCase
enum. - Use memoria's custom allocator.
- Assign usecases to functions or blocks of code using
Alloc::with_usecase
. - Get basic memory usage statistics per-usecase, either at the end of your program or periodically in a background thread.
use num_enum::{TryFromPrimitive, IntoPrimitive};
#[derive(TryFromPrimitive, IntoPrimitive, Default, Debug)]
#[repr(u32)]
enum MyUseCase {
#[default]
None,
LoadConfig,
ProcessData,
}
impl memoria::UseCase for MyUseCase {}
#[global_allocator]
static ALLOCATOR: memoria::Alloc<MyUseCase> = memoria::Alloc::new();
fn load_config() {
let _guard = ALLOCATOR.with_usecase(MyUseCase::LoadConfig);
println!("loading config...");
// consume some memory
let _temporary = vec![0u8; 256];
}
fn process_data() {
let _guard = ALLOCATOR.with_usecase(MyUseCase::ProcessData);
// consume some more memory
let _temporary = vec![0u8; 2048];
}
fn main() {
load_config();
process_data();
println!("memory usage stats:");
ALLOCATOR.with_recorder(|recorder| {
recorder.flush(
|usecase, stat| {
println!("{usecase:?}: {stat:?}");
},
|err, count| {
println!("{err:?}: {count}");
}
);
Ok(())
}).ok();
}
License
Licensed under the MIT license, see ./LICENSE
.
Dependencies
~0.9–6MB
~20K SLoC