| // 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 bytes::Buf; |
| use http::Response; |
| use http::StatusCode; |
| use serde::Deserialize; |
| |
| use super::core::IpmfsCore; |
| use super::deleter::IpmfsDeleter; |
| use super::error::parse_error; |
| use super::lister::IpmfsLister; |
| use super::writer::IpmfsWriter; |
| use opendal_core::raw::*; |
| use opendal_core::*; |
| |
| /// IPFS Mutable File System (IPMFS) backend. |
| #[doc = include_str!("docs.md")] |
| #[derive(Clone, Debug)] |
| pub struct IpmfsBackend { |
| pub core: Arc<IpmfsCore>, |
| } |
| |
| impl Access for IpmfsBackend { |
| type Reader = HttpBody; |
| type Writer = oio::OneShotWriter<IpmfsWriter>; |
| type Lister = oio::PageLister<IpmfsLister>; |
| type Deleter = oio::OneShotDeleter<IpmfsDeleter>; |
| |
| fn info(&self) -> Arc<AccessorInfo> { |
| self.core.info.clone() |
| } |
| |
| async fn create_dir(&self, path: &str, _: OpCreateDir) -> Result<RpCreateDir> { |
| let resp = self.core.ipmfs_mkdir(path).await?; |
| |
| let status = resp.status(); |
| |
| match status { |
| StatusCode::CREATED | StatusCode::OK => Ok(RpCreateDir::default()), |
| _ => Err(parse_error(resp)), |
| } |
| } |
| |
| async fn stat(&self, path: &str, _: OpStat) -> Result<RpStat> { |
| // Stat root always returns a DIR. |
| if path == "/" { |
| return Ok(RpStat::new(Metadata::new(EntryMode::DIR))); |
| } |
| |
| let resp = self.core.ipmfs_stat(path).await?; |
| |
| let status = resp.status(); |
| |
| match status { |
| StatusCode::OK => { |
| let bs = resp.into_body(); |
| |
| let res: IpfsStatResponse = |
| serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?; |
| |
| let mode = match res.file_type.as_str() { |
| "file" => EntryMode::FILE, |
| "directory" => EntryMode::DIR, |
| _ => EntryMode::Unknown, |
| }; |
| |
| let mut meta = Metadata::new(mode); |
| meta.set_content_length(res.size); |
| |
| Ok(RpStat::new(meta)) |
| } |
| _ => Err(parse_error(resp)), |
| } |
| } |
| |
| async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)> { |
| let resp = self.core.ipmfs_read(path, args.range()).await?; |
| |
| let status = resp.status(); |
| |
| match status { |
| StatusCode::OK | StatusCode::PARTIAL_CONTENT => { |
| Ok((RpRead::default(), resp.into_body())) |
| } |
| _ => { |
| let (part, mut body) = resp.into_parts(); |
| let buf = body.to_buffer().await?; |
| Err(parse_error(Response::from_parts(part, buf))) |
| } |
| } |
| } |
| |
| async fn write(&self, path: &str, _: OpWrite) -> Result<(RpWrite, Self::Writer)> { |
| Ok(( |
| RpWrite::default(), |
| oio::OneShotWriter::new(IpmfsWriter::new(self.core.clone(), path.to_string())), |
| )) |
| } |
| |
| async fn delete(&self) -> Result<(RpDelete, Self::Deleter)> { |
| Ok(( |
| RpDelete::default(), |
| oio::OneShotDeleter::new(IpmfsDeleter::new(self.core.clone())), |
| )) |
| } |
| |
| async fn list(&self, path: &str, _: OpList) -> Result<(RpList, Self::Lister)> { |
| let l = IpmfsLister::new(self.core.clone(), &self.core.root, path); |
| Ok((RpList::default(), oio::PageLister::new(l))) |
| } |
| } |
| |
| #[derive(Deserialize, Default, Debug)] |
| #[serde(default)] |
| struct IpfsStatResponse { |
| #[serde(rename = "Size")] |
| size: u64, |
| #[serde(rename = "Type")] |
| file_type: String, |
| } |