basteh 0.4.0-alpha.5

Generic kv storage with replaceable backend
Documentation
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
use std::convert::{AsRef, TryFrom, TryInto};
use std::sync::Arc;
use std::time::Duration;

use crate::dev::{BastehBuilder, OwnedValue, Provider};
use crate::error::Result;
use crate::mutation::Mutation;
use crate::value::Value;
use crate::BastehError;

/// Takes the underlying backend and provides common methods for it
///
/// As it is type erased, it's suitable to be stored in a web framework's state or extensions.
///
/// The backend this struct holds should implement [`ExpiryBasteh`](dev/trait.Expirystore.html)
/// either directly, or by depending on the default polyfill.
/// Look [`BastehBuilder`](dev/struct.BastehBuilder.html) for more details.
///
/// ## Example
///
/// ```rust
/// use basteh::{Basteh, BastehError};
///
/// async fn index(store: Basteh) -> Result<String, BastehError>{
///     store.set("key", "value").await;
///     let val = store.get::<String>("key").await?;
///     Ok(val.unwrap_or_default())
/// }
/// ```
///
///
#[derive(Clone)]
pub struct Basteh {
    pub(crate) scope: Arc<str>,
    pub(crate) provider: Arc<dyn Provider>,
}

impl Basteh {
    /// Returns the Basteh builder struct
    pub fn build() -> BastehBuilder {
        BastehBuilder::default()
    }

    /// Return a new Basteh struct for the specified scope. Calling twice will just change
    /// the current scope.
    ///
    /// Scopes may or may not be implemented as key prefixes but should provide
    /// some guarantees to not mutate other scopes.
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::Basteh;
    /// #
    /// # async fn index<'a>(store: Basteh) -> &'a str {
    /// let cache = store.scope("cache");
    /// cache.set("age", "60").await;
    /// #     "set"
    /// # }
    /// ```
    pub fn scope(&self, scope: &str) -> Basteh {
        Basteh {
            scope: scope.into(),
            provider: self.provider.clone(),
        }
    }

    /// Get all keys matching the requested pattern(not implemented yet)
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::Basteh;
    /// #
    /// # async fn index<'a>(store: Basteh) -> &'a str {
    /// store.keys().await;
    /// #     "set"
    /// # }
    /// ```
    pub async fn keys(&self) -> Result<Box<dyn Iterator<Item = Vec<u8>>>> {
        self.provider.keys(self.scope.as_ref()).await
    }

