sqlx-utils 1.1.3

Utilities for working with SQLx in a structured and efficient way, both when developing and running
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
//! Transaction related traits.
//!
//! There are many issues with lifetimes when using [`Transaction`] from [`sqlx`], this is due to
//! the implementation in [`sqlx`] and from my testing cant be fixed without the inner traits being
//! implemented using [`async_trait`], if this changes in the future then I will fix this

use crate::{
    mod_def,
    traits::{Model, Repository},
    types::Database,
};
use futures::future::try_join_all;
use sqlx::{Error, Transaction};
use std::future::Future;
use std::sync::Arc;

mod_def! {
    !export
    pub(crate) mod insert_tx;
    pub(crate) mod update_tx;
    pub(crate) mod delete_tx;
    pub(crate) mod save_tx;
}

/// Extension trait for Repository to work with transactions
///
/// This trait adds transactions capabilities to any repository that implements
/// the [`Repository`] trait. It provides several methods for executing operations
/// within database transactions, with different strategies for concurrency and
/// error handling.
///
/// The trait is automatically implemented for any type that implements [`Repository<M>`],
/// making transactions capabilities available to all repositories without additional code.
pub trait TransactionRepository<M>: Repository<M>
where
    M: Model,
{
    /// Executes a callback within a transactions, handling the transactions lifecycle automatically.
    ///
    /// This method:
    /// 1. Begins a transactions from the repository's connection pool
    /// 2. Passes the transactions to the callback function
    /// 3. Waits for the callback to complete and return both a result and the transactions
    /// 4. Commits the transactions if the result is `Ok`, or rolls it back if it's `Err`
    /// 5. Returns the final result
    ///
    /// # Type Parameters
    ///
    /// * `F`: The type of the callback function [^func]
    /// * `Fut`: The future type returned by the callback
    /// * `R`: The result type
    /// * `E`: The error type, which must be convertible from [`Error`]
    ///
    /// # Parameters
    ///
    /// * `callback`: A function that accepts a [`Transaction`] and returns a future
    ///
    /// # Returns
    ///
    /// A future that resolves to `Result<R, E>`.
    ///
    /// # Example
    ///
    /// ```no_compile
    /// let result = repo.with_transaction(|mut tx| async move {
    ///     let model = Model::new();
    ///     let res = repo.save_with_executor(&mut tx, model).await;
    ///     (res, tx)
    /// }).await;
    /// ```
    ///
    /// [^func]: The function signature of an action must be `async fn action<'b>(tx: Transaction<'b, Database>) -> (Result<T, E>, Transaction<'b, Database>)`
    ///    Take note of the lifetimes as you might run into errors related to lifetimes if they are not specified due to invariance. The future must also be [`Send`]
    fn with_transaction<'a, 'b, F, Fut, R, E>(
        &'a self,
        callback: F,
    ) -> impl Future<Output = Result<R, E>> + Send + 'a
    where
        F: FnOnce(Transaction<'b, Database>) -> Fut + Send + 'a,
        Fut: Future<Output = (Result<R, E>, Transaction<'b, Database>)> + Send,
        R: Send + 'a,
        E: From<Error> + Send,
    {
        async move {
            let transaction = self.pool().begin().await.map_err(E::from)?;

            let (ret, tx) = callback(transaction).await;

            match ret {
                Ok(val) => {
                    tx.commit().await.map_err(E::from)?;
                    Ok(val)
                }
                Err(err) => {
                    tx.rollback().await.map_err(E::from)?;
                    Err(err)
                }
            }
        }
    }

    /// Executes multiple operations sequentially in a transactions, stopping at the first error.
    ///
    /// This method provides an optimized approach for cases where you want to stop processing
    /// as soon as any action fails, immediately rolling back the transactions.
    ///
    /// # Type Parameters
    ///
    /// * `I`: The iterator type
    /// * `F`: The action function type [^func]
    /// * `Fut`: The future type returned by each action
    /// * `R`: The result type
    /// * `E`: The error type, which must be convertible from [`Error`]
    ///
    /// # Parameters
    ///
    /// * `actions`: An iterator of functions that will be executed in the transactions
    ///
    /// # Returns
    ///
    /// A future that resolves to:
    /// * `Ok(Vec<R>)`: A vector of results if all actions succeeded
    /// * `Err(E)`: The first error encountered
    ///
    /// # Implementation Details
    ///
    /// 1. Begins a transactions from the repository's connection pool
    /// 2. Executes each action sequentially, collecting results
    /// 3. If any action fails, rolls back the transactions and returns the error
    /// 4. If all actions succeed, commits the transactions and returns the results
    ///
    /// Due to complex lifetime bounds in underlying types we must take ownership and then return it
    /// back.
    ///
    /// # Examples
    ///
    /// ## Basic
    ///
    /// ```no_compile
    /// let results = repo.transaction_sequential([
    ///     |tx| async move { repo.save_with_executor(tx, model1).await },
    ///     |tx| async move { repo.save_with_executor(tx, model2).await }
    /// ]).await;
    /// ```
    ///
    /// ## Complete
    ///
    /// ```rust,should_panic
    /// use sqlx::Transaction;
    /// use sqlx_utils::prelude::*;
    /// #
    /// # repository! {
    /// #     !zst
    /// #     UserRepo<User>;
    /// # }
    ///
    /// struct User {
    ///     id: String,
    ///     name: String
    /// }
    ///
    /// impl Model for User {
    ///     type Id = String;
    ///
    ///     fn get_id(&self) -> Option<Self::Id> {
    ///         Some(self.id.to_owned())
    ///     }
    /// }
    ///
    /// #[derive(Debug)]
    /// struct Error { // Any error type that implements `From<sqlx::Error>` is allowed
    ///     kind: Box<dyn std::error::Error + Send>
    /// }
    ///
    /// impl From<sqlx::Error> for Error {
    ///     fn from(value: sqlx::Error) -> Self {
    ///         Self {
    ///             kind: Box::new(value)
    ///         }
    ///     }
    /// }
    ///
    /// async fn action<'b>(tx: Transaction<'b, Database>) -> (Result<User, Error>, Transaction<'b, Database>) {
    ///      unimplemented!()
    ///  }
    ///
    /// # #[tokio::main]
    /// # async fn main() {
    /// USER_REPO.transaction_sequential([action, action, action]).await.unwrap();
    /// # }
    /// ```
    ///
    /// [^func]: The function signature of an action must be `async fn action<'b>(tx: Transaction<'b, Database>) -> (Result<T, E>, Transaction<'b, Database>)`
    ///    Take note of the lifetimes as you might run into errors related to lifetimes if they are not specified due to invariance. The future must also be [`Send`]
    fn transaction_sequential<'a, 'b, I, F, Fut, R, E>(
        &'a self,
        actions: I,
    ) -> impl Future<Output = Result<Vec<R>, E>> + Send + 'a
    where
        I: IntoIterator<Item = F> + Send + 'a,
        I::IntoIter: Send + 'a,
        F: FnOnce(Transaction<'b, Database>) -> Fut + Send + 'a,
        Fut: Future<Output = (Result<R, E>, Transaction<'b, Database>)> + Send,
        R: Send + 'a,
        E: From<Error> + Send + 'a,
    {
        async move {
            let mut tx = self.pool().begin().await.map_err(E::from)?;
            let mut results = Vec::new();

            for action in actions {
                let (result, new_tx) = action(tx).await;
                tx = new_tx; // Get back ownership

                match result {
                    Ok(value) => results.push(value),
                    Err(e) => {
                        let _ = tx.rollback().await;
                        return Err(e);
                    }
                }
            }

            tx.commit().await.map_err(E::from)?;
            Ok(results)
        }
    }

    /// Executes multiple operations concurrently in a transactions.
    ///
    /// This method allows for concurrent execution of actions within a transactions,
    /// which can significantly improve performance for I/O-bound operations.
    /// Note that this only works when the actions don't have data dependencies.
    ///
    /// # Type Parameters
    ///
    /// * `I`: The iterator type
    /// * `F`: The action function type [^func] [^mutex]
    /// * `Fut`: The future type returned by each action
    /// * `R`: The result type
    /// * `E`: The error type, which must be convertible from [`Error`]
    ///
    /// # Parameters
    ///
    /// * `actions`: An iterator of functions that will be executed concurrently in the transactions
    ///
    /// # Returns
    ///
    /// A future that resolves to:
    /// * `Ok(Vec<R>)`: A vector of results if all actions succeeded
    /// * `Err(E)`: The first error encountered
    ///
    /// # Implementation Details
    ///
    /// 1. Begins a transactions from the repository's connection pool
    /// 2. Wraps the transactions in an [`Arc<Mutex<_>>`] to safely share it between concurrent operations [^mutex]
    /// 3. Creates futures for all actions but doesn't execute them yet
    /// 4. Executes all futures concurrently using [`try_join_all`]
    /// 5. If all operations succeed, commits the transactions and returns the results
    /// 6. If any operation fails, rolls back the transactions and returns the error
    ///
    /// # Notes
    ///
    /// - Uses [`parking_lot::Mutex`] for better performance than `std::sync::Mutex`
    /// - Requires the transactions to be safely shared between multiple futures
    ///
    /// # Example
    ///
    /// ## Basic
    ///
    /// ```no_compile
    /// let results = repo.transaction_concurrent([
    ///     |tx_arc| async move {
    ///         let mut tx = tx_arc.lock();
    ///         repo.save_with_executor(&mut *tx, model1).await
    ///     },
    ///     |tx_arc| async move {
    ///         let mut tx = tx_arc.lock();
    ///         repo.save_with_executor(&mut *tx, model2).await
    ///     }
    /// ]).await;
    /// ```
    ///
    /// ## Complete
    ///
    /// ```rust,should_panic
    /// use sqlx::Transaction;
    /// use std::sync::Arc;
    /// use sqlx_utils::prelude::*;
    /// #
    /// # repository! {
    /// #     !zst
    /// #     UserRepo<User>;
    /// # }
    ///
    /// struct User {
    ///     id: String,
    ///     name: String
    /// }
    ///
    /// impl Model for User {
    ///     type Id = String;
    ///
    ///     fn get_id(&self) -> Option<Self::Id> {
    ///         Some(self.id.to_owned())
    ///     }
    /// }
    ///
    /// #[derive(Debug)]
    /// struct Error { // Any error type that implements `From<sqlx::Error>` is allowed
    ///     kind: Box<dyn std::error::Error + Send>
    /// }
    ///
    /// impl From<sqlx::Error> for Error {
    ///     fn from(value: sqlx::Error) -> Self {
    ///         Self {
    ///             kind: Box::new(value)
    ///         }
    ///     }
    /// }
    ///
    /// async fn action<'b>(tx: Arc<parking_lot::Mutex<Transaction<'b, Database>>>) -> Result<User, Error> {
    ///     unimplemented!()
    ///  }
    ///
    /// # #[tokio::main]
    /// # async fn main() {
    /// USER_REPO.transaction_concurrent([action, action, action]).await.unwrap();
    /// # }
    /// ```
    ///
    /// [^func]: The function signature of an action must be `async fn action<'b>(tx: Arc<parking_lot::Mutex<Transaction<'b, Database>>>) -> Result<T, E>`
    ///    Take note of the lifetimes as you might run into errors related to lifetimes if they are not specified due to invariance. The future must also be [`Send`]
    ///
    /// [^mutex]: It is up to you to ensure we don't get deadlocks, the function itself will not lock the mutex,
    ///    it will however attempt to get the inner value of the [`Arc`] after all actions has completed where it also consumes the mutex.
    ///    This makes it in theory impossible to get a deadlock in this method, however deadlocks can occur between different actions.
    fn transaction_concurrent<'a, 'b, I, F, Fut, R, E>(
        &'a self,
        actions: I,
    ) -> impl Future<Output = Result<Vec<R>, E>> + Send + 'a
    where
        I: IntoIterator<Item = F> + Send + 'a,
        I::IntoIter: Send + 'a,
        F: FnOnce(Arc<parking_lot::Mutex<Transaction<'b, Database>>>) -> Fut + Send + 'a,
        Fut: Future<Output = Result<R, E>> + Send + 'a,
        R: Send + 'a,
        E: From<Error> + Send + 'a,
    {
        async move {
            let tx = self.pool().begin().await.map_err(E::from)?;
            let tx = Arc::new(parking_lot::Mutex::new(tx));

            // Create futures but don't await them yet
            let futures: Vec<_> = actions
                .into_iter()
                .map(|action_fn| action_fn(tx.clone()))
                .collect();

            // Execute all futures concurrently
            let results = try_join_all(futures).await;

            match results {
                Ok(values) => {
                    let tx = match Arc::into_inner(tx) {
                        Some(mutex) => mutex.into_inner(),
                        None => return Err(E::from(Error::PoolClosed)),
                    };

                    tx.commit().await.map_err(E::from)?;
                    Ok(values)
                }
                Err(e) => {
                    let tx = match Arc::into_inner(tx) {
                        Some(mutex) => mutex.into_inner(),
                        None => return Err(E::from(Error::PoolClosed)),
                    };

                    tx.rollback().await.map_err(E::from)?;
                    Err(e)
                }
            }
        }
    }

    /// Executes multiple operations and collects all results, committing only if all succeed.
    ///
    /// This method runs all actions sequentially, collecting results (both successes and failures).
    /// The transactions is committed only if all actions succeed; otherwise, it's rolled back.
    ///
    /// # Type Parameters
    ///
    /// * `I`: The iterator type
    /// * `F`: The action function type [^func]
    /// * `Fut`: The future type returned by each action
    /// * `R`: The result type
    /// * `E`: The error type, which must be convertible from [`Error`]
    ///
    /// # Parameters
    ///
    /// * `actions`: An iterator of functions that will be executed in the transactions
    ///
    /// # Returns
    ///
    /// A future that resolves to:
    /// * `Ok(Vec<R>)`: A vector of results if all operations succeeded
    /// * `Err(Vec<E>)`: A vector of all errors if any operation failed
    ///
    /// # Implementation Details
    ///
    /// 1. Begins a transactions from the repository's connection pool
    /// 2. Executes each action sequentially, collecting all results and errors
    /// 3. If any errors occurred, rolls back the transactions and returns all errors
    /// 4. If all operations succeeded, commits the transactions and returns the results
    ///
    /// # Example
    ///
    /// ## Basic
    ///
    /// ```no_compile
    /// match repo.try_transaction([
    ///     |tx| async move { repo.save_with_executor(tx, model1).await },
    ///     |tx| async move { repo.save_with_executor(tx, model2).await }
    /// ]).await {
    ///     Ok(results) => println!("All operations succeeded"),
    ///     Err(errors) => println!("Some operations failed: {:?}", errors)
    /// }
    /// ```
    ///
    /// ## Complete
    ///
    /// ```rust,should_panic
    /// use sqlx::Transaction;
    /// use sqlx_utils::prelude::*;
    /// #
    /// # repository! {
    /// #     !zst
    /// #     UserRepo<User>;
    /// # }
    ///
    /// struct User {
    ///     id: String,
    ///     name: String
    /// }
    ///
    /// impl Model for User {
    ///     type Id = String;
    ///
    ///     fn get_id(&self) -> Option<Self::Id> {
    ///         Some(self.id.to_owned())
    ///     }
    /// }
    ///
    /// #[derive(Debug)]
    /// struct Error { // Any error type that implements `From<sqlx::Error>` is allowed
    ///     kind: Box<dyn std::error::Error + Send>
    /// }
    ///
    /// impl From<sqlx::Error> for Error {
    ///     fn from(value: sqlx::Error) -> Self {
    ///         Self {
    ///             kind: Box::new(value)
    ///         }
    ///     }
    /// }
    ///
    /// async fn action<'b>(tx: Transaction<'b, Database>) -> (Result<User, Error>, Transaction<'b, Database>) {
    ///      unimplemented!()
    ///  }
    ///
    /// # #[tokio::main]
    /// # async fn main() {
    /// USER_REPO.try_transaction([action, action, action]).await.unwrap();
    /// # }
    /// ```
    ///
    /// [^func]: The function signature of an action must be `async fn action<'b>(tx: Transaction<'b, Database>) -> (Result<T, E>, Transaction<'b, Database>)`
    ///    Take note of the lifetimes as you might run into errors related to lifetimes if they are not specified due to invariance. The future must also be [`Send`]
    fn try_transaction<'a, 'b, I, F, Fut, R, E>(
        &'a self,
        actions: I,
    ) -> impl Future<Output = Result<Vec<R>, Vec<E>>> + Send + 'a
    where
        I: IntoIterator<Item = F> + Send + 'a,
        I::IntoIter: Send + 'a,
        F: FnOnce(Transaction<'b, Database>) -> Fut + Send + 'a,
        Fut: Future<Output = (Result<R, E>, Transaction<'b, Database>)> + Send,
        R: Send + 'a,
        E: From<Error> + Send + 'a,
    {
        async move {
            let mut tx = self.pool().begin().await.map_err(|e| vec![E::from(e)])?;
            let mut results = Vec::new();
            let mut errors = Vec::new();

            for action in actions {
                let (result, new_tx) = action(tx).await;
                tx = new_tx;

                match result {
                    Ok(result) => results.push(result),
                    Err(e) => errors.push(e),
                }
            }

            if errors.is_empty() {
                tx.commit().await.map_err(|e| vec![E::from(e)])?;
                Ok(results)
            } else {
                let _ = tx.rollback().await;
                Err(errors)
            }
        }
    }
}

impl<T, M> TransactionRepository<M> for T
where
    T: Repository<M>,
    M: Model,
{
}