| // 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::sync::Arc; |
| |
| use mea::once::OnceCell; |
| use opendal_core::raw::*; |
| use opendal_core::*; |
| |
| use super::GRIDFS_SCHEME; |
| use super::config::GridfsConfig; |
| use super::core::*; |
| use super::deleter::GridfsDeleter; |
| use super::writer::GridfsWriter; |
| |
| #[doc = include_str!("docs.md")] |
| #[derive(Debug, Default)] |
| pub struct GridfsBuilder { |
| pub(super) config: GridfsConfig, |
| } |
| |
| impl GridfsBuilder { |
| /// Set the connection_string of the MongoDB service. |
| /// |
| /// This connection string is used to connect to the MongoDB service. It typically follows the format: |
| /// |
| /// ## Format |
| /// |
| /// `mongodb://[username:password@]host1[:port1][,...hostN[:portN]][/[defaultauthdb][?options]]` |
| /// |
| /// Examples: |
| /// |
| /// - Connecting to a local MongoDB instance: `mongodb://localhost:27017` |
| /// - Using authentication: `mongodb://myUser:myPassword@localhost:27017/myAuthDB` |
| /// - Specifying authentication mechanism: `mongodb://myUser:myPassword@localhost:27017/myAuthDB?authMechanism=SCRAM-SHA-256` |
| /// |
| /// ## Options |
| /// |
| /// - `authMechanism`: Specifies the authentication method to use. Examples include `SCRAM-SHA-1`, `SCRAM-SHA-256`, and `MONGODB-AWS`. |
| /// - ... (any other options you wish to highlight) |
| /// |
| /// For more information, please refer to [MongoDB Connection String URI Format](https://docs.mongodb.com/manual/reference/connection-string/). |
| pub fn connection_string(mut self, v: &str) -> Self { |
| if !v.is_empty() { |
| self.config.connection_string = Some(v.to_string()); |
| } |
| self |
| } |
| |
| /// Set the working directory, all operations will be performed under it. |
| /// |
| /// default: "/" |
| pub fn root(mut self, root: &str) -> Self { |
| self.config.root = if root.is_empty() { |
| None |
| } else { |
| Some(root.to_string()) |
| }; |
| |
| self |
| } |
| |
| /// Set the database name of the MongoDB GridFs service to read/write. |
| pub fn database(mut self, database: &str) -> Self { |
| if !database.is_empty() { |
| self.config.database = Some(database.to_string()); |
| } |
| self |
| } |
| |
| /// Set the bucket name of the MongoDB GridFs service to read/write. |
| /// |
| /// Default to `fs` if not specified. |
| pub fn bucket(mut self, bucket: &str) -> Self { |
| if !bucket.is_empty() { |
| self.config.bucket = Some(bucket.to_string()); |
| } |
| self |
| } |
| |
| /// Set the chunk size of the MongoDB GridFs service used to break the user file into chunks. |
| /// |
| /// Default to `255 KiB` if not specified. |
| pub fn chunk_size(mut self, chunk_size: u32) -> Self { |
| if chunk_size > 0 { |
| self.config.chunk_size = Some(chunk_size); |
| } |
| self |
| } |
| } |
| |
| impl Builder for GridfsBuilder { |
| type Config = GridfsConfig; |
| |
| fn build(self) -> Result<impl Access> { |
| let conn = match &self.config.connection_string.clone() { |
| Some(v) => v.clone(), |
| None => { |
| return Err( |
| Error::new(ErrorKind::ConfigInvalid, "connection_string is required") |
| .with_context("service", GRIDFS_SCHEME), |
| ); |
| } |
| }; |
| let database = match &self.config.database.clone() { |
| Some(v) => v.clone(), |
| None => { |
| return Err(Error::new(ErrorKind::ConfigInvalid, "database is required") |
| .with_context("service", GRIDFS_SCHEME)); |
| } |
| }; |
| let bucket = match &self.config.bucket.clone() { |
| Some(v) => v.clone(), |
| None => "fs".to_string(), |
| }; |
| let chunk_size = self.config.chunk_size.unwrap_or(255); |
| |
| let root = normalize_root( |
| self.config |
| .root |
| .clone() |
| .unwrap_or_else(|| "/".to_string()) |
| .as_str(), |
| ); |
| |
| Ok(GridfsBackend::new(GridfsCore { |
| connection_string: conn, |
| database, |
| bucket, |
| chunk_size, |
| bucket_instance: OnceCell::new(), |
| }) |
| .with_normalized_root(root)) |
| } |
| } |
| |
| /// Backend for Gridfs services. |
| #[derive(Clone, Debug)] |
| pub struct GridfsBackend { |
| core: Arc<GridfsCore>, |
| root: String, |
| info: Arc<AccessorInfo>, |
| } |
| |
| impl GridfsBackend { |
| pub fn new(core: GridfsCore) -> Self { |
| let info = AccessorInfo::default(); |
| info.set_scheme(GRIDFS_SCHEME); |
| info.set_name(&format!("{}/{}", core.database, core.bucket)); |
| info.set_root("/"); |
| info.set_native_capability(Capability { |
| read: true, |
| stat: true, |
| write: true, |
| write_can_empty: true, |
| delete: true, |
| shared: true, |
| ..Default::default() |
| }); |
| |
| Self { |
| core: Arc::new(core), |
| root: "/".to_string(), |
| info: Arc::new(info), |
| } |
| } |
| |
| fn with_normalized_root(mut self, root: String) -> Self { |
| self.info.set_root(&root); |
| self.root = root; |
| self |
| } |
| } |
| |
| impl Access for GridfsBackend { |
| type Reader = Buffer; |
| type Writer = GridfsWriter; |
| type Lister = (); |
| type Deleter = oio::OneShotDeleter<GridfsDeleter>; |
| |
| fn info(&self) -> Arc<AccessorInfo> { |
| self.info.clone() |
| } |
| |
| async fn stat(&self, path: &str, _: OpStat) -> Result<RpStat> { |
| let p = build_abs_path(&self.root, path); |
| |
| if p == build_abs_path(&self.root, "") { |
| Ok(RpStat::new(Metadata::new(EntryMode::DIR))) |
| } else { |
| let bs = self.core.get(&p).await?; |
| match bs { |
| Some(bs) => Ok(RpStat::new( |
| Metadata::new(EntryMode::FILE).with_content_length(bs.len() as u64), |
| )), |
| None => Err(Error::new(ErrorKind::NotFound, "kv not found in gridfs")), |
| } |
| } |
| } |
| |
| async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)> { |
| let p = build_abs_path(&self.root, path); |
| let bs = match self.core.get(&p).await? { |
| Some(bs) => bs, |
| None => { |
| return Err(Error::new(ErrorKind::NotFound, "kv not found in gridfs")); |
| } |
| }; |
| Ok((RpRead::new(), bs.slice(args.range().to_range_as_usize()))) |
| } |
| |
| async fn write(&self, path: &str, _: OpWrite) -> Result<(RpWrite, Self::Writer)> { |
| let p = build_abs_path(&self.root, path); |
| Ok((RpWrite::new(), GridfsWriter::new(self.core.clone(), p))) |
| } |
| |
| async fn delete(&self) -> Result<(RpDelete, Self::Deleter)> { |
| Ok(( |
| RpDelete::default(), |
| oio::OneShotDeleter::new(GridfsDeleter::new(self.core.clone(), self.root.clone())), |
| )) |
| } |
| } |