    /// Saves a single key-value on store, use bytes for bytes
    ///
    /// ## Note
    ///
    /// Calling set operations twice on the same key, overwrites it's value and
    /// clear the expiry on that key(if it exist).
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::Basteh;
    /// # use bytes::Bytes;
    /// #
    /// # async fn index<'a>(store: Basteh) -> &'a str {
    /// store.set("name", "Violet").await; // String
    /// store.set("age", 20).await; // Number
    /// store.set("points", vec![20__u32, 25, 30]).await; // Lists
    /// store.set("data", Bytes::from_static(b"123456")).await; // Or bytes
    /// #     "set"
    /// # }
    /// ```
    pub async fn set<'a>(&self, key: impl AsRef<[u8]>, value: impl Into<Value<'a>>) -> Result<()> {
        self.provider
            .set(self.scope.as_ref(), key.as_ref(), value.into())
            .await
    }

    /// Sets a value on store with expiry on the key
    /// It should be prefered over calling set and expire as backends may define
    /// a more optimized way to do both operations at once.
    ///
    /// Calling set operations twice on the same key, overwrites it's value and
    /// clear the expiry on that key(if it exist).
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::Basteh;
    /// # use std::time::Duration;
    /// #
    /// # async fn index<'a>(store: Basteh) -> &'a str {
    /// store.set_expiring("name", "Violet", Duration::from_secs(10)).await;
    /// #     "set"
    /// # }
    /// ```
    ///
    /// ## Errors
    /// Beside the normal errors caused by the Basteh itself, it will result in error if
    /// expiry provider is not set.(no_expiry is called on builder)
    pub async fn set_expiring(
        &self,
        key: impl AsRef<[u8]>,
        value: impl Into<Value<'_>>,
        expires_in: Duration,
    ) -> Result<()> {
        self.provider
            .set_expiring(
                self.scope.as_ref(),
                key.as_ref().into(),
                value.into(),
                expires_in,
            )
            .await
    }

    /// Gets a single value from store(use `get_range` for lists)
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::{Basteh, BastehError};
    /// #
    /// # async fn index(store: Basteh) -> Result<String, BastehError> {
    /// let val = store.get::<String>("key").await?;
    /// #     Ok(val.unwrap_or_default())
    /// # }
    /// ```
    pub async fn get<'a, T: TryFrom<OwnedValue, Error = impl Into<BastehError>>>(
        &'a self,
        key: impl AsRef<[u8]>,
    ) -> Result<Option<T>> {
        self.provider
            .get(self.scope.as_ref(), key.as_ref().into())
            .await?
            .map(TryInto::try_into)
            .transpose()
            .map_err(Into::into)
    }

    /// Gets a list of values from store, start/end works like redis with support for negative indexes
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::{Basteh, BastehError};
    /// #
    /// # async fn index(store: Basteh) -> Result<Vec<String>, BastehError> {
    /// let val = store.get_range::<String>("key", 0, -1).await?;
    /// #     Ok(val)
    /// # }
    /// ```
    pub async fn get_range<'a, T: TryFrom<OwnedValue, Error = impl Into<BastehError>>>(
        &'a self,
        key: impl AsRef<[u8]>,
        start: i64,
        end: i64,
    ) -> Result<Vec<T>> {
        self.provider
            .get_range(self.scope.as_ref(), key.as_ref().into(), start, end)
            .await?
            .into_iter()
            .map(|v| v.try_into().map_err(Into::into))
            .collect::<Result<Vec<_>>>()
            .map_err(Into::into)
    }

    /// Same as `get` but it also gets expiry.
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::{Basteh, BastehError};
    /// #
    /// # async fn index(store: Basteh) -> Result<String, BastehError> {
    /// let val = store.get_expiring::<String>("key").await?;
    /// #     Ok(val.map(|v|v.0).unwrap_or_default())
    /// # }
    /// ```
    pub async fn get_expiring<'a, T: TryFrom<OwnedValue, Error = impl Into<BastehError>>>(
        &'a self,
        key: impl AsRef<[u8]>,
    ) -> Result<Option<(T, Option<Duration>)>> {
        self.provider
            .get_expiring(self.scope.as_ref(), key.as_ref().into())
            .await?
            .map(|(v, e)| v.try_into().map(|v| (v, e)).map_err(Into::into))
            .transpose()
    }

    /// Push a single value into the list stored for this key
    ///
    /// Calling set operations twice on the same key, overwrites it's value and
    /// clear the expiry on that key(if it exist).
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::Basteh;
    /// #
    /// # async fn index<'a>(store: Basteh) -> &'a str {
    /// store.set("age", vec![10]).await;
    /// store.set("name", "Violet").await;
    /// #     "set"
    /// # }
    /// ```
    pub async fn push<'a>(&self, key: impl AsRef<[u8]>, value: impl Into<Value<'a>>) -> Result<()> {
        self.provider
            .push(self.scope.as_ref(), key.as_ref(), value.into())
            .await
    }

    /// Push all the given values into the list stored for this key
    ///
    /// Calling set operations twice on the same key, overwrites it's value and
    /// clear the expiry on that key(if it exist).
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::Basteh;
    /// #
    /// # async fn index<'a>(store: Basteh) -> &'a str {
    /// store.set("age", vec![10]).await;
    /// store.set("name", "Violet").await;
    /// #     "set"
    /// # }
    /// ```
    pub async fn push_mutiple<'a>(
        &self,
        key: impl AsRef<[u8]>,
        values: impl Iterator<Item = impl Into<Value<'a>>>,
    ) -> Result<()> {
        self.provider
            .push_multiple(
                self.scope.as_ref(),
                key.as_ref(),
                values.map(|v| v.into()).collect(),
            )
            .await
    }

    /// Pop all the value from the list stored for this key
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::{Basteh, BastehError};
    /// #
    /// # async fn index(store: Basteh) -> Result<String, BastehError> {
    /// let val = store.get::<String>("key").await?;
    /// #     Ok(val.unwrap_or_default())
    /// # }
    /// ```
    pub async fn pop<'a, T: TryFrom<OwnedValue, Error = impl Into<BastehError>>>(
        &'a self,
        key: impl AsRef<[u8]>,
    ) -> Result<Option<T>> {
        self.provider
            .pop(self.scope.as_ref(), key.as_ref().into())
            .await?
            .map(TryInto::try_into)
            .transpose()
            .map_err(Into::into)
    }

    /// Mutate a numeric value in the store. It may overwrite the value if it's not a number.
    ///
    /// ## Note
    /// The closure will called in-place(outside the backend store) and only the collected mutations
    /// will be passed.
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::Basteh;
    /// # use std::cmp::Ordering;
    /// #
    /// # async fn index<'a>(store: Basteh) -> &'a str {
    /// store.mutate("age", |v| v.incr(5)).await;
    /// // Or conditionally set it to 100
    /// store.mutate("age", |v| v.if_(Ordering::Greater, 100, |m| m.set(100))).await;
    /// #     "set"
    /// # }
    /// ```
    pub async fn mutate(
        &self,
        key: impl AsRef<[u8]>,
        mutate_f: impl Fn(Mutation) -> Mutation,
    ) -> Result<i64> {
        self.provider
            .mutate(
                self.scope.as_ref(),
                key.as_ref().into(),
                mutate_f(Mutation::new()),
            )
            .await
    }

    /// Removes a key value pair from store, returning the value if exist.
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::{Basteh, BastehError};
    /// #
    /// # async fn index(store: Basteh) -> Result<String, BastehError> {
    /// store.remove::<String>("key").await?;
    /// #     Ok("deleted".to_string())
    /// # }
    /// ```
    pub async fn remove<T: TryFrom<OwnedValue, Error = impl Into<BastehError>>>(
        &self,
        key: impl AsRef<[u8]>,
    ) -> Result<Option<T>> {
        self.provider
            .remove(self.scope.as_ref(), key.as_ref().into())
            .await?
            .map(TryInto::try_into)
            .transpose()
            .map_err(Into::into)
    }

    /// Checks if store contains a key.
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::{Basteh, BastehError};
    /// #
    /// # async fn index(store: Basteh) -> Result<String, BastehError> {
    /// let exist = store.contains_key("key").await?;
    /// #     Ok("deleted".to_string())
    /// # }
    /// ```
    pub async fn contains_key(&self, key: impl AsRef<[u8]>) -> Result<bool> {
        self.provider
            .contains_key(self.scope.as_ref(), key.as_ref().into())
            .await
    }

    /// Sets expiry on a key, it won't result in error if the key doesn't exist.
    ///
    /// Calling set methods twice or calling persist will result in expiry being erased
    /// from the key, calling expire itself twice will overwrite the expiry for key.
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::{Basteh, BastehError};
    /// # use std::time::Duration;
    /// #
    /// # async fn index(store: Basteh) -> Result<String, BastehError> {
    /// store.expire("key", Duration::from_secs(10)).await?;
    /// #     Ok("deleted".to_string())
    /// # }
    /// ```
    pub async fn expire(&self, key: impl AsRef<[u8]>, expire_in: Duration) -> Result<()> {
        self.provider
            .expire(self.scope.as_ref(), key.as_ref().into(), expire_in)
            .await
    }

    /// Gets expiry for the provided key, it will return none if there is no expiry set.
    ///
    /// The result of this method is not guaranteed to be exact and may be inaccurate
    /// depending on sotrage implementation.
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::{Basteh, BastehError};
    /// # use std::time::Duration;
    /// #
    /// # async fn index(store: Basteh) -> Result<String, BastehError> {
    /// let exp = store.expiry("key").await?;
    /// if let Some(exp) = exp{
    ///     println!("Key will expire in {} seconds", exp.as_secs());
    /// } else {
    ///     println!("Long live the key");
    /// }
    /// #     Ok("deleted".to_string())
    /// # }
    /// ```
    pub async fn expiry(&self, key: impl AsRef<[u8]>) -> Result<Option<Duration>> {
        self.provider
            .expiry(self.scope.as_ref(), key.as_ref().into())
            .await
    }

    /// Extends expiry for a key, it won't result in error if the key doesn't exist.
    ///
    /// If the provided key doesn't have an expiry set, it will set the expiry on that key.
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::{Basteh, BastehError};
    /// # use std::time::Duration;
    /// #
    /// # async fn index(store: Basteh) -> Result<String, BastehError> {
    /// store.expire("key", Duration::from_secs(5)).await?;
    /// store.extend("key", Duration::from_secs(5)).await?; // ket will expire in ~10 seconds
    /// #     Ok("deleted".to_string())
    /// # }
    /// ```
    pub async fn extend(&self, key: impl AsRef<[u8]>, expire_in: Duration) -> Result<()> {
        self.provider
            .extend(self.scope.as_ref(), key.as_ref().into(), expire_in)
            .await
    }

    /// Clears expiry from the provided key, making it persistent.
    ///
    /// Calling expire will overwrite persist.
    ///
    /// ## Example
    /// ```rust
    /// # use basteh::{Basteh, BastehError};
    /// # use std::time::Duration;
    /// #
    /// # async fn index(store: Basteh) -> Result<String, BastehError> {
    /// store.persist("key").await?;
    /// #     Ok("deleted".to_string())
    /// # }
    /// ```
    pub async fn persist(&self, key: impl AsRef<[u8]>) -> Result<()> {
        self.provider
            .persist(self.scope.as_ref(), key.as_ref().into())
            .await
    }
}