keyed-vals
keyed-vals aims to provide a
narrow client for storing key-value collections in storage services like
Redis.
E.g,
- Redis supports many other features
- the abstract Handle declared in
keyed-vals
just provides combinators that operate on key-value collections stored in some backend
- so the redis implementation of Handle accesses collections in Redis without exposing its other features.
Example
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DerivingVia #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE StandaloneDeriving #-}
import Data.Aeson (FromJSON, ToJSON)
import Data.Text (Text)
import GHC.Generics (Generic)
import KeyedVals.Handle.Codec.Aeson (AesonOf(..))
import KeyedVals.Handle.Codec.HttpApiData (HttpApiDataOf(..))
import qualified KeyedVals.Handle.Mem as Mem
import KeyedVals.Handle.Typed
import Web.HttpApiData (FromHttpApiData (..), ToHttpApiData (..))
{- Usage is fairly simple:
- Declare 'PathOf' and possibly a 'VaryingPathOf' instance for
storable data types.
They describe how the data type is encoded and decoded and where in the
key-value store the data should be saved.
For example, given the following data type:
-}
data Person = Person
{ name :: Text
, age :: Int
} deriving (Eq, Show, Generic)
{- Suppose each @Person@ is to be stored as JSON, via the @Generic@
implementation, e.g,
-}
instance FromJSON Person
instance ToJSON Person
{- Also suppose each Person is stored with an @Int@ key. To enable that,
define a @newtype@ of @Int@, e.g,
-}
newtype PersonID = PersonID Int
deriving stock (Eq, Show)
deriving (ToHttpApiData, FromHttpApiData, Num, Ord) via Int
{- And then suppose the collection of @Person@s is stored at a specific fixed path
in the key-value store. E.g, it is to be used as a runtime cache to speed up
access to person data, so the path @/runtime/cache/persons@ is used.
To specify all of this, first define @DecodeKV@ and @EncodeKV@ instances for
@Person@:
-}
deriving via (AesonOf Person) instance DecodeKV Person
deriving via (AesonOf Person) instance EncodeKV Person
{- .. and do the same for @PersonID@: -}
deriving via (HttpApiDataOf Int) instance DecodeKV PersonID
deriving via (HttpApiDataOf Int) instance EncodeKV PersonID
{- Then declare a @PathOf@ instance that binds the types together with the path: -}
instance PathOf Person where
type KVPath Person = "/runtime/cache/persons"
type KeyType Person = PersonID
{- Note: the @DecodeKV@ and @EncodeKV@ deriving statements above were
standalone for illustrative purposes. In most cases, they ought to be part
of the deriving clause of the data type. E.g,
-}
newtype FriendID = FriendID Int
deriving stock (Eq, Show)
deriving (ToHttpApiData, FromHttpApiData, Num, Ord) via Int
deriving (DecodeKV, EncodeKV) via (HttpApiDataOf Int)
{- Now save and fetch @Person@s from a storage backend as follows:
>>> handle <- Mem.new
>>> tim = Person { name = "Tim", age = 48 }
>>> saveTo handle (key 1) tim
Right ()
>>> loadFrom handle (key 1)
Right (Person { name = "Tim", age = 48 })
-}
{- Suppose that in addition to the main collection of @Person@s, it's
necessary to store a distinct list of the friends of each @Person@.
I.e, store a small keyed collection of @Person@s per person.
One way to achieve is to store each such collection at a similar path, e.g
suppose the friends for the person with @anID@ are stored at
@/app/person/<anId>/friends@.
This can be implemented using the existing types along with another newtype
that has @PathOf@ and @VaryingPathOf@ instances as follows
-}
newtype Friend = Friend Person
deriving stock (Eq, Show)
deriving (FromJSON, ToJSON, EncodeKV, DecodeKV) via Person
instance PathOf Friend where
type KVPath Friend = "/app/person/{}/friends"
type KeyType Friend = FriendID -- as defined earlier
instance VaryingPathOf Friend where
type PathVar Friend = PersonID
modifyPath _ = expand -- implements modifyPath by expanding the braces to PathVar
{- This allows @Friends@ to be saved or fetched as follows:
>>> dave = Person { name = "Dave", age = 61 }
>>> saveTo handle (key 2) dave -- save in main person list
Right ()
>>> saveTo handle ( 1 // 2) (Friend dave) -- save as friend of tim (person 1)
Right ()
-}