opaleye-sqlite-0.0.0.0: src/Opaleye/SQLite/Internal/Aggregate.hs
module Opaleye.SQLite.Internal.Aggregate where
import Control.Applicative (Applicative, pure, (<*>))
import qualified Data.Profunctor as P
import qualified Data.Profunctor.Product as PP
import qualified Opaleye.SQLite.Internal.PackMap as PM
import qualified Opaleye.SQLite.Internal.PrimQuery as PQ
import qualified Opaleye.SQLite.Internal.Tag as T
import qualified Opaleye.SQLite.Internal.Column as C
import qualified Opaleye.SQLite.Internal.HaskellDB.PrimQuery as HPQ
{-|
An 'Aggregator' takes a collection of rows of type @a@, groups
them, and transforms each group into a single row of type @b@. This
corresponds to aggregators using @GROUP BY@ in SQL.
An 'Aggregator' corresponds closely to a 'Control.Foldl.Fold' from the
@foldl@ package. Whereas an 'Aggregator' @a@ @b@ takes each group of
type @a@ to a single row of type @b@, a 'Control.Foldl.Fold' @a@ @b@
takes a list of @a@ and returns a single row of type @b@.
-}
newtype Aggregator a b = Aggregator
(PM.PackMap (Maybe HPQ.AggrOp, HPQ.PrimExpr) HPQ.PrimExpr
a b)
makeAggr' :: Maybe HPQ.AggrOp -> Aggregator (C.Column a) (C.Column b)
makeAggr' m = Aggregator (PM.PackMap
(\f (C.Column e) -> fmap C.Column (f (m, e))))
makeAggr :: HPQ.AggrOp -> Aggregator (C.Column a) (C.Column b)
makeAggr = makeAggr' . Just
runAggregator :: Applicative f => Aggregator a b
-> ((Maybe HPQ.AggrOp, HPQ.PrimExpr) -> f HPQ.PrimExpr) -> a -> f b
runAggregator (Aggregator a) = PM.traversePM a
aggregateU :: Aggregator a b
-> (a, PQ.PrimQuery, T.Tag) -> (b, PQ.PrimQuery, T.Tag)
aggregateU agg (c0, primQ, t0) = (c1, primQ', T.next t0)
where (c1, projPEs) =
PM.run (runAggregator agg (extractAggregateFields t0) c0)
primQ' = PQ.Aggregate projPEs primQ
extractAggregateFields :: T.Tag -> (Maybe HPQ.AggrOp, HPQ.PrimExpr)
-> PM.PM [(HPQ.Symbol, (Maybe HPQ.AggrOp, HPQ.PrimExpr))] HPQ.PrimExpr
extractAggregateFields = PM.extractAttr "result"
-- { Boilerplate instances
instance Functor (Aggregator a) where
fmap f (Aggregator g) = Aggregator (fmap f g)
instance Applicative (Aggregator a) where
pure = Aggregator . pure
Aggregator f <*> Aggregator x = Aggregator (f <*> x)
instance P.Profunctor Aggregator where
dimap f g (Aggregator q) = Aggregator (P.dimap f g q)
instance PP.ProductProfunctor Aggregator where
empty = PP.defaultEmpty
(***!) = PP.defaultProfunctorProduct
instance PP.SumProfunctor Aggregator where
Aggregator x1 +++! Aggregator x2 = Aggregator (x1 PP.+++! x2)
-- }