blob: 0e7a46049f42f67c06c6943131cc06344c0113dc [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.
use std::fmt::Debug;
use std::sync::Arc;
use foundationdb::Database;
use super::FOUNDATIONDB_SCHEME;
use super::config::FoundationdbConfig;
use super::core::*;
use super::deleter::FoundationdbDeleter;
use super::writer::FoundationdbWriter;
use opendal_core::raw::*;
use opendal_core::*;
#[doc = include_str!("docs.md")]
#[derive(Debug, Default)]
pub struct FoundationdbBuilder {
pub(super) config: FoundationdbConfig,
}
impl FoundationdbBuilder {
/// Set the root for Foundationdb.
pub fn root(mut self, path: &str) -> Self {
self.config.root = Some(path.into());
self
}
/// Set the config path for Foundationdb. If not set, will fallback to use default
pub fn config_path(mut self, path: &str) -> Self {
self.config.config_path = Some(path.into());
self
}
}
impl Builder for FoundationdbBuilder {
type Config = FoundationdbConfig;
fn build(self) -> Result<impl Access> {
let _network = Arc::new(unsafe { foundationdb::boot() });
let db;
if let Some(cfg_path) = &self.config.config_path {
db = Database::from_path(cfg_path).map_err(|e| {
Error::new(ErrorKind::ConfigInvalid, "open foundation db")
.with_context("service", FOUNDATIONDB_SCHEME)
.set_source(e)
})?;
} else {
db = Database::default().map_err(|e| {
Error::new(ErrorKind::ConfigInvalid, "open foundation db")
.with_context("service", FOUNDATIONDB_SCHEME)
.set_source(e)
})?
}
let db = Arc::new(db);
let root = normalize_root(
self.config
.root
.clone()
.unwrap_or_else(|| "/".to_string())
.as_str(),
);
Ok(FoundationdbBackend::new(FoundationdbCore { db, _network }).with_normalized_root(root))
}
}
/// Backend for Foundationdb services.
#[derive(Clone, Debug)]
pub struct FoundationdbBackend {
core: Arc<FoundationdbCore>,
root: String,
info: Arc<AccessorInfo>,
}
impl FoundationdbBackend {
pub fn new(core: FoundationdbCore) -> Self {
let info = AccessorInfo::default();
info.set_scheme(FOUNDATIONDB_SCHEME);
info.set_name("foundationdb");
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 FoundationdbBackend {
type Reader = Buffer;
type Writer = FoundationdbWriter;
type Lister = ();
type Deleter = oio::OneShotDeleter<FoundationdbDeleter>;
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 foundationdb",
)),
}
}
}
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 foundationdb",
));
}
};
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(),
FoundationdbWriter::new(self.core.clone(), p),
))
}
async fn delete(&self) -> Result<(RpDelete, Self::Deleter)> {
Ok((
RpDelete::default(),
oio::OneShotDeleter::new(FoundationdbDeleter::new(
self.core.clone(),
self.root.clone(),
)),
))
}
}