reflex-cache 0.2.2

Episodic memory and high-speed semantic cache for LLM responses
Documentation
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
//! Memory-mapped file helpers.
//!
//! These utilities are used to read/write `rkyv`-serialized payloads efficiently and share
//! them across cache layers without copying.

/// Mmap configuration types.
pub mod config;
/// Mmap error types.
pub mod error;

#[cfg(test)]
mod tests;

pub use config::{MmapConfig, MmapMode};
pub use error::{MmapError, MmapResult};

use std::fs::{File, OpenOptions};
use std::io::{self, Write};
use std::ops::Deref;
use std::path::Path;
use std::sync::Arc;

use memmap2::{Mmap, MmapMut, MmapOptions as Memmap2Options};
use rkyv::Portable;
use rkyv::api::high::{HighValidator, access};
use rkyv::bytecheck::CheckBytes;
use rkyv::rancor::Error as RkyvError;

/// Required alignment (bytes) for validated `rkyv` access.
pub const RKYV_ALIGNMENT: usize = 16;

enum MmapInner {
    ReadOnly(Mmap),
    Mutable(MmapMut),
}

impl MmapInner {
    fn as_slice(&self) -> &[u8] {
        match self {
            MmapInner::ReadOnly(m) => m.deref(),
            MmapInner::Mutable(m) => m.deref(),
        }
    }

    fn as_mut_slice(&mut self) -> Option<&mut [u8]> {
        match self {
            MmapInner::ReadOnly(_) => None,
            MmapInner::Mutable(m) => Some(m.as_mut()),
        }
    }

    fn len(&self) -> usize {
        self.as_slice().len()
    }

    fn flush(&self) -> io::Result<()> {
        match self {
            MmapInner::ReadOnly(_) => Ok(()),
            MmapInner::Mutable(m) => m.flush(),
        }
    }

    fn flush_async(&self) -> io::Result<()> {
        match self {
            MmapInner::ReadOnly(_) => Ok(()),
            MmapInner::Mutable(m) => m.flush_async(),
        }
    }

    fn flush_range(&self, offset: usize, len: usize) -> io::Result<()> {
        match self {
            MmapInner::ReadOnly(_) => Ok(()),
            MmapInner::Mutable(m) => m.flush_range(offset, len),
        }
    }
}

/// A file-backed memory map (read-only, read-write, or copy-on-write).
pub struct MmapFile {
    mmap: MmapInner,
    file: File,
    config: MmapConfig,
    path: std::path::PathBuf,
}

impl MmapFile {
    /// Opens an existing file with the provided configuration.
    pub fn open<P: AsRef<Path>>(path: P, config: MmapConfig) -> MmapResult<Self> {
        let path = path.as_ref();

        let file = match config.mode {
            MmapMode::ReadOnly | MmapMode::CopyOnWrite => {
                OpenOptions::new().read(true).open(path)?
            }
            MmapMode::ReadWrite => OpenOptions::new().read(true).write(true).open(path)?,
        };

        let metadata = file.metadata()?;
        let file_len = metadata.len() as usize;

        if file_len == 0 {
            return Err(MmapError::EmptyFile);
        }

        let mmap = Self::create_mapping(&file, &config)?;

        Ok(Self {
            mmap,
            file,
            config,
            path: path.to_path_buf(),
        })
    }

    /// Creates (or truncates) a file to `size` and opens a read-write mapping.
    pub fn create<P: AsRef<Path>>(
        path: P,
        size: usize,
        mut config: MmapConfig,
    ) -> MmapResult<Self> {
        let path = path.as_ref();
        config.mode = MmapMode::ReadWrite;

        let file = OpenOptions::new()
            .read(true)
            .write(true)
            .create(true)
            .truncate(true)
            .open(path)?;

        file.set_len(size as u64)?;

        let mmap = Self::create_mapping(&file, &config)?;

        Ok(Self {
            mmap,
            file,
            config,
            path: path.to_path_buf(),
        })
    }

    fn create_mapping(file: &File, config: &MmapConfig) -> MmapResult<MmapInner> {
        let mut opts = Memmap2Options::new();

        if let Some(offset) = config.offset {
            opts.offset(offset);
        }

        if let Some(len) = config.len {
            opts.len(len);
        }

        if config.populate {
            opts.populate();
        }

        let mmap = match config.mode {
            MmapMode::ReadOnly => {
                // SAFETY: We ensure the file exists and is readable.
                // The caller must ensure no concurrent writers modify the file.
                let m = unsafe { opts.map(file)? };
                MmapInner::ReadOnly(m)
            }
            MmapMode::ReadWrite => {
                // SAFETY: We ensure the file exists and is writable.
                // The caller must ensure proper synchronization for concurrent access.
                let m = unsafe { opts.map_mut(file)? };
                MmapInner::Mutable(m)
            }
            MmapMode::CopyOnWrite => {
                // SAFETY: Copy-on-write mappings don't affect the underlying file.
                let m = unsafe { opts.map_copy(file)? };
                MmapInner::Mutable(m)
            }
        };

        Ok(mmap)
    }

