postgresql-types-0.1: src/library/PostgresqlTypes/Int8.hs
module PostgresqlTypes.Int8
( Int8 (..),
-- * Accessors
toInt64,
-- * Constructors
fromInt64,
)
where
import qualified Data.Attoparsec.Text as Attoparsec
import PostgresqlTypes.Algebra
import PostgresqlTypes.Prelude hiding (Int8)
import PostgresqlTypes.Via
import qualified PtrPeeker
import qualified PtrPoker.Write as Write
import qualified TextBuilder
-- | PostgreSQL @int8@ type. 8-byte signed integer.
--
-- Range: @-9223372036854775808@ to @+9223372036854775807@.
--
-- [PostgreSQL docs](https://www.postgresql.org/docs/18/datatype-numeric.html#DATATYPE-INT).
newtype Int8 = Int8 Int64
deriving newtype (Eq, Ord, Hashable, Arbitrary)
deriving (Show, Read, IsString) via (ViaIsScalar Int8)
instance IsScalar Int8 where
schemaName = Tagged Nothing
typeName = Tagged "int8"
baseOid = Tagged (Just 20)
arrayOid = Tagged (Just 1016)
typeParams = Tagged []
binaryEncoder (Int8 x) = Write.bInt64 x
binaryDecoder = PtrPeeker.fixed (Right . Int8 <$> PtrPeeker.beSignedInt8)
textualEncoder (Int8 x) = TextBuilder.decimal x
textualDecoder = Int8 <$> Attoparsec.signed Attoparsec.decimal
-- | Mapping to @int8range@ type.
instance IsRangeElement Int8 where
rangeTypeName = Tagged "int8range"
rangeBaseOid = Tagged (Just 3926)
rangeArrayOid = Tagged (Just 3927)
-- | Mapping to @int8multirange@ type.
instance IsMultirangeElement Int8 where
multirangeTypeName = Tagged "int8multirange"
multirangeBaseOid = Tagged (Just 4536)
multirangeArrayOid = Tagged (Just 6157)
-- * Accessors
-- | Extract the underlying 'Int64' value.
toInt64 :: Int8 -> Int64
toInt64 (Int8 i) = i
-- * Constructors
-- | Construct a PostgreSQL 'Int8' from an 'Int64' value.
fromInt64 :: Int64 -> Int8
fromInt64 = Int8