squeal-postgresql-0.4.0.0: src/Squeal/PostgreSQL/Binary.hs
{-|
Module: Squeal.PostgreSQL.Binary
Description: Binary encoding and decoding
Copyright: (c) Eitan Chatav, 2017
Maintainer: eitan@morphism.tech
Stability: experimental
This module provides binary encoding and decoding between Haskell and PostgreSQL types.
Instances are governed by the `Generic` and `HasDatatypeInfo` typeclasses, so you absolutely
do not need to define your own instances to decode retrieved rows into Haskell values or
to encode Haskell values into statement parameters.
Let's see some examples. We'll need some imports
>>> import Data.Int (Int16)
>>> import Data.Text (Text)
>>> import Control.Monad (void)
>>> import Control.Monad.Base (liftBase)
>>> import Squeal.PostgreSQL
Define a Haskell datatype `Row` that will serve as both the input and output of a simple
round trip query.
>>> data Row = Row { col1 :: Int16, col2 :: Text, col3 :: Maybe Bool } deriving (Eq, GHC.Generic)
>>> instance Generic Row
>>> instance HasDatatypeInfo Row
>>> :{
let
roundTrip :: Query '[] (TuplePG Row) (RowPG Row)
roundTrip = values_ $
parameter @1 int2 `as` #col1 :*
parameter @2 text `as` #col2 :*
parameter @3 bool `as` #col3
:}
So long as we can encode the parameters and then decode the result of the query,
the input and output should be equal.
>>> let input = Row 2 "hi" (Just True)
>>> :{
void . withConnection "host=localhost port=5432 dbname=exampledb" $ do
result <- runQueryParams roundTrip input
Just output <- firstRow result
liftBase . print $ input == output
:}
True
In addition to being able to encode and decode basic Haskell types
like `Int16` and `Text`, Squeal permits you to encode and decode Haskell types to
Postgres array, enumerated and composite types and json. Let's see another example,
this time using the `Vector` type which corresponds to variable length arrays
and homogeneous tuples which correspond to fixed length arrays. We can even
create multi-dimensional fixed length arrays.
>>> :{
data Row = Row
{ col1 :: Vector Int16
, col2 :: (Maybe Int16,Maybe Int16)
, col3 :: ((Int16,Int16),(Int16,Int16),(Int16,Int16))
} deriving (Eq, GHC.Generic)
:}
>>> instance Generic Row
>>> instance HasDatatypeInfo Row
Once again, we define a simple round trip query.
>>> :{
let
roundTrip :: Query '[] (TuplePG Row) (RowPG Row)
roundTrip = values_ $
parameter @1 (int2 & vararray) `as` #col1 :*
parameter @2 (int2 & fixarray @2) `as` #col2 :*
parameter @3 (int2 & fixarray @2 & fixarray @3) `as` #col3
:}
>>> :set -XOverloadedLists
>>> let input = Row [1,2] (Just 1,Nothing) ((1,2),(3,4),(5,6))
>>> :{
void . withConnection "host=localhost port=5432 dbname=exampledb" $ do
result <- runQueryParams roundTrip input
Just output <- firstRow result
liftBase . print $ input == output
:}
True
Enumerated (enum) types are data types that comprise a static, ordered set of values.
They are equivalent to Haskell algebraic data types whose constructors are nullary.
An example of an enum type might be the days of the week,
or a set of status values for a piece of data.
>>> data Schwarma = Beef | Lamb | Chicken deriving (Eq, Show, GHC.Generic)
>>> instance Generic Schwarma
>>> instance HasDatatypeInfo Schwarma
A composite type represents the structure of a row or record;
it is essentially just a list of field names and their data types.
>>> data Person = Person {name :: Text, age :: Int32} deriving (Eq, Show, GHC.Generic)
>>> instance Generic Person
>>> instance HasDatatypeInfo Person
>>> instance Aeson.FromJSON Person
>>> instance Aeson.ToJSON Person
We can create the equivalent Postgres types directly from their Haskell types.
>>> :{
type Schema =
'[ "schwarma" ::: 'Typedef (PG (Enumerated Schwarma))
, "person" ::: 'Typedef (PG (Composite Person))
]
:}
>>> :{
let
setup :: Definition '[] Schema
setup =
createTypeEnumFrom @Schwarma #schwarma >>>
createTypeCompositeFrom @Person #person
:}
Let's demonstrate how to associate our Haskell types `Schwarma` and `Person`
with enumerated, composite or json types in Postgres. First create a Haskell
`Row` type using the `Enumerated`, `Composite` and `Json` newtypes as fields.
>>> :{
data Row = Row
{ schwarma :: Enumerated Schwarma
, person1 :: Composite Person
, person2 :: Json Person
} deriving (Eq, GHC.Generic)
:}
>>> instance Generic Row
>>> instance HasDatatypeInfo Row
>>> :{
let
input = Row
(Enumerated Chicken)
(Composite (Person "Faisal" 24))
(Json (Person "Ahmad" 48))
:}
Once again, define a round trip query.
>>> :{
let
roundTrip :: Query Schema (TuplePG Row) (RowPG Row)
roundTrip = values_ $
parameter @1 (typedef #schwarma) `as` #schwarma :*
parameter @2 (typedef #person) `as` #person1 :*
parameter @3 json `as` #person2
:}
Finally, we can drop our type definitions.
>>> :{
let
teardown :: Definition Schema '[]
teardown = dropType #schwarma >>> dropType #person
:}
Now let's run it.
>>> :{
let
session = do
result <- runQueryParams roundTrip input
Just output <- firstRow result
liftBase . print $ input == output
in
void . withConnection "host=localhost port=5432 dbname=exampledb" $
define setup
& pqThen session
& pqThen (define teardown)
:}
True
-}
{-# LANGUAGE
AllowAmbiguousTypes
, DeriveFoldable
, DeriveFunctor
, DeriveGeneric
, DeriveTraversable
, DefaultSignatures
, FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, GADTs
, LambdaCase
, OverloadedStrings
, MultiParamTypeClasses
, ScopedTypeVariables
, TypeApplications
, TypeInType
, TypeOperators
, UndecidableInstances
#-}
module Squeal.PostgreSQL.Binary
( -- * Encoding
ToParam (..)
, ToParams (..)
-- * Decoding
, FromValue (..)
, FromRow (..)
-- * Only
, Only (..)
) where
import BinaryParser
import ByteString.StrictBuilder (builderLength, int32BE, int64BE, word32BE)
import Control.Arrow (left)
import Control.Monad
import Data.Int
import Data.Kind
import Data.Scientific
import Data.Time
import Data.UUID.Types
import Data.Vector (Vector)
import Data.Word
import Generics.SOP
import Generics.SOP.Record
import GHC.TypeLits
import Network.IP.Addr
import qualified Data.Aeson as Aeson
import qualified Data.ByteString.Lazy as Lazy (ByteString)
import qualified Data.ByteString.Lazy as Lazy.ByteString
import qualified Data.ByteString as Strict (ByteString)
import qualified Data.Text.Lazy as Lazy (Text)
import qualified Data.Text as Strict (Text)
import qualified Data.Text as Strict.Text
import qualified Data.Vector as Vector
import qualified GHC.Generics as GHC
import qualified PostgreSQL.Binary.Decoding as Decoding
import qualified PostgreSQL.Binary.Encoding as Encoding
import Squeal.PostgreSQL.Schema
-- | A `ToParam` constraint gives an encoding of a Haskell `Type` into
-- into the binary format of a PostgreSQL `PGType`.
class ToParam (x :: Type) (pg :: PGType) where
-- | >>> :set -XTypeApplications -XDataKinds
-- >>> toParam @Bool @'PGbool False
-- K "\NUL"
--
-- >>> toParam @Int16 @'PGint2 0
-- K "\NUL\NUL"
--
-- >>> toParam @Int32 @'PGint4 0
-- K "\NUL\NUL\NUL\NUL"
--
-- >>> :set -XMultiParamTypeClasses
-- >>> newtype Id = Id { getId :: Int16 } deriving Show
-- >>> instance ToParam Id 'PGint2 where toParam = toParam . getId
-- >>> toParam @Id @'PGint2 (Id 1)
-- K "\NUL\SOH"
toParam :: x -> K Encoding.Encoding pg
instance ToParam Bool 'PGbool where toParam = K . Encoding.bool
instance ToParam Int16 'PGint2 where toParam = K . Encoding.int2_int16
instance ToParam Word16 'PGint2 where toParam = K . Encoding.int2_word16
instance ToParam Int32 'PGint4 where toParam = K . Encoding.int4_int32
instance ToParam Word32 'PGint4 where toParam = K . Encoding.int4_word32
instance ToParam Int64 'PGint8 where toParam = K . Encoding.int8_int64
instance ToParam Word64 'PGint8 where toParam = K . Encoding.int8_word64
instance ToParam Float 'PGfloat4 where toParam = K . Encoding.float4
instance ToParam Double 'PGfloat8 where toParam = K . Encoding.float8
instance ToParam Scientific 'PGnumeric where toParam = K . Encoding.numeric
instance ToParam UUID 'PGuuid where toParam = K . Encoding.uuid
instance ToParam (NetAddr IP) 'PGinet where toParam = K . Encoding.inet
instance ToParam Char ('PGchar 1) where toParam = K . Encoding.char_utf8
instance ToParam Strict.Text 'PGtext where toParam = K . Encoding.text_strict
instance ToParam Lazy.Text 'PGtext where toParam = K . Encoding.text_lazy
instance ToParam String 'PGtext where
toParam = K . Encoding.text_strict . Strict.Text.pack
instance ToParam Strict.ByteString 'PGbytea where
toParam = K . Encoding.bytea_strict
instance ToParam Lazy.ByteString 'PGbytea where
toParam = K . Encoding.bytea_lazy
instance ToParam Day 'PGdate where toParam = K . Encoding.date
instance ToParam TimeOfDay 'PGtime where toParam = K . Encoding.time_int
instance ToParam (TimeOfDay, TimeZone) 'PGtimetz where
toParam = K . Encoding.timetz_int
instance ToParam LocalTime 'PGtimestamp where
toParam = K . Encoding.timestamp_int
instance ToParam UTCTime 'PGtimestamptz where
toParam = K . Encoding.timestamptz_int
instance ToParam DiffTime 'PGinterval where toParam = K . Encoding.interval_int
instance ToParam Aeson.Value 'PGjson where toParam = K . Encoding.json_ast
instance ToParam Aeson.Value 'PGjsonb where toParam = K . Encoding.jsonb_ast
instance Aeson.ToJSON x => ToParam (Json x) 'PGjson where
toParam = K . Encoding.json_bytes
. Lazy.ByteString.toStrict . Aeson.encode . getJson
instance Aeson.ToJSON x => ToParam (Jsonb x) 'PGjsonb where
toParam = K . Encoding.jsonb_bytes
. Lazy.ByteString.toStrict . Aeson.encode . getJsonb
instance ToArray x ('NotNull ('PGvararray ty))
=> ToParam x ('PGvararray ty) where
toParam
= K . Encoding.array (baseOid @x @('NotNull ('PGvararray ty)))
. unK . toArray @x @('NotNull ('PGvararray ty))
instance ToArray x ('NotNull ('PGfixarray n ty))
=> ToParam x ('PGfixarray n ty) where
toParam
= K . Encoding.array (baseOid @x @('NotNull ('PGfixarray n ty)))
. unK . toArray @x @('NotNull ('PGfixarray n ty))
instance
( IsEnumType x
, HasDatatypeInfo x
, LabelsPG x ~ labels
) => ToParam (Enumerated x) ('PGenum labels) where
toParam =
let
gshowConstructor :: NP ConstructorInfo xss -> SOP I xss -> String
gshowConstructor Nil _ = ""
gshowConstructor (constructor :* _) (SOP (Z _)) =
constructorName constructor
gshowConstructor (_ :* constructors) (SOP (S xs)) =
gshowConstructor constructors (SOP xs)
in
K . Encoding.text_strict
. Strict.Text.pack
. gshowConstructor (constructorInfo (datatypeInfo (Proxy @x)))
. from
. getEnumerated
instance
( SListI fields
, IsRecord x xs
, AllZip ToField xs fields
, All HasAliasedOid fields
) => ToParam (Composite x) ('PGcomposite fields) where
toParam =
let
encoders = htrans (Proxy @ToField) toField
composite
:: All HasAliasedOid row
=> NP (K (Maybe Encoding.Encoding)) row
-> K Encoding.Encoding ('PGcomposite row)
composite fields = K $
-- <number of fields: 4 bytes>
-- [for each field]
-- <OID of field's type: sizeof(Oid) bytes>
-- [if value is NULL]
-- <-1: 4 bytes>
-- [else]
-- <length of value: 4 bytes>
-- <value: <length> bytes>
-- [end if]
-- [end for]
int32BE (fromIntegral (lengthSList (Proxy @xs))) <>
let
each
:: HasAliasedOid field
=> K (Maybe Encoding.Encoding) field
-> Encoding.Encoding
each (K field :: K (Maybe Encoding.Encoding) field) =
word32BE (aliasedOid @field)
<> case field of
Nothing -> int64BE (-1)
Just value ->
int32BE (fromIntegral (builderLength value))
<> value
in
hcfoldMap (Proxy @HasAliasedOid) each fields
in
composite . encoders . toRecord . getComposite
class HasAliasedOid (field :: (Symbol, NullityType)) where
aliasedOid :: Word32
instance HasOid ty => HasAliasedOid (alias ::: nullity ty) where
aliasedOid = oid @ty
class ToNullityParam (x :: Type) (ty :: NullityType) where
toNullityParam :: x -> K (Maybe Encoding.Encoding) ty
instance ToParam x pg => ToNullityParam x ('NotNull pg) where
toNullityParam = K . Just . unK . toParam @x @pg
instance ToParam x pg => ToNullityParam (Maybe x) ('Null pg) where
toNullityParam = K . fmap (unK . toParam @x @pg)
class ToField (x :: (Symbol, Type)) (field :: (Symbol, NullityType)) where
toField :: P x -> K (Maybe Encoding.Encoding) field
instance ToNullityParam x ty => ToField (alias ::: x) (alias ::: ty) where
toField (P x) = K . unK $ toNullityParam @x @ty x
class ToArray (x :: Type) (array :: NullityType) where
toArray :: x -> K Encoding.Array array
baseOid :: Word32
default baseOid :: HasOid (PGTypeOf array) => Word32
baseOid = oid @(PGTypeOf array)
instance {-# OVERLAPPABLE #-} (HasOid pg, ToParam x pg)
=> ToArray x ('NotNull pg) where
toArray = K . Encoding.encodingArray . unK . toParam @x @pg
instance {-# OVERLAPPABLE #-} (HasOid pg, ToParam x pg)
=> ToArray (Maybe x) ('Null pg) where
toArray = K . maybe Encoding.nullArray
(Encoding.encodingArray . unK . toParam @x @pg)
instance {-# OVERLAPPING #-} ToArray x array
=> ToArray (Vector x) ('NotNull ('PGvararray array)) where
toArray = K . Encoding.dimensionArray Vector.foldl'
(unK . toArray @x @array)
baseOid = baseOid @x @array
instance {-# OVERLAPPING #-} ToArray x array
=> ToArray (Maybe (Vector x)) ('Null ('PGvararray array)) where
toArray = K . maybe Encoding.nullArray
(Encoding.dimensionArray Vector.foldl' (unK . toArray @x @array))
baseOid = baseOid @x @array
instance {-# OVERLAPPING #-}
( IsProductType product xs
, Length xs ~ n
, All ((~) x) xs
, ToArray x array )
=> ToArray product ('NotNull ('PGfixarray n array)) where
toArray = K . Encoding.dimensionArray foldlN
(unK . toArray @x @array) . unZ . unSOP . from
baseOid = baseOid @x @array
instance {-# OVERLAPPING #-}
( IsProductType product xs
, Length xs ~ n
, All ((~) x) xs
, ToArray x array )
=> ToArray (Maybe product) ('Null ('PGfixarray n array)) where
toArray = K . maybe Encoding.nullArray
(Encoding.dimensionArray foldlN (unK . toArray @x @array) . unZ . unSOP . from)
baseOid = baseOid @x @array
-- | A `ToParams` constraint generically sequences the encodings of `Type`s
-- of the fields of a tuple or record to a row of `ColumnType`s. You should
-- not define instances of `ToParams`. Instead define `Generic` instances
-- which in turn provide `ToParams` instances.
class SListI tys => ToParams (x :: Type) (tys :: [NullityType]) where
-- | >>> type Params = '[ 'NotNull 'PGbool, 'Null 'PGint2]
-- >>> toParams @(Bool, Maybe Int16) @'[ 'NotNull 'PGbool, 'Null 'PGint2] (False, Just 0)
-- K (Just "\NUL") :* K (Just "\NUL\NUL") :* Nil
--
-- >>> :set -XDeriveGeneric
-- >>> data Tuple = Tuple { p1 :: Bool, p2 :: Maybe Int16} deriving GHC.Generic
-- >>> instance Generic Tuple
-- >>> toParams @Tuple @Params (Tuple False (Just 0))
-- K (Just "\NUL") :* K (Just "\NUL\NUL") :* Nil
toParams :: x -> NP (K (Maybe Encoding.Encoding)) tys
instance (SListI tys, IsProductType x xs, AllZip ToNullityParam xs tys)
=> ToParams x tys where
toParams
= htrans (Proxy @ToNullityParam) (toNullityParam . unI)
. unZ . unSOP . from
-- | A `FromValue` constraint gives a parser from the binary format of
-- a PostgreSQL `PGType` into a Haskell `Type`.
class FromValue (pg :: PGType) (y :: Type) where
-- | >>> newtype Id = Id { getId :: Int16 } deriving Show
-- >>> instance FromValue 'PGint2 Id where fromValue = Id <$> fromValue @'PGint2
fromValue :: Decoding.Value y
instance FromValue 'PGbool Bool where fromValue = Decoding.bool
instance FromValue 'PGint2 Int16 where fromValue = Decoding.int
instance FromValue 'PGint4 Int32 where fromValue = Decoding.int
instance FromValue 'PGint8 Int64 where fromValue = Decoding.int
instance FromValue 'PGfloat4 Float where fromValue = Decoding.float4
instance FromValue 'PGfloat8 Double where fromValue = Decoding.float8
instance FromValue 'PGnumeric Scientific where fromValue = Decoding.numeric
instance FromValue 'PGuuid UUID where fromValue = Decoding.uuid
instance FromValue 'PGinet (NetAddr IP) where fromValue = Decoding.inet
instance FromValue ('PGchar 1) Char where fromValue = Decoding.char
instance FromValue 'PGtext Strict.Text where fromValue = Decoding.text_strict
instance FromValue 'PGtext Lazy.Text where fromValue = Decoding.text_lazy
instance FromValue 'PGtext String where
fromValue = Strict.Text.unpack <$> Decoding.text_strict
instance FromValue 'PGbytea Strict.ByteString where
fromValue = Decoding.bytea_strict
instance FromValue 'PGbytea Lazy.ByteString where
fromValue = Decoding.bytea_lazy
instance FromValue 'PGdate Day where fromValue = Decoding.date
instance FromValue 'PGtime TimeOfDay where fromValue = Decoding.time_int
instance FromValue 'PGtimetz (TimeOfDay, TimeZone) where
fromValue = Decoding.timetz_int
instance FromValue 'PGtimestamp LocalTime where
fromValue = Decoding.timestamp_int
instance FromValue 'PGtimestamptz UTCTime where
fromValue = Decoding.timestamptz_int
instance FromValue 'PGinterval DiffTime where
fromValue = Decoding.interval_int
instance FromValue 'PGjson Aeson.Value where fromValue = Decoding.json_ast
instance FromValue 'PGjsonb Aeson.Value where fromValue = Decoding.jsonb_ast
instance Aeson.FromJSON x => FromValue 'PGjson (Json x) where
fromValue = Json <$>
Decoding.json_bytes (left Strict.Text.pack . Aeson.eitherDecodeStrict)
instance Aeson.FromJSON x => FromValue 'PGjsonb (Jsonb x) where
fromValue = Jsonb <$>
Decoding.jsonb_bytes (left Strict.Text.pack . Aeson.eitherDecodeStrict)
instance FromArray ('NotNull ('PGvararray ty)) y
=> FromValue ('PGvararray ty) y where
fromValue = Decoding.array (fromArray @('NotNull ('PGvararray ty)) @y)
instance FromArray ('NotNull ('PGfixarray n ty)) y
=> FromValue ('PGfixarray n ty) y where
fromValue = Decoding.array (fromArray @('NotNull ('PGfixarray n ty)) @y)
instance
( IsEnumType y
, HasDatatypeInfo y
, LabelsPG y ~ labels
) => FromValue ('PGenum labels) (Enumerated y) where
fromValue =
let
greadConstructor
:: All ((~) '[]) xss
=> NP ConstructorInfo xss
-> String
-> Maybe (SOP I xss)
greadConstructor Nil _ = Nothing
greadConstructor (constructor :* constructors) name =
if name == constructorName constructor
then Just (SOP (Z Nil))
else SOP . S . unSOP <$> greadConstructor constructors name
in
fmap Enumerated
. Decoding.enum
$ fmap to
. greadConstructor (constructorInfo (datatypeInfo (Proxy @y)))
. Strict.Text.unpack
instance
( FromRow fields y
) => FromValue ('PGcomposite fields) (Composite y) where
fromValue =
let
-- <number of fields: 4 bytes>
-- [for each field]
-- <OID of field's type: sizeof(Oid) bytes>
-- [if value is NULL]
-- <-1: 4 bytes>
-- [else]
-- <length of value: 4 bytes>
-- <value: <length> bytes>
-- [end if]
-- [end for]
composite = Decoding.valueParser $ do
unitOfSize 4
hsequence' $ hpure $ Comp $ do
unitOfSize 4
len <- sized 4 Decoding.int
if len == -1
then return (K Nothing)
else K . Just <$> bytesOfSize len
in
fmap Composite (Decoding.fn (fromRow @fields <=< composite))
-- | A `FromField` constraint lifts the `FromValue` parser
-- to a decoding of a @(Symbol, NullityType)@ to a `Type`,
-- decoding `Null`s to `Maybe`s. You should not define instances for
-- `FromField`, just use the provided instances.
class FromField (pg :: (Symbol, NullityType)) (y :: (Symbol, Type)) where
fromField
:: K (Maybe Strict.ByteString) pg
-> (Either Strict.Text :.: P) y
instance FromValue pg y
=> FromField (column ::: ('NotNull pg)) (column ::: y) where
fromField = Comp . \case
K Nothing -> Left "fromField: saw NULL when expecting NOT NULL"
K (Just bytestring) -> P <$>
Decoding.valueParser (fromValue @pg) bytestring
instance FromValue pg y
=> FromField (column ::: 'Null pg) (column ::: Maybe y) where
fromField = Comp . \case
K Nothing -> Right $ P Nothing
K (Just bytestring) -> P . Just <$>
Decoding.valueParser (fromValue @pg) bytestring
class FromArray (ty :: NullityType) (y :: Type) where
fromArray :: Decoding.Array y
instance {-# OVERLAPPABLE #-} FromValue pg y
=> FromArray ('NotNull pg) y where
fromArray = Decoding.valueArray (fromValue @pg @y)
instance {-# OVERLAPPABLE #-} FromValue pg y
=> FromArray ('Null pg) (Maybe y) where
fromArray = Decoding.nullableValueArray (fromValue @pg @y)
instance {-# OVERLAPPING #-} FromArray array y
=> FromArray ('NotNull ('PGvararray array)) (Vector y) where
fromArray =
Decoding.dimensionArray Vector.replicateM (fromArray @array @y)
instance {-# OVERLAPPING #-} FromArray array y
=> FromArray ('Null ('PGvararray array)) (Maybe (Vector y)) where
fromArray = Just <$>
Decoding.dimensionArray Vector.replicateM (fromArray @array @y)
instance {-# OVERLAPPING #-}
( FromArray array y
, All ((~) y) ys
, SListI ys
, IsProductType product ys )
=> FromArray ('NotNull ('PGfixarray n array)) product where
fromArray =
let
rep _ = fmap (to . SOP . Z) . replicateMN
in
Decoding.dimensionArray rep (fromArray @array @y)
instance {-# OVERLAPPING #-}
( FromArray array y
, All ((~) y) ys
, SListI ys
, IsProductType product ys )
=> FromArray ('Null ('PGfixarray n array)) (Maybe product) where
fromArray =
let
rep _ = fmap (to . SOP . Z) . replicateMN
in
Just <$> Decoding.dimensionArray rep (fromArray @array @y)
-- | A `FromRow` constraint generically sequences the parsings of the columns
-- of a `RowType` into the fields of a record `Type` provided they have
-- the same field names. You should not define instances of `FromRow`.
-- Instead define `Generic` and `HasDatatypeInfo` instances which in turn
-- provide `FromRow` instances.
class SListI result => FromRow (result :: RowType) y where
-- | >>> :set -XOverloadedStrings
-- >>> import Data.Text
-- >>> newtype UserId = UserId { getUserId :: Int16 } deriving Show
-- >>> instance FromValue 'PGint2 UserId where fromValue = UserId <$> fromValue @'PGint2
-- >>> data UserRow = UserRow { userId :: UserId, userName :: Maybe Text } deriving (Show, GHC.Generic)
-- >>> instance Generic UserRow
-- >>> instance HasDatatypeInfo UserRow
-- >>> type User = '["userId" ::: 'NotNull 'PGint2, "userName" ::: 'Null 'PGtext]
-- >>> fromRow @User @UserRow (K (Just "\NUL\SOH") :* K (Just "bloodninja") :* Nil)
-- Right (UserRow {userId = UserId {getUserId = 1}, userName = Just "bloodninja"})
fromRow :: NP (K (Maybe Strict.ByteString)) result -> Either Strict.Text y
instance
( SListI result
, IsRecord y ys
, AllZip FromField result ys
) => FromRow result y where
fromRow
= fmap fromRecord
. hsequence'
. htrans (Proxy @FromField) fromField
-- | `Only` is a 1-tuple type, useful for encoding a single parameter with
-- `toParams` or decoding a single value with `fromRow`.
--
-- >>> import Data.Text
-- >>> toParams @(Only (Maybe Text)) @'[ 'Null 'PGtext] (Only (Just "foo"))
-- K (Just "foo") :* Nil
--
-- >>> fromRow @'["fromOnly" ::: 'Null 'PGtext] @(Only (Maybe Text)) (K (Just "bar") :* Nil)
-- Right (Only {fromOnly = Just "bar"})
newtype Only x = Only { fromOnly :: x }
deriving (Functor,Foldable,Traversable,Eq,Ord,Read,Show,GHC.Generic)
instance Generic (Only x)
instance HasDatatypeInfo (Only x)
foldlN
:: All ((~) x) xs
=> (z -> x -> z) -> z -> NP I xs -> z
foldlN f z = \case
Nil -> z
I x :* xs -> let z' = f z x in seq z' $ foldlN f z' xs
replicateMN
:: forall x xs m. (All ((~) x) xs, Monad m, SListI xs)
=> m x -> m (NP I xs)
replicateMN mx = hsequence' $
hcpure (Proxy :: Proxy ((~) x)) (Comp (I <$> mx))