generic-lens-0.5.1.0: src/Data/Generics/Sum/Constructors.hs
{-# LANGUAGE AllowAmbiguousTypes #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE KindSignatures #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
-----------------------------------------------------------------------------
-- |
-- Module : Data.Generics.Sum.Constructors
-- Copyright : (C) 2017 Csongor Kiss
-- License : BSD3
-- Maintainer : Csongor Kiss <kiss.csongor.kiss@gmail.com>
-- Stability : experimental
-- Portability : non-portable
--
-- Derive constructor-name-based prisms generically.
--
-----------------------------------------------------------------------------
module Data.Generics.Sum.Constructors
( -- *Prisms
-- $setup
AsConstructor (..)
) where
import Data.Generics.Internal.Families
import Data.Generics.Internal.Lens
import Data.Generics.Internal.Void
import Data.Generics.Sum.Internal.Constructors
import Data.Kind (Constraint, Type)
import GHC.Generics (Generic (Rep))
import GHC.TypeLits (Symbol, TypeError, ErrorMessage (..))
-- $setup
-- == /Running example:/
--
-- >>> :set -XTypeApplications
-- >>> :set -XDataKinds
-- >>> :set -XDeriveGeneric
-- >>> :set -XFlexibleContexts
-- >>> :set -XTypeFamilies
-- >>> import GHC.Generics
-- >>> :m +Data.Generics.Internal.Lens
-- >>> :m +Data.Generics.Product.Fields
-- >>> :m +Data.Function
-- >>> :{
-- data Animal a
-- = Dog (Dog a)
-- | Cat Name Age
-- | Duck Age
-- deriving (Generic, Show)
-- data Dog a
-- = MkDog
-- { name :: Name
-- , age :: Age
-- , fieldA :: a
-- }
-- deriving (Generic, Show)
-- type Name = String
-- type Age = Int
-- dog, cat, duck :: Animal Int
-- dog = Dog (MkDog "Shep" 3 30)
-- cat = Cat "Mog" 5
-- duck = Duck 2
-- :}
-- |Sums that have a constructor with a given name.
class AsConstructor (ctor :: Symbol) s t a b | ctor s -> a, ctor t -> b where
-- |A prism that projects a named constructor from a sum. Compatible with the
-- lens package's 'Control.Lens.Prism' type.
--
-- >>> dog ^? _Ctor @"Dog"
-- Just (MkDog {name = "Shep", age = 3, fieldA = 30})
--
-- >>> dog ^? _Ctor @"Cat"
-- Nothing
--
-- >>> cat ^? _Ctor @"Cat"
-- Just ("Mog",5)
--
-- >>> _Ctor @"Cat" # ("Garfield", 6) :: Animal Int
-- Cat "Garfield" 6
--
-- === /Type errors/
--
-- >>> cat ^? _Ctor @"Turtle"
-- ...
-- ...
-- ... The type Animal Int does not contain a constructor named "Turtle"
-- ...
_Ctor :: Prism s t a b
instance
( Generic s
, ErrorUnless ctor s (HasCtorP ctor (Rep s))
, Generic t
-- see Note [CPP in instance constraints]
#if __GLASGOW_HASKELL__ < 802
, '(s', t') ~ '(Proxied s, Proxied t)
#else
, s' ~ Proxied s
, t' ~ Proxied t
#endif
, Generic s'
, Generic t'
, GAsConstructor' ctor (Rep s) a
, GAsConstructor' ctor (Rep s') a'
, GAsConstructor ctor (Rep s) (Rep t) a b
, t ~ Infer s a' b
, GAsConstructor' ctor (Rep t') b'
, s ~ Infer t b' a
) => AsConstructor ctor s t a b where
_Ctor = repIso . _GCtor @ctor
-- See Note [Uncluttering type signatures]
instance {-# OVERLAPPING #-} AsConstructor ctor (Void1 a) (Void1 b) a b where
_Ctor = undefined
type family ErrorUnless (ctor :: Symbol) (s :: Type) (contains :: Bool) :: Constraint where
ErrorUnless ctor s 'False
= TypeError
( 'Text "The type "
':<>: 'ShowType s
':<>: 'Text " does not contain a constructor named "
':<>: 'ShowType ctor
)
ErrorUnless _ _ 'True
= ()