1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
// 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.
//! Ops provides the operation args struct like [`OpRead`] for user.
//!
//! By using ops, users can add more context for operation.
use std::collections::HashMap;
use std::time::Duration;
use crate::raw::*;
use crate::*;
/// Args for `create` operation.
///
/// The path must be normalized.
#[derive(Debug, Clone, Default)]
pub struct OpCreateDir {}
impl OpCreateDir {
/// Create a new `OpCreateDir`.
pub fn new() -> Self {
Self::default()
}
}
/// Args for `delete` operation.
///
/// The path must be normalized.
#[derive(Debug, Clone, Default)]
pub struct OpDelete {
version: Option<String>,
}
impl OpDelete {
/// Create a new `OpDelete`.
pub fn new() -> Self {
Self::default()
}
}
impl OpDelete {
/// Change the version of this delete operation.
pub fn with_version(mut self, version: &str) -> Self {
self.version = Some(version.into());
self
}
/// Get the version of this delete operation.
pub fn version(&self) -> Option<&str> {
self.version.as_deref()
}
}
/// Args for `list` operation.
#[derive(Debug, Clone)]
pub struct OpList {
/// The limit passed to underlying service to specify the max results
/// that could return per-request.
///
/// Users could use this to control the memory usage of list operation.
limit: Option<usize>,
/// The start_after passes to underlying service to specify the specified key
/// to start listing from.
start_after: Option<String>,
/// The recursive is used to control whether the list operation is recursive.
///
/// - If `false`, list operation will only list the entries under the given path.
/// - If `true`, list operation will list all entries that starts with given path.
///
/// Default to `false`.
recursive: bool,
/// The concurrent of stat operations inside list operation.
/// Users could use this to control the number of concurrent stat operation when metadata is unknown.
///
/// - If this is set to <= 1, the list operation will be sequential.
/// - If this is set to > 1, the list operation will be concurrent,
/// and the maximum number of concurrent operations will be determined by this value.
concurrent: usize,
/// The version is used to control whether the object versions should be returned.
///
/// - If `false`, list operation will not return with object versions
/// - If `true`, list operation will return with object versions if object versioning is supported
/// by the underlying service
///
/// Default to `false`
version: bool,
}
impl Default for OpList {
fn default() -> Self {
OpList {
limit: None,
start_after: None,
recursive: false,
concurrent: 1,
version: false,
}
}
}
impl OpList {
/// Create a new `OpList`.
pub fn new() -> Self {
Self::default()
}
/// Change the limit of this list operation.
pub fn with_limit(mut self, limit: usize) -> Self {
self.limit = Some(limit);
self
}
/// Get the limit of list operation.
pub fn limit(&self) -> Option<usize> {
self.limit
}
/// Change the start_after of this list operation.
pub fn with_start_after(mut self, start_after: &str) -> Self {
self.start_after = Some(start_after.into());
self
}
/// Get the start_after of list operation.
pub fn start_after(&self) -> Option<&str> {
self.start_after.as_deref()
}
/// The recursive is used to control whether the list operation is recursive.
///
/// - If `false`, list operation will only list the entries under the given path.
/// - If `true`, list operation will list all entries that starts with given path.
///
/// Default to `false`.
pub fn with_recursive(mut self, recursive: bool) -> Self {
self.recursive = recursive;
self
}
/// Get the current recursive.
pub fn recursive(&self) -> bool {
self.recursive
}
/// Change the concurrent of this list operation.
///
/// The default concurrent is 1.
pub fn with_concurrent(mut self, concurrent: usize) -> Self {
self.concurrent = concurrent;
self
}
/// Get the concurrent of list operation.
pub fn concurrent(&self) -> usize {
self.concurrent
}
/// Change the version of this list operation
pub fn with_version(mut self, version: bool) -> Self {
self.version = version;
self
}
/// Get the version of this list operation
pub fn version(&self) -> bool {
self.version
}
}
/// Args for `presign` operation.
///
/// The path must be normalized.
#[derive(Debug, Clone)]
pub struct OpPresign {
expire: Duration,
op: PresignOperation,
}
impl OpPresign {
/// Create a new `OpPresign`.
pub fn new(op: impl Into<PresignOperation>, expire: Duration) -> Self {
Self {
op: op.into(),
expire,
}
}
/// Get operation from op.
pub fn operation(&self) -> &PresignOperation {
&self.op
}
/// Get expire from op.
pub fn expire(&self) -> Duration {
self.expire
}
/// Consume OpPresign into (Duration, PresignOperation)
pub fn into_parts(self) -> (Duration, PresignOperation) {
(self.expire, self.op)
}
}
/// Presign operation used for presign.
#[derive(Debug, Clone)]
#[non_exhaustive]
pub enum PresignOperation {
/// Presign a stat(head) operation.
Stat(OpStat),
/// Presign a read operation.
Read(OpRead),
/// Presign a write operation.
Write(OpWrite),
}
impl From<OpStat> for PresignOperation {
fn from(op: OpStat) -> Self {
Self::Stat(op)
}
}
impl From<OpRead> for PresignOperation {
fn from(v: OpRead) -> Self {
Self::Read(v)
}
}
impl From<OpWrite> for PresignOperation {
fn from(v: OpWrite) -> Self {
Self::Write(v)
}
}
/// Args for `batch` operation.
#[derive(Debug, Clone)]
pub struct OpBatch {
ops: Vec<(String, BatchOperation)>,
}
impl OpBatch {
/// Create a new batch options.
pub fn new(ops: Vec<(String, BatchOperation)>) -> Self {
Self { ops }
}
/// Get operation from op.
pub fn operation(&self) -> &[(String, BatchOperation)] {
&self.ops
}
/// Consume OpBatch into BatchOperation
pub fn into_operation(self) -> Vec<(String, BatchOperation)> {
self.ops
}
}
/// Batch operation used for batch.
#[derive(Debug, Clone)]
#[non_exhaustive]
pub enum BatchOperation {
/// Batch delete operation.
Delete(OpDelete),
}
impl From<OpDelete> for BatchOperation {
fn from(op: OpDelete) -> Self {
Self::Delete(op)
}
}
impl BatchOperation {
/// Return the operation of this batch.
pub fn operation(&self) -> Operation {
use BatchOperation::*;
match self {
Delete(_) => Operation::Delete,
}
}
}
/// Args for `read` operation.
#[derive(Debug, Clone, Default)]
pub struct OpRead {
range: BytesRange,
if_match: Option<String>,
if_none_match: Option<String>,
override_content_type: Option<String>,
override_cache_control: Option<String>,
override_content_disposition: Option<String>,
version: Option<String>,
executor: Option<Executor>,
}
impl OpRead {
/// Create a default `OpRead` which will read whole content of path.
pub fn new() -> Self {
Self::default()
}
/// Set the range of the option
pub fn with_range(mut self, range: BytesRange) -> Self {
self.range = range;
self
}
/// Get range from option
pub fn range(&self) -> BytesRange {
self.range
}
/// Returns a mutable range to allow updating.
pub(crate) fn range_mut(&mut self) -> &mut BytesRange {
&mut self.range
}
/// Sets the content-disposition header that should be sent back by the remote read operation.
pub fn with_override_content_disposition(mut self, content_disposition: &str) -> Self {
self.override_content_disposition = Some(content_disposition.into());
self
}
/// Returns the content-disposition header that should be sent back by the remote read
/// operation.
pub fn override_content_disposition(&self) -> Option<&str> {
self.override_content_disposition.as_deref()
}
/// Sets the cache-control header that should be sent back by the remote read operation.
pub fn with_override_cache_control(mut self, cache_control: &str) -> Self {
self.override_cache_control = Some(cache_control.into());
self
}
/// Returns the cache-control header that should be sent back by the remote read operation.
pub fn override_cache_control(&self) -> Option<&str> {
self.override_cache_control.as_deref()
}
/// Sets the content-type header that should be sent back by the remote read operation.
pub fn with_override_content_type(mut self, content_type: &str) -> Self {
self.override_content_type = Some(content_type.into());
self
}
/// Returns the content-type header that should be sent back by the remote read operation.
pub fn override_content_type(&self) -> Option<&str> {
self.override_content_type.as_deref()
}
/// Set the If-Match of the option
pub fn with_if_match(mut self, if_match: &str) -> Self {
self.if_match = Some(if_match.to_string());
self
}
/// Get If-Match from option
pub fn if_match(&self) -> Option<&str> {
self.if_match.as_deref()
}
/// Set the If-None-Match of the option
pub fn with_if_none_match(mut self, if_none_match: &str) -> Self {
self.if_none_match = Some(if_none_match.to_string());
self
}
/// Get If-None-Match from option
pub fn if_none_match(&self) -> Option<&str> {
self.if_none_match.as_deref()
}
/// Set the version of the option
pub fn with_version(mut self, version: &str) -> Self {
self.version = Some(version.to_string());
self
}
/// Get version from option
pub fn version(&self) -> Option<&str> {
self.version.as_deref()
}
/// Set the executor of the option
pub fn with_executor(mut self, executor: Executor) -> Self {
self.executor = Some(executor);
self
}
/// Merge given executor into option.
///
/// If executor has already been set, this will do nothing.
/// Otherwise, this will set the given executor.
pub(crate) fn merge_executor(self, executor: Option<Executor>) -> Self {
if self.executor.is_some() {
return self;
}
if let Some(exec) = executor {
return self.with_executor(exec);
}
self
}
/// Get executor from option
pub fn executor(&self) -> Option<&Executor> {
self.executor.as_ref()
}
}
/// Args for reader operation.
#[derive(Debug, Clone)]
pub struct OpReader {
/// The concurrent requests that reader can send.
concurrent: usize,
/// The chunk size of each request.
chunk: Option<usize>,
/// The gap size of each request.
gap: Option<usize>,
}
impl Default for OpReader {
fn default() -> Self {
Self {
concurrent: 1,
chunk: None,
gap: None,
}
}
}
impl OpReader {
/// Create a new `OpReader`.
pub fn new() -> Self {
Self::default()
}
/// Set the concurrent of the option
pub fn with_concurrent(mut self, concurrent: usize) -> Self {
self.concurrent = concurrent.max(1);
self
}
/// Get concurrent from option
pub fn concurrent(&self) -> usize {
self.concurrent
}
/// Set the chunk of the option
pub fn with_chunk(mut self, chunk: usize) -> Self {
self.chunk = Some(chunk.max(1));
self
}
/// Get chunk from option
pub fn chunk(&self) -> Option<usize> {
self.chunk
}
/// Set the gap of the option
pub fn with_gap(mut self, gap: usize) -> Self {
self.gap = Some(gap.max(1));
self
}
/// Get gap from option
pub fn gap(&self) -> Option<usize> {
self.gap
}
}
/// Args for `stat` operation.
#[derive(Debug, Clone, Default)]
pub struct OpStat {
if_match: Option<String>,
if_none_match: Option<String>,
override_content_type: Option<String>,
override_cache_control: Option<String>,
override_content_disposition: Option<String>,
version: Option<String>,
}
impl OpStat {
/// Create a new `OpStat`.
pub fn new() -> Self {
Self::default()
}
/// Set the If-Match of the option
pub fn with_if_match(mut self, if_match: &str) -> Self {
self.if_match = Some(if_match.to_string());
self
}
/// Get If-Match from option
pub fn if_match(&self) -> Option<&str> {
self.if_match.as_deref()
}
/// Set the If-None-Match of the option
pub fn with_if_none_match(mut self, if_none_match: &str) -> Self {
self.if_none_match = Some(if_none_match.to_string());
self
}
/// Get If-None-Match from option
pub fn if_none_match(&self) -> Option<&str> {
self.if_none_match.as_deref()
}
/// Sets the content-disposition header that should be sent back by the remote read operation.
pub fn with_override_content_disposition(mut self, content_disposition: &str) -> Self {
self.override_content_disposition = Some(content_disposition.into());
self
}
/// Returns the content-disposition header that should be sent back by the remote read
/// operation.
pub fn override_content_disposition(&self) -> Option<&str> {
self.override_content_disposition.as_deref()
}
/// Sets the cache-control header that should be sent back by the remote read operation.
pub fn with_override_cache_control(mut self, cache_control: &str) -> Self {
self.override_cache_control = Some(cache_control.into());
self
}
/// Returns the cache-control header that should be sent back by the remote read operation.
pub fn override_cache_control(&self) -> Option<&str> {
self.override_cache_control.as_deref()
}
/// Sets the content-type header that should be sent back by the remote read operation.
pub fn with_override_content_type(mut self, content_type: &str) -> Self {
self.override_content_type = Some(content_type.into());
self
}
/// Returns the content-type header that should be sent back by the remote read operation.
pub fn override_content_type(&self) -> Option<&str> {
self.override_content_type.as_deref()
}
/// Set the version of the option
pub fn with_version(mut self, version: &str) -> Self {
self.version = Some(version.to_string());
self
}
/// Get version from option
pub fn version(&self) -> Option<&str> {
self.version.as_deref()
}
}
/// Args for `write` operation.
#[derive(Debug, Clone, Default)]
pub struct OpWrite {
append: bool,
concurrent: usize,
content_type: Option<String>,
content_disposition: Option<String>,
cache_control: Option<String>,
executor: Option<Executor>,
if_none_match: Option<String>,
if_not_exists: bool,
user_metadata: Option<HashMap<String, String>>,
}
impl OpWrite {
/// Create a new `OpWrite`.
///
/// If input path is not a file path, an error will be returned.
pub fn new() -> Self {
Self::default()
}
/// Get the append from op.
///
/// The append is the flag to indicate that this write operation is an append operation.
pub fn append(&self) -> bool {
self.append
}
/// Set the append mode of op.
///
/// If the append mode is set, the data will be appended to the end of the file.
///
/// # Notes
///
/// Service could return `Unsupported` if the underlying storage does not support append.
pub fn with_append(mut self, append: bool) -> Self {
self.append = append;
self
}
/// Get the content type from option
pub fn content_type(&self) -> Option<&str> {
self.content_type.as_deref()
}
/// Set the content type of option
pub fn with_content_type(mut self, content_type: &str) -> Self {
self.content_type = Some(content_type.to_string());
self
}
/// Get the content disposition from option
pub fn content_disposition(&self) -> Option<&str> {
self.content_disposition.as_deref()
}
/// Set the content disposition of option
pub fn with_content_disposition(mut self, content_disposition: &str) -> Self {
self.content_disposition = Some(content_disposition.to_string());
self
}
/// Get the cache control from option
pub fn cache_control(&self) -> Option<&str> {
self.cache_control.as_deref()
}
/// Set the content type of option
pub fn with_cache_control(mut self, cache_control: &str) -> Self {
self.cache_control = Some(cache_control.to_string());
self
}
/// Get the concurrent.
pub fn concurrent(&self) -> usize {
self.concurrent
}
/// Set the maximum concurrent write task amount.
pub fn with_concurrent(mut self, concurrent: usize) -> Self {
self.concurrent = concurrent;
self
}
/// Get the executor from option
pub fn executor(&self) -> Option<&Executor> {
self.executor.as_ref()
}
/// Set the executor of the option
pub fn with_executor(mut self, executor: Executor) -> Self {
self.executor = Some(executor);
self
}
/// Set the If-None-Match of the option
pub fn with_if_none_match(mut self, s: &str) -> Self {
self.if_none_match = Some(s.to_string());
self
}
/// Get If-None-Match from option
pub fn if_none_match(&self) -> Option<&str> {
self.if_none_match.as_deref()
}
/// Set the If-Not-Exist of the option
pub fn with_if_not_exists(mut self, b: bool) -> Self {
self.if_not_exists = b;
self
}
/// Get If-Not-Exist from option
pub fn if_not_exists(&self) -> bool {
self.if_not_exists
}
/// Merge given executor into option.
///
/// If executor has already been set, this will do nothing.
/// Otherwise, this will set the given executor.
pub(crate) fn merge_executor(self, executor: Option<Executor>) -> Self {
if self.executor.is_some() {
return self;
}
if let Some(exec) = executor {
return self.with_executor(exec);
}
self
}
/// Set the user defined metadata of the op
pub fn with_user_metadata(mut self, metadata: HashMap<String, String>) -> Self {
self.user_metadata = Some(metadata);
self
}
/// Get the user defined metadata from the op
pub fn user_metadata(&self) -> Option<&HashMap<String, String>> {
self.user_metadata.as_ref()
}
}
/// Args for `writer` operation.
#[derive(Debug, Clone, Default)]
pub struct OpWriter {
chunk: Option<usize>,
}
impl OpWriter {
/// Create a new `OpWriter`.
pub fn new() -> Self {
Self::default()
}
/// Get the chunk from op.
///
/// The chunk is used by service to decide the chunk size of the underlying writer.
pub fn chunk(&self) -> Option<usize> {
self.chunk
}
/// Set the chunk of op.
///
/// If chunk is set, the data will be chunked by the underlying writer.
///
/// ## NOTE
///
/// Service could have their own minimum chunk size while perform write
/// operations like multipart uploads. So the chunk size may be larger than
/// the given buffer size.
pub fn with_chunk(mut self, chunk: usize) -> Self {
self.chunk = Some(chunk);
self
}
}
/// Args for `copy` operation.
#[derive(Debug, Clone, Default)]
pub struct OpCopy {}
impl OpCopy {
/// Create a new `OpCopy`.
pub fn new() -> Self {
Self::default()
}
}
/// Args for `rename` operation.
#[derive(Debug, Clone, Default)]
pub struct OpRename {}
impl OpRename {
/// Create a new `OpMove`.
pub fn new() -> Self {
Self::default()
}
}