Last active
August 29, 2015 14:13
-
-
Save khibino/acab225b0e28f2ebc964 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE FlexibleContexts #-} | |
module FirstClassWhere where | |
import Control.Applicative ((<$>)) | |
import Database.Relational.Query | |
import Data.Int | |
import Data.Time | |
import Model (Person, person) | |
import qualified Model as Person | |
type Sex = Int32 | |
whereBySex :: MonadRestrict Flat m | |
=> Projection Flat Person | |
-> m (PlaceHolders Sex) | |
whereBySex p = (fst <$>) . placeholder | |
$ \ph' -> wheres $ p ! Person.sex' .=. ph' | |
whereBirthBetween :: MonadRestrict Flat m | |
=> Projection Flat Person | |
-> m (PlaceHolders (Day, Day)) | |
whereBirthBetween p = | |
(fst <$>) . placeholder $ \ph' -> do | |
let birth = p ! Person.day' | |
wheres $ ph' ! fst' .<=. birth `and'` birth .<=. ph' ! snd' | |
findBySex :: Relation Sex Person | |
findBySex = relation' $ do | |
p <- query person | |
sph <- whereBySex p | |
return (sph, p) | |
findByBirthBetween :: Relation (Day, Day) Person | |
findByBirthBetween = relation' $ do | |
p <- query person | |
bph <- whereBirthBetween p | |
return (bph, p) | |
findBySexAndBirthBetween :: Relation (Sex, (Day, Day)) Person | |
findBySexAndBirthBetween = relation' $ do | |
p <- query person | |
sph <- whereBySex p | |
bph <- whereBirthBetween p | |
return (sph >< bph, p) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE TemplateHaskell #-} | |
{-# LANGUAGE FlexibleInstances #-} | |
{-# LANGUAGE MultiParamTypeClasses #-} | |
module Model where | |
import Data.Int (Int32) | |
import Data.Time | |
import Database.HDBC.Record.Persistable () | |
import Database.Relational.Query (defaultConfig) | |
import Database.Relational.Query.TH (defineTableDefault) | |
$(defineTableDefault defaultConfig "TEST" "person" | |
[ ("name", [t| String |]) | |
, ("day" , [t| Day |]) | |
, ("sex" , [t| Int32 |]) | |
] [] [0] $ Just 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment