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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#![allow(unsafe_code)]
use log::*;
use memmap::{MmapMut, MmapOptions};
use std::{
cmp::max,
marker::PhantomData,
mem::size_of,
ops::{Deref, DerefMut},
prelude::v1::*,
slice,
};
use tempfile::tempfile;
#[derive(Debug)]
pub struct MmapVec<T: Clone> {
mmap: MmapMut,
length: usize,
capacity: usize,
_t: PhantomData<T>,
}
impl<T: Clone> MmapVec<T> {
pub fn with_capacity(capacity: usize) -> Self {
let file = tempfile().expect("cannot create temporary file");
let size = max(1, capacity * size_of::<T>());
info!("Allocating {} MB in temp file", size / 1_000_000);
file.set_len(size as u64)
.expect("cannot set mmap file length");
let mmap = unsafe { MmapOptions::new().len(size).map_mut(&file) }
.expect("cannot access memory mapped file");
Self {
mmap,
length: 0,
capacity,
_t: PhantomData,
}
}
pub unsafe fn zero_initialized(len: usize) -> Self {
let mut result = Self::with_capacity(len);
result.length = len;
result
}
pub fn is_empty(&self) -> bool {
self.length == 0
}
pub fn len(&self) -> usize {
self.length
}
pub fn push(&mut self, next: T) {
if self.length == self.capacity {
panic!("MmapVec is at capacity")
}
let end = self.length;
self.length += 1;
self[end] = next;
}
pub fn resize(&mut self, size: usize, fill: T) {
if size > self.capacity {
panic!("MmapVec is at capacity")
}
while self.length < size {
self.push(fill.clone());
}
self.length = size;
}
pub fn extend_from_slice(&mut self, slice: &[T]) {
if self.length + slice.len() > self.capacity {
panic!("MmapVec would grow beyond capacity")
}
let start = self.length;
self.length += slice.len();
self.as_mut_slice()[start..].clone_from_slice(slice);
}
#[inline]
pub fn as_slice(&self) -> &[T] {
self
}
#[inline]
pub fn as_mut_slice(&mut self) -> &mut [T] {
self
}
}
impl<T: Clone + PartialEq> PartialEq for MmapVec<T> {
fn eq(&self, other: &Self) -> bool {
if self.len() != other.len() {
return false;
}
self.iter().zip(other.iter()).all(|(a, b)| a == b)
}
}
impl<T: Clone> Clone for MmapVec<T> {
fn clone(&self) -> Self {
let mut clone = Self::with_capacity(self.capacity);
clone.extend(self.iter());
clone
}
}
impl<T: Clone> Extend<T> for MmapVec<T> {
fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) {
for i in iter {
self.push(i)
}
}
}
impl<'a, T: 'a + Clone> Extend<&'a T> for MmapVec<T> {
fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) {
for i in iter {
self.push(i.clone())
}
}
}
impl<T: Clone> Deref for MmapVec<T> {
type Target = [T];
#[inline]
fn deref(&self) -> &[T] {
unsafe { slice::from_raw_parts(self.mmap.as_ptr() as *const T, self.length) }
}
}
impl<T: Clone> DerefMut for MmapVec<T> {
#[inline]
fn deref_mut(&mut self) -> &mut [T] {
unsafe { slice::from_raw_parts_mut(self.mmap.as_mut_ptr() as *mut T, self.length) }
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_empty() {
let empty = MmapVec::<u64>::with_capacity(0);
assert_eq!(empty.len(), 0);
}
#[test]
fn test_len() {
let mut m: MmapVec<String> = MmapVec::with_capacity(2);
m.push("Hello".to_string());
m.push("World".to_string());
assert_eq!(m.len(), 2);
}
#[test]
fn test_slice() {
fn slice_function<T>(_x: &[T]) {}
let m: MmapVec<String> = MmapVec::with_capacity(1);
slice_function(m.as_slice());
}
#[test]
fn test_mut_slice() {
fn mut_slice_function<T>(mut _x: &[T]) {}
let mut m: MmapVec<String> = MmapVec::with_capacity(1);
mut_slice_function(m.as_mut_slice());
}
#[test]
fn field_element_mmap_vec() {
let mut m: MmapVec<usize> = MmapVec::with_capacity(10);
let v = vec![42; 10];
m.extend(v.as_slice());
for (i, x) in m.iter_mut().enumerate() {
*x += i;
}
for i in 0..10 {
assert_eq!(m[i], 42 + i)
}
}
#[test]
#[should_panic]
fn test_cannot_index_beyond_end() {
let mut m: MmapVec<u64> = MmapVec::with_capacity(1);
m[0] = 10;
}
#[test]
#[should_panic]
fn test_cannot_extend_beyond_capacity() {
let mut m: MmapVec<u64> = MmapVec::with_capacity(1);
let v = vec![10_u64; 2];
m.extend(v.as_slice());
}
}