use crate::Result;
use async_trait::async_trait;
use bytes::Bytes;
use futures::stream::BoxStream;
use futures::{StreamExt, TryStreamExt};
use object_store::path::Path;
use object_store::{
Error as OSError, GetOptions, GetResult, ListResult, MultipartUpload, ObjectMeta, ObjectStore,
PutMultipartOptions, PutOptions, PutPayload, PutResult, Result as OSResult,
};
use std::collections::HashMap;
use std::fmt::Debug;
use std::future;
use std::ops::Range;
use std::sync::{Arc, Mutex};
pub trait PolicyFnT: Fn(&str, &Path) -> Result<()> + Send + Sync {}
impl<F> PolicyFnT for F where F: Fn(&str, &Path) -> Result<()> + Send + Sync {}
impl Debug for dyn PolicyFnT {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "PolicyFn")
}
}
type PolicyFn = Arc<dyn PolicyFnT>;
pub trait ObjectMetaPolicyFnT: Fn(&str, ObjectMeta) -> Result<ObjectMeta> + Send + Sync {}
impl<F> ObjectMetaPolicyFnT for F where F: Fn(&str, ObjectMeta) -> Result<ObjectMeta> + Send + Sync {}
impl Debug for dyn ObjectMetaPolicyFnT {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "PolicyFn")
}
}
type ObjectMetaPolicyFn = Arc<dyn ObjectMetaPolicyFnT>;
#[derive(Debug, Default)]
pub struct ProxyObjectStorePolicy {
before_policies: HashMap<String, PolicyFn>,
object_meta_policies: HashMap<String, ObjectMetaPolicyFn>,
}
impl ProxyObjectStorePolicy {
pub fn new() -> Self {
Default::default()
}
pub fn set_before_policy(&mut self, name: &str, policy: PolicyFn) {
self.before_policies.insert(name.to_string(), policy);
}
pub fn clear_before_policy(&mut self, name: &str) {
self.before_policies.remove(name);
}
pub fn set_obj_meta_policy(&mut self, name: &str, policy: ObjectMetaPolicyFn) {
self.object_meta_policies.insert(name.to_string(), policy);
}
}
#[derive(Debug)]
pub struct ProxyObjectStore {
target: Arc<dyn ObjectStore>,
policy: Arc<Mutex<ProxyObjectStorePolicy>>,
}
impl ProxyObjectStore {
pub fn new(target: Arc<dyn ObjectStore>, policy: Arc<Mutex<ProxyObjectStorePolicy>>) -> Self {
Self { target, policy }
}
fn before_method(&self, method: &str, location: &Path) -> OSResult<()> {
let policy = self.policy.lock().unwrap();
for policy in policy.before_policies.values() {
policy(method, location).map_err(OSError::from)?;
}
Ok(())
}
fn transform_meta(&self, method: &str, meta: ObjectMeta) -> OSResult<ObjectMeta> {
let policy = self.policy.lock().unwrap();
let mut meta = meta;
for policy in policy.object_meta_policies.values() {
meta = policy(method, meta).map_err(OSError::from)?;
}
Ok(meta)
}
}
impl std::fmt::Display for ProxyObjectStore {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "ProxyObjectStore({})", self.target)
}
}
#[async_trait]
impl ObjectStore for ProxyObjectStore {
async fn put_opts(
&self,
location: &Path,
bytes: PutPayload,
opts: PutOptions,
) -> OSResult<PutResult> {
self.before_method("put", location)?;
self.target.put_opts(location, bytes, opts).await
}
async fn put_multipart_opts(
&self,
location: &Path,
opts: PutMultipartOptions,
) -> OSResult<Box<dyn MultipartUpload>> {
self.before_method("put_multipart", location)?;
self.target.put_multipart_opts(location, opts).await
}
async fn get_opts(&self, location: &Path, options: GetOptions) -> OSResult<GetResult> {
self.before_method("get_opts", location)?;
self.target.get_opts(location, options).await
}
async fn get_range(&self, location: &Path, range: Range<u64>) -> OSResult<Bytes> {
self.before_method("get_range", location)?;
self.target.get_range(location, range).await
}
async fn get_ranges(&self, location: &Path, ranges: &[Range<u64>]) -> OSResult<Vec<Bytes>> {
self.before_method("get_ranges", location)?;
self.target.get_ranges(location, ranges).await
}
async fn head(&self, location: &Path) -> OSResult<ObjectMeta> {
self.before_method("head", location)?;
let meta = self.target.head(location).await?;
self.transform_meta("head", meta)
}
async fn delete(&self, location: &Path) -> OSResult<()> {
self.before_method("delete", location)?;
self.target.delete(location).await
}
fn list(&self, prefix: Option<&Path>) -> BoxStream<'static, OSResult<ObjectMeta>> {
let target = self.target.clone();
let policy = Arc::clone(&self.policy);
target
.list(prefix)
.and_then(move |meta| {
let policy = policy.lock().unwrap();
let mut meta = meta;
for p in policy.object_meta_policies.values() {
meta = p("list", meta).map_err(OSError::from).unwrap();
}
future::ready(Ok(meta))
})
.boxed()
}
async fn list_with_delimiter(&self, prefix: Option<&Path>) -> OSResult<ListResult> {
self.target.list_with_delimiter(prefix).await
}
async fn copy(&self, from: &Path, to: &Path) -> OSResult<()> {
self.before_method("copy", from)?;
self.target.copy(from, to).await
}
async fn rename(&self, from: &Path, to: &Path) -> OSResult<()> {
self.before_method("rename", from)?;
self.target.rename(from, to).await
}
async fn copy_if_not_exists(&self, from: &Path, to: &Path) -> OSResult<()> {
self.before_method("copy_if_not_exists", from)?;
self.target.copy_if_not_exists(from, to).await
}
}