| // 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. |
| |
| use std::fmt::Debug; |
| use std::future::Future; |
| use std::sync::Arc; |
| |
| use fastrace::prelude::*; |
| |
| use crate::raw::*; |
| use crate::*; |
| |
| /// Add [fastrace](https://docs.rs/fastrace/) for every operation. |
| /// |
| /// # Examples |
| /// |
| /// ## Basic Setup |
| /// |
| /// ```no_run |
| /// # use opendal::layers::FastraceLayer; |
| /// # use opendal::services; |
| /// # use opendal::Operator; |
| /// # use opendal::Result; |
| /// |
| /// # fn main() -> Result<()> { |
| /// let _ = Operator::new(services::Memory::default())? |
| /// .layer(FastraceLayer) |
| /// .finish(); |
| /// Ok(()) |
| /// # } |
| /// ``` |
| /// |
| /// ## Real usage |
| /// |
| /// ```no_run |
| /// # use anyhow::Result; |
| /// # use fastrace::prelude::*; |
| /// # use opendal::layers::FastraceLayer; |
| /// # use opendal::services; |
| /// # use opendal::Operator; |
| /// |
| /// # fn main() -> Result<()> { |
| /// let reporter = |
| /// fastrace_jaeger::JaegerReporter::new("127.0.0.1:6831".parse()?, "opendal").unwrap(); |
| /// fastrace::set_reporter(reporter, fastrace::collector::Config::default()); |
| /// |
| /// { |
| /// let root = Span::root("op", SpanContext::random()); |
| /// let runtime = tokio::runtime::Runtime::new()?; |
| /// runtime.block_on( |
| /// async { |
| /// let _ = dotenvy::dotenv(); |
| /// let op = Operator::new(services::Memory::default())? |
| /// .layer(FastraceLayer) |
| /// .finish(); |
| /// op.write("test", "0".repeat(16 * 1024 * 1024).into_bytes()) |
| /// .await?; |
| /// op.stat("test").await?; |
| /// op.read("test").await?; |
| /// Ok::<(), opendal::Error>(()) |
| /// } |
| /// .in_span(Span::enter_with_parent("test", &root)), |
| /// )?; |
| /// } |
| /// |
| /// fastrace::flush(); |
| /// |
| /// Ok(()) |
| /// # } |
| /// ``` |
| /// |
| /// # Output |
| /// |
| /// OpenDAL is using [`fastrace`](https://docs.rs/fastrace/latest/fastrace/) for tracing internally. |
| /// |
| /// To enable fastrace output, please init one of the reporter that `fastrace` supports. |
| /// |
| /// For example: |
| /// |
| /// ```no_run |
| /// # use anyhow::Result; |
| /// |
| /// # fn main() -> Result<()> { |
| /// let reporter = |
| /// fastrace_jaeger::JaegerReporter::new("127.0.0.1:6831".parse()?, "opendal").unwrap(); |
| /// fastrace::set_reporter(reporter, fastrace::collector::Config::default()); |
| /// Ok(()) |
| /// # } |
| /// ``` |
| /// |
| /// For real-world usage, please take a look at [`fastrace-datadog`](https://crates.io/crates/fastrace-datadog) or [`fastrace-jaeger`](https://crates.io/crates/fastrace-jaeger) . |
| pub struct FastraceLayer; |
| |
| impl<A: Access> Layer<A> for FastraceLayer { |
| type LayeredAccess = FastraceAccessor<A>; |
| |
| fn layer(&self, inner: A) -> Self::LayeredAccess { |
| FastraceAccessor { inner } |
| } |
| } |
| |
| #[derive(Debug)] |
| pub struct FastraceAccessor<A> { |
| inner: A, |
| } |
| |
| impl<A: Access> LayeredAccess for FastraceAccessor<A> { |
| type Inner = A; |
| type Reader = FastraceWrapper<A::Reader>; |
| type Writer = FastraceWrapper<A::Writer>; |
| type Lister = FastraceWrapper<A::Lister>; |
| type Deleter = FastraceWrapper<A::Deleter>; |
| |
| fn inner(&self) -> &Self::Inner { |
| &self.inner |
| } |
| |
| #[trace] |
| fn info(&self) -> Arc<AccessorInfo> { |
| self.inner.info() |
| } |
| |
| #[trace(enter_on_poll = true)] |
| async fn create_dir(&self, path: &str, args: OpCreateDir) -> Result<RpCreateDir> { |
| self.inner.create_dir(path, args).await |
| } |
| |
| #[trace(enter_on_poll = true)] |
| async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)> { |
| self.inner.read(path, args).await.map(|(rp, r)| { |
| ( |
| rp, |
| FastraceWrapper::new( |
| Span::enter_with_local_parent(Operation::Read.into_static()), |
| r, |
| ), |
| ) |
| }) |
| } |
| |
| #[trace(enter_on_poll = true)] |
| async fn write(&self, path: &str, args: OpWrite) -> Result<(RpWrite, Self::Writer)> { |
| self.inner.write(path, args).await.map(|(rp, r)| { |
| ( |
| rp, |
| FastraceWrapper::new( |
| Span::enter_with_local_parent(Operation::Write.into_static()), |
| r, |
| ), |
| ) |
| }) |
| } |
| |
| #[trace(enter_on_poll = true)] |
| async fn copy(&self, from: &str, to: &str, args: OpCopy) -> Result<RpCopy> { |
| self.inner().copy(from, to, args).await |
| } |
| |
| #[trace(enter_on_poll = true)] |
| async fn rename(&self, from: &str, to: &str, args: OpRename) -> Result<RpRename> { |
| self.inner().rename(from, to, args).await |
| } |
| |
| #[trace(enter_on_poll = true)] |
| async fn stat(&self, path: &str, args: OpStat) -> Result<RpStat> { |
| self.inner.stat(path, args).await |
| } |
| |
| #[trace(enter_on_poll = true)] |
| async fn delete(&self) -> Result<(RpDelete, Self::Deleter)> { |
| self.inner.delete().await.map(|(rp, r)| { |
| ( |
| rp, |
| FastraceWrapper::new( |
| Span::enter_with_local_parent(Operation::Delete.into_static()), |
| r, |
| ), |
| ) |
| }) |
| } |
| |
| #[trace(enter_on_poll = true)] |
| async fn list(&self, path: &str, args: OpList) -> Result<(RpList, Self::Lister)> { |
| self.inner.list(path, args).await.map(|(rp, s)| { |
| ( |
| rp, |
| FastraceWrapper::new( |
| Span::enter_with_local_parent(Operation::List.into_static()), |
| s, |
| ), |
| ) |
| }) |
| } |
| |
| #[trace(enter_on_poll = true)] |
| async fn presign(&self, path: &str, args: OpPresign) -> Result<RpPresign> { |
| self.inner.presign(path, args).await |
| } |
| } |
| |
| pub struct FastraceWrapper<R> { |
| span: Span, |
| inner: R, |
| } |
| |
| impl<R> FastraceWrapper<R> { |
| fn new(span: Span, inner: R) -> Self { |
| Self { span, inner } |
| } |
| } |
| |
| impl<R: oio::Read> oio::Read for FastraceWrapper<R> { |
| #[trace(enter_on_poll = true)] |
| async fn read(&mut self) -> Result<Buffer> { |
| self.inner.read().await |
| } |
| } |
| |
| impl<R: oio::Write> oio::Write for FastraceWrapper<R> { |
| fn write(&mut self, bs: Buffer) -> impl Future<Output = Result<()>> + MaybeSend { |
| let _g = self.span.set_local_parent(); |
| let _span = LocalSpan::enter_with_local_parent(Operation::Write.into_static()); |
| self.inner.write(bs) |
| } |
| |
| fn abort(&mut self) -> impl Future<Output = Result<()>> + MaybeSend { |
| let _g = self.span.set_local_parent(); |
| let _span = LocalSpan::enter_with_local_parent(Operation::Write.into_static()); |
| self.inner.abort() |
| } |
| |
| fn close(&mut self) -> impl Future<Output = Result<Metadata>> + MaybeSend { |
| let _g = self.span.set_local_parent(); |
| let _span = LocalSpan::enter_with_local_parent(Operation::Write.into_static()); |
| self.inner.close() |
| } |
| } |
| |
| impl<R: oio::List> oio::List for FastraceWrapper<R> { |
| #[trace(enter_on_poll = true)] |
| async fn next(&mut self) -> Result<Option<oio::Entry>> { |
| self.inner.next().await |
| } |
| } |
| |
| impl<R: oio::Delete> oio::Delete for FastraceWrapper<R> { |
| fn delete(&mut self, path: &str, args: OpDelete) -> Result<()> { |
| let _g = self.span.set_local_parent(); |
| let _span = LocalSpan::enter_with_local_parent(Operation::Delete.into_static()); |
| self.inner.delete(path, args) |
| } |
| |
| #[trace(enter_on_poll = true)] |
| async fn flush(&mut self) -> Result<usize> { |
| self.inner.flush().await |
| } |
| } |