mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-27 08:14:52 +02:00
48 lines
1.9 KiB
Rust
48 lines
1.9 KiB
Rust
#![cfg(all(not(target_env = "msvc"), feature = "jemalloc", not(feature = "hardened_malloc")))]
|
|
#![allow(dead_code)]
|
|
|
|
use std::ffi::{c_char, c_void};
|
|
|
|
use tikv_jemalloc_ctl as mallctl;
|
|
use tikv_jemalloc_sys as ffi;
|
|
use tikv_jemallocator as jemalloc;
|
|
|
|
#[global_allocator]
|
|
static JEMALLOC: jemalloc::Jemalloc = jemalloc::Jemalloc;
|
|
|
|
pub(crate) fn version() -> &'static str { mallctl::version::read().expect("version string") }
|
|
|
|
pub(crate) fn memory_usage() -> String {
|
|
use mallctl::stats;
|
|
let allocated = stats::allocated::read().unwrap_or_default() as f64 / 1024.0 / 1024.0;
|
|
let active = stats::active::read().unwrap_or_default() as f64 / 1024.0 / 1024.0;
|
|
let mapped = stats::mapped::read().unwrap_or_default() as f64 / 1024.0 / 1024.0;
|
|
let metadata = stats::metadata::read().unwrap_or_default() as f64 / 1024.0 / 1024.0;
|
|
let resident = stats::resident::read().unwrap_or_default() as f64 / 1024.0 / 1024.0;
|
|
let retained = stats::retained::read().unwrap_or_default() as f64 / 1024.0 / 1024.0;
|
|
format!(
|
|
" allocated: {allocated:.2} MiB\n active: {active:.2} MiB\n mapped: {mapped:.2} MiB\n metadata: {metadata:.2} \
|
|
MiB\n resident: {resident:.2} MiB\n retained: {retained:.2} MiB\n "
|
|
)
|
|
}
|
|
|
|
pub(crate) fn memory_stats() -> String {
|
|
const MAX_LENGTH: usize = 65536 - 4096;
|
|
|
|
let opts_s = "d";
|
|
let mut str: String = String::new();
|
|
|
|
let opaque: *mut c_void = &mut str as *mut _ as *mut c_void;
|
|
let opts_p: *const c_char = std::ffi::CString::new(opts_s).expect("cstring").into_raw() as *const c_char;
|
|
unsafe { ffi::malloc_stats_print(Some(malloc_stats_cb), opaque, opts_p) };
|
|
|
|
str.truncate(MAX_LENGTH);
|
|
format!("<code>{str}</code>")
|
|
}
|
|
|
|
extern "C" fn malloc_stats_cb(opaque: *mut c_void, msg: *const c_char) {
|
|
let res: &mut String = unsafe { std::mem::transmute::<*mut c_void, &mut String>(opaque) };
|
|
let msg = unsafe { std::ffi::CStr::from_ptr(msg) };
|
|
let msg = String::from_utf8_lossy(msg.to_bytes());
|
|
res.push_str(msg.as_ref());
|
|
}
|