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
use std::sync::Arc;
use async_trait::async_trait;
use super::{
backend::{r#trait::Backend, Error},
conn_pool::{ReusableConnectionPool as ReusableConnectionPoolInner, SingleUseConnectionPool},
object_pool::{ObjectPool, Reusable},
};
/// Wrapper for a reusable connection pool wrapped in a reusable object wrapper
pub type ReusableConnectionPool<'a, B> = Reusable<'a, ReusableConnectionPoolInner<B>>;
/// Database pool
pub struct DatabasePool<B: Backend> {
backend: Arc<B>,
object_pool: ObjectPool<ReusableConnectionPoolInner<B>>,
}
impl<B: Backend> DatabasePool<B> {
/// Pulls a reusable connection pool
///
/// Privileges are granted only for ``SELECT``, ``INSERT``, ``UPDATE``, and ``DELETE`` operations.
/// # Example
/// ```
/// use bb8::Pool;
/// use db_pool::{
/// r#async::{DatabasePoolBuilderTrait, DieselAsyncPostgresBackend, DieselBb8},
/// PrivilegedPostgresConfig,
/// };
/// use diesel::sql_query;
/// use diesel_async::RunQueryDsl;
/// use dotenvy::dotenv;
///
/// async fn f() {
/// dotenv().ok();
///
/// let config = PrivilegedPostgresConfig::from_env().unwrap();
///
/// let backend = DieselAsyncPostgresBackend::<DieselBb8>::new(
/// config,
/// || Pool::builder().max_size(10),
/// || Pool::builder().max_size(2),
/// move |mut conn| {
/// Box::pin(async {
/// sql_query("CREATE TABLE book(id SERIAL PRIMARY KEY, title TEXT NOT NULL)")
/// .execute(&mut conn)
/// .await
/// .unwrap();
/// conn
/// })
/// },
/// )
/// .await
/// .unwrap();
///
/// let db_pool = backend.create_database_pool().await.unwrap();
/// let conn_pool = db_pool.pull_immutable();
/// }
///
/// tokio_test::block_on(f());
/// ```
#[must_use]
pub async fn pull_immutable(&self) -> ReusableConnectionPool<B> {
self.object_pool.pull().await
}
/// Creates a single-use connection pool
///
/// All privileges are granted.
/// # Example
/// ```
/// use bb8::Pool;
/// use db_pool::{
/// r#async::{DatabasePoolBuilderTrait, DieselAsyncPostgresBackend, DieselBb8},
/// PrivilegedPostgresConfig,
/// };
/// use diesel::sql_query;
/// use diesel_async::RunQueryDsl;
/// use dotenvy::dotenv;
///
/// async fn f() {
/// dotenv().ok();
///
/// let config = PrivilegedPostgresConfig::from_env().unwrap();
///
/// let backend = DieselAsyncPostgresBackend::<DieselBb8>::new(
/// config,
/// || Pool::builder().max_size(10),
/// || Pool::builder().max_size(2),
/// move |mut conn| {
/// Box::pin(async {
/// sql_query("CREATE TABLE book(id SERIAL PRIMARY KEY, title TEXT NOT NULL)")
/// .execute(&mut conn)
/// .await
/// .unwrap();
/// conn
/// })
/// },
/// )
/// .await
/// .unwrap();
///
/// let db_pool = backend.create_database_pool().await.unwrap();
/// let conn_pool = db_pool.create_mutable();
/// }
///
/// tokio_test::block_on(f());
/// ```
pub async fn create_mutable(
&self,
) -> Result<
SingleUseConnectionPool<B>,
Error<B::BuildError, B::PoolError, B::ConnectionError, B::QueryError>,
> {
SingleUseConnectionPool::new(self.backend.clone()).await
}
}
/// Database pool builder trait implemented for all async backends
#[async_trait]
pub trait DatabasePoolBuilder: Backend {
/// Creates a database pool
/// # Example
/// ```
/// use bb8::Pool;
/// use db_pool::{
/// r#async::{DatabasePoolBuilderTrait, DieselAsyncPostgresBackend, DieselBb8},
/// PrivilegedPostgresConfig,
/// };
/// use diesel::sql_query;
/// use diesel_async::RunQueryDsl;
/// use dotenvy::dotenv;
///
/// async fn f() {
/// dotenv().ok();
///
/// let config = PrivilegedPostgresConfig::from_env().unwrap();
///
/// let backend = DieselAsyncPostgresBackend::<DieselBb8>::new(
/// config,
/// || Pool::builder().max_size(10),
/// || Pool::builder().max_size(2),
/// move |mut conn| {
/// Box::pin(async {
/// sql_query("CREATE TABLE book(id SERIAL PRIMARY KEY, title TEXT NOT NULL)")
/// .execute(&mut conn)
/// .await
/// .unwrap();
/// conn
/// })
/// },
/// )
/// .await
/// .unwrap();
///
/// let db_pool = backend.create_database_pool().await.unwrap();
/// }
///
/// tokio_test::block_on(f());
/// ```
async fn create_database_pool(
self,
) -> Result<
DatabasePool<Self>,
Error<Self::BuildError, Self::PoolError, Self::ConnectionError, Self::QueryError>,
> {
self.init().await?;
let backend = Arc::new(self);
let object_pool = {
let backend = backend.clone();
ObjectPool::new(
move || {
let backend = backend.clone();
Box::pin(async {
ReusableConnectionPoolInner::new(backend)
.await
.expect("connection pool creation must succeed")
})
},
|mut conn_pool| {
Box::pin(async {
conn_pool
.clean()
.await
.expect("connection pool cleaning must succeed");
conn_pool
})
},
)
};
Ok(DatabasePool {
backend,
object_pool,
})
}
}
impl<AB: Backend> DatabasePoolBuilder for AB {}