fn0-doc-db 0.4.3

Document-oriented Turso/libSQL DB (works in both WASI components and native binaries)
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
449
450
451
452
453
use super::*;
use anyhow::{Result, bail};
use bytes::Bytes;
use libsql_hrana::proto::*;

impl TursoTransaction {
    async fn execute_in_tx(&mut self, requests: Vec<StreamRequest>) -> Result<PipelineRespBody> {
        let baton = self
            .baton
            .take()
            .ok_or_else(|| anyhow::anyhow!("Transaction already finished"))?;

        let response = self
            .db
            .execute_pipeline_with_baton(Some(baton), requests)
            .await?;

        // Update baton for next request
        self.baton = response.baton.clone();

        Ok(response)
    }

    pub(crate) async fn execute_stmt(
        &mut self,
        sql: &str,
        args: Vec<Value>,
        want_rows: bool,
    ) -> Result<StmtResult> {
        let response = self
            .execute_in_tx(vec![StreamRequest::Execute(ExecuteStreamReq {
                stmt: Stmt {
                    sql: Some(sql.to_string()),
                    sql_id: None,
                    args,
                    named_args: vec![],
                    want_rows: Some(want_rows),
                    replication_index: None,
                },
            })])
            .await?;

        for result in response.results {
            match result {
                StreamResult::Ok { response } => {
                    if let StreamResponse::Execute(exec_resp) = response {
                        return Ok(exec_resp.result);
                    }
                }
                StreamResult::Error { error } => {
                    bail!("Transaction execute error: {}", error.message);
                }
                StreamResult::None => {}
            }
        }

        bail!("Missing transaction execute result")
    }

    pub(crate) async fn get(&mut self, pk: &str, sk: &str) -> Result<Option<Bytes>> {
        let result = self
            .execute_stmt(
                "SELECT data FROM docs WHERE pk = ? AND sk = ?",
                vec![
                    Value::Text {
                        value: pk.to_string().into(),
                    },
                    Value::Text {
                        value: sk.to_string().into(),
                    },
                ],
                true,
            )
            .await?;

        if let Some(Value::Blob { value }) = result.rows.first().and_then(|row| row.values.first())
        {
            return Ok(Some(value.clone()));
        }

        Ok(None)
    }

    pub(crate) async fn put(&mut self, pk: &str, sk: &str, data: &[u8]) -> Result<()> {
        self.execute_stmt(
            UPSERT_DOC_SQL,
            vec![
                Value::Text {
                    value: pk.to_string().into(),
                },
                Value::Text {
                    value: sk.to_string().into(),
                },
                Value::Blob {
                    value: data.to_vec().into(),
                },
            ],
            false,
        )
        .await?;

        Ok(())
    }

    pub(crate) async fn delete(&mut self, pk: &str, sk: &str) -> Result<()> {
        let response = self
            .execute_in_tx(vec![StreamRequest::Execute(ExecuteStreamReq {
                stmt: Stmt {
                    sql: Some("DELETE FROM docs WHERE pk = ? AND sk = ?".to_string()),
                    sql_id: None,
                    args: vec![
                        Value::Text {
                            value: pk.to_string().into(),
                        },
                        Value::Text {
                            value: sk.to_string().into(),
                        },
                    ],
                    named_args: vec![],
                    want_rows: Some(false),
                    replication_index: None,
                },
            })])
            .await?;

        for result in response.results {
            if let StreamResult::Error { error } = result {
                bail!("Transaction delete error: {}", error.message);
            }
        }

        Ok(())
    }

    pub(crate) async fn commit(mut self) -> Result<()> {
        let response = self
            .execute_in_tx(vec![
                StreamRequest::Execute(ExecuteStreamReq {
                    stmt: Stmt {
                        sql: Some("COMMIT".to_string()),
                        sql_id: None,
                        args: vec![],
                        named_args: vec![],
                        want_rows: Some(false),
                        replication_index: None,
                    },
                }),
                StreamRequest::Close(CloseStreamReq {}),
            ])
            .await?;

        for result in response.results {
            if let StreamResult::Error { error } = result {
                bail!("Transaction commit error: {}", error.message);
            }
        }

        self.baton = None; // Mark as finished
        Ok(())
    }

