blob: 4edf92fb4ecf48eab9e5e847c43edc0b9cd676d7 [file] [log] [blame]
// 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 pyo3::prelude::*;
/// Capability is used to describe what operations are supported
/// by current Operator.
#[pyclass(get_all, module = "opendal")]
pub struct Capability {
/// If operator supports stat.
pub stat: bool,
/// If operator supports stat with if match.
pub stat_with_if_match: bool,
/// If operator supports stat with if none match.
pub stat_with_if_none_match: bool,
/// Indicates if the operator supports read operations.
pub read: bool,
/// Indicates if conditional read operations using If-Match are supported.
pub read_with_if_match: bool,
/// Indicates if conditional read operations using If-None-Match are supported.
pub read_with_if_none_match: bool,
/// Indicates if conditional read operations using If-Modified-Since are supported.
pub read_with_if_modified_since: bool,
/// Indicates if conditional read operations using If-Unmodified-Since are supported.
pub read_with_if_unmodified_since: bool,
/// Indicates if Cache-Control header override is supported during read operations.
pub read_with_override_cache_control: bool,
/// Indicates if Content-Disposition header override is supported during read operations.
pub read_with_override_content_disposition: bool,
/// Indicates if Content-Type header override is supported during read operations.
pub read_with_override_content_type: bool,
/// Indicates if versions read operations are supported.
pub read_with_version: bool,
/// Indicates if the operator supports write operations.
pub write: bool,
/// Indicates if multiple write operations can be performed on the same object.
pub write_can_multi: bool,
/// Indicates if writing empty content is supported.
pub write_can_empty: bool,
/// Indicates if append operations are supported.
pub write_can_append: bool,
/// Indicates if Content-Type can be specified during write operations.
pub write_with_content_type: bool,
/// Indicates if Content-Disposition can be specified during write operations.
pub write_with_content_disposition: bool,
/// Indicates if Content-Encoding can be specified during write operations.
pub write_with_content_encoding: bool,
/// Indicates if Cache-Control can be specified during write operations.
pub write_with_cache_control: bool,
/// Indicates if conditional write operations using If-Match are supported.
pub write_with_if_match: bool,
/// Indicates if conditional write operations using If-None-Match are supported.
pub write_with_if_none_match: bool,
/// Indicates if write operations can be conditional on object non-existence.
pub write_with_if_not_exists: bool,
/// Indicates if custom user metadata can be attached during write operations.
pub write_with_user_metadata: bool,
/// Maximum size supported for multipart uploads.
/// For example, AWS S3 supports up to 5GiB per part in multipart uploads.
pub write_multi_max_size: Option<usize>,
/// Minimum size required for multipart uploads (except for the last part).
/// For example, AWS S3 requires at least 5MiB per part.
pub write_multi_min_size: Option<usize>,
/// Maximum total size supported for write operations.
/// For example, Cloudflare D1 has a 1MB total size limit.
pub write_total_max_size: Option<usize>,
/// If operator supports create dir.
pub create_dir: bool,
/// If operator supports delete.
pub delete: bool,
/// If operator supports copy.
pub copy: bool,
/// If operator supports rename.
pub rename: bool,
/// If operator supports list.
pub list: bool,
/// If backend supports list with limit.
pub list_with_limit: bool,
/// If backend supports list with start after.
pub list_with_start_after: bool,
/// If backend supports list without delimiter.
pub list_with_recursive: bool,
/// If operator supports presign.
pub presign: bool,
/// If operator supports presign read.
pub presign_read: bool,
/// If operator supports presign stat.
pub presign_stat: bool,
/// If operator supports presign write.
pub presign_write: bool,
/// If operator supports presign delete.
pub presign_delete: bool,
/// If operator supports shared.
pub shared: bool,
}
impl Capability {
pub fn new(capability: opendal::Capability) -> Self {
Self {
stat: capability.stat,
stat_with_if_match: capability.stat_with_if_match,
stat_with_if_none_match: capability.stat_with_if_none_match,
read: capability.read,
read_with_if_match: capability.read_with_if_match,
read_with_if_none_match: capability.read_with_if_none_match,
read_with_override_cache_control: capability.read_with_override_cache_control,
read_with_override_content_disposition: capability
.read_with_override_content_disposition,
read_with_override_content_type: capability.read_with_override_content_type,
read_with_if_modified_since: capability.read_with_if_modified_since,
read_with_if_unmodified_since: capability.read_with_if_unmodified_since,
read_with_version: capability.read_with_version,
write: capability.write,
write_can_multi: capability.write_can_multi,
write_can_empty: capability.write_can_empty,
write_can_append: capability.write_can_append,
write_with_content_type: capability.write_with_content_type,
write_with_content_disposition: capability.write_with_content_disposition,
write_with_cache_control: capability.write_with_cache_control,
write_multi_max_size: capability.write_multi_max_size,
write_multi_min_size: capability.write_multi_min_size,
write_total_max_size: capability.write_total_max_size,
write_with_content_encoding: capability.write_with_content_encoding,
write_with_if_match: capability.write_with_if_match,
write_with_if_none_match: capability.write_with_if_none_match,
write_with_if_not_exists: capability.write_with_if_not_exists,
write_with_user_metadata: capability.write_with_user_metadata,
create_dir: capability.create_dir,
delete: capability.delete,
copy: capability.copy,
rename: capability.rename,
list: capability.list,
list_with_limit: capability.list_with_limit,
list_with_start_after: capability.list_with_start_after,
list_with_recursive: capability.list_with_recursive,
presign: capability.presign,
presign_read: capability.presign_read,
presign_stat: capability.presign_stat,
presign_write: capability.presign_write,
presign_delete: capability.presign_delete,
shared: capability.shared,
}
}
}