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
//! Generic backend support

use std::{fmt::Debug, sync::Arc};

use super::{Backend, BackendSession, ManageBackend};
use crate::{
    entry::{Entry, EntryKind, EntryOperation, EntryTag, Scan, TagFilter},
    error::Error,
    future::BoxFuture,
    options::IntoOptions,
    protect::{PassKey, StoreKeyMethod},
};

#[cfg(feature = "postgres")]
use super::postgres;

#[cfg(feature = "sqlite")]
use super::sqlite;

/// A dynamic store backend instance
#[derive(Clone, Debug)]
pub struct AnyBackend(Arc<dyn Backend<Session = AnyBackendSession>>);

/// Wrap a backend instance into an AnyBackend
pub fn into_any_backend(inst: impl Backend + 'static) -> AnyBackend {
    AnyBackend(Arc::new(WrapBackend(inst)))
}

/// This structure turns a generic backend into a concrete type
#[derive(Debug)]
struct WrapBackend<B: Backend>(B);

impl<B: Backend> Backend for WrapBackend<B> {
    type Session = AnyBackendSession;

    #[inline]
    fn create_profile(&self, name: Option<String>) -> BoxFuture<'_, Result<String, Error>> {
        self.0.create_profile(name)
    }

    #[inline]
    fn get_active_profile(&self) -> String {
        self.0.get_active_profile()
    }

    #[inline]
    fn get_default_profile(&self) -> BoxFuture<'_, Result<String, Error>> {
        self.0.get_default_profile()
    }

    #[inline]
    fn set_default_profile(&self, profile: String) -> BoxFuture<'_, Result<(), Error>> {
        self.0.set_default_profile(profile)
    }

    #[inline]
    fn list_profiles(&self) -> BoxFuture<'_, Result<Vec<String>, Error>> {
        self.0.list_profiles()
    }

    #[inline]
    fn remove_profile(&self, name: String) -> BoxFuture<'_, Result<bool, Error>> {
        self.0.remove_profile(name)
    }

    #[inline]
    fn scan(
        &self,
        profile: Option<String>,
        kind: Option<EntryKind>,
        category: Option<String>,
        tag_filter: Option<TagFilter>,
        offset: Option<i64>,
        limit: Option<i64>,
    ) -> BoxFuture<'_, Result<Scan<'static, Entry>, Error>> {
        self.0
            .scan(profile, kind, category, tag_filter, offset, limit)
    }

    #[inline]
    fn session(&self, profile: Option<String>, transaction: bool) -> Result<Self::Session, Error> {
        Ok(AnyBackendSession(Box::new(
            self.0.session(profile, transaction)?,
        )))
    }

    #[inline]
    fn rekey(
        &mut self,
        method: StoreKeyMethod,
        key: PassKey<'_>,
    ) -> BoxFuture<'_, Result<(), Error>> {
        self.0.rekey(method, key)
    }

    #[inline]
    fn close(&self) -> BoxFuture<'_, Result<(), Error>> {
        self.0.close()
    }
}

// Forward to the concrete inner backend instance
impl Backend for AnyBackend {
    type Session = AnyBackendSession;

    #[inline]
    fn create_profile(&self, name: Option<String>) -> BoxFuture<'_, Result<String, Error>> {
        self.0.create_profile(name)
    }

    #[inline]
    fn get_active_profile(&self) -> String {
        self.0.get_active_profile()
    }

    #[inline]
    fn get_default_profile(&self) -> BoxFuture<'_, Result<String, Error>> {
        self.0.get_default_profile()
    }

    #[inline]
    fn set_default_profile(&self, profile: String) -> BoxFuture<'_, Result<(), Error>> {
        self.0.set_default_profile(profile)
    }

    #[inline]
    fn list_profiles(&self) -> BoxFuture<'_, Result<Vec<String>, Error>> {
        self.0.list_profiles()
    }

    #[inline]
    fn remove_profile(&self, name: String) -> BoxFuture<'_, Result<bool, Error>> {
        self.0.remove_profile(name)
    }

    #[inline]
    fn scan(
        &self,
        profile: Option<String>,
        kind: Option<EntryKind>,
        category: Option<String>,
        tag_filter: Option<TagFilter>,
        offset: Option<i64>,
        limit: Option<i64>,
    ) -> BoxFuture<'_, Result<Scan<'static, Entry>, Error>> {
        self.0
            .scan(profile, kind, category, tag_filter, offset, limit)
    }

    #[inline]
    fn session(&self, profile: Option<String>, transaction: bool) -> Result<Self::Session, Error> {
        Ok(AnyBackendSession(Box::new(
            self.0.session(profile, transaction)?,
        )))
    }

    #[inline]
    fn rekey(
        &mut self,
        method: StoreKeyMethod,
        key: PassKey<'_>,
    ) -> BoxFuture<'_, Result<(), Error>> {
        match Arc::get_mut(&mut self.0) {
            Some(inner) => inner.rekey(method, key),
            None => Box::pin(std::future::ready(Err(err_msg!(
                "Cannot re-key a store with multiple references"
            )))),
        }
    }

    #[inline]
    fn close(&self) -> BoxFuture<'_, Result<(), Error>> {
        self.0.close()
    }
}

/// A dynamic store session instance
#[derive(Debug)]
pub struct AnyBackendSession(Box<dyn BackendSession>);

