bazzar/crates/database_manager/src/lib.rs

357 lines
10 KiB
Rust

use actix::{Actor, Context};
use config::SharedAppConfig;
use sqlx::PgPool;
use sqlx_core::arguments::Arguments;
// pub use crate::account_addresses::*;
// pub use crate::accounts::*;
pub use crate::order_addresses::*;
pub use crate::order_items::*;
pub use crate::orders::*;
// pub use crate::photos::*;
// pub use crate::product_photos::*;
// pub use crate::products::*;
pub use crate::shopping_cart_items::*;
pub use crate::shopping_carts::*;
// pub use crate::stocks::*;
pub use crate::tokens::*;
pub mod account_addresses;
pub mod accounts;
pub mod order_addresses;
pub mod order_items;
pub mod orders;
pub mod photos;
pub mod product_photos;
pub mod products;
pub mod shopping_cart_items;
pub mod shopping_carts;
pub mod stocks;
pub mod tokens;
#[macro_export]
macro_rules! db_async_handler {
($msg: ty, $async: ident, $res: ty) => {
impl actix::Handler<$msg> for $crate::Database {
type Result = actix::ResponseActFuture<Self, Result<$res>>;
fn handle(&mut self, msg: $msg, _ctx: &mut Self::Context) -> Self::Result {
use actix::WrapFuture;
let pool = self.pool.clone();
Box::pin(async { $async(msg, pool).await }.into_actor(self))
}
}
};
($msg: ty, $async: ident, $res: ty, $inner_async: ident) => {
impl $msg {
pub async fn $inner_async(self, pool: sqlx::PgPool) -> Result<$res> {
let mut t = pool.begin().await.map_err(|e| {
tracing::error!("{:?}", e);
$crate::Error::TransactionFailed
})?;
match $async(self, &mut t).await {
Ok(res) => {
t.commit().await.map_err(|e| {
tracing::error!("{:?}", e);
$crate::Error::TransactionFailed
})?;
Ok(res)
}
Err(e) => {
let _ = t.rollback().await;
Err(e)
}
}
}
}
impl actix::Handler<$msg> for $crate::Database {
type Result = actix::ResponseActFuture<Self, Result<$res>>;
fn handle(&mut self, msg: $msg, _ctx: &mut Self::Context) -> Self::Result {
use actix::WrapFuture;
let pool = self.pool.clone();
Box::pin(async { msg.$inner_async(pool).await }.into_actor(self))
}
}
#[async_trait::async_trait]
impl $crate::Queue<$msg> for $crate::Transaction {
type Result = $res;
async fn handle(&mut self, msg: $msg) -> Result<Self::Result> {
let t = &mut self.t;
$async(msg, t).await
}
}
};
}
#[macro_export]
macro_rules! query_db {
($db: expr, $msg: expr, default $fail: expr) => {
match $db.send($msg).await {
Ok(Ok(r)) => r,
Ok(Err(e)) => {
tracing::error!("{e}");
$fail
}
Err(e) => {
tracing::error!("{e:?}");
$fail
}
}
};
($db: expr, $msg: expr, $fail: expr) => {
$crate::query_db!($db, $msg, $fail, $fail)
};
($db: expr, $msg: expr, $db_fail: expr, $act_fail: expr) => {
match $db.send($msg).await {
Ok(Ok(r)) => r,
Ok(Err(e)) => {
tracing::error!("{e}");
return Err($db_fail);
}
Err(e) => {
tracing::error!("{e:?}");
return Err($act_fail);
}
}
};
($db: expr, $msg: expr, passthrough $db_fail: expr, $act_fail: expr) => {
match $db.send($msg).await {
Ok(Ok(r)) => r,
Ok(Err(e)) => {
tracing::error!("{e}");
return Err($db_fail(e.into()));
}
Err(e) => {
tracing::error!("{e:?}");
return Err($act_fail);
}
}
};
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, serde::Serialize, thiserror::Error)]
#[serde(rename_all = "kebab-case")]
pub enum Error {
#[error("{0}")]
Account(#[from] accounts::Error),
#[error("{0}")]
AccountOrder(#[from] orders::Error),
#[error("{0}")]
Product(#[from] products::Error),
#[error("{0}")]
Stock(#[from] stocks::Error),
#[error("{0}")]
OrderItem(#[from] order_items::Error),
#[error("{0}")]
ShoppingCart(#[from] shopping_carts::Error),
#[error("{0}")]
ShoppingCartItem(#[from] shopping_cart_items::Error),
#[error("{0}")]
Token(#[from] tokens::Error),
#[error("{0}")]
Photo(#[from] photos::Error),
#[error("{0}")]
ProductPhoto(#[from] product_photos::Error),
#[error("{0}")]
AccountAddress(#[from] account_addresses::Error),
#[error("{0}")]
OrderAddress(#[from] order_addresses::Error),
#[error("Failed to start or finish transaction")]
TransactionFailed,
}
pub type Result<T> = std::result::Result<T, Error>;
#[derive(Clone)]
pub struct Database {
pool: PgPool,
_config: SharedAppConfig,
}
pub type SharedDatabase = actix::Addr<Database>;
impl Database {
pub async fn build(config: SharedAppConfig) -> Self {
let url = config.lock().database().url();
let pool = PgPool::connect(&url).await.unwrap_or_else(|e| {
tracing::error!("Failed to connect to database. {e:?}");
std::process::exit(1);
});
Self {
pool,
_config: config,
}
}
pub fn pool(&self) -> &PgPool {
&self.pool
}
pub async fn begin(&self) -> sqlx::Result<Transaction> {
Ok(Transaction {
t: self.pool.begin().await?,
})
}
}
impl Actor for Database {
type Context = Context<Self>;
}
pub struct Transaction {
t: sqlx::Transaction<'static, sqlx::Postgres>,
}
impl Transaction {
pub async fn commit(self) -> Result<()> {
self.t.commit().await.map_err(|e| {
tracing::error!("{e:?}");
dbg!(e);
Error::TransactionFailed
})?;
Ok(())
}
pub async fn rollback(self) -> Result<()> {
self.t.rollback().await.map_err(|e| {
tracing::error!("{e:?}");
dbg!(e);
Error::TransactionFailed
})?;
Ok(())
}
}
#[async_trait::async_trait]
pub trait Queue<Msg> {
type Result;
async fn handle(&mut self, msg: Msg) -> Result<Self::Result>;
}
/// Multi-query load for large amount of records to read
///
/// Examples
///
/// ```
/// # use database_manager::photos::Error;
/// async fn load(pool: sqlx::PgPool) {
/// use database_manager::MultiLoad;
/// let mut t = pool.begin().await.unwrap();
/// let mut multi = MultiLoad::new(
/// &mut t,
/// "SELECT id, name FROM products WHERE ",
/// " id = "
/// )
/// // order by id
/// .with_sorting("id ASC")
/// // 100 rows per db query
/// .with_size(100);
/// let products: Vec<model::Product> = multi.load(4, vec![1, 2, 3, 4].into_iter(), |_| Error::All.into())
/// .await.unwrap();
/// t.commit().await.unwrap();
/// }
/// ```
pub struct MultiLoad<'transaction, 'transaction2, 'header, 'condition, T> {
pool: &'transaction mut sqlx::Transaction<'transaction2, sqlx::Postgres>,
header: &'header str,
condition: &'condition str,
sort: Option<String>,
size: usize,
__phantom: std::marker::PhantomData<T>,
}
impl<'transaction, 'transaction2, 'header, 'condition, T>
MultiLoad<'transaction, 'transaction2, 'header, 'condition, T>
where
T: for<'r> sqlx::FromRow<'r, sqlx::postgres::PgRow> + Send + Unpin,
{
pub fn new(
pool: &'transaction mut sqlx::Transaction<'transaction2, sqlx::Postgres>,
header: &'header str,
condition: &'condition str,
) -> Self {
Self {
pool,
header,
condition,
sort: None,
size: 20,
__phantom: Default::default(),
}
}
pub fn with_sorting<S: Into<String>>(mut self, order: S) -> Self {
self.sort = Some(order.into());
self
}
pub fn with_size(mut self, size: usize) -> Self {
self.size = size;
self
}
pub async fn load<'query, Error, Ids>(
&mut self,
len: usize,
items: Ids,
on_error: Error,
) -> std::result::Result<Vec<T>, crate::Error>
where
Ids: Iterator<Item = model::RecordId>,
Error: Fn(sqlx::Error) -> crate::Error,
{
let mut res = Vec::new();
let size = self.size;
for ids in items.fold(
Vec::<Vec<model::RecordId>>::with_capacity(len),
|mut v, id| {
let last_len = v.last().map(|v| v.len());
if last_len == Some(size) || last_len == None {
v.push(Vec::with_capacity(size));
}
v.last_mut().unwrap().push(id);
v
},
) {
let query: String = self.header.into();
let mut query = ids.iter().enumerate().fold(query, |mut q, (idx, _id)| {
if idx != 0 {
q.push_str(" OR");
}
q.push_str(&format!(" {} ${}", self.condition, idx + 1));
q
});
if let Some(s) = self.sort.as_deref() {
query.push_str("\nORDER BY ");
query.push_str(s);
query.push(' ');
}
let q = sqlx::query_as_with(
query.as_str(),
ids.into_iter()
.fold(sqlx::postgres::PgArguments::default(), |mut args, id| {
args.add(id);
args
}),
);
let records: Vec<T> = match q.fetch_all(&mut *self.pool).await {
Ok(rec) => rec,
Err(e) => return Err(on_error(e)),
};
res.extend(records);
}
Ok(res)
}
}