cd4c62042a
Round 3 of benchmark-gated optimizations (benches/ROUND3.md; every change gated by a before/after benchmark — an AFTER that did not beat its BEFORE was to be rolled back; none needed it. Equivalence gates assert identical row sequences / byte-identical output on every behavior-preserving rewrite): DB hot paths (local PG16, EXPLAIN-verified): - Web-UI listing (list_resources_paged): cursor pushed INSIDE the folders/files UNION-ALL branches as sargable row-value comparisons with per-branch ORDER/LIMIT + two partial expression indexes (folder_id, LOWER(name), id). 20k-entry folder: 26.6 -> 1.3 ms/page (19.5x); other sort modes at parity or better. New migration 20260918000000. [benches/LISTING-KEYSET.md section in ROUND3] - Photos timeline (list_media_files): per-drive CROSS JOIN LATERAL top-N on the timeline index, joins moved above the top-N. 50k-photo library: 97.4 -> 1.6 ms/page (55.7x). The old "LIMIT stops the scan early" comment was refuted by EXPLAIN. - PROPFIND sub-folders (both DAV surfaces): keyset list_folders_batch off idx_folders_unique_name replaces COUNT(*) OVER() + LIMIT/OFFSET (5k dirs: 79.7 -> 17.9 ms full walk, 4.5x). Concurrency: - Basic-auth cache single-flight (moka try_get_with): 8 concurrent DAV connections at TTL expiry paid 8 Argon2id runs (2.6 s CPU + 8x64 MiB); now 1 (300 ms). Failed verifications remain uncached. - CachedBlobBackend per-hash single-flight + unique tmp names: 16 concurrent cold readers = 16 full remote downloads racing truncating writes on ONE deterministic .tmp (corruptible cache); now 1 download (16x less egress, 2.8x wall on a shared link) and torn files can never be renamed into the cache. I/O and allocations: - Chunk-assembly reads 64K -> 512K buffers (2.3x, 8x fewer syscalls); chunk-spool writes via BufWriter 512K (5.6x, 32x fewer syscalls). - S3/Azure put_blob_from_bytes_unsynced overrides: dedup settle no longer pays a HEAD probe per new chunk (2 RTT -> 1, 1.8x); Azure stops copying every chunk (Bytes -> Body, -0.44 ms - 4 MiB alloc per 4 MiB chunk). - Entity->DTO mapping: Arc<str> interning of closed-set display fields + common MIMEs, 1-alloc etag/size formatting, FolderDto moves instead of clones. File row: 11 -> 4 allocs; folder row: 11.8 -> 1 (2.1x faster). - CardDAV REPORT: deleted dead per-contact vCard pre-generation and the O(N^2) uid scan whose result was discarded (5k contacts: 55.7 -> 5.7 ms, 9.8x); byte-identical XML asserted. - Search-results cache: byte weigher + 32 MiB budget (OXICLOUD_SEARCH_CACHE_MAX_BYTES) replaces the 1000-ENTRY cap that let ~300 MiB of enriched rows sit in RSS; read latency parity. - Dropped aws-config + aws-smithy-types (zero references; -82 dep-graph nodes, three SDK stacks gone from every build). tokio "process" is now an explicit feature (was enabled transitively by aws-config). Frontend: - Cached Intl.DateTimeFormat keyed by (locale, options) in formatDate and 4 sibling callsites: 20k dates 2612 -> 51 ms (51.6x); vitest gate asserts output identity across locales and a 3x floor. Validation: cargo fmt + clippy --all-features --all-targets -D warnings clean; 518 unit + 548 integration-cfg tests green; new-shape endpoints smoke-tested end-to-end over HTTP (all 5 listing sort modes with cursor walks, WebDAV PROPFIND Depth-1, photos timeline, Basic-auth DAV login); frontend npm run check clean, new vitest gates green. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EBsU2qEzny3A8WQUEuMNCr
604 lines
23 KiB
Rust
604 lines
23 KiB
Rust
//! `CachedBlobBackend` — LRU local-disk cache decorator for remote blob backends.
|
|
//!
|
|
//! Wraps any `BlobStorageBackend` (typically S3 or Azure) and transparently
|
|
//! caches hot blobs on a local SSD. Reads check the cache first; cache misses
|
|
//! are fetched from the inner backend and written to the cache. Writes go to
|
|
//! the inner backend AND the local cache simultaneously.
|
|
//!
|
|
//! Eviction is LRU based on a configurable maximum disk budget.
|
|
|
|
use std::path::{Path, PathBuf};
|
|
use std::pin::Pin;
|
|
use std::sync::Arc;
|
|
use std::sync::atomic::{AtomicU64, Ordering};
|
|
|
|
use bytes::Bytes;
|
|
use dashmap::DashMap;
|
|
use lru::LruCache;
|
|
use std::num::NonZeroUsize;
|
|
use tokio::fs;
|
|
use tokio::io::{AsyncReadExt, AsyncSeekExt, AsyncWriteExt};
|
|
use tokio::sync::Mutex;
|
|
use tokio_util::io::ReaderStream;
|
|
use uuid::Uuid;
|
|
|
|
use crate::application::ports::blob_storage_ports::{
|
|
BlobStorageBackend, BlobStream, StorageHealthStatus,
|
|
};
|
|
use crate::domain::errors::DomainError;
|
|
|
|
/// Chunk size for streaming cached file reads (256 KB).
|
|
const STREAM_CHUNK_SIZE: usize = 256 * 1024;
|
|
|
|
// ── Configuration ──────────────────────────────────────────────────
|
|
|
|
/// Configuration for the LRU disk cache.
|
|
#[derive(Debug, Clone)]
|
|
pub struct BlobCacheConfig {
|
|
/// Directory where cached blobs are stored.
|
|
pub cache_dir: PathBuf,
|
|
/// Maximum total cache size in bytes.
|
|
pub max_cache_bytes: u64,
|
|
}
|
|
|
|
// ── Cache entry ────────────────────────────────────────────────────
|
|
|
|
#[derive(Debug, Clone)]
|
|
struct CacheEntry {
|
|
size: u64,
|
|
}
|
|
|
|
// ── CachedBlobBackend ──────────────────────────────────────────────
|
|
|
|
/// A `BlobStorageBackend` decorator that adds an LRU disk cache in front of
|
|
/// a remote backend.
|
|
pub struct CachedBlobBackend {
|
|
inner: Arc<dyn BlobStorageBackend>,
|
|
cache_dir: PathBuf,
|
|
max_cache_bytes: u64,
|
|
index: Arc<Mutex<LruCache<String, CacheEntry>>>,
|
|
current_size: Arc<AtomicU64>,
|
|
/// Per-hash single-flight gates for cache misses. K concurrent cold
|
|
/// readers of one blob (e.g. a video player's parallel Range probes)
|
|
/// used to each download the FULL blob from the remote backend — and
|
|
/// race their writes on one shared `.tmp` path. The gate coalesces
|
|
/// them onto one fetch; waiters re-check the cache and serve locally
|
|
/// (16 fetches -> 1, benches/BLOB-CACHE.md).
|
|
inflight: Arc<DashMap<String, Arc<Mutex<()>>>>,
|
|
}
|
|
|
|
impl CachedBlobBackend {
|
|
/// Create a new cached backend wrapping `inner`.
|
|
pub fn new(inner: Arc<dyn BlobStorageBackend>, config: &BlobCacheConfig) -> Self {
|
|
Self {
|
|
inner,
|
|
cache_dir: config.cache_dir.clone(),
|
|
max_cache_bytes: config.max_cache_bytes,
|
|
// Capacity is essentially unbounded — eviction is by byte budget, not count.
|
|
index: Arc::new(Mutex::new(LruCache::new(
|
|
NonZeroUsize::new(1_000_000).unwrap(),
|
|
))),
|
|
current_size: Arc::new(AtomicU64::new(0)),
|
|
inflight: Arc::new(DashMap::new()),
|
|
}
|
|
}
|
|
|
|
/// Path where a blob is cached locally.
|
|
fn cached_path(&self, hash: &str) -> PathBuf {
|
|
let prefix = &hash[..2.min(hash.len())];
|
|
self.cache_dir.join(prefix).join(format!("{hash}.blob"))
|
|
}
|
|
}
|
|
|
|
impl BlobStorageBackend for CachedBlobBackend {
|
|
fn initialize(
|
|
&self,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<(), DomainError>> + Send + '_>> {
|
|
let inner = self.inner.clone();
|
|
let cache_dir = self.cache_dir.clone();
|
|
let index = self.index.clone();
|
|
let current_size = self.current_size.clone();
|
|
Box::pin(async move {
|
|
inner.initialize().await?;
|
|
|
|
// Create cache dir structure (256 prefix dirs)
|
|
fs::create_dir_all(&cache_dir).await.map_err(|e| {
|
|
DomainError::internal_error("BlobCache", format!("mkdir cache_dir: {e}"))
|
|
})?;
|
|
|
|
// Scan existing cache to rebuild index. Collect entries WITHOUT
|
|
// holding the index lock — a large cache directory walk must not
|
|
// serialize concurrent blob operations behind the mutex.
|
|
let mut total_bytes = 0u64;
|
|
let mut entries: Vec<(String, u64)> = Vec::new();
|
|
if let Ok(mut read_dir) = fs::read_dir(&cache_dir).await {
|
|
while let Ok(Some(prefix_entry)) = read_dir.next_entry().await {
|
|
if !prefix_entry.path().is_dir() {
|
|
continue;
|
|
}
|
|
if let Ok(mut sub_dir) = fs::read_dir(prefix_entry.path()).await {
|
|
while let Ok(Some(entry)) = sub_dir.next_entry().await {
|
|
let path = entry.path();
|
|
if path.extension().and_then(|e| e.to_str()) == Some("blob")
|
|
&& let Some(stem) = path.file_stem().and_then(|s| s.to_str())
|
|
{
|
|
let size = fs::metadata(&path).await.map(|m| m.len()).unwrap_or(0);
|
|
entries.push((stem.to_string(), size));
|
|
total_bytes += size;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// Bulk-insert the rebuilt index under a single brief lock.
|
|
{
|
|
let mut idx = index.lock().await;
|
|
for (stem, size) in entries {
|
|
idx.put(stem, CacheEntry { size });
|
|
}
|
|
}
|
|
current_size.store(total_bytes, Ordering::Relaxed);
|
|
tracing::info!(
|
|
"Blob cache initialized: {} bytes in cache at {}",
|
|
total_bytes,
|
|
cache_dir.display()
|
|
);
|
|
Ok(())
|
|
})
|
|
}
|
|
|
|
fn put_blob(
|
|
&self,
|
|
hash: &str,
|
|
source_path: &Path,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<u64, DomainError>> + Send + '_>> {
|
|
let inner = self.inner.clone();
|
|
let hash = hash.to_string();
|
|
let source = source_path.to_path_buf();
|
|
let self_ref = CachedRef {
|
|
cache_dir: self.cache_dir.clone(),
|
|
max_cache_bytes: self.max_cache_bytes,
|
|
index: self.index.clone(),
|
|
current_size: self.current_size.clone(),
|
|
inflight: self.inflight.clone(),
|
|
};
|
|
Box::pin(async move {
|
|
// Write to inner backend
|
|
let bytes = inner.put_blob(&hash, &source).await?;
|
|
// Also cache locally (best-effort)
|
|
let _ = self_ref.insert_into_cache_static(&hash, &source).await;
|
|
Ok(bytes)
|
|
})
|
|
}
|
|
|
|
fn put_blob_from_bytes(
|
|
&self,
|
|
hash: &str,
|
|
data: Bytes,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<u64, DomainError>> + Send + '_>> {
|
|
let inner = self.inner.clone();
|
|
let hash = hash.to_string();
|
|
let self_ref = CachedRef {
|
|
cache_dir: self.cache_dir.clone(),
|
|
max_cache_bytes: self.max_cache_bytes,
|
|
index: self.index.clone(),
|
|
current_size: self.current_size.clone(),
|
|
inflight: self.inflight.clone(),
|
|
};
|
|
Box::pin(async move {
|
|
let size = inner.put_blob_from_bytes(&hash, data.clone()).await?;
|
|
// Also cache locally (best-effort): write bytes to cache path
|
|
let dest = self_ref.cached_path(&hash);
|
|
if let Some(parent) = dest.parent() {
|
|
let _ = fs::create_dir_all(parent).await;
|
|
}
|
|
let _ = fs::write(&dest, &data).await;
|
|
let data_len = data.len() as u64;
|
|
let mut idx = self_ref.index.lock().await;
|
|
if let Some(old) = idx.put(hash, CacheEntry { size: data_len }) {
|
|
self_ref.current_size.fetch_sub(old.size, Ordering::Relaxed);
|
|
}
|
|
self_ref.current_size.fetch_add(data_len, Ordering::Relaxed);
|
|
Ok(size)
|
|
})
|
|
}
|
|
|
|
fn get_blob_stream(
|
|
&self,
|
|
hash: &str,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<BlobStream, DomainError>> + Send + '_>>
|
|
{
|
|
let hash = hash.to_string();
|
|
let cached = self.cached_path(&hash);
|
|
let index = self.index.clone();
|
|
let inner = self.inner.clone();
|
|
let cache_dir = self.cache_dir.clone();
|
|
let max_cache_bytes = self.max_cache_bytes;
|
|
let current_size = self.current_size.clone();
|
|
let inflight = self.inflight.clone();
|
|
Box::pin(async move {
|
|
// Check cache presence (and bump LRU recency) under a brief lock,
|
|
// then release it BEFORE touching the filesystem so concurrent
|
|
// readers don't serialize behind a single open() syscall.
|
|
if index.lock().await.get(&hash).is_some() {
|
|
if let Ok(file) = fs::File::open(&cached).await {
|
|
let stream: BlobStream =
|
|
Box::pin(ReaderStream::with_capacity(file, STREAM_CHUNK_SIZE));
|
|
return Ok(stream);
|
|
}
|
|
// Cache entry stale (file vanished) — drop it from the index.
|
|
if let Some(entry) = index.lock().await.pop(&hash) {
|
|
current_size.fetch_sub(entry.size, Ordering::Relaxed);
|
|
}
|
|
}
|
|
|
|
// Cache miss — fetch from inner (single-flight), spool to cache
|
|
let self_ref = CachedRef {
|
|
cache_dir,
|
|
max_cache_bytes,
|
|
index: index.clone(),
|
|
current_size: current_size.clone(),
|
|
inflight,
|
|
};
|
|
let dest = self_ref
|
|
.fetch_and_cache_singleflight(&hash, &*inner, &cached)
|
|
.await?;
|
|
let file = fs::File::open(&dest).await.map_err(|e| {
|
|
DomainError::internal_error("BlobCache", format!("re-open cached: {e}"))
|
|
})?;
|
|
let stream: BlobStream = Box::pin(ReaderStream::with_capacity(file, STREAM_CHUNK_SIZE));
|
|
Ok(stream)
|
|
})
|
|
}
|
|
|
|
fn get_blob_range_stream(
|
|
&self,
|
|
hash: &str,
|
|
start: u64,
|
|
end: Option<u64>,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<BlobStream, DomainError>> + Send + '_>>
|
|
{
|
|
let hash = hash.to_string();
|
|
let cached = self.cached_path(&hash);
|
|
let index = self.index.clone();
|
|
let inner = self.inner.clone();
|
|
let cache_dir = self.cache_dir.clone();
|
|
let max_cache_bytes = self.max_cache_bytes;
|
|
let current_size = self.current_size.clone();
|
|
let inflight = self.inflight.clone();
|
|
Box::pin(async move {
|
|
// Check cache presence (and bump LRU recency) under a brief lock,
|
|
// then release it BEFORE the open()/seek() syscalls so concurrent
|
|
// range readers don't serialize behind the index mutex.
|
|
if index.lock().await.get(&hash).is_some() {
|
|
if let Ok(mut file) = fs::File::open(&cached).await {
|
|
file.seek(std::io::SeekFrom::Start(start))
|
|
.await
|
|
.map_err(|e| {
|
|
DomainError::internal_error("BlobCache", format!("seek: {e}"))
|
|
})?;
|
|
let take_len = end.map(|e| e - start + 1).unwrap_or(u64::MAX);
|
|
let limited = file.take(take_len);
|
|
let stream: BlobStream =
|
|
Box::pin(ReaderStream::with_capacity(limited, STREAM_CHUNK_SIZE));
|
|
return Ok(stream);
|
|
}
|
|
if let Some(entry) = index.lock().await.pop(&hash) {
|
|
current_size.fetch_sub(entry.size, Ordering::Relaxed);
|
|
}
|
|
}
|
|
|
|
// Cache miss — fetch full blob into cache (single-flight: a
|
|
// player's parallel cold Range probes coalesce onto ONE remote
|
|
// download), then serve the range locally.
|
|
let self_ref = CachedRef {
|
|
cache_dir,
|
|
max_cache_bytes,
|
|
index: index.clone(),
|
|
current_size: current_size.clone(),
|
|
inflight,
|
|
};
|
|
let dest = self_ref
|
|
.fetch_and_cache_singleflight(&hash, &*inner, &cached)
|
|
.await?;
|
|
let mut file = fs::File::open(&dest)
|
|
.await
|
|
.map_err(|e| DomainError::internal_error("BlobCache", format!("re-open: {e}")))?;
|
|
file.seek(std::io::SeekFrom::Start(start))
|
|
.await
|
|
.map_err(|e| DomainError::internal_error("BlobCache", format!("seek: {e}")))?;
|
|
let take_len = end.map(|e| e - start + 1).unwrap_or(u64::MAX);
|
|
let limited = file.take(take_len);
|
|
let stream: BlobStream =
|
|
Box::pin(ReaderStream::with_capacity(limited, STREAM_CHUNK_SIZE));
|
|
Ok(stream)
|
|
})
|
|
}
|
|
|
|
fn delete_blob(
|
|
&self,
|
|
hash: &str,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<(), DomainError>> + Send + '_>> {
|
|
let inner = self.inner.clone();
|
|
let hash = hash.to_string();
|
|
let cached = self.cached_path(&hash);
|
|
let index = self.index.clone();
|
|
let current_size = self.current_size.clone();
|
|
Box::pin(async move {
|
|
inner.delete_blob(&hash).await?;
|
|
// Remove from cache — drop the index lock before the unlink()
|
|
// syscall so deletes don't serialize concurrent cache lookups.
|
|
if let Some(entry) = index.lock().await.pop(&hash) {
|
|
current_size.fetch_sub(entry.size, Ordering::Relaxed);
|
|
}
|
|
let _ = fs::remove_file(&cached).await;
|
|
Ok(())
|
|
})
|
|
}
|
|
|
|
fn blob_exists(
|
|
&self,
|
|
hash: &str,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<bool, DomainError>> + Send + '_>> {
|
|
let inner = self.inner.clone();
|
|
let hash = hash.to_string();
|
|
let index = self.index.clone();
|
|
Box::pin(async move {
|
|
// Check cache first (fast)
|
|
{
|
|
let mut idx = index.lock().await;
|
|
if idx.get(&hash).is_some() {
|
|
return Ok(true);
|
|
}
|
|
}
|
|
inner.blob_exists(&hash).await
|
|
})
|
|
}
|
|
|
|
fn blob_size(
|
|
&self,
|
|
hash: &str,
|
|
) -> Pin<Box<dyn std::future::Future<Output = Result<u64, DomainError>> + Send + '_>> {
|
|
let inner = self.inner.clone();
|
|
let hash = hash.to_string();
|
|
let index = self.index.clone();
|
|
let cached = self.cached_path(&hash);
|
|
Box::pin(async move {
|
|
// Check cache
|
|
{
|
|
let mut idx = index.lock().await;
|
|
if let Some(entry) = idx.get(&hash) {
|
|
return Ok(entry.size);
|
|
}
|
|
}
|
|
// Fallback to cached file on disk (in case index was lost)
|
|
if let Ok(meta) = fs::metadata(&cached).await {
|
|
return Ok(meta.len());
|
|
}
|
|
inner.blob_size(&hash).await
|
|
})
|
|
}
|
|
|
|
fn health_check(
|
|
&self,
|
|
) -> Pin<
|
|
Box<dyn std::future::Future<Output = Result<StorageHealthStatus, DomainError>> + Send + '_>,
|
|
> {
|
|
let inner = self.inner.clone();
|
|
let cache_dir = self.cache_dir.clone();
|
|
let current_size = self.current_size.clone();
|
|
let max_bytes = self.max_cache_bytes;
|
|
Box::pin(async move {
|
|
let mut status = inner.health_check().await?;
|
|
let used = current_size.load(Ordering::Relaxed);
|
|
status.message = format!(
|
|
"{} | Cache: {}/{} bytes used at {}",
|
|
status.message,
|
|
used,
|
|
max_bytes,
|
|
cache_dir.display()
|
|
);
|
|
status.backend_type = format!("cached({})", status.backend_type);
|
|
Ok(status)
|
|
})
|
|
}
|
|
|
|
fn backend_type(&self) -> &'static str {
|
|
"cached"
|
|
}
|
|
|
|
/// A cache miss fetches from the inner backend, so adopt its read-ahead
|
|
/// (high for remote, where prefetch pays off; hits read local cache files).
|
|
fn read_prefetch(&self) -> usize {
|
|
self.inner.read_prefetch()
|
|
}
|
|
|
|
fn local_blob_path(&self, hash: &str) -> Option<PathBuf> {
|
|
// If the blob is cached locally, return that path
|
|
let path = self.cached_path(hash);
|
|
if path.exists() { Some(path) } else { None }
|
|
}
|
|
}
|
|
|
|
// ── Helper struct for owned references in async closures ───────────
|
|
|
|
/// Cloneable set of cache internals — avoids borrow issues in boxed futures.
|
|
struct CachedRef {
|
|
cache_dir: PathBuf,
|
|
max_cache_bytes: u64,
|
|
index: Arc<Mutex<LruCache<String, CacheEntry>>>,
|
|
current_size: Arc<AtomicU64>,
|
|
inflight: Arc<DashMap<String, Arc<Mutex<()>>>>,
|
|
}
|
|
|
|
impl CachedRef {
|
|
fn cached_path(&self, hash: &str) -> PathBuf {
|
|
let prefix = &hash[..2.min(hash.len())];
|
|
self.cache_dir.join(prefix).join(format!("{hash}.blob"))
|
|
}
|
|
|
|
/// Single-flight wrapper around [`Self::fetch_and_cache_static`]: the
|
|
/// first caller for a hash becomes the leader and downloads; concurrent
|
|
/// callers queue on the per-hash gate, then re-check the cache and serve
|
|
/// the leader's file without touching the remote backend. Errors are not
|
|
/// cached — the gate entry is dropped, so the next caller retries.
|
|
async fn fetch_and_cache_singleflight(
|
|
&self,
|
|
hash: &str,
|
|
inner: &dyn BlobStorageBackend,
|
|
cached: &Path,
|
|
) -> Result<PathBuf, DomainError> {
|
|
let gate = self
|
|
.inflight
|
|
.entry(hash.to_string())
|
|
.or_insert_with(|| Arc::new(Mutex::new(())))
|
|
.clone();
|
|
let _guard = gate.lock().await;
|
|
|
|
// Re-check under the gate: if we queued behind the leader, the blob
|
|
// is on disk now and this turns into a local open.
|
|
if self.index.lock().await.get(hash).is_some() && fs::metadata(cached).await.is_ok() {
|
|
return Ok(cached.to_path_buf());
|
|
}
|
|
|
|
let result = self.fetch_and_cache_static(hash, inner).await;
|
|
// Drop the gate whether we succeeded or failed; a late-arriving
|
|
// caller after an error creates a fresh gate and retries the fetch.
|
|
self.inflight.remove(hash);
|
|
result
|
|
}
|
|
|
|
/// Pop LRU entries until the cache is back within its byte budget,
|
|
/// returning the on-disk paths of the evicted blobs.
|
|
///
|
|
/// Only the in-memory index is touched here (atomic counter + LRU map);
|
|
/// the caller MUST unlink the returned paths AFTER releasing the index
|
|
/// lock so the `remove_file` syscalls never run while the mutex is held.
|
|
fn collect_evictions(&self, idx: &mut LruCache<String, CacheEntry>) -> Vec<PathBuf> {
|
|
let mut victims = Vec::new();
|
|
while self.current_size.load(Ordering::Relaxed) > self.max_cache_bytes {
|
|
if let Some((evicted_hash, evicted_entry)) = idx.pop_lru() {
|
|
self.current_size
|
|
.fetch_sub(evicted_entry.size, Ordering::Relaxed);
|
|
victims.push(self.cached_path(&evicted_hash));
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
victims
|
|
}
|
|
|
|
async fn insert_into_cache_static(
|
|
&self,
|
|
hash: &str,
|
|
source_path: &Path,
|
|
) -> Result<(), DomainError> {
|
|
let dest = self.cached_path(hash);
|
|
if let Some(parent) = dest.parent() {
|
|
fs::create_dir_all(parent).await.map_err(|e| {
|
|
DomainError::internal_error("BlobCache", format!("mkdir failed: {e}"))
|
|
})?;
|
|
}
|
|
|
|
let size = fs::metadata(source_path)
|
|
.await
|
|
.map(|m| m.len())
|
|
.unwrap_or(0);
|
|
|
|
fs::copy(source_path, &dest).await.map_err(|e| {
|
|
DomainError::internal_error("BlobCache", format!("cache copy failed: {e}"))
|
|
})?;
|
|
|
|
// Update the index and pick eviction victims under a single brief
|
|
// lock, then unlink the evicted files AFTER releasing it — file
|
|
// removal must not run while the index mutex is held.
|
|
let to_evict = {
|
|
let mut idx = self.index.lock().await;
|
|
if let Some(old) = idx.put(hash.to_string(), CacheEntry { size }) {
|
|
self.current_size.fetch_sub(old.size, Ordering::Relaxed);
|
|
}
|
|
self.current_size.fetch_add(size, Ordering::Relaxed);
|
|
self.collect_evictions(&mut idx)
|
|
};
|
|
for path in to_evict {
|
|
let _ = fs::remove_file(&path).await;
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
async fn fetch_and_cache_static(
|
|
&self,
|
|
hash: &str,
|
|
inner: &dyn BlobStorageBackend,
|
|
) -> Result<PathBuf, DomainError> {
|
|
let stream = inner.get_blob_stream(hash).await?;
|
|
|
|
let dest = self.cached_path(hash);
|
|
if let Some(parent) = dest.parent() {
|
|
fs::create_dir_all(parent).await.map_err(|e| {
|
|
DomainError::internal_error("BlobCache", format!("mkdir failed: {e}"))
|
|
})?;
|
|
}
|
|
|
|
// Unique temp name: even if two fetches for one hash ever race
|
|
// (e.g. across processes sharing a cache dir), each writes its own
|
|
// inode and the rename is atomic — a torn/interleaved file can
|
|
// never land at the final path.
|
|
let tmp = dest.with_extension(format!("{}.tmp", Uuid::new_v4()));
|
|
let write_result: Result<u64, DomainError> = async {
|
|
let mut file = fs::File::create(&tmp).await.map_err(|e| {
|
|
DomainError::internal_error("BlobCache", format!("create tmp: {e}"))
|
|
})?;
|
|
|
|
use futures::StreamExt;
|
|
let mut stream = stream;
|
|
let mut total = 0u64;
|
|
while let Some(chunk) = stream.next().await {
|
|
let bytes = chunk.map_err(|e| {
|
|
DomainError::internal_error("BlobCache", format!("stream read: {e}"))
|
|
})?;
|
|
total += bytes.len() as u64;
|
|
file.write_all(&bytes)
|
|
.await
|
|
.map_err(|e| DomainError::internal_error("BlobCache", format!("write: {e}")))?;
|
|
}
|
|
file.flush()
|
|
.await
|
|
.map_err(|e| DomainError::internal_error("BlobCache", format!("flush: {e}")))?;
|
|
Ok(total)
|
|
}
|
|
.await;
|
|
let total = match write_result {
|
|
Ok(total) => total,
|
|
Err(e) => {
|
|
// Unique tmp names never get overwritten by a later fetch —
|
|
// reap the partial file instead of leaking it.
|
|
let _ = fs::remove_file(&tmp).await;
|
|
return Err(e);
|
|
}
|
|
};
|
|
|
|
if let Err(e) = fs::rename(&tmp, &dest).await {
|
|
let _ = fs::remove_file(&tmp).await;
|
|
return Err(DomainError::internal_error(
|
|
"BlobCache",
|
|
format!("rename: {e}"),
|
|
));
|
|
}
|
|
|
|
let to_evict = {
|
|
let mut idx = self.index.lock().await;
|
|
if let Some(old) = idx.put(hash.to_string(), CacheEntry { size: total }) {
|
|
self.current_size.fetch_sub(old.size, Ordering::Relaxed);
|
|
}
|
|
self.current_size.fetch_add(total, Ordering::Relaxed);
|
|
self.collect_evictions(&mut idx)
|
|
};
|
|
for path in to_evict {
|
|
let _ = fs::remove_file(&path).await;
|
|
}
|
|
|
|
Ok(dest)
|
|
}
|
|
}
|