2 个不稳定版本
0.2.0 | 2024 年 2 月 10 日 |
---|---|
0.1.0 | 2024 年 2 月 10 日 |
#40 在 #body
62KB
93 行
可跟踪的 S3 流
此库公开了一个 hyper::Stream
实现,可以用作 AWS SDK for Rust 的 S3 请求的正文。流对象可以发送带有流当前状态的回调。
let mut body = TrackableBodyStream::try_from(PathBuf::from("./examples/sample.jpeg")).map_err(|e| {
panic!("Could not open sample file: {}", e);
}).unwrap();
let bar = ProgressBar::new(body.content_length() as u64);
body.set_callback(move |tot_size: u64, sent: u64, cur_buf: u64| {
bar.inc(cur_buf as u64);
if sent == tot_size {
bar.finish();
}
});
let sdk_config = aws_config::from_env().load().await;
let s3_client = Client::new(&sdk_config);
let bucket = &args[1];
match s3_client.put_object()
.bucket(bucket)
.key("tracked_sample.jpeg")
.content_length(body.content_length())
.body(body.to_s3_stream())
.send().await {
Ok(_) => {
println!("Upload complete");
},
Err(e) => {
panic!("Failed to upload object: {}", e);
}
}
通过传递存储桶名称测试 indicaif
示例
cargo run --example indicatif your_bucket_name
依赖关系
~32MB
~590K SLoC