generic-lens-1.0.0.2: src/Data/Generics/Product/Positions.hs
{-# LANGUAGE TypeInType #-}
{-# LANGUAGE PartialTypeSignatures #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE AllowAmbiguousTypes #-}
{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE KindSignatures #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
-----------------------------------------------------------------------------
-- |
-- Module : Data.Generics.Product.Positions
-- Copyright : (C) 2017 Csongor Kiss
-- License : BSD3
-- Maintainer : Csongor Kiss <kiss.csongor.kiss@gmail.com>
-- Stability : experimental
-- Portability : non-portable
--
-- Derive positional product type getters and setters generically.
--
-----------------------------------------------------------------------------
module Data.Generics.Product.Positions
( -- *Lenses
-- $setup
HasPosition (..)
, HasPosition' (..)
, getPosition
, setPosition
) where
import Data.Generics.Internal.VL.Lens as VL
import Data.Generics.Internal.Void
import Data.Generics.Internal.Families
import Data.Generics.Product.Internal.Positions
import Data.Generics.Product.Internal.GLens
import Data.Kind (Constraint, Type)
import Data.Type.Bool (type (&&))
import GHC.Generics
import GHC.TypeLits (type (<=?), Nat, TypeError, ErrorMessage(..))
import Data.Generics.Internal.Profunctor.Lens as P
import Data.Coerce
-- $setup
-- == /Running example:/
--
-- >>> :set -XTypeApplications
-- >>> :set -XDataKinds
-- >>> :set -XDeriveGeneric
-- >>> :set -XGADTs
-- >>> :set -XFlexibleContexts
-- >>> import GHC.Generics
-- >>> :m +Data.Generics.Internal.VL.Lens
-- >>> :m +Data.Function
-- >>> :{
-- data Human = Human
-- { name :: String
-- , age :: Int
-- , address :: String
-- }
-- deriving (Generic, Show)
-- human :: Human
-- human = Human "Tunyasz" 50 "London"
-- :}
-- |Records that have a field at a given position.
class HasPosition (i :: Nat) s t a b | s i -> a, t i -> b, s i b -> t, t i a -> s where
-- |A lens that focuses on a field at a given position. Compatible with the
-- lens package's 'Control.Lens.Lens' type.
--
-- >>> human ^. position @1
-- "Tunyasz"
-- >>> human & position @3 .~ "Berlin"
-- Human {name = "Tunyasz", age = 50, address = "Berlin"}
--
-- === /Type errors/
--
-- >>> human & position @4 .~ "Berlin"
-- ...
-- ... The type Human does not contain a field at position 4
-- ...
position :: VL.Lens s t a b
class HasPosition' (i :: Nat) s a | s i -> a where
position' :: VL.Lens s s a a
getPosition :: forall i s a. HasPosition' i s a => s -> a
getPosition s = s ^. position' @i
setPosition :: forall i s a. HasPosition' i s a => a -> s -> s
setPosition = VL.set (position' @i)
instance
( Generic s
, ErrorUnless i s (0 <? i && i <=? Size (Rep s))
, cs ~ CRep s
, Coercible (Rep s) cs
, GLens' (HasTotalPositionPSym i) cs a
) => HasPosition' i s a where
position' f s = VL.ravel (repLens . coerced @cs @cs . glens @(HasTotalPositionPSym i)) f s
{-# INLINE position' #-}
instance -- see Note [Changing type parameters]
( Generic s
, ErrorUnless i s (0 <? i && i <=? Size (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'
, GLens (HasTotalPositionPSym i) cs ct a b
, cs ~ CRep s
, ct ~ CRep t
, GLens' (HasTotalPositionPSym i) (CRep s') a'
, GLens' (HasTotalPositionPSym i) (CRep t') b'
, t ~ Infer s a' b
, s ~ Infer t b' a
, Coercible cs (Rep s)
, Coercible ct (Rep t)
) => HasPosition i s t a b where
position = VL.ravel (repLens . coerced @cs @ct . glens @(HasTotalPositionPSym i))
{-# INLINE position #-}
-- We wouldn't need the universal 'x' here if we could express above that
-- forall x. Coercible (cs x) (Rep s x), but this requires quantified
-- constraints
coerced :: forall s t s' t' x a b. (Coercible t t', Coercible s s')
=> P.ALens a b (s x) (t x) -> P.ALens a b (s' x) (t' x)
coerced = coerce
{-# INLINE coerced #-}
-- See Note [Uncluttering type signatures]
instance {-# OVERLAPPING #-} HasPosition f (Void1 a) (Void1 b) a b where
position = undefined
type family ErrorUnless (i :: Nat) (s :: Type) (hasP :: Bool) :: Constraint where
ErrorUnless i s 'False
= TypeError
( 'Text "The type "
':<>: 'ShowType s
':<>: 'Text " does not contain a field at position "
':<>: 'ShowType i
)
ErrorUnless _ _ 'True
= ()
data HasTotalPositionPSym :: Nat -> (TyFun (Type -> Type) Bool)
type instance Eval (HasTotalPositionPSym t) tt = HasTotalPositionP t tt