2020-04-16 16:14:17 +03:00
|
|
|
{-# LANGUAGE DeriveFunctor #-}
|
|
|
|
{-# LANGUAGE DerivingVia #-}
|
|
|
|
{-# LANGUAGE FlexibleInstances #-}
|
|
|
|
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
|
|
|
|
{-# LANGUAGE InstanceSigs #-}
|
|
|
|
{-# LANGUAGE KindSignatures #-}
|
|
|
|
{-# LANGUAGE MultiParamTypeClasses #-}
|
|
|
|
{-# LANGUAGE PolyKinds #-}
|
|
|
|
{-# LANGUAGE QuantifiedConstraints #-}
|
|
|
|
{-# LANGUAGE RankNTypes #-}
|
|
|
|
{-# LANGUAGE ScopedTypeVariables #-}
|
|
|
|
{-# LANGUAGE StandaloneDeriving #-}
|
|
|
|
{-# LANGUAGE TypeApplications #-}
|
|
|
|
{-# LANGUAGE TypeOperators #-}
|
2020-04-16 16:01:45 +03:00
|
|
|
|
|
|
|
module Iso.Deriving
|
2020-04-16 16:14:17 +03:00
|
|
|
( As (..),
|
|
|
|
As1 (..),
|
|
|
|
As2 (..),
|
|
|
|
Inject (..),
|
|
|
|
Project (..),
|
|
|
|
Isomorphic (..),
|
|
|
|
)
|
2020-04-16 16:01:45 +03:00
|
|
|
where
|
|
|
|
|
2020-04-16 14:56:39 +03:00
|
|
|
import Control.Applicative
|
|
|
|
import Control.Category
|
2020-04-16 16:01:45 +03:00
|
|
|
import Data.Bifunctor ()
|
2020-04-16 16:14:17 +03:00
|
|
|
import Data.Profunctor (Profunctor (..))
|
|
|
|
import Prelude hiding ((.), id)
|
|
|
|
|
2020-04-16 16:01:45 +03:00
|
|
|
type Iso s t a b = forall p f. (Profunctor p, Functor f) => p a (f b) -> p s (f t)
|
2020-04-16 16:14:17 +03:00
|
|
|
|
2020-04-16 16:01:45 +03:00
|
|
|
type Iso' s a = Iso s s a a
|
|
|
|
|
|
|
|
iso :: (s -> a) -> (b -> t) -> Iso s t a b
|
|
|
|
iso sa bt = dimap sa (fmap bt)
|
2020-04-16 14:56:39 +03:00
|
|
|
|
|
|
|
-- |
|
|
|
|
-- @As a b@ is represented at runtime as @b@, but we know we can in fact
|
|
|
|
-- convert it into an @a@ with no loss of information. We can think of it has
|
|
|
|
-- having a *dual representation* as either @a@ or @b@.
|
|
|
|
--
|
2020-04-16 16:01:45 +03:00
|
|
|
-- type As1 :: k -> Type -> Type
|
2020-04-16 14:56:39 +03:00
|
|
|
newtype As a b = As b
|
|
|
|
|
|
|
|
-- |
|
|
|
|
-- Like @As@ for kind @k -> Type@.
|
|
|
|
--
|
2020-04-16 16:01:45 +03:00
|
|
|
-- type As1 :: k1 -> (k2 -> Type) -> k2 -> Type
|
2020-04-16 16:14:17 +03:00
|
|
|
newtype As1 f g a = As1 {getAs1 :: g a}
|
2020-04-16 14:56:39 +03:00
|
|
|
|
|
|
|
-- |
|
|
|
|
-- Like @As@ for kind @k1 -> k2 -> Type@.
|
|
|
|
--
|
2020-04-16 16:01:45 +03:00
|
|
|
-- type As2 :: k1 -> (k2 -> k3 -> Type) -> k2 -> k3 -> Type
|
2020-04-16 14:56:39 +03:00
|
|
|
newtype As2 f g a b = As2 (g a b)
|
|
|
|
|
2020-04-16 16:12:23 +03:00
|
|
|
class Inject a b where
|
|
|
|
inj :: a -> b
|
|
|
|
|
|
|
|
class Project a b where
|
|
|
|
prj :: b -> a
|
|
|
|
|
2020-04-16 14:56:39 +03:00
|
|
|
-- |
|
|
|
|
-- Laws: 'isom' is an isomorphism, that is:
|
|
|
|
--
|
|
|
|
-- @
|
|
|
|
-- view isom . view (from isom) = id = view (from isom) . view isom
|
|
|
|
-- @
|
2020-04-16 16:12:23 +03:00
|
|
|
class (Inject a b, Project a b) => Isomorphic a b where
|
2020-04-16 14:56:39 +03:00
|
|
|
isom :: Iso' a b
|
|
|
|
isom = iso inj prj
|
|
|
|
|
|
|
|
instance (Isomorphic a b, Num a) => Num (As a b) where
|
2020-04-16 16:14:17 +03:00
|
|
|
|
|
|
|
(As a) + (As b) =
|
|
|
|
As $ inj @a @b $ (prj a) + (prj b)
|
|
|
|
|
|
|
|
(As a) - (As b) =
|
|
|
|
As $ inj @a @b $ (prj a) - (prj b)
|
|
|
|
|
|
|
|
(As a) * (As b) =
|
|
|
|
As $ inj @a @b $ (prj a) * (prj b)
|
|
|
|
|
|
|
|
signum (As a) =
|
|
|
|
As $ inj @a @b $ signum (prj a)
|
|
|
|
|
|
|
|
abs (As a) =
|
|
|
|
As $ inj @a @b $ abs (prj a)
|
|
|
|
|
|
|
|
fromInteger x =
|
|
|
|
As $ inj @a @b $ fromInteger x
|
2020-04-16 14:56:39 +03:00
|
|
|
|
|
|
|
instance (Isomorphic a b, Eq a) => Eq (As a b) where
|
|
|
|
As a == As b = prj @a @b a == prj b
|
|
|
|
|
|
|
|
instance (Isomorphic a b, Ord a) => Ord (As a b) where
|
|
|
|
compare (As a) (As b) = prj @a @b a `compare` prj b
|
|
|
|
|
|
|
|
instance (Isomorphic a b, Semigroup a) => Semigroup (As a b) where
|
|
|
|
As a <> As b = As $ inj @a @b $ prj a <> prj b
|
|
|
|
|
|
|
|
instance (Isomorphic a b, Monoid a) => Monoid (As a b) where
|
|
|
|
mempty = As $ inj @a @b mempty
|
|
|
|
|
2020-04-16 16:14:17 +03:00
|
|
|
instance (forall x. Isomorphic (f x) (g x), Functor f) => Functor (As1 f g) where
|
2020-04-16 14:56:39 +03:00
|
|
|
fmap h (As1 x) = As1 $ inj $ fmap h $ prj @(f _) @(g _) x
|
|
|
|
|
2020-04-16 16:14:17 +03:00
|
|
|
instance (forall x. Isomorphic (f x) (g x), Applicative f) => Applicative (As1 f g) where
|
|
|
|
|
2020-04-16 16:16:22 +03:00
|
|
|
pure :: forall a. a -> As1 f g a
|
2020-04-16 14:56:39 +03:00
|
|
|
pure x = As1 $ inj @(f _) @(g _) $ pure x
|
|
|
|
|
2020-04-16 16:14:17 +03:00
|
|
|
(<*>) :: forall a b. As1 f g (a -> b) -> As1 f g a -> As1 f g b
|
2020-04-16 14:56:39 +03:00
|
|
|
As1 h <*> As1 x = As1 $ inj @(f b) @(g b) $ (prj @(f (a -> b)) @(g (a -> b)) h) <*> (prj @(f a) @(g a) x)
|
|
|
|
|
2020-04-16 16:14:17 +03:00
|
|
|
liftA2 :: forall a b c. (a -> b -> c) -> As1 f g a -> As1 f g b -> As1 f g c
|
2020-04-16 16:01:45 +03:00
|
|
|
liftA2 h (As1 x) (As1 y) = As1 $ inj @(f c) @(g c) $ liftA2 h (prj x) (prj y)
|
2020-04-16 14:56:39 +03:00
|
|
|
|
2020-04-16 16:14:17 +03:00
|
|
|
instance (forall x. Isomorphic (f x) (g x), Alternative f) => Alternative (As1 f g) where
|
|
|
|
|
|
|
|
empty :: forall a. As1 f g a
|
2020-04-16 14:56:39 +03:00
|
|
|
empty = As1 $ inj @(f a) @(g a) $ empty
|
|
|
|
|
2020-04-16 16:14:17 +03:00
|
|
|
(<|>) :: forall a. As1 f g a -> As1 f g a -> As1 f g a
|
2020-04-16 14:56:39 +03:00
|
|
|
As1 h <|> As1 x = As1 $ inj @(f a) @(g a) $ (prj @(f a) @(g a) h) <|> (prj @(f a) @(g a) x)
|
|
|
|
|
2020-04-16 16:14:17 +03:00
|
|
|
instance (forall x. Isomorphic (f x) (g x), Monad f) => Monad (As1 f g) where
|
|
|
|
(>>=) :: forall a b. As1 f g a -> (a -> As1 f g b) -> As1 f g b
|
2020-04-16 14:56:39 +03:00
|
|
|
As1 k >>= f = As1 $ inj @(f b) @(g b) $ (prj @(f a) @(g a) k) >>= prj . getAs1 . f
|
|
|
|
|
2020-04-16 16:14:17 +03:00
|
|
|
instance (forall x y. Isomorphic (f x y) (g x y), Category f) => Category (As2 f g) where
|
2020-04-16 14:56:39 +03:00
|
|
|
|
2020-04-16 16:14:17 +03:00
|
|
|
id :: forall a. As2 f g a a
|
|
|
|
id = As2 $ inj @(f _ _) @(g _ _) $ Control.Category.id @_ @a
|
2020-04-16 14:56:39 +03:00
|
|
|
|
2020-04-16 16:14:17 +03:00
|
|
|
(.) :: forall a b c. As2 f g b c -> As2 f g a b -> As2 f g a c
|
|
|
|
As2 f . As2 g =
|
|
|
|
As2 $ inj @(f a c) @(g a c) $
|
|
|
|
(Control.Category..)
|
|
|
|
(prj @(f b c) @(g b c) f)
|
|
|
|
(prj @(f a b) @(g a b) g)
|