opendal/raw/adapters/kv/
api.rs1use std::fmt::Debug;
19use std::future::ready;
20use std::ops::DerefMut;
21
22use futures::Future;
23
24use crate::raw::*;
25use crate::Capability;
26use crate::Scheme;
27use crate::*;
28
29pub trait Scan: Send + Sync + Unpin {
31 fn next(&mut self) -> impl Future<Output = Result<Option<String>>> + MaybeSend;
35}
36
37impl Scan for () {
39 async fn next(&mut self) -> Result<Option<String>> {
40 Ok(None)
41 }
42}
43
44pub struct ScanStdIter<I>(I);
46
47#[cfg(any(
48 feature = "services-cloudflare-kv",
49 feature = "services-etcd",
50 feature = "services-nebula-graph",
51 feature = "services-rocksdb",
52 feature = "services-sled"
53))]
54impl<I> ScanStdIter<I>
55where
56 I: Iterator<Item = Result<String>> + Unpin + Send + Sync,
57{
58 pub(crate) fn new(inner: I) -> Self {
60 Self(inner)
61 }
62}
63
64impl<I> Scan for ScanStdIter<I>
65where
66 I: Iterator<Item = Result<String>> + Unpin + Send + Sync,
67{
68 async fn next(&mut self) -> Result<Option<String>> {
69 self.0.next().transpose()
70 }
71}
72
73pub type Scanner = Box<dyn ScanDyn>;
75
76pub trait ScanDyn: Unpin + Send + Sync {
77 fn next_dyn(&mut self) -> BoxedFuture<Result<Option<String>>>;
78}
79
80impl<T: Scan + ?Sized> ScanDyn for T {
81 fn next_dyn(&mut self) -> BoxedFuture<Result<Option<String>>> {
82 Box::pin(self.next())
83 }
84}
85
86impl<T: ScanDyn + ?Sized> Scan for Box<T> {
87 async fn next(&mut self) -> Result<Option<String>> {
88 self.deref_mut().next_dyn().await
89 }
90}
91
92pub trait Adapter: Send + Sync + Debug + Unpin + 'static {
96 type Scanner: Scan;
98
99 fn info(&self) -> Info;
101
102 fn get(&self, path: &str) -> impl Future<Output = Result<Option<Buffer>>> + MaybeSend;
106
107 fn blocking_get(&self, path: &str) -> Result<Option<Buffer>> {
109 let _ = path;
110
111 Err(Error::new(
112 ErrorKind::Unsupported,
113 "kv adapter doesn't support this operation",
114 )
115 .with_operation("kv::Adapter::blocking_get"))
116 }
117
118 fn set(&self, path: &str, value: Buffer) -> impl Future<Output = Result<()>> + MaybeSend;
120
121 fn blocking_set(&self, path: &str, value: Buffer) -> Result<()> {
123 let _ = (path, value);
124
125 Err(Error::new(
126 ErrorKind::Unsupported,
127 "kv adapter doesn't support this operation",
128 )
129 .with_operation("kv::Adapter::blocking_set"))
130 }
131
132 fn delete(&self, path: &str) -> impl Future<Output = Result<()>> + MaybeSend;
136
137 fn blocking_delete(&self, path: &str) -> Result<()> {
141 let _ = path;
142
143 Err(Error::new(
144 ErrorKind::Unsupported,
145 "kv adapter doesn't support this operation",
146 )
147 .with_operation("kv::Adapter::blocking_delete"))
148 }
149
150 fn scan(&self, path: &str) -> impl Future<Output = Result<Self::Scanner>> + MaybeSend {
152 let _ = path;
153
154 ready(Err(Error::new(
155 ErrorKind::Unsupported,
156 "kv adapter doesn't support this operation",
157 )
158 .with_operation("kv::Adapter::scan")))
159 }
160
161 fn blocking_scan(&self, path: &str) -> Result<Vec<String>> {
164 let _ = path;
165
166 Err(Error::new(
167 ErrorKind::Unsupported,
168 "kv adapter doesn't support this operation",
169 )
170 .with_operation("kv::Adapter::blocking_scan"))
171 }
172
173 fn append(&self, path: &str, value: &[u8]) -> impl Future<Output = Result<()>> + MaybeSend {
175 let _ = path;
176 let _ = value;
177
178 ready(Err(Error::new(
179 ErrorKind::Unsupported,
180 "kv adapter doesn't support this operation",
181 )
182 .with_operation("kv::Adapter::append")))
183 }
184
185 fn blocking_append(&self, path: &str, value: &[u8]) -> Result<()> {
188 let _ = path;
189 let _ = value;
190
191 Err(Error::new(
192 ErrorKind::Unsupported,
193 "kv adapter doesn't support this operation",
194 )
195 .with_operation("kv::Adapter::blocking_append"))
196 }
197}
198
199pub struct Info {
201 scheme: Scheme,
202 name: String,
203 capabilities: Capability,
204}
205
206impl Info {
207 pub fn new(scheme: Scheme, name: &str, capabilities: Capability) -> Self {
209 Self {
210 scheme,
211 name: name.to_string(),
212 capabilities,
213 }
214 }
215
216 pub fn scheme(&self) -> Scheme {
218 self.scheme
219 }
220
221 pub fn name(&self) -> &str {
223 &self.name
224 }
225
226 pub fn capabilities(&self) -> Capability {
228 self.capabilities
229 }
230}