pub mod connection_pool;
pub mod common_helpers;
use crate::abstract_layer::DbType;
use crate::model::{Value, VersionSnapshotUpdate};
#[macro_use]
pub mod macros;
pub mod stream_connection;
pub use stream_connection::StreamConnection;
mod unified;
pub use unified::{
AggregateFuture, CollectFuture, CreateTableExecutor, Database, DeleteExecutor,
DerivedTableCollectFuture, DerivedTableSelectExecutor, DoubleIncludedCollectFuture,
DoubleIncludedSelectExecutor, DropTableExecutor, GroupedCollectFuture, GroupedSelectExecutor,
IncludedCollectFuture, IncludedSelectExecutor, InsertExecutor, InsertGraphExecutor,
InsertOrIgnoreExecutor, InsertOrUpdateExecutor, InsertPartialExecutor, IsolationLevel,
LeftJoinCollectFuture, LeftJoinedSelectExecutor, MappedCollectFuture, MappedSelectExecutor,
ModelCollectWithFuture, NestedInclude, RawCollectFuture, RawSelectExecutor,
RelatedCollectFuture, RelatedSelectExecutor, RelationNestedLoader, ReplicatedDatabase,
ReplicatedDatabaseBuilder, SaveExecutor, ScopedDeleteExecutor, ScopedUpdateExecutor,
SelectExecutor, SelectStream, SelectStreamIterator, Transaction, TransactionFuture,
TransactionInsertExecutor, TransactionInsertOrIgnoreExecutor,
TransactionInsertOrUpdateExecutor, TransactionOptions, TransactionRawCollectFuture,
TransactionRawSelectExecutor, TransactionSaveExecutor, UpdateExecutor, UpdateGraphExecutor,
};
pub use connection_pool::{
ConnectionPool, PooledConnection, PooledDatabaseScope, PooledRawSelectExecutor,
ReplicatedConnectionPool, ReplicatedPoolBuilder,
};
#[derive(Debug, Clone)]
pub struct SingleSqlStatement {
pub sql: String,
pub params: Vec<Value>,
pub param_rust_types: Option<Vec<&'static str>>,
pub versioned: bool,
pub version_update: Option<VersionSnapshotUpdate>,
}
impl SingleSqlStatement {
pub fn new(sql: impl Into<String>, params: Vec<Value>) -> Self {
Self {
sql: sql.into(),
params,
param_rust_types: None,
versioned: false,
version_update: None,
}
}
pub fn with_param_rust_types(mut self, param_rust_types: Vec<&'static str>) -> Self {
self.param_rust_types = Some(param_rust_types);
self
}
pub fn with_optimistic_lock(
mut self,
versioned: bool,
version_update: Option<VersionSnapshotUpdate>,
) -> Self {
self.versioned = versioned;
self.version_update = version_update;
self
}
}
#[derive(Debug, Clone)]
pub struct SqlStatement {
pub db_type: DbType,
pub statements: Vec<SingleSqlStatement>,
}
impl SqlStatement {
pub fn single(db_type: DbType, sql: impl Into<String>, params: Vec<Value>) -> Self {
Self {
db_type,
statements: vec![SingleSqlStatement::new(sql, params)],
}
}
pub fn batch(db_type: DbType, statements: Vec<SingleSqlStatement>) -> Self {
Self {
db_type,
statements,
}
}
}
pub trait SqlExecutor: Sized {
type Output;
fn to_sql(&self) -> crate::Result<SqlStatement>;
fn execute_with_sql(
self,
sql: SqlStatement,
) -> impl std::future::Future<Output = crate::Result<Self::Output>>;
fn execute(self) -> impl std::future::Future<Output = crate::Result<Self::Output>> {
async move {
let sql = self.to_sql()?;
self.execute_with_sql(sql).await
}
}
}
pub trait DbExecutor {
fn select<T: crate::model::Model>(&self) -> SelectExecutor<'_, T>;
fn select_column<T: crate::model::Model, V>(&self) -> GroupedSelectExecutor<'_, T, V>;
}