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
#![allow(missing_docs)]

use std::{ops::DerefMut, pin::Pin, task::Poll};

use futures::Stream;
#[cfg(feature = "sqlx-dep")]
use futures::TryStreamExt;

#[cfg(feature = "sqlx-dep")]
use sqlx::Executor;

use futures::lock::MutexGuard;

use crate::{DbErr, InnerConnection, QueryResult, Statement};

/// `TransactionStream` cannot be used in a `transaction` closure as it does not impl `Send`.
/// It seems to be a Rust limitation right now, and solution to work around this deemed to be extremely hard.
#[ouroboros::self_referencing]
pub struct TransactionStream<'a> {
    stmt: Statement,
    conn: MutexGuard<'a, InnerConnection>,
    #[borrows(mut conn, stmt)]
    #[not_covariant]
    stream: Pin<Box<dyn Stream<Item = Result<QueryResult, DbErr>> + 'this>>,
}

impl<'a> std::fmt::Debug for TransactionStream<'a> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "TransactionStream")
    }
}

impl<'a> TransactionStream<'a> {
    pub(crate) async fn build(
        conn: MutexGuard<'a, InnerConnection>,
        stmt: Statement,
    ) -> TransactionStream<'a> {
        TransactionStreamAsyncBuilder {
            stmt,
            conn,
            stream_builder: |conn, stmt| {
                Box::pin(async move {
                    match conn.deref_mut() {
                        #[cfg(feature = "sqlx-mysql")]
                        InnerConnection::MySql(c) => {
                            let query = crate::driver::sqlx_mysql::sqlx_query(stmt);
                            Box::pin(
                                c.fetch(query)
                                    .map_ok(Into::into)
                                    .map_err(crate::sqlx_error_to_query_err),
                            )
                                as Pin<Box<dyn Stream<Item = Result<QueryResult, DbErr>>>>
                        }
                        #[cfg(feature = "sqlx-postgres")]
                        InnerConnection::Postgres(c) => {
                            let query = crate::driver::sqlx_postgres::sqlx_query(stmt);
                            Box::pin(
                                c.fetch(query)
                                    .map_ok(Into::into)
                                    .map_err(crate::sqlx_error_to_query_err),
                            )
                                as Pin<Box<dyn Stream<Item = Result<QueryResult, DbErr>>>>
                        }
                        #[cfg(feature = "sqlx-sqlite")]
                        InnerConnection::Sqlite(c) => {
                            let query = crate::driver::sqlx_sqlite::sqlx_query(stmt);
                            Box::pin(
                                c.fetch(query)
                                    .map_ok(Into::into)
                                    .map_err(crate::sqlx_error_to_query_err),
                            )
                                as Pin<Box<dyn Stream<Item = Result<QueryResult, DbErr>>>>
                        }
                        #[cfg(feature = "mock")]
                        InnerConnection::Mock(c) => c.fetch(stmt),
                    }
                })
            },
        }
        .build()
        .await
    }
}

impl<'a> Stream for TransactionStream<'a> {
    type Item = Result<QueryResult, DbErr>;

    fn poll_next(
        self: Pin<&mut Self>,
        cx: &mut std::task::Context<'_>,
    ) -> Poll<Option<Self::Item>> {
        let this = self.get_mut();
        this.with_stream_mut(|stream| stream.as_mut().poll_next(cx))
    }
}