object_store_opendal/lib.rs
1// Licensed to the Apache Software Foundation (ASF) under one
2// or more contributor license agreements. See the NOTICE file
3// distributed with this work for additional information
4// regarding copyright ownership. The ASF licenses this file
5// to you under the Apache License, Version 2.0 (the
6// "License"); you may not use this file except in compliance
7// with the License. You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing,
12// software distributed under the License is distributed on an
13// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14// KIND, either express or implied. See the License for the
15// specific language governing permissions and limitations
16// under the License.
17
18//! object_store_opendal is an object store implementation using opendal.
19//!
20//! This crate can help you to access 30 more storage services with the same object_store API.
21//!
22//! ```no_run
23//! use std::sync::Arc;
24//!
25//! use bytes::Bytes;
26//! use object_store::path::Path;
27//! use object_store::ObjectStore;
28//! use object_store_opendal::OpendalStore;
29//! use opendal::services::S3;
30//! use opendal::{Builder, Operator};
31//!
32//! #[tokio::main]
33//! async fn main() {
34//! let builder = S3::default()
35//! .access_key_id("my_access_key")
36//! .secret_access_key("my_secret_key")
37//! .endpoint("my_endpoint")
38//! .region("my_region");
39//!
40//! // Create a new operator
41//! let operator = Operator::new(builder).unwrap().finish();
42//!
43//! // Create a new object store
44//! let object_store = Arc::new(OpendalStore::new(operator));
45//!
46//! let path = Path::from("data/nested/test.txt");
47//! let bytes = Bytes::from_static(b"hello, world! I am nested.");
48//!
49//! object_store.put(&path, bytes.clone().into()).await.unwrap();
50//!
51//! let content = object_store
52//! .get(&path)
53//! .await
54//! .unwrap()
55//! .bytes()
56//! .await
57//! .unwrap();
58//!
59//! assert_eq!(content, bytes);
60//! }
61//! ```
62
63mod store;
64pub use store::OpendalStore;
65
66mod utils;
67
68// Make sure `send_wrapper` works as expected
69#[cfg(all(feature = "send_wrapper", test))]
70mod assert_send {
71 use object_store::{ObjectStore, PutPayload};
72 use opendal::Operator;
73
74 #[allow(dead_code)]
75 fn assert_send<T: Send>(_: T) {}
76
77 #[allow(dead_code)]
78 fn assertion() {
79 let op = Operator::new(opendal::services::Memory::default())
80 .unwrap()
81 .finish();
82 let store = super::OpendalStore::new(op);
83 assert_send(store.put(&"test".into(), PutPayload::new()));
84 assert_send(store.get(&"test".into()));
85 assert_send(store.get_range(&"test".into(), 0..1));
86 assert_send(store.head(&"test".into()));
87 assert_send(store.delete(&"test".into()));
88 assert_send(store.list(None));
89 assert_send(store.list_with_offset(None, &"test".into()));
90 assert_send(store.list_with_delimiter(None));
91 }
92}