    pub(crate) async fn rollback(mut self) -> Result<()> {
        let response = self
            .execute_in_tx(vec![
                StreamRequest::Execute(ExecuteStreamReq {
                    stmt: Stmt {
                        sql: Some("ROLLBACK".to_string()),
                        sql_id: None,
                        args: vec![],
                        named_args: vec![],
                        want_rows: Some(false),
                        replication_index: None,
                    },
                }),
                StreamRequest::Close(CloseStreamReq {}),
            ])
            .await?;

        for result in response.results {
            if let StreamResult::Error { error } = result {
                bail!("Transaction rollback error: {}", error.message);
            }
        }

        self.baton = None; // Mark as finished
        Ok(())
    }

    #[tracing::instrument(skip_all, fields(reads = keys.len()))]
    pub(crate) async fn batch_get_with_version(
        &mut self,
        keys: &[(String, String)],
    ) -> Result<Vec<Option<StoredDoc>>> {
        if keys.is_empty() {
            return Ok(vec![]);
        }
        let requests: Vec<StreamRequest> = keys
            .iter()
            .map(|(pk, sk)| {
                StreamRequest::Execute(ExecuteStreamReq {
                    stmt: Stmt {
                        sql: Some(
                            "SELECT data, version FROM docs WHERE pk = ? AND sk = ?".to_string(),
                        ),
                        sql_id: None,
                        args: vec![
                            Value::Text {
                                value: pk.clone().into(),
                            },
                            Value::Text {
                                value: sk.clone().into(),
                            },
                        ],
                        named_args: vec![],
                        want_rows: Some(true),
                        replication_index: None,
                    },
                })
            })
            .collect();

        let response = self.execute_in_tx(requests).await?;

        let mut docs: Vec<Option<StoredDoc>> = Vec::with_capacity(keys.len());
        for stream_result in response.results {
            match stream_result {
                StreamResult::Ok {
                    response: StreamResponse::Execute(exec_resp),
                } => {
                    let stored = if let Some(row) = exec_resp.result.rows.first()
                        && let (
                            Some(Value::Blob { value: data }),
                            Some(Value::Integer { value: version }),
                        ) = (row.values.first(), row.values.get(1))
                    {
                        Some(StoredDoc {
                            data: data.clone(),
                            version: *version,
                        })
                    } else {
                        None
                    };
                    docs.push(stored);
                }
                StreamResult::Ok { response: _ } => {}
                StreamResult::Error { error } => {
                    bail!("batch_get_with_version error: {}", error.message);
                }
                StreamResult::None => {}
            }
        }
        Ok(docs)
    }