    /// Returns a read-only view of the mapped bytes.
    pub fn as_slice(&self) -> &[u8] {
        self.mmap.as_slice()
    }

    /// Returns a mutable view of the bytes (if the mapping is writable).
    pub fn as_mut_slice(&mut self) -> Option<&mut [u8]> {
        self.mmap.as_mut_slice()
    }

    /// Returns the mapped byte length.
    pub fn len(&self) -> usize {
        self.mmap.len()
    }

    /// Returns `true` if the mapping length is zero.
    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }

    /// Returns `true` if the mapping mode allows writes.
    pub fn is_writable(&self) -> bool {
        matches!(
            self.config.mode,
            MmapMode::ReadWrite | MmapMode::CopyOnWrite
        )
    }

    /// Flushes any dirty pages (no-op for read-only maps).
    pub fn flush(&self) -> MmapResult<()> {
        self.mmap.flush()?;
        Ok(())
    }

    /// Flushes any dirty pages asynchronously (no-op for read-only maps).
    pub fn flush_async(&self) -> MmapResult<()> {
        self.mmap.flush_async()?;
        Ok(())
    }

    /// Flushes a byte range (no-op for read-only maps).
    pub fn flush_range(&self, offset: usize, len: usize) -> MmapResult<()> {
        self.mmap.flush_range(offset, len)?;
        Ok(())
    }

    /// Validates and returns an archived `rkyv` value from offset 0.
    pub fn access_archived<T>(&self) -> MmapResult<&T>
    where
        T: Portable + for<'a> CheckBytes<HighValidator<'a, RkyvError>>,
    {
        self.access_archived_at::<T>(0)
    }

    /// Validates and returns an archived `rkyv` value starting at `offset`.
    pub fn access_archived_at<T>(&self, offset: usize) -> MmapResult<&T>
    where
        T: Portable + for<'a> CheckBytes<HighValidator<'a, RkyvError>>,
    {
        let data = self.as_slice();

        if offset >= data.len() {
            return Err(MmapError::FileTooSmall {
                expected: offset + 1,
                actual: data.len(),
            });
        }

        let slice = &data[offset..];

        let ptr = slice.as_ptr();
        if !(ptr as usize).is_multiple_of(RKYV_ALIGNMENT) {
            return Err(MmapError::AlignmentError {
                offset,
                alignment: RKYV_ALIGNMENT,
            });
        }

        access::<T, RkyvError>(slice).map_err(|e| MmapError::ValidationFailed(format!("{:?}", e)))
    }

    /// Returns a raw pointer to the mapped bytes.
    pub fn as_ptr(&self) -> *const u8 {
        self.as_slice().as_ptr()
    }

    /// Returns a raw mutable pointer (if writable).
    pub fn as_mut_ptr(&mut self) -> Option<*mut u8> {
        self.as_mut_slice().map(|s| s.as_mut_ptr())
    }

    /// Grows the underlying file and remaps.
    pub fn grow(&mut self, new_size: usize) -> MmapResult<()> {
        if self.config.mode == MmapMode::ReadOnly {
            return Err(MmapError::ResizeFailed(
                "Cannot grow read-only mapping".to_string(),
            ));
        }

        let current_size = self.len();
        if new_size <= current_size {
            return Err(MmapError::ResizeFailed(format!(
                "New size {} must be larger than current size {}",
                new_size, current_size
            )));
        }

        self.flush()?;

        self.file.set_len(new_size as u64)?;

        self.mmap = Self::create_mapping(&self.file, &self.config)?;

        Ok(())
    }

    /// Shrinks the underlying file and remaps.
    pub fn shrink(&mut self, new_size: usize) -> MmapResult<()> {
        if self.config.mode == MmapMode::ReadOnly {
            return Err(MmapError::ResizeFailed(
                "Cannot shrink read-only mapping".to_string(),
            ));
        }

        if new_size == 0 {
            return Err(MmapError::ResizeFailed(
                "Cannot shrink to zero size".to_string(),
            ));
        }

        let current_size = self.len();
        if new_size >= current_size {
            return Err(MmapError::ResizeFailed(format!(
                "New size {} must be smaller than current size {}",
                new_size, current_size
            )));
        }

        self.flush()?;

        self.file.set_len(new_size as u64)?;

        self.mmap = Self::create_mapping(&self.file, &self.config)?;

        Ok(())
    }

    /// Resizes the underlying file (grow/shrink) and remaps.
    pub fn resize(&mut self, new_size: usize) -> MmapResult<()> {
        let current_size = self.len();

        if new_size > current_size {
            self.grow(new_size)
        } else if new_size < current_size {
            self.shrink(new_size)
        } else {
            Ok(())
        }
    }

    /// Returns the file path.
    pub fn path(&self) -> &Path {
        &self.path
    }

    /// Returns the mapping mode.
    pub fn mode(&self) -> MmapMode {
        self.config.mode
    }
}

