waargonaut-0.2.0.2: src/Waargonaut/Decode/Types.hs
{-# LANGUAGE DeriveFunctor #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE TypeFamilies #-}
-- |
--
-- Types for the succinct data structure decoder
--
module Waargonaut.Decode.Types
( ParseFn
, SuccinctCursor
, CursorHistory
, Decoder (..)
, DecodeResult (..)
, JCurs (..)
) where
import Control.Lens (Rewrapped, Wrapped (..),
iso)
import Control.Monad.Except (MonadError)
import Control.Monad.Morph (MFunctor (..),
MMonad (..))
import Control.Monad.Reader (MonadReader,
ReaderT (..))
import Control.Monad.State (MonadState)
import Control.Monad.Trans.Class (MonadTrans (lift))
import GHC.Word (Word64)
import Data.ByteString (ByteString)
import Data.Vector.Storable (Vector)
import HaskellWorks.Data.BalancedParens (SimpleBalancedParens)
import HaskellWorks.Data.Json.Cursor (JsonCursor (..))
import HaskellWorks.Data.Positioning (Count)
import HaskellWorks.Data.RankSelect.Poppy512 (Poppy512)
import Waargonaut.Decode.Internal (CursorHistory',
DecodeError (..),
DecodeResultT (..))
import Waargonaut.Types (Json)
-- | We define the index of our 'CursorHistory'' to be the 'HaskellWorks.Data.Positioning.Count'.
type CursorHistory =
CursorHistory' Count
-- | Convenience alias defined for the concrete 'JsonCursor' type.
type SuccinctCursor =
JsonCursor ByteString Poppy512 (SimpleBalancedParens (Vector Word64))
-- | Another convenience alias for the type of the function we will use to parse the input string
-- into the 'Json' structure.
type ParseFn =
ByteString -> Either DecodeError Json
-- | 'Decoder' type that is used directly to convert 'Json' structures to other
-- data types.
--
newtype Decoder f a = Decoder
{ runDecoder :: ParseFn -> JCurs -> DecodeResultT Count DecodeError f a
}
deriving Functor
instance Monad f => Applicative (Decoder f) where
pure a = Decoder $ \_ _ -> pure a
aToB <*> a = Decoder $ \p c ->
runDecoder aToB p c <*> runDecoder a p c
instance Monad f => Monad (Decoder f) where
return = pure
a >>= aToFb = Decoder $ \p c -> do
r <- runDecoder a p c
runDecoder (aToFb r) p c
instance MFunctor Decoder where
hoist nat (Decoder pjdr) = Decoder (\p -> hoist nat . pjdr p)
-- | Wrapper type for the 'SuccinctCursor'
newtype JCurs = JCurs
{ unJCurs :: SuccinctCursor
}
instance JCurs ~ t => Rewrapped JCurs t
instance Wrapped JCurs where
type Unwrapped JCurs = SuccinctCursor
_Wrapped' = iso unJCurs JCurs
-- | Provide some of the type parameters that the underlying 'DecodeResultT'
-- requires. This contains the state and error management as we walk around our
-- zipper and decode our JSON input.
--
-- Addtionally we keep our parsing function in a 'ReaderT' such that it's
-- accessible for all of the decoding steps.
--
newtype DecodeResult f a = DecodeResult
{ unDecodeResult :: ReaderT ParseFn (DecodeResultT Count DecodeError f) a
}
deriving ( Functor
, Applicative
, Monad
, MonadReader ParseFn
, MonadError DecodeError
, MonadState CursorHistory
)
instance MonadTrans DecodeResult where
lift = DecodeResult . lift . lift
instance MFunctor DecodeResult where
hoist nat (DecodeResult dr) = DecodeResult (hoist (hoist nat) dr)
instance MMonad DecodeResult where
embed f (DecodeResult dr) = DecodeResult . ReaderT $ \p ->
embed (flip runReaderT p . unDecodeResult . f) $ runReaderT dr p