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
use std::ops::Deref;

mod private {
    use crate::{Connection, DbError, Statement};
    pub trait Sealed {}

    pub enum ToStatementType<'a> {
        Statement(&'a Statement),
        Query(&'a str),
    }

    impl<'a> ToStatementType<'a> {
        pub async fn into_statement(self, conn: &Connection) -> Result<Statement, DbError> {
            match self {
                ToStatementType::Statement(s) => Ok(s.clone()),
                ToStatementType::Query(s) => conn.prepare(s).await,
            }
        }
    }
}

use private::{Sealed, ToStatementType};

/// Wrapper around tokio_postgres::Statement
#[derive(Clone)]
pub struct Statement(tokio_postgres::Statement);

impl Deref for Statement {
    type Target = tokio_postgres::Statement;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl From<tokio_postgres::Statement> for Statement {
    fn from(statement: tokio_postgres::Statement) -> Self {
        Self(statement)
    }
}

/// Like tokio_postgres::ToStatement trait
pub trait ToStatement: Sealed {
    #[doc(hidden)]
    fn __convert(&self) -> ToStatementType<'_>;
}

impl ToStatement for Statement {
    fn __convert(&self) -> ToStatementType<'_> {
        ToStatementType::Statement(self)
    }
}

impl Sealed for Statement {}

impl ToStatement for str {
    fn __convert(&self) -> ToStatementType<'_> {
        ToStatementType::Query(self)
    }
}

impl Sealed for str {}