|
| 1 | +use crate::{ |
| 2 | + ConnectionTrait, DbErr, EntityTrait, FromQueryResult, Paginator, PaginatorTrait, QuerySelect, |
| 3 | + Select, SelectModel, Selector, SelectorTrait, |
| 4 | +}; |
| 5 | +use std::num::NonZeroU64; |
| 6 | + |
| 7 | +#[derive(Debug)] |
| 8 | +pub struct Limiter<'db, C, S> |
| 9 | +where |
| 10 | + C: ConnectionTrait, |
| 11 | + S: SelectorTrait + 'db, |
| 12 | +{ |
| 13 | + db: &'db C, |
| 14 | + selector: Selector<S>, |
| 15 | + paginator: Paginator<'db, C, S>, |
| 16 | +} |
| 17 | + |
| 18 | +impl<'db, C, S> Limiter<'db, C, S> |
| 19 | +where |
| 20 | + C: ConnectionTrait, |
| 21 | + S: SelectorTrait + 'db, |
| 22 | +{ |
| 23 | + pub async fn fetch(self) -> Result<Vec<S::Item>, DbErr> { |
| 24 | + self.selector.all(self.db).await |
| 25 | + } |
| 26 | + |
| 27 | + pub async fn total(&self) -> Result<u64, DbErr> { |
| 28 | + self.paginator.num_items().await |
| 29 | + } |
| 30 | +} |
| 31 | + |
| 32 | +pub trait LimiterTrait<'db, C> |
| 33 | +where |
| 34 | + C: ConnectionTrait, |
| 35 | +{ |
| 36 | + type Selector: SelectorTrait + 'db; |
| 37 | + |
| 38 | + fn limiting(self, db: &'db C, offset: u64, limit: u64) -> Limiter<'db, C, Self::Selector>; |
| 39 | +} |
| 40 | + |
| 41 | +impl<'db, C, M, E> LimiterTrait<'db, C> for Select<E> |
| 42 | +where |
| 43 | + C: ConnectionTrait, |
| 44 | + E: EntityTrait<Model = M>, |
| 45 | + M: FromQueryResult + Sized + Send + Sync + 'db, |
| 46 | +{ |
| 47 | + type Selector = SelectModel<M>; |
| 48 | + |
| 49 | + fn limiting(self, db: &'db C, offset: u64, limit: u64) -> Limiter<'db, C, Self::Selector> { |
| 50 | + let selector = self |
| 51 | + .clone() |
| 52 | + .limit(NonZeroU64::new(limit).map(|limit| limit.get())) |
| 53 | + .offset(NonZeroU64::new(limit).map(|limit| limit.get())) |
| 54 | + .into_model(); |
| 55 | + |
| 56 | + Limiter { |
| 57 | + db, |
| 58 | + paginator: self.clone().paginate(db, 1), |
| 59 | + selector, |
| 60 | + } |
| 61 | + } |
| 62 | +} |
0 commit comments