Versions |
0.1.0.0, 0.1.1.0, 0.1.2.0, 0.1.2.1, 0.2.0.0, 0.2.1.0, 0.2.1.1, 0.2.1.2, 0.2.2, 0.2.2, 0.2.3, 0.2.4, 0.2.5.0, 0.2.5.1, 0.2.5.2 |
Change log |
ChangeLog.md |
Dependencies |
aeson (>=1.4 && <1.5), aeson-gadt-th, base (>=4.8 && <4.13), containers (>=0.5 && <0.7), dependent-map (>=0.3 && <0.4), dependent-sum (>=0.6.1 && <0.7), dependent-sum-template (>=0.1 && <0.2), template-haskell (>=2.11.0 && <2.15), th-abstraction (>=0.3.1.0 && <0.4), th-extras (>=0.0.0.4 && <0.1), transformers (>=0.5 && <0.6) [details] |
License |
BSD-3-Clause |
Copyright |
2019 Obsidian Systems LLC |
Author |
Obsidian Systems LLC |
Maintainer |
maintainer@obsidian.systems |
Category |
JSON |
Source repo |
head: git clone git://github.com/obsidiansystems/aeson-gadt-th.git |
Uploaded |
by abrar at 2019-12-16T15:19:43Z |
aeson-gadt-th
Provides Template Haskell expressions for deriving ToJSON
and FromJSON
instances for GADTs.
Example Usage:
> {-# LANGUAGE GADTs #-}
> {-# LANGUAGE KindSignatures #-}
> {-# LANGUAGE TemplateHaskell #-}
> {-# LANGUAGE FlexibleContexts #-}
> {-# LANGUAGE FlexibleInstances #-}
> {-# LANGUAGE UndecidableInstances #-}
> {-# LANGUAGE MultiParamTypeClasses #-}
> {-# OPTIONS_GHC -ddump-splices #-}
>
> import Data.Aeson
> import Data.Aeson.GADT.TH
>
> import Data.Dependent.Map (DMap, Some(..))
> import Data.Dependent.Sum (DSum)
> import Data.Functor.Identity
> import Data.GADT.Compare
> import Data.GADT.Show.TH
>
> data A :: * -> * where
> A_a :: A a
> A_b :: Int -> A ()
>
> deriveJSONGADT ''A
> deriveGShow ''A
>
> data B c :: * -> * where
> B_a :: c -> A a -> B c a
> B_x :: B c a
>
> deriveJSONGADT ''B
>
> data C t :: * -> * where
> C_t :: t -> C t t
>
> deriveJSONGADT ''C
>
> data D t x :: * -> * where
> D_t :: t -> D t x t
> D_x :: x -> D t x x
> D_i :: Int -> D t x Int
>
> deriveJSONGADT ''D
>
> data Auth token a where
> Auth_Login :: String -> String -> Auth token (Either String token)
>
> deriveJSONGADT ''Auth
>
> -- Some real-world-ish examples.
>
> -- | Edit operations for `LabelledGraph`
> data LabelledGraphEdit v vm em :: * -> * where
> LabelledGraphEdit_ClearAll :: LabelledGraphEdit v vm em ()
> LabelledGraphEdit_AddVertex :: vm -> LabelledGraphEdit v vm em v
> LabelledGraphEdit_AddEdge :: v -> v -> em -> LabelledGraphEdit v vm em ()
> LabelledGraphEdit_SetVertexProperties :: v -> vm -> LabelledGraphEdit v vm em ()
> LabelledGraphEdit_SetEdgeProperties :: v -> v -> em -> LabelledGraphEdit v vm em ()
>
> -- | PropertyGraphEdit operatios for `PropertyGraph`
> data PropertyGraphEdit v vp ep r where
> PropertyGraphEdit_ClearAll :: PropertyGraphEdit v vp ep ()
> PropertyGraphEdit_AddVertex :: (DMap vp Identity) -> PropertyGraphEdit v vp ep v
> PropertyGraphEdit_AddEdge :: v -> v -> (DMap ep Identity) -> PropertyGraphEdit v vp ep ()
> PropertyGraphEdit_SetVertexProperty :: GCompare vp => v -> DSum vp Identity -> PropertyGraphEdit v vp ep ()
> PropertyGraphEdit_SetEdgeProperty :: GCompare ep => v -> v -> DSum ep Identity -> PropertyGraphEdit v vp ep ()
>
> -- | View operations for `LabelledGraph`
> data LabelledGraphView v vm em :: * -> * where
> LabelledGraphView_All :: LabelledGraphView v vm em ()
> LabelledGraphView_GetVertexProperties :: v -> LabelledGraphView v vm em vm
> LabelledGraphView_GetEdgeProperties :: v -> v -> LabelledGraphView v vm em em
>
> deriveJSONGADT ''LabelledGraphEdit
> deriveJSONGADT ''PropertyGraphEdit
> deriveJSONGADT ''LabelledGraphView
>
> main :: IO ()
> main = do
> putStrLn $ unlines
> [ "Encoding of A_a:"
> , show $ encode A_a
> , "Decoding of encoded A_a:"
> , show (decode $ encode A_a :: Maybe (Some A))
> ]
>
> putStrLn $ unlines
> [ "Encoding of (A_b 1):"
> , show $ encode (A_b 1)
> , "Decoding of encoded (A_b 1):"
> , show (decode $ encode (A_b 1) :: Maybe (Some A))
> ]
>
> putStrLn $ unlines
> [ "Encoding of (B_a 'a' (A_b 1)):"
> , show $ encode (B_a 'a' (A_b 1))
> , "Decoding of encoded (B_a 'a' (A_b 1)):"
> , case (decode $ encode (B_a 'a' (A_b 1)) :: Maybe (Some (B Char))) of
> Just (Some (B_a 'a' (A_b 1))) -> "Succeeded"
> _-> "Failed"
> ]