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
use std::path::Path;
use flume::{self, Receiver, Sender};
use futures::channel::oneshot;
use rusqlite::{Connection, OptionalExtension, Params, Row};
type Task = Box<dyn FnOnce(&mut Connection) + Send + 'static>;
const CAPACITY: usize = 10;
#[derive(Debug, Clone)]
pub struct StorageHandle {
tx: Sender<Task>,
}
impl StorageHandle {
pub async fn open(path: impl AsRef<Path>) -> rusqlite::Result<Self> {
let tx = setup_database(path).await?;
Ok(Self { tx })
}
pub async fn open_in_memory() -> rusqlite::Result<Self> {
Self::open(":memory:").await
}
pub async fn execute<P>(
&self,
sql: impl AsRef<str>,
params: P,
) -> rusqlite::Result<usize>
where
P: Params + Clone + Send + 'static,
{
let sql = sql.as_ref().to_string();
self.submit_task(move |conn| {
let mut prepared = conn.prepare_cached(&sql)?;
prepared.execute(params)
})
.await
}
pub async fn execute_many<P>(
&self,
sql: impl AsRef<str>,
param_set: Vec<P>,
) -> rusqlite::Result<usize>
where
P: Params + Clone + Send + 'static,
{
let sql = sql.as_ref().to_string();
self.submit_task(move |conn| {
let tx = conn.transaction()?;
let mut total = 0;
{
let mut prepared = tx.prepare_cached(&sql)?;
for params in param_set {
total += prepared.execute(params)?;
}
}
tx.commit()?;
Ok(total)
})
.await
}
pub async fn fetch_one<P, T>(
&self,
sql: impl AsRef<str>,
params: P,
) -> rusqlite::Result<Option<T>>
where
P: Params + Send + 'static,
T: FromRow + Send + 'static,
{
let sql = sql.as_ref().to_string();
self.submit_task(move |conn| {
let mut prepared = conn.prepare_cached(&sql)?;
prepared.query_row(params, T::from_row).optional()
})
.await
}
pub async fn fetch_many<P, T>(
&self,
sql: impl AsRef<str>,
param_sets: Vec<P>,
) -> rusqlite::Result<Vec<T>>
where
P: Params + Send + 'static,
T: FromRow + Send + 'static,
{
let sql = sql.as_ref().to_string();
self.submit_task(move |conn| {
let mut prepared = conn.prepare_cached(&sql)?;
let mut rows = Vec::with_capacity(param_sets.len());
for params in param_sets {
if let Some(row) = prepared.query_row(params, T::from_row).optional()? {
rows.push(row);
}
}
Ok(rows)
})
.await
}
pub async fn fetch_all<P, T>(
&self,
sql: impl AsRef<str>,
params: P,
) -> rusqlite::Result<Vec<T>>
where
P: Params + Send + 'static,
T: FromRow + Send + 'static,
{
let sql = sql.as_ref().to_string();
self.submit_task(move |conn| {
let mut prepared = conn.prepare_cached(&sql)?;
let mut iter = prepared.query(params)?;
let mut rows = Vec::with_capacity(4);
while let Some(row) = iter.next()? {
rows.push(T::from_row(row)?);
}
Ok(rows)
})
.await
}
async fn submit_task<CB, T>(&self, inner: CB) -> rusqlite::Result<T>
where
T: Send + 'static,
CB: FnOnce(&mut Connection) -> rusqlite::Result<T> + Send + 'static,
{
let (tx, rx) = oneshot::channel();
let cb = move |conn: &mut Connection| {
let res = inner(conn);
let _ = tx.send(res);
};
self.tx
.send_async(Box::new(cb))
.await
.expect("send message");
rx.await.unwrap()
}
}
pub trait FromRow: Sized {
fn from_row(row: &Row) -> rusqlite::Result<Self>;
}
async fn setup_database(path: impl AsRef<Path>) -> rusqlite::Result<Sender<Task>> {
let path = path.as_ref().to_path_buf();
let (tx, rx) = flume::bounded(CAPACITY);
tokio::task::spawn_blocking(move || setup_disk_handle(&path, rx))
.await
.expect("spawn background runner")?;
Ok(tx)
}
fn setup_disk_handle(path: &Path, tasks: Receiver<Task>) -> rusqlite::Result<()> {
let disk = Connection::open(path)?;
disk.query_row("pragma journal_mode = WAL;", (), |_r| Ok(()))?;
disk.execute("pragma synchronous = normal;", ())?;
disk.execute("pragma temp_store = memory;", ())?;
std::thread::spawn(move || run_tasks(disk, tasks));
Ok(())
}
fn run_tasks(mut conn: Connection, tasks: Receiver<Task>) {
while let Ok(task) = tasks.recv() {
(task)(&mut conn);
}
}
#[cfg(test)]
mod tests {
use std::env::temp_dir;
use super::*;
#[tokio::test]
async fn test_memory_storage_handle() {
let handle = StorageHandle::open_in_memory().await.expect("open DB");
run_storage_handle_suite(handle).await;
}
#[tokio::test]
async fn test_disk_storage_handle() {
let path = temp_dir().join(uuid::Uuid::new_v4().to_string());
let handle = StorageHandle::open(path).await.expect("open DB");
run_storage_handle_suite(handle).await;
}
#[derive(Debug, Eq, PartialEq)]
struct Person {
id: i32,
name: String,
data: String,
}
impl FromRow for Person {
fn from_row(row: &Row) -> rusqlite::Result<Self> {
Ok(Self {
id: row.get(0)?,
name: row.get(1)?,
data: row.get(2)?,
})
}
}
async fn run_storage_handle_suite(handle: StorageHandle) {
handle
.execute(
"CREATE TABLE person (
id INTEGER PRIMARY KEY,
name TEXT NOT NULL,
data BLOB
)",
(), )
.await
.expect("create table");
let res = handle
.fetch_one::<_, Person>("SELECT id, name, data FROM person;", ())
.await
.expect("execute statement");
assert!(res.is_none(), "Expected no rows to be returned.");
handle
.execute(
"INSERT INTO person (id, name, data) VALUES (1, 'cf8', 'tada');",
(),
)
.await
.expect("Insert row");
let res = handle
.fetch_one::<_, Person>("SELECT id, name, data FROM person;", ())
.await
.expect("execute statement");
assert_eq!(
res,
Some(Person {
id: 1,
name: "cf8".to_string(),
data: "tada".to_string()
}),
);
handle
.execute(
"INSERT INTO person (id, name, data) VALUES (2, 'cf6', 'tada2');",
(),
)
.await
.expect("Insert row");
let res = handle
.fetch_all::<_, Person>(
"SELECT id, name, data FROM person ORDER BY id ASC;",
(),
)
.await
.expect("execute statement");
assert_eq!(
res,
vec![
Person {
id: 1,
name: "cf8".to_string(),
data: "tada".to_string()
},
Person {
id: 2,
name: "cf6".to_string(),
data: "tada2".to_string()
},
],
);
}
}