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
//! # Storage Module
//!
//! This module defines a generic storage abstraction represented by the
//! [`Storage`] struct. It provides methods for performing common storage
//! operations such as upload, download, delete, rename, and copy.
//!
//! ## Storage Strategy
//!
//! The [`Storage`] struct is designed to work with different storage
//! strategies. A storage strategy defines the behavior of the storage
//! operations. Strategies implement the [`strategies::StorageStrategy`].
//! The selected strategy can be dynamically changed at runtime.
mod contents;
pub mod drivers;
pub mod strategies;
use std::{
collections::BTreeMap,
path::{Path, PathBuf},
};
use bytes::Bytes;
use self::drivers::StoreDriver;
#[derive(thiserror::Error, Debug)]
#[allow(clippy::module_name_repetitions)]
pub enum StorageError {
#[error("store not found by the given key: {0}")]
StoreNotFound(String),
#[error(transparent)]
Store(#[from] object_store::Error),
#[error("Unable to read data from file {}", path.display().to_string())]
UnableToReadBytes { path: PathBuf },
#[error("secondaries errors")]
Multi(BTreeMap<String, String>),
}
pub type StorageResult<T> = std::result::Result<T, StorageError>;
pub struct Storage {
pub stores: BTreeMap<String, Box<dyn StoreDriver>>,
pub strategy: Box<dyn strategies::StorageStrategy>,
}
impl Storage {
/// Creates a new storage instance with a single store and the default
/// strategy.
///
/// # Examples
///```
/// use loco_rs::storage;
///
/// let storage = storage::Storage::single(storage::drivers::mem::new());
/// ```
#[must_use]
pub fn single(store: Box<dyn StoreDriver>) -> Self {
let default_key = "store";
Self {
strategy: Box::new(strategies::single::SingleStrategy::new(default_key)),
stores: BTreeMap::from([(default_key.to_string(), store)]),
}
}
/// Creates a new storage instance with the provided stores and strategy.
#[must_use]
pub fn new(
stores: BTreeMap<String, Box<dyn StoreDriver>>,
strategy: Box<dyn strategies::StorageStrategy>,
) -> Self {
Self { stores, strategy }
}
/// Uploads content to the storage at the specified path.
///
/// This method uses the selected strategy for the upload operation.
///
/// # Examples
///```
/// use loco_rs::storage;
/// use std::path::Path;
/// use bytes::Bytes;
/// pub async fn upload() {
/// let storage = storage::Storage::single(storage::drivers::mem::new());
/// let path = Path::new("example.txt");
/// let content = "Loco!";
/// let result = storage.upload(path, &Bytes::from(content)).await;
/// assert!(result.is_ok());
/// }
/// ```
///
/// # Errors
///
/// This method returns an error if the upload operation fails or if there
/// is an issue with the strategy configuration.
pub async fn upload(&self, path: &Path, content: &Bytes) -> StorageResult<()> {
self.upload_with_strategy(path, content, &*self.strategy)
.await
}
/// Uploads content to the storage at the specified path using a specific
/// strategy.
///
/// This method allows specifying a custom strategy for the upload
/// operation.
///
/// # Errors
///
/// This method returns an error if the upload operation fails or if there
/// is an issue with the strategy configuration.
pub async fn upload_with_strategy(
&self,
path: &Path,
content: &Bytes,
strategy: &dyn strategies::StorageStrategy,
) -> StorageResult<()> {
strategy.upload(self, path, content).await
}
/// Downloads content from the storage at the specified path.
///
/// This method uses the selected strategy for the download operation.
///
/// # Examples
///```
/// use loco_rs::storage;
/// use std::path::Path;
/// use bytes::Bytes;
/// pub async fn download() {
/// let storage = storage::Storage::single(storage::drivers::mem::new());
/// let path = Path::new("example.txt");
/// let content = "Loco!";
/// storage.upload(path, &Bytes::from(content)).await;
///
/// let result: String = storage.download(path).await.unwrap();
/// assert_eq!(result, "Loco!");
/// }
/// ```
///
/// # Errors
///
/// This method returns an error if the download operation fails or if there
/// is an issue with the strategy configuration.
pub async fn download<T: TryFrom<contents::Contents>>(&self, path: &Path) -> StorageResult<T> {
self.download_with_policy(path, &*self.strategy).await
}
/// Downloads content from the storage at the specified path using a
/// specific strategy.
///
/// This method allows specifying a custom strategy for the download
/// operation.
///
/// # Errors
///
/// This method returns an error if the download operation fails or if there
/// is an issue with the strategy configuration.
pub async fn download_with_policy<T: TryFrom<contents::Contents>>(
&self,
path: &Path,
strategy: &dyn strategies::StorageStrategy,
) -> StorageResult<T> {
let res = strategy.download(self, path).await?;
contents::Contents::from(res).try_into().map_or_else(
|_| {
Err(StorageError::UnableToReadBytes {
path: path.to_path_buf(),
})
},
|content| Ok(content),
)
}
/// Deletes content from the storage at the specified path.
///
/// This method uses the selected strategy for the delete operation.
///
/// # Examples
///```
/// use loco_rs::storage;
/// use std::path::Path;
/// use bytes::Bytes;
/// pub async fn download() {
/// let storage = storage::Storage::single(storage::drivers::mem::new());
/// let path = Path::new("example.txt");
/// let content = "Loco!";
/// storage.upload(path, &Bytes::from(content)).await;
///
/// let result = storage.delete(path).await;
/// assert!(result.is_ok());
/// }
/// ```
///
/// # Errors
///
/// This method returns an error if the delete operation fails or if there
/// is an issue with the strategy configuration.
pub async fn delete(&self, path: &Path) -> StorageResult<()> {
self.delete_with_policy(path, &*self.strategy).await
}
/// Deletes content from the storage at the specified path using a specific
/// strategy.
///
/// This method allows specifying a custom strategy for the delete
/// operation.
///
/// # Errors
///
/// This method returns an error if the delete operation fails or if there
/// is an issue with the strategy configuration.
pub async fn delete_with_policy(
&self,
path: &Path,
strategy: &dyn strategies::StorageStrategy,
) -> StorageResult<()> {
strategy.delete(self, path).await
}
/// Renames content from one path to another in the storage.
///
/// This method uses the selected strategy for the rename operation.
///
/// # Examples
///```
/// use loco_rs::storage;
/// use std::path::Path;
/// use bytes::Bytes;
/// pub async fn download() {
/// let storage = storage::Storage::single(storage::drivers::mem::new());
/// let path = Path::new("example.txt");
/// let content = "Loco!";
/// storage.upload(path, &Bytes::from(content)).await;
///
/// let new_path = Path::new("new_path.txt");
/// let store = storage.as_store("default").unwrap();
/// assert!(storage.rename(&path, &new_path).await.is_ok());
/// assert!(!store.exists(&path).await.unwrap());
/// assert!(store.exists(&new_path).await.unwrap());
/// }
/// ```
///
/// # Errors
///
/// This method returns an error if the rename operation fails or if there
/// is an issue with the strategy configuration.
pub async fn rename(&self, from: &Path, to: &Path) -> StorageResult<()> {
self.rename_with_policy(from, to, &*self.strategy).await
}
/// Renames content from one path to another in the storage using a specific
/// strategy.
///
/// This method allows specifying a custom strategy for the rename
/// operation.
///
/// # Errors
///
/// This method returns an error if the rename operation fails or if there
/// is an issue with the strategy configuration.
pub async fn rename_with_policy(
&self,
from: &Path,
to: &Path,
strategy: &dyn strategies::StorageStrategy,
) -> StorageResult<()> {
strategy.rename(self, from, to).await
}
/// Copies content from one path to another in the storage.
///
/// This method uses the selected strategy for the copy operation.
///
/// # Examples
///```
/// use loco_rs::storage;
/// use std::path::Path;
/// use bytes::Bytes;
/// pub async fn download() {
/// let storage = storage::Storage::single(storage::drivers::mem::new());
/// let path = Path::new("example.txt");
/// let content = "Loco!";
/// storage.upload(path, &Bytes::from(content)).await;
///
/// let new_path = Path::new("new_path.txt");
/// let store = storage.as_store("default").unwrap();
/// assert!(storage.copy(&path, &new_path).await.is_ok());
/// assert!(store.exists(&path).await.unwrap());
/// assert!(store.exists(&new_path).await.unwrap());
/// }
/// ```
///
/// # Errors
///
/// This method returns an error if the copy operation fails or if there is
/// an issue with the strategy configuration.
pub async fn copy(&self, from: &Path, to: &Path) -> StorageResult<()> {
self.copy_with_policy(from, to, &*self.strategy).await
}
/// Copies content from one path to another in the storage using a specific
/// strategy.
///
/// This method allows specifying a custom strategy for the copy operation.
///
/// # Errors
///
/// This method returns an error if the copy operation fails or if there is
/// an issue with the strategy configuration.
pub async fn copy_with_policy(
&self,
from: &Path,
to: &Path,
strategy: &dyn strategies::StorageStrategy,
) -> StorageResult<()> {
strategy.copy(self, from, to).await
}
/// Returns a reference to the store with the specified name if exists.
///
/// # Examples
///```
/// use loco_rs::storage;
/// use std::path::Path;
/// use bytes::Bytes;
/// pub async fn download() {
/// let storage = storage::Storage::single(storage::drivers::mem::new());
/// assert!(storage.as_store("default").is_some());
/// assert!(storage.as_store("store_2").is_none());
/// }
/// ```
///
/// # Returns
/// Return None if the given name not found.
#[must_use]
pub fn as_store(&self, name: &str) -> Option<&dyn StoreDriver> {
self.stores.get(name).map(|s| &**s)
}
/// Returns a reference to the store with the specified name.
///
/// # Examples
///```
/// use loco_rs::storage;
/// use std::path::Path;
/// use bytes::Bytes;
/// pub async fn download() {
/// let storage = storage::Storage::single(storage::drivers::mem::new());
/// assert!(storage.as_store_err("default").is_ok());
/// assert!(storage.as_store_err("store_2").is_err());
/// }
/// ```
///
/// # Errors
///
/// Return an error if the given store name not exists
// REVIEW(nd): not sure bout the name 'as_store_err' -- it returns result
pub fn as_store_err(&self, name: &str) -> StorageResult<&dyn StoreDriver> {
self.as_store(name)
.ok_or(StorageError::StoreNotFound(name.to_string()))
}
}