编辑:更新为自动派生AtoB 类。
这是一个似乎可行的解决方案。
没有 Monad 的通用相位映射
这里是预赛:
{-# LANGUAGE DataKinds, DeriveGeneric, FlexibleContexts,
FlexibleInstances, KindSignatures, MultiParamTypeClasses,
StandaloneDeriving, TypeFamilies, TypeFamilyDependencies,
TypeSynonymInstances, UndecidableInstances #-}
{-# OPTIONS_GHC -Wall #-}
import qualified GHC.Generics as GHC
import Generics.SOP
现在,假设我们有一个Phase:
data Phase = A | B
以及该字段的Selector:
data Selector = Bar | Baz
有一个类型类,其中包含 (1) 关联类型族,为每个可能的阶段提供与选择器关联的具体字段类型,以及 (2) 阶段之间映射的接口:
class IsField (sel :: Selector) where
type Field (p :: Phase) sel = r | r -> sel
fieldAtoB :: Field 'A sel -> Field 'B sel
给定一个包含Fields 和非Fields 的通用实例的记录
data Foo p = Foo { bar :: Field p 'Bar
, baz :: Field p 'Baz
, num :: Int
} deriving (GHC.Generic)
deriving instance Show (Foo 'A)
deriving instance Show (Foo 'B)
instance Generic (Foo p)
还有一个Foo 'A 值:
foo0 :: Foo 'A
foo0 = Foo (BarA ()) (BazA ()) 1
我们想定义一个通用的相位映射gAtoB:
foo1 :: Foo 'B
foo1 = gAtoB foo0
使用来自IsField 类型类的每场相位图fieldAtoB。
关键步骤是定义一个单独的类型类AtoB 专用于阶段A-to-B 转换,以充当IsField 类型类的桥梁。这个AtoB 类型类将与generics-sop 机制结合使用,以逐个字段地约束/匹配具体阶段A 和B 类型并分派到适当的fieldAtoB 阶段映射函数。这是课程:
class AtoB aty bty where
fieldAtoB' :: aty -> bty
幸运的是,可以为Fields 自动派生实例,尽管它需要(大部分无害的)UndecidableInstances 扩展:
instance (IsField sel, Field 'A sel ~ aty, Field 'B sel ~ bty)
=> AtoB aty bty where
fieldAtoB' = fieldAtoB
我们可以为非Fields 定义一个实例:
instance {-# OVERLAPPING #-} AtoB ty ty where
fieldAtoB' = id
请注意这里的一个限制——如果您在不同阶段定义具有相同具体类型的Field,则将使用与fieldAtoB' = id 重叠的实例,而fieldAtoB 将被忽略。
现在,对于一个特定的选择器Bar,其基础类型在各自的阶段应该是BarA和BarB,我们可以定义以下IsField实例:
-- Bar field
data BarA = BarA () deriving (Show) -- Field 'A 'Bar
data BarB = BarB () deriving (Show) -- Field 'B 'Bar
instance IsField 'Bar where
type Field 'A 'Bar = BarA -- defines the per-phase field types for 'Bar
type Field 'B 'Bar = BarB
fieldAtoB (BarA ()) = (BarB ()) -- defines the field phase map
我们可以为Baz提供类似的定义:
-- Baz field
data BazA = BazA () deriving (Show)
data BazB = BazB () deriving (Show)
instance IsField 'Baz where
type Field 'A 'Baz = BazA
type Field 'B 'Baz = BazB
fieldAtoB (BazA ()) = (BazB ())
现在,我们可以像这样定义通用的gAtoB 转换:
gAtoB :: (Generic (rcrd 'A), Code (rcrd 'A) ~ xssA,
Generic (rcrd 'B), Code (rcrd 'B) ~ xssB,
AllZip2 AtoB xssA xssB)
=> rcrd 'A -> rcrd 'B
gAtoB = to . gAtoBS . from
where
gAtoBS :: (AllZip2 AtoB xssA xssB) => SOP I xssA -> SOP I xssB
gAtoBS (SOP (Z xs)) = SOP (Z (gAtoBP xs))
gAtoBS (SOP (S _)) = error "not implemented"
gAtoBP :: (AllZip AtoB xsA xsB) => NP I xsA -> NP I xsB
gAtoBP Nil = Nil
gAtoBP (I x :* xs) = I (fieldAtoB' x) :* gAtoBP xs
可能有一种方法可以使用 generics-sop 组合符而不是这个明确的定义来做到这一点,但我想不通。
无论如何,gAtoB 适用于 Foo 记录,根据上面 foo1 的定义,但它也适用于 Quux 记录:
data Quux p = Quux { bar2 :: Field p 'Bar
, num2 :: Int
} deriving (GHC.Generic)
deriving instance Show (Quux 'A)
deriving instance Show (Quux 'B)
instance Generic (Quux p)
quux0 :: Quux 'A
quux0 = Quux (BarA ()) 2
quux1 :: Quux 'B
quux1 = gAtoB quux0
main :: IO ()
main = do
print foo0
print foo1
print quux0
print quux1
请注意,我使用了带有 Selector 数据类型的选择器,但您可以将其重写为使用 (a :: Phase -> *) 类型的选择器,就像我在最后的示例中所做的那样。
Monad 上的通用阶段遍历
现在,您需要在 IO monad 上执行此操作。这是一个修改后的版本:
{-# LANGUAGE DataKinds, DeriveGeneric, FlexibleContexts,
FlexibleInstances, KindSignatures, MultiParamTypeClasses,
StandaloneDeriving, TypeFamilies, TypeFamilyDependencies,
TypeSynonymInstances, UndecidableInstances #-}
{-# OPTIONS_GHC -Wall #-}
import qualified GHC.Generics as GHC
import Generics.SOP
import Control.Applicative
data Phase = A | B
data Selector = Bar | Baz
class IsField (sel :: Selector) where
type Field (p :: Phase) sel = r | r -> sel
fieldAtoB :: Field 'A sel -> IO (Field 'B sel)
data Foo p = Foo { bar :: Field p 'Bar
, baz :: Field p 'Baz
, num :: Int
} deriving (GHC.Generic)
deriving instance Show (Foo 'A)
deriving instance Show (Foo 'B)
instance Generic (Foo p)
foo0 :: Foo 'A
foo0 = Foo (BarA ()) (BazA ()) 1
foo1 :: IO (Foo 'B)
foo1 = gAtoB foo0
-- fieldAtoB :: Field 'A sel -> Field 'B sel
class AtoB aty bty where
fieldAtoB' :: aty -> IO bty
instance (IsField sel, Field 'A sel ~ aty, Field 'B sel ~ bty) => AtoB aty bty where
fieldAtoB' = fieldAtoB
instance {-# OVERLAPPING #-} AtoB ty ty where
fieldAtoB' = return
-- Bar field
data BarA = BarA () deriving (Show) -- Field 'A 'Bar
data BarB = BarB () deriving (Show) -- Field 'B 'Bar
instance IsField 'Bar where -- defines the per-phase field types for 'Bar
type Field 'A 'Bar = BarA
type Field 'B 'Bar = BarB
fieldAtoB (BarA ()) = return (BarB ()) -- defines the field phase map
-- Baz field
data BazA = BazA () deriving (Show)
data BazB = BazB () deriving (Show)
instance IsField 'Baz where
type Field 'A 'Baz = BazA
type Field 'B 'Baz = BazB
fieldAtoB (BazA ()) = return (BazB ())
gAtoB :: (Generic (rcrd 'A), Code (rcrd 'A) ~ xssA,
Generic (rcrd 'B), Code (rcrd 'B) ~ xssB,
AllZip2 AtoB xssA xssB)
=> rcrd 'A -> IO (rcrd 'B)
gAtoB r = to <$> (gAtoBS (from r))
where
gAtoBS :: (AllZip2 AtoB xssA xssB) => SOP I xssA -> IO (SOP I xssB)
gAtoBS (SOP (Z xs)) = SOP . Z <$> gAtoBP xs
gAtoBS (SOP (S _)) = error "not implemented"
gAtoBP :: (AllZip AtoB xsA xsB) => NP I xsA -> IO (NP I xsB)
gAtoBP Nil = return Nil
gAtoBP (I x :* xs) = I <$> fieldAtoB' x <**> pure (:*) <*> gAtoBP xs
data Quux p = Quux { bar2 :: Field p 'Bar
, num2 :: Int
} deriving (GHC.Generic)
deriving instance Show (Quux 'A)
deriving instance Show (Quux 'B)
instance Generic (Quux p)
quux0 :: Quux 'A
quux0 = Quux (BarA ()) 2
quux1 :: IO (Quux 'B)
quux1 = gAtoB quux0
main :: IO ()
main = do
print foo0
foo1val <- foo1
print foo1val
print quux0
quux1val <- quux1
print quux1val
适应您的问题
这是一个重写的版本,以尽可能接近您的原始设计。还有一个关键限制是,具有相同配置时间和运行时间类型的Config 将使用toRunTime' = return,而不是在其Config 实例中给出的任何其他定义。
{-# LANGUAGE DataKinds, DeriveGeneric, FlexibleContexts,
FlexibleInstances, KindSignatures, MultiParamTypeClasses,
StandaloneDeriving, TypeFamilies, TypeFamilyDependencies,
TypeSynonymInstances, UndecidableInstances #-}
{-# OPTIONS_GHC -Wall #-}
import qualified GHC.Generics as GHC
import Generics.SOP
import Control.Applicative
data UsagePhase = ConfigTime | RunTime
class Config (sel :: UsagePhase -> *) where
type Phase (p :: UsagePhase) sel = r | r -> sel
toRunTime :: Phase 'ConfigTime sel -> IO (Phase 'RunTime sel)
class ConfigRun cty rty where
toRunTime' :: cty -> IO rty
instance (Config (sel :: UsagePhase -> *),
Phase 'ConfigTime sel ~ cty,
Phase 'RunTime sel ~ rty) => ConfigRun cty rty where
toRunTime' = toRunTime
instance {-# OVERLAPPING #-} ConfigRun ty ty where
toRunTime' = return
-- DatabaseConfig field
data DatabaseConfig (p :: UsagePhase)
data ConnectInfo = ConnectInfo () deriving (Show)
data ConnectionPool = ConnectionPool () deriving (Show)
instance Config DatabaseConfig where
type Phase 'ConfigTime DatabaseConfig = ConnectInfo
type Phase 'RunTime DatabaseConfig = ConnectionPool
toRunTime (ConnectInfo ()) = return (ConnectionPool ())
-- KinesisConfig field
data KinesisConfig (p :: UsagePhase)
data KinesisInfo = KinesisInfo () deriving (Show)
data KinesisStream = KinesisStream () deriving (Show)
instance Config KinesisConfig where
type Phase 'ConfigTime KinesisConfig = KinesisInfo
type Phase 'RunTime KinesisConfig = KinesisStream
toRunTime (KinesisInfo ()) = return (KinesisStream ())
-- CfgMyHostName field
data CfgMyHostName = CfgMyHostName String deriving (Show)
data UiServerConfig (p :: UsagePhase) = CfgUiServerC
{ userDatabase :: Phase p DatabaseConfig
, cmsDatabase :: Phase p DatabaseConfig
, kinesisStream :: Phase p KinesisConfig
, myHostName :: CfgMyHostName
, myPort :: Int
} deriving (GHC.Generic)
deriving instance Show (UiServerConfig 'ConfigTime)
deriving instance Show (UiServerConfig 'RunTime)
instance Generic (UiServerConfig p)
gToRunTime :: (Generic (rcrd 'ConfigTime), Code (rcrd 'ConfigTime) ~ xssA,
Generic (rcrd 'RunTime), Code (rcrd 'RunTime) ~ xssB,
AllZip2 ConfigRun xssA xssB)
=> rcrd 'ConfigTime -> IO (rcrd 'RunTime)
gToRunTime r = to <$> (gToRunTimeS (from r))
where
gToRunTimeS :: (AllZip2 ConfigRun xssA xssB) => SOP I xssA -> IO (SOP I xssB)
gToRunTimeS (SOP (Z xs)) = SOP . Z <$> gToRunTimeP xs
gToRunTimeS (SOP (S _)) = error "not implemented"
gToRunTimeP :: (AllZip ConfigRun xsA xsB) => NP I xsA -> IO (NP I xsB)
gToRunTimeP Nil = return Nil
gToRunTimeP (I x :* xs) = I <$> toRunTime' x <**> pure (:*) <*> gToRunTimeP xs
cfg0 :: UiServerConfig 'ConfigTime
cfg0 = CfgUiServerC (ConnectInfo ()) (ConnectInfo ()) (KinesisInfo())
(CfgMyHostName "localhost") 10
main :: IO ()
main = do
print cfg0
run0 <- gToRunTime cfg0
print run0