blob: 1b98de4084db2f7c728fd32b4b17424aadcdb4c3 [file]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//! Await tree layer implementation for Apache OpenDAL.
#![cfg_attr(docsrs, feature(doc_cfg))]
#![deny(missing_docs)]
use await_tree::InstrumentAwait;
use futures::Future;
use opendal_core::raw::*;
use opendal_core::*;
/// Add an Instrument await-tree for actor-based applications to the underlying services.
///
/// # AwaitTree
///
/// await-tree allows developers to dump this execution tree at runtime,
/// with the span of each Future annotated by instrument_await.
/// Read more about [await-tree](https://docs.rs/await-tree/latest/await_tree/)
///
/// # Examples
///
/// ```no_run
/// # use opendal_core::services;
/// # use opendal_core::Operator;
/// # use opendal_core::Result;
/// # use opendal_layer_await_tree::AwaitTreeLayer;
/// #
/// # fn main() -> Result<()> {
/// let _ = Operator::new(services::Memory::default())?
/// .layer(AwaitTreeLayer::new())
/// .finish();
/// # Ok(())
/// # }
/// ```
#[derive(Clone, Default)]
#[non_exhaustive]
pub struct AwaitTreeLayer {}
impl AwaitTreeLayer {
/// Create a new [`AwaitTreeLayer`].
pub fn new() -> Self {
Self::default()
}
}
impl<A: Access> Layer<A> for AwaitTreeLayer {
type LayeredAccess = AwaitTreeAccessor<A>;
fn layer(&self, inner: A) -> Self::LayeredAccess {
AwaitTreeAccessor { inner }
}
}
#[doc(hidden)]
#[derive(Debug)]
pub struct AwaitTreeAccessor<A: Access> {
inner: A,
}
impl<A: Access> LayeredAccess for AwaitTreeAccessor<A> {
type Inner = A;
type Reader = AwaitTreeWrapper<A::Reader>;
type Writer = AwaitTreeWrapper<A::Writer>;
type Lister = AwaitTreeWrapper<A::Lister>;
type Deleter = AwaitTreeWrapper<A::Deleter>;
fn inner(&self) -> &Self::Inner {
&self.inner
}
async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)> {
self.inner
.read(path, args)
.instrument_await(format!("opendal::{}", Operation::Read))
.await
.map(|(rp, r)| (rp, AwaitTreeWrapper::new(r)))
}
async fn write(&self, path: &str, args: OpWrite) -> Result<(RpWrite, Self::Writer)> {
self.inner
.write(path, args)
.instrument_await(format!("opendal::{}", Operation::Write))
.await
.map(|(rp, r)| (rp, AwaitTreeWrapper::new(r)))
}
async fn copy(&self, from: &str, to: &str, args: OpCopy) -> Result<RpCopy> {
self.inner()
.copy(from, to, args)
.instrument_await(format!("opendal::{}", Operation::Copy))
.await
}
async fn rename(&self, from: &str, to: &str, args: OpRename) -> Result<RpRename> {
self.inner()
.rename(from, to, args)
.instrument_await(format!("opendal::{}", Operation::Rename))
.await
}
async fn stat(&self, path: &str, args: OpStat) -> Result<RpStat> {
self.inner
.stat(path, args)
.instrument_await(format!("opendal::{}", Operation::Stat))
.await
}
async fn delete(&self) -> Result<(RpDelete, Self::Deleter)> {
self.inner
.delete()
.instrument_await(format!("opendal::{}", Operation::Delete))
.await
.map(|(rp, r)| (rp, AwaitTreeWrapper::new(r)))
}
async fn list(&self, path: &str, args: OpList) -> Result<(RpList, Self::Lister)> {
self.inner
.list(path, args)
.instrument_await(format!("opendal::{}", Operation::List))
.await
.map(|(rp, r)| (rp, AwaitTreeWrapper::new(r)))
}
async fn presign(&self, path: &str, args: OpPresign) -> Result<RpPresign> {
self.inner
.presign(path, args)
.instrument_await(format!("opendal::{}", Operation::Presign))
.await
}
}
#[doc(hidden)]
pub struct AwaitTreeWrapper<R> {
inner: R,
}
impl<R> AwaitTreeWrapper<R> {
fn new(inner: R) -> Self {
Self { inner }
}
}
impl<R: oio::Read> oio::Read for AwaitTreeWrapper<R> {
async fn read(&mut self) -> Result<Buffer> {
self.inner
.read()
.instrument_await(format!("opendal::{}", Operation::Read))
.await
}
}
impl<R: oio::Write> oio::Write for AwaitTreeWrapper<R> {
fn write(&mut self, bs: Buffer) -> impl Future<Output = Result<()>> + MaybeSend {
self.inner
.write(bs)
.instrument_await(format!("opendal::{}", Operation::Write.into_static()))
}
fn abort(&mut self) -> impl Future<Output = Result<()>> + MaybeSend {
self.inner
.abort()
.instrument_await(format!("opendal::{}", Operation::Write.into_static()))
}
fn close(&mut self) -> impl Future<Output = Result<Metadata>> + MaybeSend {
self.inner
.close()
.instrument_await(format!("opendal::{}", Operation::Write.into_static()))
}
}
impl<R: oio::List> oio::List for AwaitTreeWrapper<R> {
async fn next(&mut self) -> Result<Option<oio::Entry>> {
self.inner
.next()
.instrument_await(format!("opendal::{}", Operation::List))
.await
}
}
impl<R: oio::Delete> oio::Delete for AwaitTreeWrapper<R> {
async fn delete(&mut self, path: &str, args: OpDelete) -> Result<()> {
self.inner.delete(path, args).await
}
async fn close(&mut self) -> Result<()> {
self.inner
.close()
.instrument_await(format!("opendal::{}", Operation::Delete))
.await
}
}