zino-orm 0.15.0

ORM for zino.
Documentation
use zino_core::error::Error;

/// Executing queries against the database.
pub trait Executor {
    /// A type for the database row.
    type Row;

    /// A type for the query result.
    type QueryResult;

    /// Executes the query and return the total number of rows affected.
    async fn execute(self, sql: &str) -> Result<Self::QueryResult, Error>;

    /// Executes the query with arguments and return the total number of rows affected.
    async fn execute_with<T: ToString>(
        self,
        sql: &str,
        arguments: &[T],
    ) -> Result<Self::QueryResult, Error>;

    /// Executes the query and return all the generated results.
    async fn fetch(self, sql: &str) -> Result<Vec<Self::Row>, Error>;

    /// Executes the query with arguments and return all the generated results.
    async fn fetch_with<T: ToString>(
        self,
        sql: &str,
        arguments: &[T],
    ) -> Result<Vec<Self::Row>, Error>;

    /// Executes the query and returns exactly one row.
    async fn fetch_one(self, sql: &str) -> Result<Self::Row, Error>;

    /// Executes the query and returns at most one row.
    async fn fetch_optional(self, sql: &str) -> Result<Option<Self::Row>, Error>;

    /// Executes the query with arguments and returns at most one row.
    async fn fetch_optional_with<T: ToString>(
        self,
        sql: &str,
        arguments: &[T],
    ) -> Result<Option<Self::Row>, Error>;
}

#[cfg(feature = "orm-sqlx")]
macro_rules! impl_sqlx_executor {
    () => {
        type Row = super::DatabaseRow;
        type QueryResult = <super::DatabaseDriver as sqlx::Database>::QueryResult;

        async fn execute(self, sql: &str) -> Result<Self::QueryResult, Error> {
            match sqlx::query(sql).execute(self).await {
                Ok(result) => Ok(result),
                Err(err) => {
                    if matches!(err, sqlx::error::Error::PoolTimedOut) {
                        super::GlobalPool::connect_all().await;
                    }
                    Err(err.into())
                }
            }
        }

        async fn execute_with<T: ToString>(
            self,
            sql: &str,
            arguments: &[T],
        ) -> Result<Self::QueryResult, Error> {
            let mut query = sqlx::query(sql);
            for arg in arguments {
                query = query.bind(arg.to_string());
            }
            match query.execute(self).await {
                Ok(result) => Ok(result),
                Err(err) => {
                    if matches!(err, sqlx::error::Error::PoolTimedOut) {
                        super::GlobalPool::connect_all().await;
                    }
                    Err(err.into())
                }
            }
        }

        async fn fetch(self, sql: &str) -> Result<Vec<Self::Row>, Error> {
            use futures::StreamExt;
            use std::sync::atomic::Ordering::Relaxed;

            let mut stream = sqlx::query(sql).fetch(self);
            let mut max_rows = super::MAX_ROWS.load(Relaxed);
            let estimated_rows = stream.size_hint().0;
            if cfg!(debug_assertions) && estimated_rows > max_rows {
                tracing::warn!(
                    "estimated number of rows {} exceeds the maximum row limit {}",
                    estimated_rows,
                    max_rows,
                );
            }

            let mut rows = Vec::with_capacity(estimated_rows.min(max_rows));
            while let Some(result) = stream.next().await {
                match result {
                    Ok(row) if max_rows > 0 => {
                        rows.push(row);
                        max_rows -= 1;
                    }
                    Err(err) => {
                        if matches!(err, sqlx::error::Error::PoolTimedOut) {
                            super::GlobalPool::connect_all().await;
                        }
                        return Err(err.into());
                    }
                    _ => break,
                }
            }
            Ok(rows)
        }

        async fn fetch_with<T: ToString>(
            self,
            sql: &str,
            arguments: &[T],
        ) -> Result<Vec<Self::Row>, Error> {
            use futures::StreamExt;
            use std::sync::atomic::Ordering::Relaxed;

            let mut query = sqlx::query(sql);
            for arg in arguments {
                query = query.bind(arg.to_string());
            }

            let mut stream = query.fetch(self);
            let mut max_rows = super::MAX_ROWS.load(Relaxed);
            let estimated_rows = stream.size_hint().0;
            if cfg!(debug_assertions) && estimated_rows > max_rows {
                tracing::warn!(
                    "estimated number of rows {} exceeds the maximum row limit {}",
                    estimated_rows,
                    max_rows,
                );
            }

            let mut rows = Vec::with_capacity(estimated_rows.min(max_rows));
            while let Some(result) = stream.next().await {
                match result {
                    Ok(row) if max_rows > 0 => {
                        rows.push(row);
                        max_rows -= 1;
                    }
                    Err(err) => {
                        if matches!(err, sqlx::error::Error::PoolTimedOut) {
                            super::GlobalPool::connect_all().await;
                        }
                        return Err(err.into());
                    }
                    _ => break,
                }
            }
            Ok(rows)
        }

        async fn fetch_one(self, sql: &str) -> Result<Self::Row, Error> {
            match sqlx::query(sql).fetch_one(self).await {
                Ok(row) => Ok(row),
                Err(err) => {
                    if matches!(err, sqlx::error::Error::PoolTimedOut) {
                        super::GlobalPool::connect_all().await;
                    }
                    Err(err.into())
                }
            }
        }

        async fn fetch_optional(self, sql: &str) -> Result<Option<Self::Row>, Error> {
            match sqlx::query(sql).fetch_optional(self).await {
                Ok(row) => Ok(row),
                Err(err) => {
                    if matches!(err, sqlx::error::Error::PoolTimedOut) {
                        super::GlobalPool::connect_all().await;
                    }
                    Err(err.into())
                }
            }
        }

        async fn fetch_optional_with<T: ToString>(
            self,
            sql: &str,
            arguments: &[T],
        ) -> Result<Option<Self::Row>, Error> {
            let mut query = sqlx::query(sql);
            for arg in arguments {
                query = query.bind(arg.to_string());
            }
            match query.fetch_optional(self).await {
                Ok(row) => Ok(row),
                Err(err) => {
                    if matches!(err, sqlx::error::Error::PoolTimedOut) {
                        super::GlobalPool::connect_all().await;
                    }
                    Err(err.into())
                }
            }
        }
    };
}

#[cfg(feature = "orm-sqlx")]
impl Executor for &sqlx::Pool<super::DatabaseDriver> {
    impl_sqlx_executor!();
}

#[cfg(feature = "orm-sqlx")]
impl Executor for &mut super::DatabaseConnection {
    impl_sqlx_executor!();
}