#[derive(Clone)]
/// Shared read-only mmap handle (cheap to clone).
pub struct MmapFileHandle {
    inner: Arc<Mmap>,
    path: Arc<std::path::PathBuf>,
}

impl std::fmt::Debug for MmapFileHandle {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("MmapFileHandle")
            .field("path", &self.path)
            .field("len", &self.len())
            .field("strong_count", &self.strong_count())
            .finish()
    }
}

impl MmapFileHandle {
    /// Opens a read-only mapping to an existing file.
    pub fn open<P: AsRef<Path>>(path: P) -> MmapResult<Self> {
        let path = path.as_ref();
        let file = File::open(path)?;

        let metadata = file.metadata()?;
        if metadata.len() == 0 {
            return Err(MmapError::EmptyFile);
        }

        // SAFETY: We ensure the file exists and is readable.
        // The Arc wrapper provides thread-safe shared access.
        let mmap = unsafe { Mmap::map(&file)? };

        Ok(Self {
            inner: Arc::new(mmap),
            path: Arc::new(path.to_path_buf()),
        })
    }

    /// Returns a view of the mapped bytes.
    pub fn as_slice(&self) -> &[u8] {
        self.inner.deref()
    }

    /// Returns the mapped byte length.
    pub fn len(&self) -> usize {
        self.inner.len()
    }

    /// Returns `true` if the mapping length is zero.
    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }

    /// Returns the number of strong references to the underlying mmap.
    pub fn strong_count(&self) -> usize {
        Arc::strong_count(&self.inner)
    }

    /// Validates and returns an archived `rkyv` value from offset 0.
    pub fn access_archived<T>(&self) -> MmapResult<&T>
    where
        T: Portable + for<'a> CheckBytes<HighValidator<'a, RkyvError>>,
    {
        self.access_archived_at::<T>(0)
    }

    /// Validates and returns an archived `rkyv` value starting at `offset`.
    pub fn access_archived_at<T>(&self, offset: usize) -> MmapResult<&T>
    where
        T: Portable + for<'a> CheckBytes<HighValidator<'a, RkyvError>>,
    {
        let data = self.as_slice();

        if offset >= data.len() {
            return Err(MmapError::FileTooSmall {
                expected: offset + 1,
                actual: data.len(),
            });
        }

        let slice = &data[offset..];

        let ptr = slice.as_ptr();
        if !(ptr as usize).is_multiple_of(RKYV_ALIGNMENT) {
            return Err(MmapError::AlignmentError {
                offset,
                alignment: RKYV_ALIGNMENT,
            });
        }

        access::<T, RkyvError>(slice).map_err(|e| MmapError::ValidationFailed(format!("{:?}", e)))
    }

    /// Returns a raw pointer to the mapped bytes.
    pub fn as_ptr(&self) -> *const u8 {
        self.as_slice().as_ptr()
    }

    /// Returns the file path.
    pub fn path(&self) -> &Path {
        &self.path
    }
}

/// Helper to write bytes to a file then open an aligned mmap.
pub struct AlignedMmapBuilder {
    path: std::path::PathBuf,
}

impl AlignedMmapBuilder {
    /// Creates a builder for `path`.
    pub fn new<P: AsRef<Path>>(path: P) -> Self {
        Self {
            path: path.as_ref().to_path_buf(),
        }
    }

    /// Writes bytes and opens a read-write mapping.
    pub fn write(self, data: &[u8]) -> MmapResult<MmapFile> {
        let mut file = OpenOptions::new()
            .read(true)
            .write(true)
            .create(true)
            .truncate(true)
            .open(&self.path)?;

        file.write_all(data)?;
        file.flush()?;
        drop(file);

        MmapFile::open(&self.path, MmapConfig::read_write())
    }

    /// Writes bytes and opens a read-only handle.
    pub fn write_readonly(self, data: &[u8]) -> MmapResult<MmapFileHandle> {
        let mut file = OpenOptions::new()
            .read(true)
            .write(true)
            .create(true)
            .truncate(true)
            .open(&self.path)?;

        file.write_all(data)?;
        file.flush()?;
        drop(file);

        MmapFileHandle::open(&self.path)
    }
}