    #[tracing::instrument(skip_all, fields(writes = writes.len()))]
    pub(crate) async fn apply_writes_and_commit(
        &mut self,
        writes: &[crate::WriteOp],
    ) -> Result<crate::CommitOutcome> {
        use crate::WriteOp;

        let mut steps: Vec<BatchStep> = Vec::with_capacity(writes.len() + 2);

        for op in writes {
            let stmt = match op {
                WriteOp::Insert { pk, sk, data } => Stmt {
                    sql: Some(
                        "INSERT INTO docs (pk, sk, data, version) VALUES (?, ?, ?, 0)".to_string(),
                    ),
                    sql_id: None,
                    args: vec![
                        Value::Text {
                            value: pk.clone().into(),
                        },
                        Value::Text {
                            value: sk.clone().into(),
                        },
                        Value::Blob {
                            value: data.clone().into(),
                        },
                    ],
                    named_args: vec![],
                    want_rows: Some(false),
                    replication_index: None,
                },
                WriteOp::Update {
                    pk,
                    sk,
                    expected_version,
                    data,
                } => Stmt {
                    sql: Some(
                        "UPDATE docs SET data = ?, version = version + 1 \
                         WHERE pk = ? AND sk = ? AND version = ?"
                            .to_string(),
                    ),
                    sql_id: None,
                    args: vec![
                        Value::Blob {
                            value: data.clone().into(),
                        },
                        Value::Text {
                            value: pk.clone().into(),
                        },
                        Value::Text {
                            value: sk.clone().into(),
                        },
                        Value::Integer {
                            value: *expected_version,
                        },
                    ],
                    named_args: vec![],
                    want_rows: Some(false),
                    replication_index: None,
                },
                WriteOp::Delete {
                    pk,
                    sk,
                    expected_version,
                } => Stmt {
                    sql: Some(
                        "DELETE FROM docs WHERE pk = ? AND sk = ? AND version = ?".to_string(),
                    ),
                    sql_id: None,
                    args: vec![
                        Value::Text {
                            value: pk.clone().into(),
                        },
                        Value::Text {
                            value: sk.clone().into(),
                        },
                        Value::Integer {
                            value: *expected_version,
                        },
                    ],
                    named_args: vec![],
                    want_rows: Some(false),
                    replication_index: None,
                },
            };
            let condition = if steps.is_empty() {
                None
            } else {
                Some(BatchCond::Ok {
                    step: (steps.len() - 1) as u32,
                })
            };
            steps.push(BatchStep { condition, stmt });
        }

        let last_write_step = if writes.is_empty() {
            None
        } else {
            Some((steps.len() - 1) as u32)
        };
        let commit_cond = last_write_step.map(|s| BatchCond::Ok { step: s });
        steps.push(BatchStep {
            condition: commit_cond,
            stmt: Stmt {
                sql: Some("COMMIT".to_string()),
                sql_id: None,
                args: vec![],
                named_args: vec![],
                want_rows: Some(false),
                replication_index: None,
            },
        });
        let commit_step_idx = (steps.len() - 1) as u32;
        steps.push(BatchStep {
            condition: Some(BatchCond::Not {
                cond: Box::new(BatchCond::Ok {
                    step: commit_step_idx,
                }),
            }),
            stmt: Stmt {
                sql: Some("ROLLBACK".to_string()),
                sql_id: None,
                args: vec![],
                named_args: vec![],
                want_rows: Some(false),
                replication_index: None,
            },
        });

        let batch = Batch {
            steps,
            replication_index: None,
        };

        let response = self
            .execute_in_tx(vec![
                StreamRequest::Batch(BatchStreamReq { batch }),
                StreamRequest::Close(CloseStreamReq {}),
            ])
            .await?;

        self.baton = None;

        let mut batch_result: Option<BatchResult> = None;
        for stream_result in response.results {
            match stream_result {
                StreamResult::Ok {
                    response: StreamResponse::Batch(batch_resp),
                } => {
                    batch_result = Some(batch_resp.result);
                    break;
                }
                StreamResult::Ok { response: _ } => {}
                StreamResult::Error { error } => {
                    bail!("apply_writes_and_commit stream error: {}", error.message);
                }
                StreamResult::None => {}
            }
        }

        let batch_result = batch_result
            .ok_or_else(|| anyhow::anyhow!("apply_writes_and_commit: batch response missing"))?;

        let mut conflict: Option<crate::ConflictInfo> = None;
        for (i, error_opt) in batch_result.step_errors.iter().enumerate() {
            if let Some(error) = error_opt
                && i < writes.len()
            {
                conflict = Some(crate::ConflictInfo {
                    step_index: i,
                    message: error.message.clone(),
                });
                break;
            }
        }

        let mut affected_counts: Vec<u64> = Vec::with_capacity(writes.len());
        for (i, stmt_result_opt) in batch_result.step_results.iter().enumerate() {
            if i >= writes.len() {
                break;
            }
            affected_counts.push(
                stmt_result_opt
                    .as_ref()
                    .map(|r| r.affected_row_count)
                    .unwrap_or(0),
            );
        }
        while affected_counts.len() < writes.len() {
            affected_counts.push(0);
        }

        Ok(crate::CommitOutcome {
            affected_counts,
            conflict,
        })
    }
}