blob: a3809d0ed5368c6ce3fcd932c4f42e5f730f5686 [file]
// 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::StatusCode;
use super::core::B2Core;
use super::core::StartLargeFileResponse;
use super::core::UploadPartResponse;
use super::core::UploadResponse;
use super::error::parse_error;
use opendal_core::raw::*;
use opendal_core::*;
pub type B2Writers = oio::MultipartWriter<B2Writer>;
pub struct B2Writer {
core: Arc<B2Core>,
op: OpWrite,
path: String,
}
impl B2Writer {
pub fn new(core: Arc<B2Core>, path: &str, op: OpWrite) -> Self {
B2Writer {
core,
path: path.to_string(),
op,
}
}
pub fn parse_body_into_meta(path: &str, resp: UploadResponse) -> Metadata {
let mut meta = Metadata::new(EntryMode::from_path(path));
if let Some(md5) = resp.content_md5 {
meta.set_content_md5(&md5);
}
if let Some(content_type) = resp.content_type {
meta.set_content_type(&content_type);
}
meta.set_content_length(resp.content_length);
meta
}
}
impl oio::MultipartWrite for B2Writer {
async fn write_once(&self, size: u64, body: Buffer) -> Result<Metadata> {
let resp = self
.core
.upload_file(&self.path, Some(size), &self.op, body)
.await?;
let status = resp.status();
match status {
StatusCode::OK => {
let bs = resp.into_body();
let result: UploadResponse =
serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?;
let meta = Self::parse_body_into_meta(&self.path, result);
Ok(meta)
}
_ => Err(parse_error(resp)),
}
}
async fn initiate_part(&self) -> Result<String> {
let resp = self.core.start_large_file(&self.path, &self.op).await?;
let status = resp.status();
match status {
StatusCode::OK => {
let bs = resp.into_body();
let result: StartLargeFileResponse =
serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?;
Ok(result.file_id)
}
_ => Err(parse_error(resp)),
}
}
async fn write_part(
&self,
upload_id: &str,
part_number: usize,
size: u64,
body: Buffer,
) -> Result<oio::MultipartPart> {
// B2 requires part number must between [1..=10000]
let part_number = part_number + 1;
let resp = self
.core
.upload_part(upload_id, part_number, size, body)
.await?;
let status = resp.status();
match status {
StatusCode::OK => {
let bs = resp.into_body();
let result: UploadPartResponse =
serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?;
Ok(oio::MultipartPart {
etag: result.content_sha1,
part_number,
checksum: None,
size: None,
})
}
_ => Err(parse_error(resp)),
}
}
async fn complete_part(
&self,
upload_id: &str,
parts: &[oio::MultipartPart],
) -> Result<Metadata> {
let part_sha1_array = parts
.iter()
.map(|p| {
let binding = p.etag.clone();
let sha1 = binding.strip_prefix("unverified:");
let Some(sha1) = sha1 else {
return "".to_string();
};
sha1.to_string()
})
.collect();
let resp = self
.core
.finish_large_file(upload_id, part_sha1_array)
.await?;
let status = resp.status();
match status {
StatusCode::OK => {
let bs = resp.into_body();
let result: UploadResponse =
serde_json::from_reader(bs.reader()).map_err(new_json_deserialize_error)?;
let meta = Self::parse_body_into_meta(&self.path, result);
Ok(meta)
}
_ => Err(parse_error(resp)),
}
}
async fn abort_part(&self, upload_id: &str) -> Result<()> {
let resp = self.core.cancel_large_file(upload_id).await?;
match resp.status() {
// b2 returns code 200 if abort succeeds.
StatusCode::OK => Ok(()),
_ => Err(parse_error(resp)),
}
}
}