morristai commented on code in PR #3461:
URL: 
https://github.com/apache/incubator-opendal/pull/3461#discussion_r1380967339


##########
core/src/services/swift/backend.rs:
##########
@@ -0,0 +1,335 @@
+// 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::collections::HashMap;
+use std::fmt::Debug;
+use std::fmt::Formatter;
+use std::sync::Arc;
+
+use async_trait::async_trait;
+use http::StatusCode;
+use log::debug;
+
+use super::core::SwiftCore;
+use super::error::parse_error;
+use super::pager::SwiftPager;
+use super::writer::SwiftWriter;
+use crate::raw::*;
+use crate::*;
+
+const SWIFT_DEFAULT_ENDPOINT: &str = "http://127.0.0.1:8080";;
+
+/// [OpenStack Swift](https://docs.openstack.org/api-ref/object-store/#)'s 
REST API support.
+#[doc = include_str!("docs.md")]
+#[derive(Default, Clone)]
+pub struct SwiftBuilder {
+    endpoint: Option<String>,
+    account_name: Option<String>,
+    container: Option<String>,
+    root: Option<String>,
+    token: Option<String>,
+}
+
+impl Debug for SwiftBuilder {
+    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
+        let mut ds = f.debug_struct("Builder");
+
+        ds.field("root", &self.root);
+        ds.field("endpoint", &self.endpoint);
+        ds.field("account_name", &self.account_name);
+        ds.field("container", &self.container);
+
+        if self.token.is_some() {
+            ds.field("token", &"<redacted>");
+        }
+
+        ds.finish()
+    }
+}
+
+impl SwiftBuilder {
+    /// Set the remote address of this backend
+    /// default to `http://127.0.0.1:8080`
+    ///
+    /// Endpoints should be full uri, e.g.
+    ///
+    /// - `https://openstack-controller.example.com:8080`
+    /// - `http://192.168.66.88:8080`
+    ///
+    /// If user inputs endpoint without scheme, we will
+    /// prepend `http://` to it.

Review Comment:
   Done, how about `WebHDFS`, it uses `http` for the same?



##########
core/src/services/swift/backend.rs:
##########
@@ -0,0 +1,335 @@
+// 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::collections::HashMap;
+use std::fmt::Debug;
+use std::fmt::Formatter;
+use std::sync::Arc;
+
+use async_trait::async_trait;
+use http::StatusCode;
+use log::debug;
+
+use super::core::SwiftCore;
+use super::error::parse_error;
+use super::pager::SwiftPager;
+use super::writer::SwiftWriter;
+use crate::raw::*;
+use crate::*;
+
+const SWIFT_DEFAULT_ENDPOINT: &str = "http://127.0.0.1:8080";;
+
+/// [OpenStack Swift](https://docs.openstack.org/api-ref/object-store/#)'s 
REST API support.
+#[doc = include_str!("docs.md")]
+#[derive(Default, Clone)]
+pub struct SwiftBuilder {
+    endpoint: Option<String>,
+    account_name: Option<String>,
+    container: Option<String>,
+    root: Option<String>,
+    token: Option<String>,
+}
+
+impl Debug for SwiftBuilder {
+    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
+        let mut ds = f.debug_struct("Builder");
+
+        ds.field("root", &self.root);
+        ds.field("endpoint", &self.endpoint);
+        ds.field("account_name", &self.account_name);
+        ds.field("container", &self.container);
+
+        if self.token.is_some() {
+            ds.field("token", &"<redacted>");
+        }
+
+        ds.finish()
+    }
+}
+
+impl SwiftBuilder {
+    /// Set the remote address of this backend
+    /// default to `http://127.0.0.1:8080`
+    ///
+    /// Endpoints should be full uri, e.g.
+    ///
+    /// - `https://openstack-controller.example.com:8080`
+    /// - `http://192.168.66.88:8080`
+    ///
+    /// If user inputs endpoint without scheme, we will
+    /// prepend `http://` to it.
+    pub fn endpoint(&mut self, endpoint: &str) -> &mut Self {
+        self.endpoint = if endpoint.is_empty() {
+            None
+        } else {
+            Some(endpoint.trim_end_matches('/').to_string())
+        };
+        self
+    }
+
+    /// Set account of this backend.
+    ///
+    /// It is required. e.g. `TEST_account`
+    pub fn account_name(&mut self, account: &str) -> &mut Self {
+        self.account_name = if account.is_empty() {
+            None
+        } else {
+            Some(account.trim_end_matches('/').to_string())
+        };
+        self
+    }
+
+    /// Set container of this backend.
+    ///
+    /// All operations will happen under this container. It is required. e.g. 
`snapshots`
+    pub fn container(&mut self, container: &str) -> &mut Self {
+        self.container = if container.is_empty() {
+            None
+        } else {
+            Some(container.trim_end_matches('/').to_string())
+        };
+        self
+    }
+
+    /// Set root of this backend.
+    ///
+    /// All operations will happen under this root.
+    pub fn root(&mut self, root: &str) -> &mut Self {
+        if !root.is_empty() {
+            self.root = Some(root.to_string())
+        }
+
+        self
+    }
+
+    /// Set the token of this backend.
+    ///
+    /// Default to empty string.
+    pub fn token(&mut self, token: &str) -> &mut Self {
+        if !token.is_empty() {
+            self.token = Some(token.to_string());
+        }
+        self
+    }
+}
+
+impl Builder for SwiftBuilder {
+    const SCHEME: Scheme = Scheme::Swift;
+    type Accessor = SwiftBackend;
+
+    fn from_map(map: HashMap<String, String>) -> Self {
+        let mut builder = SwiftBuilder::default();
+
+        map.get("endpoint").map(|v| builder.endpoint(v));
+        map.get("account_name").map(|v| builder.account_name(v));
+        map.get("container").map(|v| builder.container(v));
+        map.get("token").map(|v| builder.token(v));
+
+        builder
+    }
+
+    /// Build a SwiftBackend.
+    fn build(&mut self) -> Result<Self::Accessor> {
+        debug!("backend build started: {:?}", &self);
+
+        let root = normalize_root(&self.root.take().unwrap_or_default());
+        debug!("backend use root {}", root);
+
+        let endpoint = match self.endpoint.take() {
+            Some(endpoint) => {
+                if endpoint.starts_with("http") {
+                    endpoint
+                } else {
+                    format!("http://{endpoint}";)
+                }
+            }
+            None => SWIFT_DEFAULT_ENDPOINT.to_string(),
+        };
+        debug!("backend use endpoint: {}", &endpoint);
+
+        let account = match self.account_name.take() {
+            Some(account) => account,
+            None => {
+                return Err(Error::new(
+                    ErrorKind::ConfigInvalid,
+                    "missing account name for Swift",
+                ));
+            }
+        };
+        debug!("backend use account: {}", &account);
+
+        let container = match self.container.take() {
+            Some(container) => container,
+            None => {
+                return Err(Error::new(
+                    ErrorKind::ConfigInvalid,
+                    "missing container for Swift",
+                ));
+            }
+        };
+        debug!("backend use container: {}", &container);
+
+        let token = match self.token.take() {
+            Some(token) => token,
+            None => String::new(),
+        };
+
+        let client = HttpClient::new()?;
+
+        debug!("backend build finished: {:?}", &self);
+        Ok(SwiftBackend {
+            core: Arc::new(SwiftCore {
+                root,
+                endpoint,
+                account,
+                container,
+                token,
+                client,
+            }),
+        })
+    }
+}
+
+/// Backend for Swift service
+#[derive(Debug, Clone)]
+pub struct SwiftBackend {
+    core: Arc<SwiftCore>,
+}
+
+#[async_trait]
+impl Accessor for SwiftBackend {
+    type Reader = IncomingAsyncBody;
+    type BlockingReader = ();
+    type Writer = oio::OneShotWriter<SwiftWriter>;
+    type BlockingWriter = ();
+    type Pager = SwiftPager;
+    type BlockingPager = ();
+
+    fn info(&self) -> AccessorInfo {
+        let mut am = AccessorInfo::default();
+        am.set_scheme(Scheme::Swift)
+            .set_root(&self.core.root)
+            .set_native_capability(Capability {
+                stat: true,
+
+                read: true,
+                read_can_next: true,
+                read_with_range: true,
+
+                write: true,
+                create_dir: true,
+                delete: true,
+                rename: true,
+
+                list: true,
+                list_with_delimiter_slash: true,
+
+                ..Default::default()
+            });
+        am
+    }
+
+    async fn create_dir(&self, path: &str, _args: OpCreateDir) -> 
Result<RpCreateDir> {
+        let resp = self
+            .core
+            .swift_create_object(path, AsyncBody::Empty)
+            .await?;
+
+        let status = resp.status();
+
+        match status {
+            StatusCode::CREATED | StatusCode::OK => {
+                resp.into_body().consume().await?;
+                Ok(RpCreateDir::default())
+            }
+            _ => Err(parse_error(resp).await?),
+        }
+    }
+
+    async fn read(&self, path: &str, args: OpRead) -> Result<(RpRead, 
Self::Reader)> {
+        let range = args.range();
+        let resp = self.core.swift_read(path, range).await?;
+
+        match resp.status() {
+            StatusCode::OK | StatusCode::PARTIAL_CONTENT => {

Review Comment:
   Done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to