| // 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 bytes::Buf; |
| use http::Response; |
| use http::StatusCode; |
| |
| use super::core::GdriveCore; |
| use super::core::GdriveFile; |
| use super::deleter::GdriveDeleter; |
| use super::error::parse_error; |
| use super::lister::GdriveFlatLister; |
| use super::lister::GdriveLister; |
| use super::writer::GdriveWriter; |
| use opendal_core::raw::*; |
| use opendal_core::*; |
| |
| #[derive(Clone, Debug)] |
| pub struct GdriveBackend { |
| pub core: Arc<GdriveCore>, |
| } |
| |
| /// Lister type that supports both recursive and non-recursive listing |
| pub type GdriveListers = TwoWays<oio::PageLister<GdriveLister>, GdriveFlatLister>; |
| |
| impl Access for GdriveBackend { |
| type Reader = HttpBody; |
| type Writer = oio::OneShotWriter<GdriveWriter>; |
| type Lister = GdriveListers; |
| type Deleter = oio::OneShotDeleter<GdriveDeleter>; |
| |
| fn info(&self) -> Arc<AccessorInfo> { |
| self.core.info.clone() |
| } |
| |
| async fn create_dir(&self, path: &str, _args: OpCreateDir) -> Result<RpCreateDir> { |
| let path = build_abs_path(&self.core.root, path); |
| let _ = self.core.path_cache.ensure_dir(&path).await?; |
| |
| Ok(RpCreateDir::default()) |
| } |
| |
| async fn stat(&self, path: &str, _args: OpStat) -> Result<RpStat> { |
| let resp = self.core.gdrive_stat(path).await?; |
| |
| if resp.status() != StatusCode::OK { |
| return Err(parse_error(resp)); |
| } |
| |
| let bs = resp.into_body(); |
| let gdrive_file: GdriveFile = |
| serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?; |
| |
| let file_type = if gdrive_file.mime_type == "application/vnd.google-apps.folder" { |
| EntryMode::DIR |
| } else { |
| EntryMode::FILE |
| }; |
| let mut meta = Metadata::new(file_type).with_content_type(gdrive_file.mime_type); |
| if let Some(v) = gdrive_file.size { |
| meta = meta.with_content_length(v.parse::<u64>().map_err(|e| { |
| Error::new(ErrorKind::Unexpected, "parse content length").set_source(e) |
| })?); |
| } |
| if let Some(v) = gdrive_file.modified_time { |
| meta = meta.with_last_modified(v.parse::<Timestamp>().map_err(|e| { |
| Error::new(ErrorKind::Unexpected, "parse last modified time").set_source(e) |
| })?); |
| } |
| Ok(RpStat::new(meta)) |
| } |
| |
| async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, Self::Reader)> { |
| let resp = self.core.gdrive_get(path, args.range()).await?; |
| |
| let status = resp.status(); |
| match status { |
| StatusCode::OK | StatusCode::PARTIAL_CONTENT => Ok((RpRead::new(), 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)> { |
| let path = build_abs_path(&self.core.root, path); |
| |
| // As Google Drive allows files have the same name, we need to check if the file exists. |
| // If the file exists, we will keep its ID and update it. |
| let file_id = self.core.path_cache.get(&path).await?; |
| |
| Ok(( |
| RpWrite::default(), |
| oio::OneShotWriter::new(GdriveWriter::new(self.core.clone(), path, file_id)), |
| )) |
| } |
| |
| async fn delete(&self) -> Result<(RpDelete, Self::Deleter)> { |
| Ok(( |
| RpDelete::default(), |
| oio::OneShotDeleter::new(GdriveDeleter::new(self.core.clone())), |
| )) |
| } |
| |
| async fn list(&self, path: &str, args: OpList) -> Result<(RpList, Self::Lister)> { |
| let path = build_abs_path(&self.core.root, path); |
| |
| if args.recursive() { |
| // Use optimized batch-query recursive lister |
| let l = GdriveFlatLister::new(path, self.core.clone()); |
| Ok((RpList::default(), TwoWays::Two(l))) |
| } else { |
| // Use standard page-based lister for non-recursive |
| let l = GdriveLister::new(path, self.core.clone()); |
| Ok((RpList::default(), TwoWays::One(oio::PageLister::new(l)))) |
| } |
| } |
| |
| async fn copy(&self, from: &str, to: &str, _args: OpCopy) -> Result<RpCopy> { |
| let resp = self.core.gdrive_copy(from, to).await?; |
| |
| match resp.status() { |
| StatusCode::OK => Ok(RpCopy::default()), |
| _ => Err(parse_error(resp)), |
| } |
| } |
| |
| async fn rename(&self, from: &str, to: &str, _args: OpRename) -> Result<RpRename> { |
| let source = build_abs_path(&self.core.root, from); |
| let target = build_abs_path(&self.core.root, to); |
| |
| // rename will overwrite `to`, delete it if exist |
| if let Some(id) = self.core.path_cache.get(&target).await? { |
| let resp = self.core.gdrive_trash(&id).await?; |
| let status = resp.status(); |
| if status != StatusCode::OK { |
| return Err(parse_error(resp)); |
| } |
| |
| self.core.path_cache.remove(&target).await; |
| } |
| |
| let resp = self |
| .core |
| .gdrive_patch_metadata_request(&source, &target) |
| .await?; |
| |
| let status = resp.status(); |
| |
| match status { |
| StatusCode::OK => { |
| let body = resp.into_body(); |
| let meta: GdriveFile = |
| serde_json::from_reader(body.reader()).map_err(new_json_deserialize_error)?; |
| |
| let cache = &self.core.path_cache; |
| |
| cache.remove(&build_abs_path(&self.core.root, from)).await; |
| cache |
| .insert(&build_abs_path(&self.core.root, to), &meta.id) |
| .await; |
| |
| Ok(RpRename::default()) |
| } |
| _ => Err(parse_error(resp)), |
| } |
| } |
| } |