opaleye
basic tutorial给出了如何在记录类型和查询中使用用户定义类型的示例:
data Birthday' a b = Birthday { bdName :: a, bdDay :: b }
type Birthday = Birthday' String Day
type BirthdayColumn = Birthday' (Column PGText) (Column PGDate)
birthdayTable :: Table BirthdayColumn BirthdayColumn
birthdayTable = table "birthdayTable"
(pBirthday Birthday { bdName = tableColumn "name"
, bdDay = tableColumn "birthday" })
使用pBirthday
生成函数TemplateHaskell
:
$(makeAdaptorAndInstance "pBirthday" ''Birthday')
makeAdaptorAndInstance
中定义了TemplateHaskell
。
我想避免使用opaleye
。 Data.Functor.Product.TH
教程仅提及makeAdaptorAndInstance
的文档,该文档仅解释instance (ProductProfunctor p, Default p a a', Default p b b', Default p c c')
=> Default p (Birthday a b c) (Birthday a' b' c')
生成的实例将为:
pBirthday
和pBirthday :: ProductProfunctor p =>
Birthday (p a a') (p b b') (p c c') -> p (Birthday a b c) (Birthday a' b' c')
将具有以下类型:
String
但我找不到任何关于如何手动填写这些功能的信息。
答案 0 :(得分:3)
GHC有一个-ddump-splices
option来查看使用TH生成的代码。我认为这应该是有用的,因为它可能看起来不太糟糕。 (使用-ddump-to-file
和-dumpdir
来控制输出位置。)
以下是编写它的一种方法:
instance (ProductProfunctor p, Default p a a', Default p b b') => Default p (Birthday' a b) (Birthday' a' b') where
def :: p (Birthday' a b) (Birthday' a' b')
def = pBirthday (Birthday def def)
pBirthday :: ProductProfunctor p =>
Birthday' (p a a') (p b b') -> p (Birthday a b) (Birthday a' b')
pBirthday (Birthday pa pb) =
Birthday `rmap` lmap bdName pa **** lmap bdDay pb
-- It generalizes the applicative construct
-- "Birthday <$> pa <*> pb"