blob: e85c0c101b891a88b124818cd47d2a92c34098a0 [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 super::PERSY_SCHEME;
use super::config::PersyConfig;
use super::core::*;
use super::deleter::PersyDeleter;
use super::reader::*;
use super::writer::PersyWriter;
use opendal_core::raw::*;
use opendal_core::*;
/// persy service support.
#[doc = include_str!("docs.md")]
#[derive(Debug, Default)]
pub struct PersyBuilder {
pub(super) config: PersyConfig,
}
impl PersyBuilder {
/// Set the path to the persy data directory. Will create if not exists.
pub fn datafile(mut self, path: &str) -> Self {
self.config.datafile = Some(path.into());
self
}
/// Set the name of the persy segment. Will create if not exists.
pub fn segment(mut self, path: &str) -> Self {
self.config.segment = Some(path.into());
self
}
/// Set the name of the persy index. Will create if not exists.
pub fn index(mut self, path: &str) -> Self {
self.config.index = Some(path.into());
self
}
}
impl Builder for PersyBuilder {
type Config = PersyConfig;
fn build(self) -> Result<impl Service> {
let datafile_path = self.config.datafile.ok_or_else(|| {
Error::new(ErrorKind::ConfigInvalid, "datafile is required but not set")
.with_context("service", PERSY_SCHEME)
})?;
let segment_name = self.config.segment.ok_or_else(|| {
Error::new(ErrorKind::ConfigInvalid, "segment is required but not set")
.with_context("service", PERSY_SCHEME)
})?;
let segment = segment_name.clone();
let index_name = self.config.index.ok_or_else(|| {
Error::new(ErrorKind::ConfigInvalid, "index is required but not set")
.with_context("service", PERSY_SCHEME)
})?;
let index = index_name.clone();
let persy = persy::OpenOptions::new()
.create(true)
.prepare_with(move |p| init(p, &segment_name, &index_name))
.open(&datafile_path)
.map_err(|e| {
Error::new(ErrorKind::ConfigInvalid, "open db")
.with_context("service", PERSY_SCHEME)
.with_context("datafile", datafile_path.clone())
.set_source(e)
})?;
// This function will only be called on database creation
fn init(
persy: &persy::Persy,
segment_name: &str,
index_name: &str,
) -> Result<(), Box<dyn std::error::Error>> {
let mut tx = persy.begin()?;
if !tx.exists_segment(segment_name)? {
tx.create_segment(segment_name)?;
}
if !tx.exists_index(index_name)? {
tx.create_index::<String, persy::PersyId>(index_name, persy::ValueMode::Replace)?;
}
let prepared = tx.prepare()?;
prepared.commit()?;
Ok(())
}
Ok(PersyBackend::new(PersyCore {
datafile: datafile_path,
segment,
index,
persy,
}))
}
}
/// Backend for persy services.
#[derive(Clone, Debug)]
pub struct PersyBackend {
pub(crate) core: Arc<PersyCore>,
pub(crate) root: String,
pub(crate) info: ServiceInfo,
pub(crate) capability: Capability,
}
impl PersyBackend {
pub fn new(core: PersyCore) -> Self {
let info = ServiceInfo::new(PERSY_SCHEME, "/", &core.datafile);
let capability = Capability {
read: true,
stat: true,
write: true,
write_can_empty: true,
delete: true,
..Default::default()
};
Self {
core: Arc::new(core),
root: "/".to_string(),
info,
capability,
}
}
}
impl Service for PersyBackend {
type Reader = oio::StreamReader<PersyReader>;
type Writer = PersyWriter;
type Lister = ();
type Deleter = oio::OneShotDeleter<PersyDeleter>;
type Copier = ();
fn info(&self) -> ServiceInfo {
self.info.clone()
}
fn capability(&self) -> Capability {
self.capability
}
async fn create_dir(
&self,
_ctx: &OperationContext,
_path: &str,
_args: OpCreateDir,
) -> Result<RpCreateDir> {
Err(Error::new(
ErrorKind::Unsupported,
"operation is not supported",
))
}
async fn stat(&self, _ctx: &OperationContext, 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)?;
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 persy")),
}
}
}
fn read(&self, _ctx: &OperationContext, path: &str, args: OpRead) -> Result<Self::Reader> {
let output: oio::StreamReader<PersyReader> = {
Ok(oio::StreamReader::new(PersyReader::new(
self.clone(),
path,
args,
)))
}?;
Ok(output)
}
fn write(&self, _ctx: &OperationContext, path: &str, _: OpWrite) -> Result<Self::Writer> {
let output: PersyWriter = {
let p = build_abs_path(&self.root, path);
Ok(PersyWriter::new(self.core.clone(), p))
}?;
Ok(output)
}
fn delete(&self, _ctx: &OperationContext) -> Result<Self::Deleter> {
let output: oio::OneShotDeleter<PersyDeleter> = {
Ok(oio::OneShotDeleter::new(PersyDeleter::new(
self.core.clone(),
self.root.clone(),
)))
}?;
Ok(output)
}
fn list(&self, _ctx: &OperationContext, _path: &str, _args: OpList) -> Result<Self::Lister> {
Err(Error::new(
ErrorKind::Unsupported,
"operation is not supported",
))
}
fn copy(
&self,
_ctx: &OperationContext,
_from: &str,
_to: &str,
_args: OpCopy,
_opts: OpCopier,
) -> Result<Self::Copier> {
Err(Error::new(
ErrorKind::Unsupported,
"operation is not supported",
))
}
async fn rename(
&self,
_ctx: &OperationContext,
_from: &str,
_to: &str,
_args: OpRename,
) -> Result<RpRename> {
Err(Error::new(
ErrorKind::Unsupported,
"operation is not supported",
))
}
async fn presign(
&self,
_ctx: &OperationContext,
_path: &str,
_args: OpPresign,
) -> Result<RpPresign> {
Err(Error::new(
ErrorKind::Unsupported,
"operation is not supported",
))
}
}