1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#![cfg_attr(not(feature = "std"), no_std)]
#[cfg(not(feature = "std"))]
extern crate alloc;
cfg_if::cfg_if! {
if #[cfg(all(
feature = "jemalloc-global",
not(target_os = "windows"),
not(target_arch = "wasm32")
))] {
#[global_allocator]
pub static ALLOC: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;
mod memory_stats_jemalloc;
use memory_stats_jemalloc as memory_stats;
} else if #[cfg(feature = "dlmalloc-global")] {
#[global_allocator]
pub static ALLOC: dlmalloc::GlobalDlmalloc = dlmalloc::GlobalDlmalloc;
mod memory_stats_noop;
use memory_stats_noop as memory_stats;
} else if #[cfg(feature = "weealloc-global")] {
#[global_allocator]
pub static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
mod memory_stats_noop;
use memory_stats_noop as memory_stats;
} else if #[cfg(all(
feature = "mimalloc-global",
not(target_arch = "wasm32")
))] {
#[global_allocator]
pub static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
mod memory_stats_noop;
use memory_stats_noop as memory_stats;
} else {
mod memory_stats_noop;
use memory_stats_noop as memory_stats;
}
}
pub mod allocators;
#[cfg(any(
all(any(target_os = "macos", target_os = "ios"), not(feature = "jemalloc-global"),),
feature = "estimate-heapsize"
))]
pub mod sizeof;
#[macro_use]
mod malloc_size;
#[cfg(feature = "ethereum-impls")]
pub mod ethereum_impls;
#[cfg(feature = "primitive-types")]
pub mod primitives_impls;
pub use allocators::MallocSizeOfExt;
pub use malloc_size::{MallocShallowSizeOf, MallocSizeOf, MallocSizeOfOps};
pub use parity_util_mem_derive::*;
pub fn malloc_size<T: MallocSizeOf + ?Sized>(t: &T) -> usize {
MallocSizeOf::size_of(t, &mut allocators::new_malloc_size_ops())
}
#[derive(Clone, Debug)]
pub struct MemoryStatsError(memory_stats::Error);
#[cfg(feature = "std")]
impl std::fmt::Display for MemoryStatsError {
fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
self.0.fmt(fmt)
}
}
#[cfg(feature = "std")]
impl std::error::Error for MemoryStatsError {}
#[non_exhaustive]
#[derive(Debug, Clone)]
pub struct MemoryAllocationSnapshot {
pub resident: u64,
pub allocated: u64,
}
#[derive(Clone)]
pub struct MemoryAllocationTracker(self::memory_stats::MemoryAllocationTracker);
impl MemoryAllocationTracker {
pub fn new() -> Result<Self, MemoryStatsError> {
self::memory_stats::MemoryAllocationTracker::new()
.map(MemoryAllocationTracker)
.map_err(MemoryStatsError)
}
pub fn snapshot(&self) -> Result<MemoryAllocationSnapshot, MemoryStatsError> {
self.0.snapshot().map_err(MemoryStatsError)
}
}
#[cfg(feature = "std")]
#[cfg(test)]
mod test {
use super::{malloc_size, MallocSizeOf, MallocSizeOfExt};
use std::sync::Arc;
#[test]
fn test_arc() {
let val = Arc::new("test".to_string());
let s = val.malloc_size_of();
assert!(s > 0);
}
#[test]
fn test_dyn() {
trait Augmented: MallocSizeOf {}
impl Augmented for Vec<u8> {}
let val: Arc<dyn Augmented> = Arc::new(vec![0u8; 1024]);
assert!(malloc_size(&*val) > 1000);
}
}