2026-02-14 01:29:34 +01:00
|
|
|
|
use bytes::Bytes;
|
2026-03-07 20:37:19 +01:00
|
|
|
|
use image::codecs::jpeg::JpegEncoder;
|
2026-03-09 14:34:07 +01:00
|
|
|
|
use image::imageops::FilterType;
|
2026-04-11 19:13:48 +02:00
|
|
|
|
use rayon::prelude::*;
|
2026-02-14 01:29:34 +01:00
|
|
|
|
/**
|
|
|
|
|
|
* Thumbnail Generation Service
|
|
|
|
|
|
*
|
|
|
|
|
|
* Generates and manages image thumbnails for fast gallery previews.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Features:
|
|
|
|
|
|
* - Background thumbnail generation after upload
|
|
|
|
|
|
* - Multiple sizes (icon 150x150, preview 800x600)
|
2026-03-07 20:37:19 +01:00
|
|
|
|
* - JPEG output (lossy q=80) for compact thumbnails
|
2026-02-22 23:28:03 +01:00
|
|
|
|
* - Lock-free moka cache with weight-based eviction
|
2026-02-14 01:29:34 +01:00
|
|
|
|
* - Lazy generation on first request if not pre-generated
|
2026-03-28 18:40:34 +00:00
|
|
|
|
* - Timeout protection for large image processing
|
2026-02-14 01:29:34 +01:00
|
|
|
|
*/
|
|
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
|
use std::sync::Arc;
|
2026-03-28 18:40:34 +00:00
|
|
|
|
use std::time::Duration;
|
2026-02-14 01:29:34 +01:00
|
|
|
|
use tokio::fs;
|
2026-02-24 16:11:52 +01:00
|
|
|
|
use tokio::sync::Semaphore;
|
2026-03-28 18:40:34 +00:00
|
|
|
|
use tokio::time::timeout;
|
2026-02-14 01:29:34 +01:00
|
|
|
|
|
|
|
|
|
|
use crate::application::ports::thumbnail_ports::{
|
|
|
|
|
|
ThumbnailPort, ThumbnailSize as PortThumbnailSize, ThumbnailStatsDto,
|
|
|
|
|
|
};
|
|
|
|
|
|
use crate::domain::errors::{DomainError, ErrorKind};
|
|
|
|
|
|
|
|
|
|
|
|
/// Thumbnail sizes supported by the system
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
|
|
pub enum ThumbnailSize {
|
|
|
|
|
|
/// Small icon for file listings (150x150)
|
|
|
|
|
|
Icon,
|
|
|
|
|
|
/// Medium preview for gallery view (400x400)
|
|
|
|
|
|
Preview,
|
|
|
|
|
|
/// Large preview for detail view (800x800)
|
|
|
|
|
|
Large,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl ThumbnailSize {
|
|
|
|
|
|
/// Get the maximum dimension for this size
|
|
|
|
|
|
pub fn max_dimension(&self) -> u32 {
|
|
|
|
|
|
match self {
|
|
|
|
|
|
ThumbnailSize::Icon => 150,
|
|
|
|
|
|
ThumbnailSize::Preview => 400,
|
|
|
|
|
|
ThumbnailSize::Large => 800,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Get the directory name for this size
|
|
|
|
|
|
pub fn dir_name(&self) -> &'static str {
|
|
|
|
|
|
match self {
|
|
|
|
|
|
ThumbnailSize::Icon => "icon",
|
|
|
|
|
|
ThumbnailSize::Preview => "preview",
|
|
|
|
|
|
ThumbnailSize::Large => "large",
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Get all thumbnail sizes
|
|
|
|
|
|
pub fn all() -> &'static [ThumbnailSize] {
|
|
|
|
|
|
&[
|
|
|
|
|
|
ThumbnailSize::Icon,
|
|
|
|
|
|
ThumbnailSize::Preview,
|
|
|
|
|
|
ThumbnailSize::Large,
|
|
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Cache key for thumbnails
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
|
|
struct ThumbnailCacheKey {
|
|
|
|
|
|
file_id: String,
|
|
|
|
|
|
size: ThumbnailSize,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-24 16:11:52 +01:00
|
|
|
|
/// Maximum pixel count before rejecting decode (50 megapixels → ~200 MB RGBA).
|
|
|
|
|
|
/// Images above this are silently skipped — protects against single-image OOM.
|
|
|
|
|
|
const MAX_DECODE_PIXELS: u64 = 50_000_000;
|
|
|
|
|
|
|
2026-04-11 18:14:33 +02:00
|
|
|
|
/// Compute max concurrent thumbnail decode operations at runtime.
|
|
|
|
|
|
/// Uses half the available CPUs (min 2) to scale with hardware while
|
|
|
|
|
|
/// bounding peak RAM. `available_parallelism()` respects cgroup limits
|
|
|
|
|
|
/// (Docker/K8s) and CPU affinity masks.
|
|
|
|
|
|
fn max_concurrent_decodes() -> usize {
|
|
|
|
|
|
let cpus = std::thread::available_parallelism()
|
|
|
|
|
|
.map(|n| n.get())
|
|
|
|
|
|
.unwrap_or(4);
|
|
|
|
|
|
(cpus / 2).max(2)
|
|
|
|
|
|
}
|
2026-02-24 16:11:52 +01:00
|
|
|
|
|
2026-02-14 01:29:34 +01:00
|
|
|
|
/// Thumbnail service for generating and caching image thumbnails
|
|
|
|
|
|
pub struct ThumbnailService {
|
|
|
|
|
|
/// Root path for thumbnail storage
|
|
|
|
|
|
thumbnails_root: PathBuf,
|
2026-02-22 23:28:03 +01:00
|
|
|
|
/// Lock-free concurrent cache (moka) with weight-based eviction
|
|
|
|
|
|
cache: moka::future::Cache<ThumbnailCacheKey, Bytes>,
|
|
|
|
|
|
/// Configured maximum cache weight (for stats reporting)
|
|
|
|
|
|
max_cache_bytes: u64,
|
2026-02-24 16:11:52 +01:00
|
|
|
|
/// Limits how many images are decoded in parallel to bound RAM usage.
|
|
|
|
|
|
/// Without this, 50 simultaneous uploads would decode 50 bitmaps
|
|
|
|
|
|
/// (~96 MB each for 6000×4000) = 4.8 GB peak.
|
|
|
|
|
|
decode_semaphore: Arc<Semaphore>,
|
2026-03-28 18:40:34 +00:00
|
|
|
|
/// Timeout for thumbnail generation operations to prevent hanging on large images.
|
|
|
|
|
|
/// Defaults to 30 seconds.
|
|
|
|
|
|
generation_timeout: Duration,
|
2026-02-14 01:29:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl ThumbnailService {
|
|
|
|
|
|
/// Create a new thumbnail service
|
|
|
|
|
|
///
|
|
|
|
|
|
/// # Arguments
|
|
|
|
|
|
/// * `storage_root` - Root path of file storage
|
2026-02-22 23:28:03 +01:00
|
|
|
|
/// * `max_cache_entries` - (ignored — moka uses weight-based eviction)
|
2026-02-14 01:29:34 +01:00
|
|
|
|
/// * `max_cache_bytes` - Maximum total bytes to cache
|
2026-03-28 18:40:34 +00:00
|
|
|
|
/// * `generation_timeout` - Timeout for thumbnail generation operations
|
|
|
|
|
|
pub fn new(
|
|
|
|
|
|
storage_root: &Path,
|
|
|
|
|
|
max_cache_entries: usize,
|
|
|
|
|
|
max_cache_bytes: usize,
|
|
|
|
|
|
generation_timeout: Option<Duration>,
|
|
|
|
|
|
) -> Self {
|
2026-02-14 01:29:34 +01:00
|
|
|
|
let thumbnails_root = storage_root.join(".thumbnails");
|
|
|
|
|
|
|
2026-02-22 23:28:03 +01:00
|
|
|
|
// Ignore max_cache_entries — weight-based eviction is more accurate
|
|
|
|
|
|
// for variable-size thumbnails than entry-count limits.
|
|
|
|
|
|
let _ = max_cache_entries;
|
|
|
|
|
|
|
2026-03-07 19:48:35 +01:00
|
|
|
|
// No time_to_live — thumbnails are immutable (content never changes
|
|
|
|
|
|
// for a given file_id). Eviction is purely weight-based: when the
|
|
|
|
|
|
// cache exceeds max_cache_bytes the lightest entries are dropped.
|
|
|
|
|
|
// On eviction the thumbnail is still on disk; the next request
|
|
|
|
|
|
// promotes it back with a single async read (~0.1 ms).
|
2026-02-22 23:28:03 +01:00
|
|
|
|
let cache = moka::future::Cache::builder()
|
|
|
|
|
|
.max_capacity(max_cache_bytes as u64)
|
|
|
|
|
|
.weigher(|_key: &ThumbnailCacheKey, value: &Bytes| -> u32 {
|
|
|
|
|
|
value.len().min(u32::MAX as usize) as u32
|
|
|
|
|
|
})
|
|
|
|
|
|
.build();
|
|
|
|
|
|
|
2026-02-14 01:29:34 +01:00
|
|
|
|
Self {
|
|
|
|
|
|
thumbnails_root,
|
2026-02-22 23:28:03 +01:00
|
|
|
|
cache,
|
|
|
|
|
|
max_cache_bytes: max_cache_bytes as u64,
|
2026-04-11 18:14:33 +02:00
|
|
|
|
decode_semaphore: Arc::new(Semaphore::new(max_concurrent_decodes())),
|
2026-03-28 18:40:34 +00:00
|
|
|
|
generation_timeout: generation_timeout.unwrap_or(Duration::from_secs(30)),
|
2026-02-14 01:29:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Initialize the thumbnail directories
|
|
|
|
|
|
pub async fn initialize(&self) -> std::io::Result<()> {
|
|
|
|
|
|
for size in ThumbnailSize::all() {
|
|
|
|
|
|
let dir = self.thumbnails_root.join(size.dir_name());
|
|
|
|
|
|
fs::create_dir_all(&dir).await?;
|
|
|
|
|
|
}
|
|
|
|
|
|
tracing::info!(
|
|
|
|
|
|
"🖼️ Thumbnail service initialized at {:?}",
|
|
|
|
|
|
self.thumbnails_root
|
|
|
|
|
|
);
|
|
|
|
|
|
Ok(())
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Check if a file is an image that can have thumbnails
|
|
|
|
|
|
pub fn is_supported_image(mime_type: &str) -> bool {
|
|
|
|
|
|
matches!(
|
|
|
|
|
|
mime_type,
|
|
|
|
|
|
"image/jpeg" | "image/jpg" | "image/png" | "image/gif" | "image/webp"
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-12 00:50:10 +02:00
|
|
|
|
/// Get the path where a thumbnail would be stored (keyed by blob hash for dedup).
|
|
|
|
|
|
fn get_thumbnail_path(&self, blob_hash: &str, size: ThumbnailSize) -> PathBuf {
|
2026-02-14 01:29:34 +01:00
|
|
|
|
self.thumbnails_root
|
|
|
|
|
|
.join(size.dir_name())
|
2026-04-12 00:50:10 +02:00
|
|
|
|
.join(format!("{}.jpg", blob_hash))
|
2026-02-14 01:29:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-23 23:22:54 +01:00
|
|
|
|
/// Get a thumbnail, generating it if needed.
|
2026-02-14 01:29:34 +01:00
|
|
|
|
///
|
|
|
|
|
|
/// # Arguments
|
2026-04-12 00:50:10 +02:00
|
|
|
|
/// * `file_id` - ID of the original file (used as moka cache key)
|
|
|
|
|
|
/// * `blob_hash` - Content hash of the file (used as disk key for dedup)
|
2026-02-14 01:29:34 +01:00
|
|
|
|
/// * `size` - Desired thumbnail size
|
|
|
|
|
|
/// * `original_path` - Path to the original image file
|
|
|
|
|
|
///
|
|
|
|
|
|
/// # Returns
|
2026-03-07 20:37:19 +01:00
|
|
|
|
/// Bytes of the thumbnail image (JPEG format)
|
2026-02-14 01:29:34 +01:00
|
|
|
|
pub async fn get_thumbnail(
|
|
|
|
|
|
&self,
|
|
|
|
|
|
file_id: &str,
|
2026-04-12 00:50:10 +02:00
|
|
|
|
blob_hash: &str,
|
2026-02-14 01:29:34 +01:00
|
|
|
|
size: ThumbnailSize,
|
|
|
|
|
|
original_path: &Path,
|
|
|
|
|
|
) -> Result<Bytes, ThumbnailError> {
|
|
|
|
|
|
let cache_key = ThumbnailCacheKey {
|
|
|
|
|
|
file_id: file_id.to_string(),
|
|
|
|
|
|
size,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-04-12 00:50:10 +02:00
|
|
|
|
let thumb_path = self.get_thumbnail_path(blob_hash, size);
|
2026-02-23 23:22:54 +01:00
|
|
|
|
let original_owned = original_path.to_path_buf();
|
|
|
|
|
|
let file_id_owned = file_id.to_string();
|
|
|
|
|
|
|
|
|
|
|
|
// Moka's entry().or_insert_with() guarantees that for the same key
|
|
|
|
|
|
// only ONE init closure runs; concurrent callers await the same
|
|
|
|
|
|
// computation instead of stampeding (thundering-herd protection).
|
|
|
|
|
|
let entry = self
|
|
|
|
|
|
.cache
|
|
|
|
|
|
.entry(cache_key)
|
|
|
|
|
|
.or_insert_with(async {
|
|
|
|
|
|
// 1. Try loading from disk
|
|
|
|
|
|
if let Ok(data) = fs::read(&thumb_path).await {
|
|
|
|
|
|
tracing::debug!(
|
|
|
|
|
|
"💾 Thumbnail loaded from disk: {} {:?}",
|
|
|
|
|
|
file_id_owned,
|
|
|
|
|
|
size
|
|
|
|
|
|
);
|
|
|
|
|
|
return Bytes::from(data);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 2. Generate thumbnail (CPU-bound, runs in spawn_blocking)
|
2026-02-26 00:47:32 +01:00
|
|
|
|
tracing::info!("🎨 Generating thumbnail: {} {:?}", file_id_owned, size);
|
2026-02-23 23:22:54 +01:00
|
|
|
|
match self.generate_thumbnail(&original_owned, size).await {
|
|
|
|
|
|
Ok(bytes) => {
|
|
|
|
|
|
// Save to disk (best-effort — don't fail the request)
|
|
|
|
|
|
if let Some(parent) = thumb_path.parent() {
|
|
|
|
|
|
let _ = fs::create_dir_all(parent).await;
|
|
|
|
|
|
}
|
|
|
|
|
|
let _ = fs::write(&thumb_path, &bytes).await;
|
|
|
|
|
|
bytes
|
|
|
|
|
|
}
|
|
|
|
|
|
Err(e) => {
|
|
|
|
|
|
tracing::warn!(
|
|
|
|
|
|
"Thumbnail generation failed for {} {:?}: {e}",
|
|
|
|
|
|
file_id_owned,
|
|
|
|
|
|
size
|
|
|
|
|
|
);
|
|
|
|
|
|
// Return empty sentinel — will be evicted quickly by
|
|
|
|
|
|
// the weigher (weight 0) and retried on next request.
|
|
|
|
|
|
Bytes::new()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
.await;
|
2026-02-14 01:29:34 +01:00
|
|
|
|
|
2026-02-23 23:22:54 +01:00
|
|
|
|
let bytes = entry.into_value();
|
|
|
|
|
|
if bytes.is_empty() {
|
|
|
|
|
|
return Err(ThumbnailError::ImageError(
|
|
|
|
|
|
"Thumbnail generation failed".to_string(),
|
|
|
|
|
|
));
|
2026-02-14 01:29:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-23 23:22:54 +01:00
|
|
|
|
tracing::debug!("🔥 Thumbnail served: {} {:?}", file_id, size);
|
2026-02-14 01:29:34 +01:00
|
|
|
|
Ok(bytes)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-07 18:55:44 +01:00
|
|
|
|
/// Try to serve a thumbnail from cache only (memory → disk).
|
|
|
|
|
|
///
|
|
|
|
|
|
/// Unlike `get_thumbnail`, this does **not** generate a new thumbnail.
|
|
|
|
|
|
/// Useful for non-image file types (videos) where a client-generated
|
|
|
|
|
|
/// thumbnail may have been uploaded previously.
|
2026-04-12 00:50:10 +02:00
|
|
|
|
///
|
|
|
|
|
|
/// `blob_hash` is used to locate the file on disk (dedup-aware).
|
|
|
|
|
|
/// If `None`, only the in-memory cache is checked (used for video
|
|
|
|
|
|
/// thumbnails where blob_hash is not yet resolved).
|
|
|
|
|
|
pub async fn get_cached_thumbnail(
|
|
|
|
|
|
&self,
|
|
|
|
|
|
file_id: &str,
|
|
|
|
|
|
blob_hash: Option<&str>,
|
|
|
|
|
|
size: ThumbnailSize,
|
|
|
|
|
|
) -> Option<Bytes> {
|
2026-03-07 18:55:44 +01:00
|
|
|
|
// 1. Check in-memory cache
|
|
|
|
|
|
let cache_key = ThumbnailCacheKey {
|
|
|
|
|
|
file_id: file_id.to_string(),
|
|
|
|
|
|
size,
|
|
|
|
|
|
};
|
2026-03-09 14:34:07 +01:00
|
|
|
|
if let Some(bytes) = self.cache.get(&cache_key).await
|
|
|
|
|
|
&& !bytes.is_empty()
|
|
|
|
|
|
{
|
|
|
|
|
|
return Some(bytes);
|
2026-03-07 18:55:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-12 00:50:10 +02:00
|
|
|
|
// 2. Check disk (needs blob_hash to locate the shared file)
|
|
|
|
|
|
let hash = blob_hash?;
|
|
|
|
|
|
let thumb_path = self.get_thumbnail_path(hash, size);
|
2026-03-07 18:55:44 +01:00
|
|
|
|
if let Ok(data) = fs::read(&thumb_path).await {
|
|
|
|
|
|
let bytes = Bytes::from(data);
|
|
|
|
|
|
// Populate in-memory cache for next hit
|
|
|
|
|
|
self.cache.insert(cache_key, bytes.clone()).await;
|
|
|
|
|
|
Some(bytes)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
None
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Store an externally-generated thumbnail (e.g. client-side video frame).
|
|
|
|
|
|
///
|
2026-03-07 20:37:19 +01:00
|
|
|
|
/// **Fast path**: if the payload is already a correctly-sized JPEG, it is
|
|
|
|
|
|
/// stored as-is — zero decode, zero encode. The browser pre-scales the
|
|
|
|
|
|
/// canvas to 400 px and sends JPEG, so this fast path is hit on every
|
|
|
|
|
|
/// normal video-thumbnail upload.
|
2026-03-07 20:12:12 +01:00
|
|
|
|
///
|
2026-03-07 20:37:19 +01:00
|
|
|
|
/// **Slow path**: decode → optional resize → re-encode to JPEG q=80.
|
|
|
|
|
|
/// Only triggered when a client sends an oversized or non-JPEG image.
|
2026-04-12 00:50:10 +02:00
|
|
|
|
///
|
|
|
|
|
|
/// External thumbnails (video frames) are stored by `file_id` since
|
|
|
|
|
|
/// they are client-generated and not dedup-able.
|
2026-03-07 18:55:44 +01:00
|
|
|
|
pub async fn store_external_thumbnail(
|
|
|
|
|
|
&self,
|
|
|
|
|
|
file_id: &str,
|
|
|
|
|
|
size: ThumbnailSize,
|
|
|
|
|
|
data: Bytes,
|
|
|
|
|
|
) -> Result<Bytes, ThumbnailError> {
|
|
|
|
|
|
let max_dim = size.max_dimension();
|
|
|
|
|
|
|
2026-03-07 20:12:12 +01:00
|
|
|
|
// Validate + optionally re-encode in blocking thread
|
2026-03-07 20:37:19 +01:00
|
|
|
|
let jpeg_bytes = tokio::task::spawn_blocking(move || -> Result<Vec<u8>, ThumbnailError> {
|
|
|
|
|
|
// ── Fast path: already a correctly-sized JPEG ─────────────
|
|
|
|
|
|
// JPEG files start with SOI marker 0xFF 0xD8.
|
2026-03-09 14:34:07 +01:00
|
|
|
|
if data.len() >= 2
|
|
|
|
|
|
&& data[0] == 0xFF
|
|
|
|
|
|
&& data[1] == 0xD8
|
|
|
|
|
|
&& let Ok(reader) =
|
|
|
|
|
|
image::ImageReader::new(std::io::Cursor::new(&data)).with_guessed_format()
|
|
|
|
|
|
&& let Ok((w, h)) = reader.into_dimensions()
|
|
|
|
|
|
&& w <= max_dim
|
|
|
|
|
|
&& h <= max_dim
|
|
|
|
|
|
{
|
|
|
|
|
|
// Already JPEG at correct size — zero-copy store
|
|
|
|
|
|
return Ok(data.to_vec());
|
2026-03-07 20:12:12 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-07 20:37:19 +01:00
|
|
|
|
// ── Slow path: decode, resize, re-encode to JPEG ─────────
|
2026-03-07 18:55:44 +01:00
|
|
|
|
let img = image::load_from_memory(&data)
|
|
|
|
|
|
.map_err(|e| ThumbnailError::ImageError(format!("Invalid image data: {e}")))?;
|
|
|
|
|
|
|
|
|
|
|
|
let (w, h) = (img.width(), img.height());
|
|
|
|
|
|
let img = if w > max_dim || h > max_dim {
|
|
|
|
|
|
let filter = FilterType::CatmullRom;
|
|
|
|
|
|
if w > h {
|
|
|
|
|
|
let ratio = max_dim as f32 / w as f32;
|
|
|
|
|
|
img.resize(max_dim, (h as f32 * ratio) as u32, filter)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
let ratio = max_dim as f32 / h as f32;
|
|
|
|
|
|
img.resize((w as f32 * ratio) as u32, max_dim, filter)
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
img
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-03-07 20:37:19 +01:00
|
|
|
|
let rgb = img.to_rgb8();
|
2026-03-07 18:55:44 +01:00
|
|
|
|
let mut buffer = Vec::new();
|
2026-03-07 20:37:19 +01:00
|
|
|
|
let encoder = JpegEncoder::new_with_quality(&mut buffer, 80);
|
|
|
|
|
|
rgb.write_with_encoder(encoder)
|
2026-03-07 18:55:44 +01:00
|
|
|
|
.map_err(|e| ThumbnailError::ImageError(e.to_string()))?;
|
|
|
|
|
|
Ok(buffer)
|
|
|
|
|
|
})
|
|
|
|
|
|
.await
|
|
|
|
|
|
.map_err(|e| ThumbnailError::TaskError(e.to_string()))??;
|
|
|
|
|
|
|
2026-03-07 20:37:19 +01:00
|
|
|
|
let bytes = Bytes::from(jpeg_bytes);
|
2026-03-07 18:55:44 +01:00
|
|
|
|
|
2026-04-12 00:50:10 +02:00
|
|
|
|
// External thumbnails are stored by file_id (not dedup-able)
|
|
|
|
|
|
let thumb_path = self
|
|
|
|
|
|
.thumbnails_root
|
|
|
|
|
|
.join(size.dir_name())
|
|
|
|
|
|
.join(format!("ext-{}.jpg", file_id));
|
2026-03-07 18:55:44 +01:00
|
|
|
|
if let Some(parent) = thumb_path.parent() {
|
|
|
|
|
|
let _ = fs::create_dir_all(parent).await;
|
|
|
|
|
|
}
|
|
|
|
|
|
fs::write(&thumb_path, &bytes)
|
|
|
|
|
|
.await
|
|
|
|
|
|
.map_err(|e| ThumbnailError::IoError(e.to_string()))?;
|
|
|
|
|
|
|
|
|
|
|
|
// Populate in-memory cache
|
|
|
|
|
|
let cache_key = ThumbnailCacheKey {
|
|
|
|
|
|
file_id: file_id.to_string(),
|
|
|
|
|
|
size,
|
|
|
|
|
|
};
|
|
|
|
|
|
self.cache.insert(cache_key, bytes.clone()).await;
|
|
|
|
|
|
|
|
|
|
|
|
tracing::info!("✅ Stored external thumbnail: {} {:?}", file_id, size);
|
|
|
|
|
|
Ok(bytes)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-24 16:11:52 +01:00
|
|
|
|
/// Generate a thumbnail from an image file.
|
|
|
|
|
|
///
|
|
|
|
|
|
/// Concurrency is bounded by `decode_semaphore` to prevent OOM when
|
2026-03-18 11:51:39 +08:00
|
|
|
|
/// many images are uploaded simultaneously. Resolution is also
|
2026-02-24 16:11:52 +01:00
|
|
|
|
/// capped at `MAX_DECODE_PIXELS` to reject pathologically large images.
|
2026-03-18 11:51:39 +08:00
|
|
|
|
/// After decoding, the encoded image buffer is explicitly dropped before
|
|
|
|
|
|
/// processing to minimize peak memory usage.
|
2026-03-28 18:40:34 +00:00
|
|
|
|
/// A timeout prevents the operation from hanging indefinitely on large images.
|
2026-02-14 01:29:34 +01:00
|
|
|
|
async fn generate_thumbnail(
|
|
|
|
|
|
&self,
|
|
|
|
|
|
original_path: &Path,
|
|
|
|
|
|
size: ThumbnailSize,
|
|
|
|
|
|
) -> Result<Bytes, ThumbnailError> {
|
|
|
|
|
|
let path = original_path.to_path_buf();
|
|
|
|
|
|
let max_dim = size.max_dimension();
|
2026-03-28 18:40:34 +00:00
|
|
|
|
let timeout_duration = self.generation_timeout;
|
2026-02-14 01:29:34 +01:00
|
|
|
|
|
2026-02-24 16:11:52 +01:00
|
|
|
|
// Acquire semaphore permit — bounds peak RAM from concurrent decodes
|
2026-02-26 00:47:32 +01:00
|
|
|
|
let _permit = self
|
|
|
|
|
|
.decode_semaphore
|
|
|
|
|
|
.acquire()
|
|
|
|
|
|
.await
|
2026-02-24 16:11:52 +01:00
|
|
|
|
.map_err(|_| ThumbnailError::TaskError("Decode semaphore closed".into()))?;
|
|
|
|
|
|
|
2026-03-28 18:40:34 +00:00
|
|
|
|
// Run image processing in blocking thread pool with timeout
|
|
|
|
|
|
let spawn_result =
|
|
|
|
|
|
tokio::task::spawn_blocking(move || -> Result<Vec<u8>, ThumbnailError> {
|
|
|
|
|
|
// Single read: load file once into memory, then work from the buffer
|
|
|
|
|
|
let data =
|
|
|
|
|
|
std::fs::read(&path).map_err(|e| ThumbnailError::ImageError(e.to_string()))?;
|
|
|
|
|
|
|
|
|
|
|
|
// Safety check: read dimensions from in-memory buffer (no 2nd I/O)
|
|
|
|
|
|
let (w, h) = image::ImageReader::new(std::io::Cursor::new(&data))
|
|
|
|
|
|
.with_guessed_format()
|
|
|
|
|
|
.map_err(|e| ThumbnailError::ImageError(e.to_string()))?
|
|
|
|
|
|
.into_dimensions()
|
|
|
|
|
|
.map_err(|e| ThumbnailError::ImageError(e.to_string()))?;
|
|
|
|
|
|
if (w as u64) * (h as u64) > MAX_DECODE_PIXELS {
|
|
|
|
|
|
return Err(ThumbnailError::ImageError(format!(
|
|
|
|
|
|
"Image too large for thumbnail: {w}×{h} ({} MP, max {MAX_DECODE_PIXELS})",
|
|
|
|
|
|
w as u64 * h as u64 / 1_000_000
|
|
|
|
|
|
)));
|
|
|
|
|
|
}
|
2026-02-24 16:11:52 +01:00
|
|
|
|
|
2026-03-28 18:40:34 +00:00
|
|
|
|
// Full decode from the same in-memory buffer (no 2nd disk read)
|
|
|
|
|
|
let img = image::load_from_memory(&data)
|
|
|
|
|
|
.map_err(|e| ThumbnailError::ImageError(e.to_string()))?;
|
|
|
|
|
|
|
|
|
|
|
|
// Apply EXIF orientation so thumbnails display correctly
|
|
|
|
|
|
let img = {
|
|
|
|
|
|
use crate::infrastructure::services::exif_service::{
|
|
|
|
|
|
ExifService, apply_orientation,
|
|
|
|
|
|
};
|
|
|
|
|
|
let orientation = ExifService::extract(&data)
|
|
|
|
|
|
.and_then(|m| m.orientation)
|
|
|
|
|
|
.unwrap_or(1);
|
|
|
|
|
|
// Free the encoded image data now that image is decoded and EXIF extracted
|
|
|
|
|
|
drop(data);
|
|
|
|
|
|
apply_orientation(img, orientation)
|
|
|
|
|
|
};
|
2026-02-14 01:29:34 +01:00
|
|
|
|
|
2026-03-28 18:40:34 +00:00
|
|
|
|
// Calculate new dimensions preserving aspect ratio
|
|
|
|
|
|
let (orig_width, orig_height) = (img.width(), img.height());
|
|
|
|
|
|
let (new_width, new_height) = if orig_width > orig_height {
|
|
|
|
|
|
let ratio = max_dim as f32 / orig_width as f32;
|
|
|
|
|
|
(max_dim, (orig_height as f32 * ratio) as u32)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
let ratio = max_dim as f32 / orig_height as f32;
|
|
|
|
|
|
((orig_width as f32 * ratio) as u32, max_dim)
|
2026-03-05 14:46:30 -05:00
|
|
|
|
};
|
2026-03-05 12:48:47 -05:00
|
|
|
|
|
2026-03-28 18:40:34 +00:00
|
|
|
|
// Adaptive filter: faster filters for smaller sizes where
|
|
|
|
|
|
// quality difference vs Lanczos3 is imperceptible
|
|
|
|
|
|
let filter = match size {
|
|
|
|
|
|
ThumbnailSize::Icon => FilterType::Triangle, // 150px — max speed
|
|
|
|
|
|
ThumbnailSize::Preview => FilterType::CatmullRom, // 400px — good balance
|
|
|
|
|
|
ThumbnailSize::Large => FilterType::CatmullRom, // 800px — sufficient quality
|
|
|
|
|
|
};
|
|
|
|
|
|
let thumbnail = img.resize(new_width, new_height, filter);
|
2026-02-14 01:29:34 +01:00
|
|
|
|
|
2026-03-28 18:40:34 +00:00
|
|
|
|
// Encode as JPEG (lossy q=80) — explicit quality control,
|
|
|
|
|
|
// ~2× smaller than image-webp's Rust encoder at same visual quality
|
|
|
|
|
|
let rgb = thumbnail.to_rgb8();
|
|
|
|
|
|
let mut buffer = Vec::new();
|
|
|
|
|
|
let encoder = JpegEncoder::new_with_quality(&mut buffer, 80);
|
|
|
|
|
|
rgb.write_with_encoder(encoder)
|
|
|
|
|
|
.map_err(|e| ThumbnailError::ImageError(e.to_string()))?;
|
2026-02-14 01:29:34 +01:00
|
|
|
|
|
2026-03-28 18:40:34 +00:00
|
|
|
|
Ok(buffer)
|
|
|
|
|
|
});
|
2026-02-14 01:29:34 +01:00
|
|
|
|
|
2026-03-28 18:40:34 +00:00
|
|
|
|
// Apply timeout to prevent hanging on large images
|
|
|
|
|
|
let result = timeout(timeout_duration, spawn_result)
|
|
|
|
|
|
.await
|
|
|
|
|
|
.map_err(|_| {
|
|
|
|
|
|
ThumbnailError::TaskError(format!(
|
|
|
|
|
|
"Thumbnail generation timed out after {:?}",
|
|
|
|
|
|
timeout_duration
|
|
|
|
|
|
))
|
|
|
|
|
|
})?
|
|
|
|
|
|
.map_err(|e| ThumbnailError::TaskError(e.to_string()))?;
|
2026-02-14 01:29:34 +01:00
|
|
|
|
|
|
|
|
|
|
result.map(Bytes::from)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-24 12:41:07 +01:00
|
|
|
|
/// Generate all thumbnail sizes for a file in the background.
|
2026-02-14 01:29:34 +01:00
|
|
|
|
///
|
2026-04-12 00:50:10 +02:00
|
|
|
|
/// Thumbnails are stored on disk keyed by `blob_hash`, so duplicate
|
|
|
|
|
|
/// uploads with the same content share a single set of thumbnails.
|
|
|
|
|
|
/// If thumbnails already exist for this `blob_hash`, only the moka
|
|
|
|
|
|
/// cache is populated (zero CPU for image processing).
|
|
|
|
|
|
///
|
2026-02-24 12:41:07 +01:00
|
|
|
|
/// Loads the image **once** and produces all 3 sizes (Icon, Preview,
|
2026-03-18 11:51:39 +08:00
|
|
|
|
/// Large) inside a single `spawn_blocking` call. This avoids 3×
|
2026-02-24 12:41:07 +01:00
|
|
|
|
/// I/O reads and 3× JPEG/PNG decode — reducing CPU time by ~45%
|
|
|
|
|
|
/// and peak RAM from ~540 MB to ~180 MB for concurrent uploads.
|
2026-03-18 11:51:39 +08:00
|
|
|
|
/// The encoded image buffer is explicitly dropped after decoding
|
|
|
|
|
|
/// to further reduce peak memory by the size of the original file.
|
2026-04-12 00:50:10 +02:00
|
|
|
|
pub fn generate_all_sizes_background(
|
|
|
|
|
|
self: Arc<Self>,
|
|
|
|
|
|
file_id: String,
|
|
|
|
|
|
blob_hash: String,
|
|
|
|
|
|
original_path: PathBuf,
|
|
|
|
|
|
) {
|
2026-02-14 01:29:34 +01:00
|
|
|
|
tokio::spawn(async move {
|
|
|
|
|
|
tracing::info!("🖼️ Background thumbnail generation starting: {}", file_id);
|
|
|
|
|
|
|
2026-04-12 00:50:10 +02:00
|
|
|
|
// ── Fast path: blob-hash thumbnails already exist on disk ────
|
|
|
|
|
|
// If another file with the same content was already uploaded,
|
|
|
|
|
|
// the thumbnails exist. Just populate the moka cache for this
|
|
|
|
|
|
// file_id and skip image processing entirely.
|
|
|
|
|
|
let all_exist = {
|
|
|
|
|
|
let mut ok = true;
|
|
|
|
|
|
for size in ThumbnailSize::all() {
|
|
|
|
|
|
let thumb_path = self.get_thumbnail_path(&blob_hash, *size);
|
|
|
|
|
|
if fs::metadata(&thumb_path).await.is_err() {
|
|
|
|
|
|
ok = false;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
ok
|
|
|
|
|
|
};
|
|
|
|
|
|
if all_exist {
|
|
|
|
|
|
for size in ThumbnailSize::all() {
|
|
|
|
|
|
let thumb_path = self.get_thumbnail_path(&blob_hash, *size);
|
|
|
|
|
|
if let Ok(data) = fs::read(&thumb_path).await {
|
|
|
|
|
|
let cache_key = ThumbnailCacheKey {
|
|
|
|
|
|
file_id: file_id.clone(),
|
|
|
|
|
|
size: *size,
|
|
|
|
|
|
};
|
|
|
|
|
|
self.cache.insert(cache_key, Bytes::from(data)).await;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
tracing::info!(
|
|
|
|
|
|
"🖼️ Thumbnail dedup hit for {} (blob {}): skipped generation",
|
|
|
|
|
|
file_id,
|
|
|
|
|
|
&blob_hash[..12]
|
|
|
|
|
|
);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-24 16:11:52 +01:00
|
|
|
|
// Acquire semaphore permit — bounds peak RAM from concurrent decodes
|
|
|
|
|
|
let _permit = match self.decode_semaphore.acquire().await {
|
|
|
|
|
|
Ok(p) => p,
|
|
|
|
|
|
Err(_) => {
|
2026-02-26 00:47:32 +01:00
|
|
|
|
tracing::warn!(
|
|
|
|
|
|
"Decode semaphore closed, skipping thumbnails for {}",
|
|
|
|
|
|
file_id
|
|
|
|
|
|
);
|
2026-02-24 16:11:52 +01:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-02-24 12:41:07 +01:00
|
|
|
|
let path = original_path.clone();
|
|
|
|
|
|
|
|
|
|
|
|
// Single spawn_blocking: 1 read + 1 decode + 3 resize + 3 encode
|
|
|
|
|
|
let results = tokio::task::spawn_blocking(move || {
|
2026-02-26 00:32:02 +01:00
|
|
|
|
// Single read: load file once into memory
|
2026-02-26 00:47:32 +01:00
|
|
|
|
let data =
|
|
|
|
|
|
std::fs::read(&path).map_err(|e| ThumbnailError::ImageError(e.to_string()))?;
|
2026-02-26 00:32:02 +01:00
|
|
|
|
|
|
|
|
|
|
// Safety check: read dimensions from in-memory buffer (no 2nd I/O)
|
|
|
|
|
|
let (w, h) = image::ImageReader::new(std::io::Cursor::new(&data))
|
|
|
|
|
|
.with_guessed_format()
|
2026-02-24 16:11:52 +01:00
|
|
|
|
.map_err(|e| ThumbnailError::ImageError(e.to_string()))?
|
|
|
|
|
|
.into_dimensions()
|
|
|
|
|
|
.map_err(|e| ThumbnailError::ImageError(e.to_string()))?;
|
|
|
|
|
|
if (w as u64) * (h as u64) > MAX_DECODE_PIXELS {
|
|
|
|
|
|
return Err(ThumbnailError::ImageError(format!(
|
|
|
|
|
|
"Image too large for thumbnail: {w}×{h} ({} MP, max {MAX_DECODE_PIXELS})",
|
|
|
|
|
|
w as u64 * h as u64 / 1_000_000
|
|
|
|
|
|
)));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-26 00:32:02 +01:00
|
|
|
|
// Full decode from the same in-memory buffer (no 2nd disk read)
|
|
|
|
|
|
let img = image::load_from_memory(&data)
|
|
|
|
|
|
.map_err(|e| ThumbnailError::ImageError(e.to_string()))?;
|
2026-02-24 12:41:07 +01:00
|
|
|
|
|
2026-03-05 12:48:47 -05:00
|
|
|
|
// Apply EXIF orientation so thumbnails display correctly
|
|
|
|
|
|
let img = {
|
2026-03-05 14:46:30 -05:00
|
|
|
|
use crate::infrastructure::services::exif_service::{
|
|
|
|
|
|
ExifService, apply_orientation,
|
|
|
|
|
|
};
|
2026-03-05 12:48:47 -05:00
|
|
|
|
let orientation = ExifService::extract(&data)
|
|
|
|
|
|
.and_then(|m| m.orientation)
|
|
|
|
|
|
.unwrap_or(1);
|
2026-03-18 11:51:39 +08:00
|
|
|
|
// Free the encoded image data now that image is decoded and EXIF extracted
|
|
|
|
|
|
drop(data);
|
2026-03-05 12:48:47 -05:00
|
|
|
|
apply_orientation(img, orientation)
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-02-24 12:41:07 +01:00
|
|
|
|
let (orig_w, orig_h) = (img.width(), img.height());
|
|
|
|
|
|
|
|
|
|
|
|
ThumbnailSize::all()
|
2026-04-11 19:13:48 +02:00
|
|
|
|
.par_iter()
|
2026-02-24 12:41:07 +01:00
|
|
|
|
.map(|&size| {
|
|
|
|
|
|
let max_dim = size.max_dimension();
|
|
|
|
|
|
|
|
|
|
|
|
let (new_w, new_h) = if orig_w > orig_h {
|
|
|
|
|
|
let ratio = max_dim as f32 / orig_w as f32;
|
|
|
|
|
|
(max_dim, (orig_h as f32 * ratio) as u32)
|
2026-02-14 01:29:34 +01:00
|
|
|
|
} else {
|
2026-02-24 12:41:07 +01:00
|
|
|
|
let ratio = max_dim as f32 / orig_h as f32;
|
|
|
|
|
|
((orig_w as f32 * ratio) as u32, max_dim)
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
let filter = match size {
|
2026-02-26 00:47:32 +01:00
|
|
|
|
ThumbnailSize::Icon => FilterType::Triangle,
|
2026-02-24 12:41:07 +01:00
|
|
|
|
ThumbnailSize::Preview => FilterType::CatmullRom,
|
2026-02-26 00:47:32 +01:00
|
|
|
|
ThumbnailSize::Large => FilterType::CatmullRom,
|
2026-02-24 12:41:07 +01:00
|
|
|
|
};
|
|
|
|
|
|
let thumb = img.resize(new_w, new_h, filter);
|
|
|
|
|
|
|
2026-03-07 20:37:19 +01:00
|
|
|
|
let rgb = thumb.to_rgb8();
|
2026-02-24 12:41:07 +01:00
|
|
|
|
let mut buf = Vec::new();
|
2026-03-07 20:37:19 +01:00
|
|
|
|
let encoder = JpegEncoder::new_with_quality(&mut buf, 80);
|
|
|
|
|
|
rgb.write_with_encoder(encoder)
|
2026-02-24 12:41:07 +01:00
|
|
|
|
.map_err(|e| ThumbnailError::ImageError(e.to_string()))?;
|
|
|
|
|
|
|
|
|
|
|
|
Ok((size, Bytes::from(buf)))
|
|
|
|
|
|
})
|
|
|
|
|
|
.collect::<Result<Vec<_>, ThumbnailError>>()
|
|
|
|
|
|
})
|
|
|
|
|
|
.await;
|
|
|
|
|
|
|
|
|
|
|
|
// Flatten JoinError + inner ThumbnailError
|
|
|
|
|
|
let thumbnails = match results {
|
|
|
|
|
|
Ok(Ok(t)) => t,
|
|
|
|
|
|
Ok(Err(e)) => {
|
2026-02-26 00:47:32 +01:00
|
|
|
|
tracing::warn!("Thumbnail generation failed for {}: {}", file_id, e);
|
2026-02-24 12:41:07 +01:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
Err(e) => {
|
2026-02-26 00:47:32 +01:00
|
|
|
|
tracing::warn!("Thumbnail task panicked for {}: {}", file_id, e);
|
2026-02-24 12:41:07 +01:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-04-12 00:50:10 +02:00
|
|
|
|
// Save each size to disk (keyed by blob_hash for dedup)
|
|
|
|
|
|
// AND populate moka (keyed by file_id for fast serving).
|
2026-02-24 12:41:07 +01:00
|
|
|
|
for (size, bytes) in thumbnails {
|
2026-04-12 00:50:10 +02:00
|
|
|
|
let thumb_path = self.get_thumbnail_path(&blob_hash, size);
|
2026-02-24 12:41:07 +01:00
|
|
|
|
if let Some(parent) = thumb_path.parent() {
|
|
|
|
|
|
let _ = fs::create_dir_all(parent).await;
|
|
|
|
|
|
}
|
|
|
|
|
|
if let Err(e) = fs::write(&thumb_path, &bytes).await {
|
|
|
|
|
|
tracing::warn!("Failed to save thumbnail {} {:?}: {}", file_id, size, e);
|
|
|
|
|
|
} else {
|
2026-03-07 19:48:35 +01:00
|
|
|
|
// Populate in-memory cache for instant first-hit serving
|
|
|
|
|
|
let cache_key = ThumbnailCacheKey {
|
|
|
|
|
|
file_id: file_id.clone(),
|
|
|
|
|
|
size,
|
|
|
|
|
|
};
|
|
|
|
|
|
self.cache.insert(cache_key, bytes).await;
|
2026-02-24 12:41:07 +01:00
|
|
|
|
tracing::debug!("✅ Generated thumbnail: {} {:?}", file_id, size);
|
2026-02-14 01:29:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
tracing::info!("✅ Background thumbnail generation complete: {}", file_id);
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-12 00:50:10 +02:00
|
|
|
|
/// Delete thumbnails for a file.
|
|
|
|
|
|
///
|
|
|
|
|
|
/// Only invalidates the in-memory moka cache (keyed by file_id).
|
|
|
|
|
|
/// Disk thumbnails are keyed by blob_hash and may be shared by
|
|
|
|
|
|
/// other files with the same content — they are cleaned up via
|
|
|
|
|
|
/// `delete_blob_thumbnails` when the blob is garbage-collected.
|
|
|
|
|
|
/// Also removes any external (video-frame) thumbnails stored by file_id.
|
2026-02-14 01:29:34 +01:00
|
|
|
|
pub async fn delete_thumbnails(&self, file_id: &str) -> Result<(), ThumbnailError> {
|
|
|
|
|
|
for size in ThumbnailSize::all() {
|
2026-04-12 00:50:10 +02:00
|
|
|
|
// Remove from moka cache (lock-free invalidation)
|
2026-02-14 01:29:34 +01:00
|
|
|
|
let cache_key = ThumbnailCacheKey {
|
|
|
|
|
|
file_id: file_id.to_string(),
|
|
|
|
|
|
size: *size,
|
|
|
|
|
|
};
|
2026-02-22 23:28:03 +01:00
|
|
|
|
self.cache.invalidate(&cache_key).await;
|
2026-04-12 00:50:10 +02:00
|
|
|
|
|
|
|
|
|
|
// Remove external (video-frame) thumbnails stored by file_id
|
|
|
|
|
|
let ext_path = self
|
|
|
|
|
|
.thumbnails_root
|
|
|
|
|
|
.join(size.dir_name())
|
|
|
|
|
|
.join(format!("ext-{}.jpg", file_id));
|
|
|
|
|
|
if fs::metadata(&ext_path).await.is_ok() {
|
|
|
|
|
|
let _ = fs::remove_file(&ext_path).await;
|
|
|
|
|
|
}
|
2026-02-14 01:29:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-12 00:50:10 +02:00
|
|
|
|
tracing::debug!("🗑️ Invalidated thumbnail cache for: {}", file_id);
|
2026-02-14 01:29:34 +01:00
|
|
|
|
Ok(())
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-12 00:50:10 +02:00
|
|
|
|
/// Remove orphaned blob-hash thumbnails whose blob no longer exists.
|
|
|
|
|
|
///
|
|
|
|
|
|
/// Call during blob garbage collection: pass the hash of the blob
|
|
|
|
|
|
/// being deleted and the corresponding thumbnails are removed from disk.
|
|
|
|
|
|
pub async fn delete_blob_thumbnails(&self, blob_hash: &str) {
|
|
|
|
|
|
for size in ThumbnailSize::all() {
|
|
|
|
|
|
let path = self.get_thumbnail_path(blob_hash, *size);
|
|
|
|
|
|
if fs::metadata(&path).await.is_ok() {
|
|
|
|
|
|
let _ = fs::remove_file(&path).await;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
tracing::debug!(
|
|
|
|
|
|
"🗑️ Deleted blob thumbnails for hash: {}…",
|
|
|
|
|
|
&blob_hash[..blob_hash.len().min(12)]
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-14 01:29:34 +01:00
|
|
|
|
/// Get cache statistics
|
|
|
|
|
|
pub async fn get_stats(&self) -> ThumbnailStats {
|
|
|
|
|
|
ThumbnailStats {
|
2026-02-22 23:28:03 +01:00
|
|
|
|
cached_thumbnails: self.cache.entry_count() as usize,
|
|
|
|
|
|
cache_size_bytes: self.cache.weighted_size() as usize,
|
|
|
|
|
|
max_cache_bytes: self.max_cache_bytes as usize,
|
2026-02-14 01:29:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ─── Port implementation ─────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
|
|
/// Convert port ThumbnailSize to infra ThumbnailSize.
|
|
|
|
|
|
impl From<PortThumbnailSize> for ThumbnailSize {
|
|
|
|
|
|
fn from(size: PortThumbnailSize) -> Self {
|
|
|
|
|
|
match size {
|
|
|
|
|
|
PortThumbnailSize::Icon => ThumbnailSize::Icon,
|
|
|
|
|
|
PortThumbnailSize::Preview => ThumbnailSize::Preview,
|
|
|
|
|
|
PortThumbnailSize::Large => ThumbnailSize::Large,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl ThumbnailPort for ThumbnailService {
|
|
|
|
|
|
fn is_supported_image(&self, mime_type: &str) -> bool {
|
|
|
|
|
|
ThumbnailService::is_supported_image(mime_type)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async fn get_thumbnail(
|
|
|
|
|
|
&self,
|
|
|
|
|
|
file_id: &str,
|
2026-04-12 00:50:10 +02:00
|
|
|
|
blob_hash: &str,
|
2026-02-14 01:29:34 +01:00
|
|
|
|
size: PortThumbnailSize,
|
|
|
|
|
|
original_path: &Path,
|
|
|
|
|
|
) -> Result<Bytes, DomainError> {
|
2026-04-12 00:50:10 +02:00
|
|
|
|
self.get_thumbnail(file_id, blob_hash, size.into(), original_path)
|
2026-02-14 01:29:34 +01:00
|
|
|
|
.await
|
|
|
|
|
|
.map_err(|e| DomainError::new(ErrorKind::InternalError, "Thumbnail", e.to_string()))
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-12 00:50:10 +02:00
|
|
|
|
fn generate_all_sizes_background(
|
|
|
|
|
|
self: Arc<Self>,
|
|
|
|
|
|
file_id: String,
|
|
|
|
|
|
blob_hash: String,
|
|
|
|
|
|
original_path: PathBuf,
|
|
|
|
|
|
) {
|
|
|
|
|
|
ThumbnailService::generate_all_sizes_background(self, file_id, blob_hash, original_path)
|
2026-02-14 01:29:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async fn delete_thumbnails(&self, file_id: &str) -> Result<(), DomainError> {
|
|
|
|
|
|
self.delete_thumbnails(file_id)
|
|
|
|
|
|
.await
|
|
|
|
|
|
.map_err(|e| DomainError::new(ErrorKind::InternalError, "Thumbnail", e.to_string()))
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-12 00:50:10 +02:00
|
|
|
|
async fn get_cached_thumbnail(
|
|
|
|
|
|
&self,
|
|
|
|
|
|
file_id: &str,
|
|
|
|
|
|
blob_hash: Option<&str>,
|
|
|
|
|
|
size: PortThumbnailSize,
|
|
|
|
|
|
) -> Option<Bytes> {
|
|
|
|
|
|
self.get_cached_thumbnail(file_id, blob_hash, size.into())
|
|
|
|
|
|
.await
|
2026-03-07 18:55:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async fn store_external_thumbnail(
|
|
|
|
|
|
&self,
|
|
|
|
|
|
file_id: &str,
|
|
|
|
|
|
size: PortThumbnailSize,
|
|
|
|
|
|
data: Bytes,
|
|
|
|
|
|
) -> Result<Bytes, DomainError> {
|
|
|
|
|
|
self.store_external_thumbnail(file_id, size.into(), data)
|
|
|
|
|
|
.await
|
|
|
|
|
|
.map_err(|e| DomainError::new(ErrorKind::InternalError, "Thumbnail", e.to_string()))
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-14 01:29:34 +01:00
|
|
|
|
async fn get_stats(&self) -> ThumbnailStatsDto {
|
|
|
|
|
|
let stats = self.get_stats().await;
|
|
|
|
|
|
ThumbnailStatsDto {
|
|
|
|
|
|
cached_thumbnails: stats.cached_thumbnails,
|
|
|
|
|
|
cache_size_bytes: stats.cache_size_bytes,
|
|
|
|
|
|
max_cache_bytes: stats.max_cache_bytes,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Thumbnail service errors
|
|
|
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
|
|
|
|
pub enum ThumbnailError {
|
|
|
|
|
|
#[error("IO error: {0}")]
|
|
|
|
|
|
IoError(String),
|
|
|
|
|
|
|
|
|
|
|
|
#[error("Image processing error: {0}")]
|
|
|
|
|
|
ImageError(String),
|
|
|
|
|
|
|
|
|
|
|
|
#[error("Task error: {0}")]
|
|
|
|
|
|
TaskError(String),
|
|
|
|
|
|
|
|
|
|
|
|
#[error("Unsupported image format")]
|
|
|
|
|
|
UnsupportedFormat,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Statistics about the thumbnail cache
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
|
|
pub struct ThumbnailStats {
|
|
|
|
|
|
pub cached_thumbnails: usize,
|
|
|
|
|
|
pub cache_size_bytes: usize,
|
|
|
|
|
|
pub max_cache_bytes: usize,
|
|
|
|
|
|
}
|