2025-10-17 23:45:01 +02:00
|
|
|
//! Gestion du cache pour les sources musicales
|
|
|
|
|
//!
|
|
|
|
|
//! Ce module fournit `SourceCacheManager` qui permet aux sources
|
|
|
|
|
//! d'utiliser les caches centralisés du serveur.
|
|
|
|
|
//!
|
|
|
|
|
//! ## Architecture
|
|
|
|
|
//!
|
|
|
|
|
//! Les caches (couvertures et audio) sont centralisés au niveau du serveur UPnP.
|
|
|
|
|
//! Chaque source utilise ces caches partagés avec sa propre collection.
|
|
|
|
|
//!
|
|
|
|
|
//! ```text
|
|
|
|
|
//! UpnpServer
|
|
|
|
|
//! ├─ CoverCache (partagé)
|
|
|
|
|
//! │ ├─ collection: "radio-paradise"
|
|
|
|
|
//! │ └─ collection: "qobuz"
|
|
|
|
|
//! └─ AudioCache (partagé)
|
|
|
|
|
//! ├─ collection: "radio-paradise"
|
|
|
|
|
//! └─ collection: "qobuz"
|
|
|
|
|
//! ```
|
|
|
|
|
|
2025-10-19 13:42:29 +02:00
|
|
|
use crate::{CacheStatus, MusicSourceError, Result};
|
|
|
|
|
use pmoaudiocache::{AudioMetadata, Cache as AudioCache};
|
|
|
|
|
use pmocovers::Cache as CoverCache;
|
2025-10-26 17:51:41 +01:00
|
|
|
use serde_json::Value as JsonValue;
|
2025-10-17 23:45:01 +02:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
use std::sync::Arc;
|
2025-10-19 18:14:28 +02:00
|
|
|
use tokio::io::AsyncRead;
|
2025-10-17 23:45:01 +02:00
|
|
|
use tokio::sync::RwLock;
|
|
|
|
|
|
|
|
|
|
/// Métadonnées d'une piste en cache
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
|
pub struct TrackMetadata {
|
|
|
|
|
/// URI originale de la piste
|
|
|
|
|
pub original_uri: String,
|
|
|
|
|
|
|
|
|
|
/// Clé primaire du fichier audio en cache
|
|
|
|
|
pub cached_audio_pk: Option<String>,
|
|
|
|
|
|
|
|
|
|
/// Clé primaire de la couverture en cache
|
|
|
|
|
pub cached_cover_pk: Option<String>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Manager centralisé pour gérer le cache d'une source
|
|
|
|
|
///
|
|
|
|
|
/// Utilise les caches centralisés du serveur avec la collection de la source.
|
|
|
|
|
/// Chaque source a son propre `SourceCacheManager` mais partage les mêmes
|
|
|
|
|
/// caches (cover et audio) avec les autres sources.
|
|
|
|
|
pub struct SourceCacheManager {
|
|
|
|
|
/// Métadonnées des pistes (track_id → metadata)
|
|
|
|
|
track_cache: RwLock<HashMap<String, TrackMetadata>>,
|
|
|
|
|
|
|
|
|
|
/// ID de collection pour cette source (ex: "radio-paradise", "qobuz")
|
|
|
|
|
collection_id: String,
|
|
|
|
|
|
|
|
|
|
/// Référence au cache de couvertures centralisé
|
|
|
|
|
cover_cache: Arc<CoverCache>,
|
|
|
|
|
|
|
|
|
|
/// Référence au cache audio centralisé
|
|
|
|
|
audio_cache: Arc<AudioCache>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl SourceCacheManager {
|
2025-10-18 09:58:39 +02:00
|
|
|
/// Créer un nouveau manager depuis le registre de caches
|
|
|
|
|
///
|
|
|
|
|
/// Cette méthode utilise le registre global de caches (`CACHE_REGISTRY`)
|
|
|
|
|
/// pour récupérer les caches centralisés du serveur.
|
|
|
|
|
///
|
|
|
|
|
/// # Arguments
|
|
|
|
|
///
|
|
|
|
|
/// * `collection_id` - ID de collection pour cette source (ex: "radio-paradise", "qobuz")
|
|
|
|
|
///
|
|
|
|
|
/// # Returns
|
|
|
|
|
///
|
|
|
|
|
/// Un nouveau `SourceCacheManager` configuré avec les caches centralisés
|
|
|
|
|
///
|
|
|
|
|
/// # Errors
|
|
|
|
|
///
|
|
|
|
|
/// Retourne une erreur si les caches ne sont pas encore initialisés dans le registre
|
|
|
|
|
#[cfg(feature = "server")]
|
|
|
|
|
pub fn from_registry(collection_id: String) -> Result<Self> {
|
2025-10-19 13:42:29 +02:00
|
|
|
let cover_cache = pmoupnp::cache_registry::get_cover_cache().ok_or_else(|| {
|
|
|
|
|
MusicSourceError::CacheError("Cover cache not initialized in registry".to_string())
|
|
|
|
|
})?;
|
2025-10-18 09:58:39 +02:00
|
|
|
|
2025-10-19 13:42:29 +02:00
|
|
|
let audio_cache = pmoupnp::cache_registry::get_audio_cache().ok_or_else(|| {
|
|
|
|
|
MusicSourceError::CacheError("Audio cache not initialized in registry".to_string())
|
|
|
|
|
})?;
|
2025-10-18 09:58:39 +02:00
|
|
|
|
|
|
|
|
Ok(Self {
|
|
|
|
|
track_cache: RwLock::new(HashMap::new()),
|
|
|
|
|
collection_id,
|
|
|
|
|
cover_cache,
|
|
|
|
|
audio_cache,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Créer un nouveau manager (ancien constructeur pour tests)
|
2025-10-17 23:45:01 +02:00
|
|
|
///
|
|
|
|
|
/// # Arguments
|
|
|
|
|
///
|
|
|
|
|
/// * `collection_id` - ID de collection (source ID)
|
|
|
|
|
/// * `cover_cache` - Cache de couvertures centralisé
|
|
|
|
|
/// * `audio_cache` - Cache audio centralisé
|
|
|
|
|
pub fn new(
|
|
|
|
|
collection_id: String,
|
|
|
|
|
cover_cache: Arc<CoverCache>,
|
|
|
|
|
audio_cache: Arc<AudioCache>,
|
|
|
|
|
) -> Self {
|
|
|
|
|
Self {
|
|
|
|
|
track_cache: RwLock::new(HashMap::new()),
|
|
|
|
|
collection_id,
|
|
|
|
|
cover_cache,
|
|
|
|
|
audio_cache,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Résoudre l'URI d'une piste (priorité au cache)
|
|
|
|
|
///
|
|
|
|
|
/// Retourne l'URI du fichier audio en cache si disponible,
|
|
|
|
|
/// sinon l'URI originale.
|
|
|
|
|
pub async fn resolve_uri(&self, object_id: &str) -> Result<String> {
|
|
|
|
|
let cache = self.track_cache.read().await;
|
|
|
|
|
|
|
|
|
|
if let Some(metadata) = cache.get(object_id) {
|
2025-11-04 22:20:35 +00:00
|
|
|
if let Some(ref _pk) = metadata.cached_audio_pk {
|
2025-10-18 09:58:39 +02:00
|
|
|
#[cfg(feature = "server")]
|
|
|
|
|
{
|
2025-11-04 22:20:35 +00:00
|
|
|
let url = pmoupnp::cache_registry::build_audio_url(_pk, Some("stream"))
|
2025-10-18 09:58:39 +02:00
|
|
|
.map_err(|e| MusicSourceError::CacheError(e.to_string()))?;
|
|
|
|
|
return Ok(url);
|
|
|
|
|
}
|
|
|
|
|
#[cfg(not(feature = "server"))]
|
|
|
|
|
{
|
|
|
|
|
return Err(MusicSourceError::CacheError(
|
2025-10-19 13:42:29 +02:00
|
|
|
"Server feature not enabled".to_string(),
|
2025-10-18 09:58:39 +02:00
|
|
|
));
|
|
|
|
|
}
|
2025-10-17 23:45:01 +02:00
|
|
|
}
|
|
|
|
|
return Ok(metadata.original_uri.clone());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Err(MusicSourceError::ObjectNotFound(object_id.to_string()))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Obtenir le statut du cache pour une piste
|
|
|
|
|
pub async fn get_cache_status(&self, object_id: &str) -> Result<CacheStatus> {
|
|
|
|
|
let cache = self.track_cache.read().await;
|
|
|
|
|
|
|
|
|
|
if let Some(metadata) = cache.get(object_id) {
|
2025-11-04 22:20:35 +00:00
|
|
|
if let Some(ref _pk) = metadata.cached_audio_pk {
|
2025-10-17 23:45:01 +02:00
|
|
|
// TODO: Ajouter get_info() à AudioCache
|
|
|
|
|
// Pour l'instant, on retourne juste Cached sans taille
|
|
|
|
|
return Ok(CacheStatus::Cached { size_bytes: 0 });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(CacheStatus::NotCached)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Cacher une couverture depuis une URL
|
|
|
|
|
///
|
|
|
|
|
/// Utilise la collection de cette source pour organiser les images.
|
|
|
|
|
///
|
|
|
|
|
/// # Returns
|
|
|
|
|
///
|
|
|
|
|
/// La clé primaire (pk) de l'image dans le cache
|
|
|
|
|
pub async fn cache_cover(&self, url: &str) -> Result<String> {
|
|
|
|
|
self.cover_cache
|
|
|
|
|
.add_from_url(url, Some(&self.collection_id))
|
|
|
|
|
.await
|
|
|
|
|
.map_err(|e| MusicSourceError::CacheError(e.to_string()))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Obtenir l'URL d'une couverture en cache
|
|
|
|
|
///
|
|
|
|
|
/// # Arguments
|
|
|
|
|
///
|
|
|
|
|
/// * `pk` - Clé primaire de l'image dans le cache
|
|
|
|
|
/// * `size` - Taille optionnelle (génère une variante si spécifiée)
|
|
|
|
|
///
|
|
|
|
|
/// # Returns
|
|
|
|
|
///
|
|
|
|
|
/// L'URL complète de l'image
|
2025-11-04 22:20:35 +00:00
|
|
|
pub fn cover_url(&self, _pk: &str, _size: Option<usize>) -> Result<String> {
|
2025-10-18 09:58:39 +02:00
|
|
|
#[cfg(feature = "server")]
|
|
|
|
|
{
|
2025-11-04 22:20:35 +00:00
|
|
|
pmoupnp::cache_registry::build_cover_url(_pk, _size)
|
2025-10-18 09:58:39 +02:00
|
|
|
.map_err(|e| MusicSourceError::CacheError(e.to_string()))
|
|
|
|
|
}
|
|
|
|
|
#[cfg(not(feature = "server"))]
|
|
|
|
|
{
|
|
|
|
|
Err(MusicSourceError::CacheError(
|
2025-10-19 13:42:29 +02:00
|
|
|
"Server feature not enabled - cannot build cover URL".to_string(),
|
2025-10-18 09:58:39 +02:00
|
|
|
))
|
2025-10-17 23:45:01 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Cacher une piste audio depuis une URL
|
|
|
|
|
///
|
|
|
|
|
/// Utilise la collection de cette source pour organiser les pistes.
|
|
|
|
|
///
|
|
|
|
|
/// # Arguments
|
|
|
|
|
///
|
|
|
|
|
/// * `url` - URL source de la piste
|
|
|
|
|
/// * `_metadata` - Métadonnées audio optionnelles (unused, kept for API compatibility)
|
|
|
|
|
///
|
|
|
|
|
/// # Returns
|
|
|
|
|
///
|
|
|
|
|
/// La clé primaire (pk) de la piste dans le cache
|
2025-10-19 13:42:29 +02:00
|
|
|
pub async fn cache_audio(&self, url: &str, _metadata: Option<AudioMetadata>) -> Result<String> {
|
2025-10-17 23:45:01 +02:00
|
|
|
// Note: Les métadonnées seront extraites automatiquement par le cache audio
|
|
|
|
|
// lors de la conversion FLAC
|
2025-10-19 13:42:29 +02:00
|
|
|
let pk = self
|
|
|
|
|
.audio_cache
|
2025-10-17 23:45:01 +02:00
|
|
|
.add_from_url(url, Some(&self.collection_id))
|
|
|
|
|
.await
|
|
|
|
|
.map_err(|e| MusicSourceError::CacheError(e.to_string()))?;
|
|
|
|
|
Ok(pk)
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-19 18:14:28 +02:00
|
|
|
/// Cache un flux audio via un reader asynchrone
|
|
|
|
|
pub async fn cache_audio_from_reader<R>(
|
|
|
|
|
&self,
|
|
|
|
|
source_uri: &str,
|
|
|
|
|
reader: R,
|
|
|
|
|
length: Option<u64>,
|
|
|
|
|
) -> Result<String>
|
|
|
|
|
where
|
|
|
|
|
R: AsyncRead + Send + Unpin + 'static,
|
|
|
|
|
{
|
|
|
|
|
let pk = self
|
|
|
|
|
.audio_cache
|
2025-11-02 15:06:27 +01:00
|
|
|
.add_from_reader(Some(source_uri), reader, length, Some(&self.collection_id))
|
2025-10-19 18:14:28 +02:00
|
|
|
.await
|
|
|
|
|
.map_err(|e| MusicSourceError::CacheError(e.to_string()))?;
|
|
|
|
|
Ok(pk)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Attend que le fichier audio correspondant soit complètement disponible
|
|
|
|
|
pub async fn wait_audio_ready(&self, pk: &str) -> Result<()> {
|
|
|
|
|
self.audio_cache
|
|
|
|
|
.wait_until_finished(pk)
|
|
|
|
|
.await
|
|
|
|
|
.map_err(|e| MusicSourceError::CacheError(e.to_string()))
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-17 23:45:01 +02:00
|
|
|
/// Mettre à jour les métadonnées d'une piste
|
|
|
|
|
///
|
|
|
|
|
/// Enregistre ou met à jour les métadonnées de cache pour une piste.
|
|
|
|
|
pub async fn update_metadata(&self, track_id: String, metadata: TrackMetadata) {
|
|
|
|
|
let mut cache = self.track_cache.write().await;
|
|
|
|
|
cache.insert(track_id, metadata);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Récupérer les métadonnées d'une piste
|
|
|
|
|
pub async fn get_metadata(&self, track_id: &str) -> Option<TrackMetadata> {
|
|
|
|
|
let cache = self.track_cache.read().await;
|
|
|
|
|
cache.get(track_id).cloned()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Supprimer une piste du cache
|
|
|
|
|
pub async fn remove_track(&self, track_id: &str) {
|
|
|
|
|
let mut cache = self.track_cache.write().await;
|
|
|
|
|
cache.remove(track_id);
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-26 17:51:41 +01:00
|
|
|
/// Stocke une métadonnée personnalisée pour un fichier audio caché
|
|
|
|
|
///
|
|
|
|
|
/// Permet de stocker des métadonnées arbitraires (clé/valeur JSON) associées
|
|
|
|
|
/// à un fichier audio identifié par son PK. Ces métadonnées sont persistées
|
|
|
|
|
/// dans la base de données SQLite du cache audio.
|
|
|
|
|
///
|
|
|
|
|
/// # Arguments
|
|
|
|
|
///
|
|
|
|
|
/// * `audio_pk` - Clé primaire du fichier audio dans le cache
|
|
|
|
|
/// * `key` - Nom de la métadonnée à stocker
|
|
|
|
|
/// * `value` - Valeur JSON à stocker
|
|
|
|
|
///
|
|
|
|
|
/// # Exemples
|
|
|
|
|
///
|
|
|
|
|
/// ```no_run
|
|
|
|
|
/// # use pmosource::SourceCacheManager;
|
|
|
|
|
/// # use serde_json::json;
|
|
|
|
|
/// # async fn example(cache_manager: &SourceCacheManager, audio_pk: &str) {
|
|
|
|
|
/// // Stocker une métadonnée simple
|
|
|
|
|
/// cache_manager.set_audio_metadata(audio_pk, "genre", json!("Rock")).unwrap();
|
|
|
|
|
///
|
|
|
|
|
/// // Stocker une métadonnée numérique
|
|
|
|
|
/// cache_manager.set_audio_metadata(audio_pk, "rating", json!(8.5)).unwrap();
|
|
|
|
|
/// # }
|
|
|
|
|
/// ```
|
2025-10-26 21:35:02 +01:00
|
|
|
pub fn set_audio_metadata(&self, audio_pk: &str, key: &str, value: JsonValue) -> Result<()> {
|
2025-10-26 17:51:41 +01:00
|
|
|
self.audio_cache
|
|
|
|
|
.db
|
|
|
|
|
.set_a_metadata(audio_pk, key, value)
|
|
|
|
|
.map_err(|e| MusicSourceError::CacheError(format!("Failed to set metadata: {}", e)))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Récupère une métadonnée personnalisée pour un fichier audio caché
|
|
|
|
|
///
|
|
|
|
|
/// Lit une métadonnée précédemment stockée via `set_audio_metadata()`.
|
|
|
|
|
///
|
|
|
|
|
/// # Arguments
|
|
|
|
|
///
|
|
|
|
|
/// * `audio_pk` - Clé primaire du fichier audio dans le cache
|
|
|
|
|
/// * `key` - Nom de la métadonnée à récupérer
|
|
|
|
|
///
|
|
|
|
|
/// # Returns
|
|
|
|
|
///
|
|
|
|
|
/// * `Ok(Some(value))` - La métadonnée existe
|
|
|
|
|
/// * `Ok(None)` - La métadonnée n'existe pas
|
|
|
|
|
/// * `Err(_)` - Erreur de lecture
|
|
|
|
|
///
|
|
|
|
|
/// # Exemples
|
|
|
|
|
///
|
|
|
|
|
/// ```no_run
|
|
|
|
|
/// # use pmosource::SourceCacheManager;
|
|
|
|
|
/// # async fn example(cache_manager: &SourceCacheManager, audio_pk: &str) {
|
|
|
|
|
/// if let Some(genre) = cache_manager.get_audio_metadata(audio_pk, "genre").unwrap() {
|
|
|
|
|
/// println!("Genre: {}", genre);
|
|
|
|
|
/// }
|
|
|
|
|
/// # }
|
|
|
|
|
/// ```
|
|
|
|
|
pub fn get_audio_metadata(&self, audio_pk: &str, key: &str) -> Result<Option<JsonValue>> {
|
|
|
|
|
match self.audio_cache.db.get_a_metadata(audio_pk, key) {
|
|
|
|
|
Ok(value) => Ok(value),
|
|
|
|
|
Err(e) if e.to_string().contains("QueryReturnedNoRows") => Ok(None),
|
|
|
|
|
Err(e) => Err(MusicSourceError::CacheError(format!(
|
|
|
|
|
"Failed to get metadata: {}",
|
|
|
|
|
e
|
|
|
|
|
))),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-17 23:45:01 +02:00
|
|
|
/// Obtenir l'ID de collection
|
|
|
|
|
pub fn collection_id(&self) -> &str {
|
|
|
|
|
&self.collection_id
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Obtenir les statistiques du cache pour cette source
|
|
|
|
|
pub async fn statistics(&self) -> CacheStatistics {
|
|
|
|
|
let cache = self.track_cache.read().await;
|
2025-10-19 13:42:29 +02:00
|
|
|
let cached_count = cache
|
|
|
|
|
.values()
|
2025-10-17 23:45:01 +02:00
|
|
|
.filter(|m| m.cached_audio_pk.is_some())
|
|
|
|
|
.count();
|
|
|
|
|
|
|
|
|
|
CacheStatistics {
|
|
|
|
|
total_tracks: cache.len(),
|
|
|
|
|
cached_tracks: cached_count,
|
|
|
|
|
collection_id: self.collection_id.clone(),
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-10-21 14:21:17 +02:00
|
|
|
|
|
|
|
|
/// Récupère le chemin de fichier pour une piste audio en cache
|
|
|
|
|
///
|
|
|
|
|
/// Retourne `None` si le fichier n'est pas encore disponible.
|
|
|
|
|
pub async fn audio_file_path(&self, pk: &str) -> Option<std::path::PathBuf> {
|
|
|
|
|
match self.audio_cache.get(pk).await {
|
|
|
|
|
Ok(path) => Some(path),
|
|
|
|
|
Err(_) => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-10-17 23:45:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Statistiques du cache pour une source
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
|
pub struct CacheStatistics {
|
|
|
|
|
/// Nombre total de pistes connues
|
|
|
|
|
pub total_tracks: usize,
|
|
|
|
|
|
|
|
|
|
/// Nombre de pistes en cache
|
|
|
|
|
pub cached_tracks: usize,
|
|
|
|
|
|
|
|
|
|
/// ID de collection
|
|
|
|
|
pub collection_id: String,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_track_metadata() {
|
|
|
|
|
let metadata = TrackMetadata {
|
|
|
|
|
original_uri: "http://example.com/track.flac".to_string(),
|
|
|
|
|
cached_audio_pk: Some("abc123".to_string()),
|
|
|
|
|
cached_cover_pk: Some("def456".to_string()),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
assert_eq!(metadata.original_uri, "http://example.com/track.flac");
|
|
|
|
|
assert_eq!(metadata.cached_audio_pk, Some("abc123".to_string()));
|
|
|
|
|
}
|
|
|
|
|
}
|