impl BackendSession for AnyBackendSession {
    /// Count the number of matching records in the store
    fn count<'q>(
        &'q mut self,
        kind: Option<EntryKind>,
        category: Option<&'q str>,
        tag_filter: Option<TagFilter>,
    ) -> BoxFuture<'q, Result<i64, Error>> {
        self.0.count(kind, category, tag_filter)
    }

    /// Fetch a single record from the store by category and name
    fn fetch<'q>(
        &'q mut self,
        kind: EntryKind,
        category: &'q str,
        name: &'q str,
        for_update: bool,
    ) -> BoxFuture<'q, Result<Option<Entry>, Error>> {
        self.0.fetch(kind, category, name, for_update)
    }

    /// Fetch all matching records from the store
    fn fetch_all<'q>(
        &'q mut self,
        kind: Option<EntryKind>,
        category: Option<&'q str>,
        tag_filter: Option<TagFilter>,
        limit: Option<i64>,
        for_update: bool,
    ) -> BoxFuture<'q, Result<Vec<Entry>, Error>> {
        self.0
            .fetch_all(kind, category, tag_filter, limit, for_update)
    }

    /// Remove all matching records from the store
    fn remove_all<'q>(
        &'q mut self,
        kind: Option<EntryKind>,
        category: Option<&'q str>,
        tag_filter: Option<TagFilter>,
    ) -> BoxFuture<'q, Result<i64, Error>> {
        self.0.remove_all(kind, category, tag_filter)
    }

    /// Insert or replace a record in the store
    #[allow(clippy::too_many_arguments)]
    fn update<'q>(
        &'q mut self,
        kind: EntryKind,
        operation: EntryOperation,
        category: &'q str,
        name: &'q str,
        value: Option<&'q [u8]>,
        tags: Option<&'q [EntryTag]>,
        expiry_ms: Option<i64>,
    ) -> BoxFuture<'q, Result<(), Error>> {
        self.0
            .update(kind, operation, category, name, value, tags, expiry_ms)
    }

    /// Test the connection to the store
    fn ping(&mut self) -> BoxFuture<'_, Result<(), Error>> {
        self.0.ping()
    }

    /// Close the current store session
    fn close(&mut self, commit: bool) -> BoxFuture<'_, Result<(), Error>> {
        self.0.close(commit)
    }
}

impl<'a> ManageBackend<'a> for &'a str {
    type Backend = AnyBackend;

    fn open_backend(
        self,
        method: Option<StoreKeyMethod>,
        pass_key: PassKey<'a>,
        profile: Option<String>,
    ) -> BoxFuture<'a, Result<Self::Backend, Error>> {
        Box::pin(async move {
            let opts = self.into_options()?;
            debug!("Open store with options: {:?}", &opts);

            match opts.scheme.as_ref() {
                #[cfg(feature = "postgres")]
                "postgres" => {
                    let opts = postgres::PostgresStoreOptions::new(opts)?;
                    let mgr = opts.open(method, pass_key, profile).await?;
                    Ok(into_any_backend(mgr))
                }

                #[cfg(feature = "sqlite")]
                "sqlite" => {
                    let opts = sqlite::SqliteStoreOptions::new(opts)?;
                    let mgr = opts.open(method, pass_key, profile).await?;
                    Ok(into_any_backend(mgr))
                }

                _ => Err(err_msg!(
                    Unsupported,
                    "Unsupported backend: {}",
                    &opts.scheme
                )),
            }
        })
    }

    fn provision_backend(
        self,
        method: StoreKeyMethod,
        pass_key: PassKey<'a>,
        profile: Option<String>,
        recreate: bool,
    ) -> BoxFuture<'a, Result<Self::Backend, Error>> {
        Box::pin(async move {
            let opts = self.into_options()?;
            debug!("Provision store with options: {:?}", &opts);

            match opts.scheme.as_ref() {
                #[cfg(feature = "postgres")]
                "postgres" => {
                    let opts = postgres::PostgresStoreOptions::new(opts)?;
                    let mgr = opts.provision(method, pass_key, profile, recreate).await?;
                    Ok(into_any_backend(mgr))
                }

                #[cfg(feature = "sqlite")]
                "sqlite" => {
                    let opts = sqlite::SqliteStoreOptions::new(opts)?;
                    let mgr = opts.provision(method, pass_key, profile, recreate).await?;
                    Ok(into_any_backend(mgr))
                }

                _ => Err(err_msg!(
                    Unsupported,
                    "Unsupported backend: {}",
                    &opts.scheme
                )),
            }
        })
    }

    fn remove_backend(self) -> BoxFuture<'a, Result<bool, Error>> {
        Box::pin(async move {
            let opts = self.into_options()?;
            debug!("Remove store with options: {:?}", &opts);

            match opts.scheme.as_ref() {
                #[cfg(feature = "postgres")]
                "postgres" => {
                    let opts = postgres::PostgresStoreOptions::new(opts)?;
                    Ok(opts.remove().await?)
                }

                #[cfg(feature = "sqlite")]
                "sqlite" => {
                    let opts = sqlite::SqliteStoreOptions::new(opts)?;
                    Ok(opts.remove().await?)
                }

                _ => Err(err_msg!(
                    Unsupported,
                    "Unsupported backend: {}",
                    &opts.scheme
                )),
            }
        })
    }
}