2019-06-17 13:24:24 -04:00
|
|
|
{-# language BangPatterns #-}
|
2019-06-25 15:18:34 -04:00
|
|
|
{-# language DuplicateRecordFields #-}
|
|
|
|
{-# language LambdaCase #-}
|
2019-06-17 13:24:24 -04:00
|
|
|
{-# language MagicHash #-}
|
|
|
|
{-# language RankNTypes #-}
|
2019-06-25 15:18:34 -04:00
|
|
|
{-# language ScopedTypeVariables #-}
|
|
|
|
{-# language UnboxedTuples #-}
|
2019-06-17 13:24:24 -04:00
|
|
|
|
|
|
|
module Data.ByteArray.Builder.Small
|
2019-09-02 01:43:54 -04:00
|
|
|
( -- * Bounded Primitives
|
2019-06-17 13:24:24 -04:00
|
|
|
Builder(..)
|
|
|
|
, construct
|
2019-09-02 01:43:54 -04:00
|
|
|
, fromBounded
|
2019-06-17 13:24:24 -04:00
|
|
|
-- * Evaluation
|
|
|
|
, run
|
|
|
|
, pasteST
|
2019-06-17 13:56:14 -04:00
|
|
|
, pasteIO
|
2019-06-25 15:18:34 -04:00
|
|
|
, pasteGrowST
|
|
|
|
, pasteGrowIO
|
|
|
|
, pasteArrayST
|
|
|
|
, pasteArrayIO
|
2019-06-17 13:56:14 -04:00
|
|
|
-- * Materialized Byte Sequences
|
|
|
|
, bytes
|
|
|
|
, bytearray
|
2019-08-07 15:23:02 -04:00
|
|
|
, shortTextUtf8
|
|
|
|
, shortTextJsonString
|
2019-07-03 16:28:36 -04:00
|
|
|
-- * Encode Integral Types
|
|
|
|
-- ** Human-Readable
|
2019-06-17 13:24:24 -04:00
|
|
|
, word64Dec
|
2019-09-01 19:17:29 -04:00
|
|
|
, word32Dec
|
2019-08-07 15:23:02 -04:00
|
|
|
, word16Dec
|
2019-07-03 16:28:36 -04:00
|
|
|
, int64Dec
|
2019-06-25 15:18:34 -04:00
|
|
|
, word64PaddedUpperHex
|
2019-06-25 17:09:26 -04:00
|
|
|
, word32PaddedUpperHex
|
2019-07-05 11:23:30 -04:00
|
|
|
, word16PaddedUpperHex
|
|
|
|
, word8PaddedUpperHex
|
2019-09-02 01:43:54 -04:00
|
|
|
, ascii
|
|
|
|
, char
|
2019-07-03 16:28:36 -04:00
|
|
|
-- ** Machine-Readable
|
|
|
|
, word64BE
|
|
|
|
, word32BE
|
|
|
|
, word16BE
|
2019-09-02 01:43:54 -04:00
|
|
|
, word8
|
2019-08-05 12:07:02 -04:00
|
|
|
-- * Encode Floating-Point Types
|
|
|
|
-- ** Human-Readable
|
|
|
|
, doubleDec
|
2019-06-17 13:24:24 -04:00
|
|
|
) where
|
|
|
|
|
|
|
|
import Control.Monad.Primitive
|
2019-06-17 13:56:14 -04:00
|
|
|
import Control.Monad.ST
|
2019-06-25 15:18:34 -04:00
|
|
|
import Control.Monad.ST.Run (runByteArrayST)
|
2019-06-17 13:56:14 -04:00
|
|
|
import Data.Bytes.Types
|
2019-06-17 13:24:24 -04:00
|
|
|
import Data.Primitive
|
2019-07-03 16:28:36 -04:00
|
|
|
import Data.Int (Int64)
|
2019-06-17 13:24:24 -04:00
|
|
|
import GHC.Exts
|
|
|
|
import GHC.ST
|
2019-06-17 13:56:14 -04:00
|
|
|
import GHC.Word
|
2019-06-25 15:18:34 -04:00
|
|
|
import GHC.TypeLits (KnownNat,natVal')
|
|
|
|
import Data.Primitive.ByteArray.Offset (MutableByteArrayOffset(..))
|
2019-08-07 15:23:02 -04:00
|
|
|
import Data.ByteString.Short.Internal (ShortByteString(SBS))
|
|
|
|
import Data.Text.Short (ShortText)
|
|
|
|
import Data.Char (ord)
|
2019-06-25 15:18:34 -04:00
|
|
|
|
2019-08-07 15:23:02 -04:00
|
|
|
import qualified GHC.Exts as Exts
|
|
|
|
import qualified Data.Text.Short as TS
|
2019-06-25 15:18:34 -04:00
|
|
|
import qualified Data.Primitive as PM
|
|
|
|
import qualified Data.Vector as V
|
2019-09-02 01:43:54 -04:00
|
|
|
import qualified Data.ByteArray.Builder.Small.Bounded as Bounded
|
2019-06-17 13:24:24 -04:00
|
|
|
|
|
|
|
-- | An unmaterialized sequence of bytes that may be pasted
|
|
|
|
-- into a mutable byte array.
|
|
|
|
newtype Builder = Builder
|
2019-08-02 16:08:13 -04:00
|
|
|
-- This functions takes an offset and a number of remaining bytes
|
|
|
|
-- and returns the new offset.
|
2019-06-17 13:24:24 -04:00
|
|
|
(forall s. MutableByteArray# s -> Int# -> Int# -> State# s -> (# State# s, Int# #))
|
|
|
|
|
|
|
|
instance Semigroup Builder where
|
|
|
|
{-# inline (<>) #-}
|
|
|
|
Builder f <> Builder g = Builder $ \arr off0 len0 s0 -> case f arr off0 len0 s0 of
|
|
|
|
(# s1, r #) -> case r /=# (-1#) of
|
|
|
|
1# -> g arr r (len0 +# (off0 -# r)) s1
|
|
|
|
_ -> (# s1, (-1#) #)
|
|
|
|
|
2019-06-25 15:18:34 -04:00
|
|
|
instance Monoid Builder where
|
|
|
|
mempty = Builder $ \_ off0 _ s0 -> (# s0, off0 #)
|
|
|
|
|
2019-09-01 19:17:29 -04:00
|
|
|
instance IsString Builder where
|
|
|
|
fromString = shortTextUtf8 . TS.fromString
|
|
|
|
|
2019-06-17 13:24:24 -04:00
|
|
|
-- | Run a builder. An accurate size hint is important for good performance.
|
2019-06-25 17:09:26 -04:00
|
|
|
-- The size hint should be slightly larger than the actual size.
|
2019-06-17 13:24:24 -04:00
|
|
|
run ::
|
|
|
|
Int -- ^ Hint for upper bound on size
|
|
|
|
-> Builder -- ^ Builder
|
|
|
|
-> ByteArray
|
2019-06-25 15:18:34 -04:00
|
|
|
run hint b = runByteArrayST $ do
|
2019-06-17 13:24:24 -04:00
|
|
|
let go !n = do
|
|
|
|
arr <- newByteArray n
|
|
|
|
pasteST b (MutableBytes arr 0 n) >>= \case
|
|
|
|
Nothing -> go (n + 64)
|
|
|
|
Just len -> do
|
|
|
|
shrinkMutableByteArray arr len
|
|
|
|
unsafeFreezeByteArray arr
|
|
|
|
go hint
|
|
|
|
|
2019-06-25 17:09:26 -04:00
|
|
|
-- | Variant of 'pasteArrayST' that runs in 'IO'.
|
2019-06-25 15:18:34 -04:00
|
|
|
pasteArrayIO ::
|
|
|
|
MutableBytes RealWorld -- ^ Buffer
|
|
|
|
-> (a -> Builder) -- ^ Builder
|
|
|
|
-> V.Vector a -- ^ Elements to serialize
|
|
|
|
-> IO (V.Vector a, MutableBytes RealWorld) -- ^ Shifted vector, shifted buffer
|
|
|
|
pasteArrayIO !arr f !xs = stToIO (pasteArrayST arr f xs)
|
|
|
|
|
2019-06-25 17:09:26 -04:00
|
|
|
-- | Fold over a vector, applying the builder to each element until
|
|
|
|
-- the buffer cannot accomodate any more.
|
2019-06-25 15:18:34 -04:00
|
|
|
pasteArrayST ::
|
|
|
|
MutableBytes s -- ^ Buffer
|
|
|
|
-> (a -> Builder) -- ^ Builder
|
|
|
|
-> V.Vector a -- ^ Elements to serialize
|
|
|
|
-> ST s (V.Vector a, MutableBytes s) -- ^ Shifted vector, shifted buffer
|
|
|
|
pasteArrayST (MutableBytes arr off0 len0) f !xs0 = do
|
|
|
|
let go !xs !ixBufA !lenBufA = if V.length xs > 0
|
|
|
|
then do
|
|
|
|
let a = V.unsafeHead xs
|
|
|
|
pasteST (f a) (MutableBytes arr ixBufA lenBufA) >>= \case
|
|
|
|
Nothing -> pure (xs,MutableBytes arr ixBufA lenBufA)
|
|
|
|
Just ixBufB ->
|
|
|
|
go (V.unsafeTail xs) ixBufB (lenBufA + (ixBufA - ixBufB))
|
|
|
|
else pure (xs,MutableBytes arr ixBufA lenBufA)
|
|
|
|
go xs0 off0 len0
|
|
|
|
|
|
|
|
-- | Paste the builder into the byte array starting at offset zero.
|
|
|
|
-- This repeatedly reallocates the byte array if it cannot accomodate
|
|
|
|
-- the builder, replaying the builder each time.
|
|
|
|
pasteGrowST ::
|
|
|
|
Int -- ^ How many bytes to grow by at a time
|
|
|
|
-> Builder
|
2019-08-02 16:08:13 -04:00
|
|
|
-> MutableByteArrayOffset s
|
2019-06-25 15:18:34 -04:00
|
|
|
-- ^ Initial buffer, used linearly. Do not reuse this argument.
|
|
|
|
-> ST s (MutableByteArrayOffset s)
|
|
|
|
-- ^ Final buffer that accomodated the builder.
|
2019-08-02 16:08:13 -04:00
|
|
|
pasteGrowST !n b !(MutableByteArrayOffset arr0 off0) = do
|
|
|
|
let go !arr !sz = pasteST b (MutableBytes arr off0 (sz - off0)) >>= \case
|
2019-06-25 15:18:34 -04:00
|
|
|
Nothing -> do
|
|
|
|
let szNext = sz + n
|
2019-08-02 16:08:13 -04:00
|
|
|
arrNext <- PM.resizeMutableByteArray arr szNext
|
2019-06-25 15:18:34 -04:00
|
|
|
go arrNext szNext
|
|
|
|
Just ix -> pure (MutableByteArrayOffset{array=arr,offset=ix})
|
|
|
|
go arr0 =<< PM.getSizeofMutableByteArray arr0
|
|
|
|
|
|
|
|
-- | Variant of 'pasteGrowST' that runs in 'IO'.
|
|
|
|
pasteGrowIO ::
|
|
|
|
Int -- ^ How many bytes to grow by at a time
|
|
|
|
-> Builder
|
2019-08-02 16:08:13 -04:00
|
|
|
-> MutableByteArrayOffset RealWorld
|
2019-06-25 15:18:34 -04:00
|
|
|
-- ^ Initial buffer, used linearly. Do not reuse this argument.
|
|
|
|
-> IO (MutableByteArrayOffset RealWorld)
|
|
|
|
-- ^ Final buffer that accomodated the builder.
|
|
|
|
pasteGrowIO !n b !arr = stToIO (pasteGrowST n b arr)
|
|
|
|
|
2019-06-25 17:09:26 -04:00
|
|
|
-- | Execute the builder, pasting its contents into a buffer.
|
|
|
|
-- If the buffer is not large enough, this returns 'Nothing'.
|
|
|
|
-- Otherwise, it returns the index in the buffer that follows
|
|
|
|
-- the payload just written.
|
2019-06-17 13:24:24 -04:00
|
|
|
pasteST :: Builder -> MutableBytes s -> ST s (Maybe Int)
|
|
|
|
{-# inline pasteST #-}
|
|
|
|
pasteST (Builder f) (MutableBytes (MutableByteArray arr) (I# off) (I# len)) =
|
|
|
|
ST $ \s0 -> case f arr off len s0 of
|
|
|
|
(# s1, r #) -> if isTrue# (r /=# (-1#))
|
|
|
|
then (# s1, Just (I# r) #)
|
|
|
|
else (# s1, Nothing #)
|
|
|
|
|
2019-06-25 17:09:26 -04:00
|
|
|
-- | Variant of 'pasteST' that runs in 'IO'.
|
2019-06-17 13:56:14 -04:00
|
|
|
pasteIO :: Builder -> MutableBytes RealWorld -> IO (Maybe Int)
|
|
|
|
{-# inline pasteIO #-}
|
|
|
|
pasteIO b m = stToIO (pasteST b m)
|
|
|
|
|
2019-06-25 17:09:26 -04:00
|
|
|
-- | Constructor for 'Builder' that works on a function with lifted
|
|
|
|
-- arguments instead of unlifted ones. This is just as unsafe as the
|
|
|
|
-- actual constructor.
|
2019-06-17 13:24:24 -04:00
|
|
|
construct :: (forall s. MutableBytes s -> ST s (Maybe Int)) -> Builder
|
|
|
|
construct f = Builder
|
|
|
|
$ \arr off len s0 ->
|
|
|
|
case unST (f (MutableBytes (MutableByteArray arr) (I# off) (I# len))) s0 of
|
|
|
|
(# s1, m #) -> case m of
|
|
|
|
Nothing -> (# s1, (-1#) #)
|
|
|
|
Just (I# n) -> (# s1, n #)
|
|
|
|
|
2019-09-02 01:43:54 -04:00
|
|
|
fromBounded :: forall n. KnownNat n => Bounded.Builder n -> Builder
|
|
|
|
{-# inline fromBounded #-}
|
|
|
|
fromBounded (Bounded.Builder f) = Builder $ \arr off len s0 ->
|
2019-06-25 15:18:34 -04:00
|
|
|
case fromIntegral (natVal' (proxy# :: Proxy# n)) of
|
|
|
|
I# req -> case len >=# req of
|
|
|
|
1# -> f arr off s0
|
|
|
|
_ -> (# s0, (-1#) #)
|
|
|
|
|
2019-06-25 17:09:26 -04:00
|
|
|
-- | Create a builder from an unsliced byte sequence.
|
2019-06-17 13:56:14 -04:00
|
|
|
bytearray :: ByteArray -> Builder
|
|
|
|
bytearray a = bytes (Bytes a 0 (sizeofByteArray a))
|
|
|
|
|
2019-06-25 17:09:26 -04:00
|
|
|
-- | Create a builder from a sliced byte sequence.
|
2019-06-17 13:56:14 -04:00
|
|
|
bytes :: Bytes -> Builder
|
|
|
|
bytes (Bytes src soff slen) = construct $ \(MutableBytes arr off len) -> if len >= slen
|
|
|
|
then do
|
|
|
|
copyByteArray arr off src soff slen
|
2019-08-02 16:08:13 -04:00
|
|
|
pure (Just (off + slen))
|
2019-06-17 13:56:14 -04:00
|
|
|
else pure Nothing
|
|
|
|
|
2019-08-07 15:23:02 -04:00
|
|
|
-- Internal function. Precondition, the referenced slice of the
|
|
|
|
-- byte sequence is UTF-8 encoded text.
|
|
|
|
slicedUtf8TextJson :: ByteArray# -> Int# -> Int# -> Builder
|
|
|
|
{-# inline slicedUtf8TextJson #-}
|
|
|
|
slicedUtf8TextJson !src# !soff0# !slen0# = construct $ \(MutableBytes dst doff0 dlen0) ->
|
|
|
|
let slen0 = I# slen0#
|
|
|
|
in if dlen0 > (2 * slen0) + 2
|
|
|
|
then do
|
|
|
|
PM.writeByteArray dst doff0 (c2w '"')
|
|
|
|
let go !soff !slen !doff = if slen > 0
|
|
|
|
then case indexChar8Array (ByteArray src#) soff of
|
|
|
|
'\\' -> write2 dst doff '\\' '\\' *> go (soff + 1) (slen - 1) (doff + 2)
|
|
|
|
'\"' -> write2 dst doff '\\' '\"' *> go (soff + 1) (slen - 1) (doff + 2)
|
|
|
|
'\n' -> write2 dst doff '\\' 'n' *> go (soff + 1) (slen - 1) (doff + 2)
|
|
|
|
'\r' -> write2 dst doff '\\' 'r' *> go (soff + 1) (slen - 1) (doff + 2)
|
|
|
|
'\t' -> write2 dst doff '\\' 't' *> go (soff + 1) (slen - 1) (doff + 2)
|
|
|
|
c -> if c >= '\x20'
|
|
|
|
then PM.writeByteArray dst doff (c2w c) *> go (soff + 1) (slen - 1) (doff + 1)
|
|
|
|
else do
|
|
|
|
write2 dst doff '\\' 'u'
|
2019-09-02 01:43:54 -04:00
|
|
|
doff' <- Bounded.pasteST
|
|
|
|
(Bounded.word16PaddedUpperHex (fromIntegral (c2w c)))
|
2019-08-07 15:23:02 -04:00
|
|
|
dst (doff + 2)
|
|
|
|
go (soff + 1) (slen - 1) doff'
|
|
|
|
else pure doff
|
|
|
|
doffRes <- go (I# soff0#) (I# slen0#) (doff0 + 1)
|
|
|
|
PM.writeByteArray dst doffRes (c2w '"')
|
|
|
|
pure (Just (doffRes + 1))
|
|
|
|
else pure Nothing
|
|
|
|
|
|
|
|
-- Internal. Write two characters in the ASCII plane to a byte array.
|
|
|
|
write2 :: MutableByteArray s -> Int -> Char -> Char -> ST s ()
|
|
|
|
write2 marr ix a b = do
|
|
|
|
PM.writeByteArray marr ix (c2w a)
|
|
|
|
PM.writeByteArray marr (ix + 1) (c2w b)
|
|
|
|
|
|
|
|
-- | Create a builder from text. The text will be UTF-8 encoded.
|
|
|
|
shortTextUtf8 :: ShortText -> Builder
|
|
|
|
shortTextUtf8 a =
|
|
|
|
let ba = shortTextToByteArray a
|
|
|
|
in bytes (Bytes ba 0 (sizeofByteArray ba))
|
|
|
|
|
|
|
|
-- | Create a builder from text. The text will be UTF-8 encoded,
|
|
|
|
-- and JSON special characters will be escaped. Additionally, the
|
|
|
|
-- result is surrounded by double quotes. For example:
|
|
|
|
--
|
|
|
|
-- * @foo ==> "foo"@
|
|
|
|
-- * @\_"_/ ==> "\\_\"_/"@
|
|
|
|
-- * @hello<ESC>world ==> "hello\u001Bworld"@ (where <LF> is code point 0x1B)
|
|
|
|
shortTextJsonString :: ShortText -> Builder
|
|
|
|
shortTextJsonString a =
|
|
|
|
let !(ByteArray ba) = shortTextToByteArray a
|
|
|
|
!(I# len) = PM.sizeofByteArray (ByteArray ba)
|
|
|
|
in slicedUtf8TextJson ba 0# len
|
|
|
|
|
2019-06-25 17:09:26 -04:00
|
|
|
-- | Encodes an unsigned 64-bit integer as decimal.
|
|
|
|
-- This encoding never starts with a zero unless the
|
|
|
|
-- argument was zero.
|
2019-06-17 13:24:24 -04:00
|
|
|
word64Dec :: Word64 -> Builder
|
2019-09-02 01:43:54 -04:00
|
|
|
word64Dec w = fromBounded (Bounded.word64Dec w)
|
2019-06-25 15:18:34 -04:00
|
|
|
|
2019-08-07 15:23:02 -04:00
|
|
|
-- | Encodes an unsigned 16-bit integer as decimal.
|
|
|
|
-- This encoding never starts with a zero unless the
|
|
|
|
-- argument was zero.
|
2019-09-01 19:17:29 -04:00
|
|
|
word32Dec :: Word32 -> Builder
|
2019-09-02 01:43:54 -04:00
|
|
|
word32Dec w = fromBounded (Bounded.word32Dec w)
|
2019-09-01 19:17:29 -04:00
|
|
|
|
|
|
|
-- | Encodes an unsigned 16-bit integer as decimal.
|
|
|
|
-- This encoding never starts with a zero unless the
|
|
|
|
-- argument was zero.
|
2019-08-07 15:23:02 -04:00
|
|
|
word16Dec :: Word16 -> Builder
|
2019-09-02 01:43:54 -04:00
|
|
|
word16Dec w = fromBounded (Bounded.word16Dec w)
|
2019-08-07 15:23:02 -04:00
|
|
|
|
2019-08-05 12:07:02 -04:00
|
|
|
-- | Encode a double-floating-point number, using decimal notation or
|
|
|
|
-- scientific notation depending on the magnitude. This has undefined
|
|
|
|
-- behavior when representing @+inf@, @-inf@, and @NaN@. It will not
|
|
|
|
-- crash, but the generated numbers will be nonsense.
|
|
|
|
doubleDec :: Double -> Builder
|
2019-09-02 01:43:54 -04:00
|
|
|
doubleDec w = fromBounded (Bounded.doubleDec w)
|
2019-08-05 12:07:02 -04:00
|
|
|
|
2019-07-03 16:28:36 -04:00
|
|
|
-- | Encodes a signed 64-bit integer as decimal.
|
|
|
|
-- This encoding never starts with a zero unless the argument was zero.
|
|
|
|
-- Negative numbers are preceded by a minus sign. Positive numbers
|
|
|
|
-- are not preceded by anything.
|
|
|
|
int64Dec :: Int64 -> Builder
|
2019-09-02 01:43:54 -04:00
|
|
|
int64Dec w = fromBounded (Bounded.int64Dec w)
|
2019-07-03 16:28:36 -04:00
|
|
|
|
2019-06-25 17:09:26 -04:00
|
|
|
-- | Encode a 64-bit unsigned integer as hexadecimal, zero-padding
|
|
|
|
-- the encoding to 16 digits. This uses uppercase for the alphabetical
|
|
|
|
-- digits. For example, this encodes the number 1022 as @00000000000003FE@.
|
2019-06-25 15:18:34 -04:00
|
|
|
word64PaddedUpperHex :: Word64 -> Builder
|
|
|
|
word64PaddedUpperHex w =
|
2019-09-02 01:43:54 -04:00
|
|
|
fromBounded (Bounded.word64PaddedUpperHex w)
|
2019-06-17 13:24:24 -04:00
|
|
|
|
2019-06-25 17:09:26 -04:00
|
|
|
-- | Encode a 32-bit unsigned integer as hexadecimal, zero-padding
|
|
|
|
-- the encoding to 8 digits. This uses uppercase for the alphabetical
|
|
|
|
-- digits. For example, this encodes the number 1022 as @000003FE@.
|
|
|
|
word32PaddedUpperHex :: Word32 -> Builder
|
|
|
|
word32PaddedUpperHex w =
|
2019-09-02 01:43:54 -04:00
|
|
|
fromBounded (Bounded.word32PaddedUpperHex w)
|
2019-06-25 17:09:26 -04:00
|
|
|
|
2019-07-05 11:23:30 -04:00
|
|
|
-- | Encode a 16-bit unsigned integer as hexadecimal, zero-padding
|
|
|
|
-- the encoding to 4 digits. This uses uppercase for the alphabetical
|
|
|
|
-- digits. For example, this encodes the number 1022 as @03FE@.
|
|
|
|
word16PaddedUpperHex :: Word16 -> Builder
|
|
|
|
word16PaddedUpperHex w =
|
2019-09-02 01:43:54 -04:00
|
|
|
fromBounded (Bounded.word16PaddedUpperHex w)
|
2019-07-05 11:23:30 -04:00
|
|
|
|
|
|
|
-- | Encode a 8-bit unsigned integer as hexadecimal, zero-padding
|
|
|
|
-- the encoding to 2 digits. This uses uppercase for the alphabetical
|
|
|
|
-- digits. For example, this encodes the number 11 as @0B@.
|
|
|
|
word8PaddedUpperHex :: Word8 -> Builder
|
|
|
|
word8PaddedUpperHex w =
|
2019-09-02 01:43:54 -04:00
|
|
|
fromBounded (Bounded.word8PaddedUpperHex w)
|
|
|
|
|
|
|
|
-- | Encode an ASCII char.
|
|
|
|
-- Precondition: Input must be an ASCII character. This is not checked.
|
|
|
|
ascii :: Char -> Builder
|
|
|
|
ascii c = fromBounded (Bounded.char c)
|
|
|
|
|
|
|
|
-- | Encode an UTF8 char. This only uses as much space as is required.
|
|
|
|
char :: Char -> Builder
|
|
|
|
char c = fromBounded (Bounded.char c)
|
2019-07-05 11:23:30 -04:00
|
|
|
|
2019-06-17 13:24:24 -04:00
|
|
|
unST :: ST s a -> State# s -> (# State# s, a #)
|
|
|
|
unST (ST f) = f
|
|
|
|
|
|
|
|
shrinkMutableByteArray :: MutableByteArray s -> Int -> ST s ()
|
|
|
|
shrinkMutableByteArray (MutableByteArray arr) (I# sz) =
|
|
|
|
primitive_ (shrinkMutableByteArray# arr sz)
|
|
|
|
|
2019-07-03 16:28:36 -04:00
|
|
|
-- | Requires exactly 8 bytes. Dump the octets of a 64-bit
|
|
|
|
-- word in a big-endian fashion.
|
|
|
|
word64BE :: Word64 -> Builder
|
2019-09-02 01:43:54 -04:00
|
|
|
word64BE w = fromBounded (Bounded.word64BE w)
|
2019-07-03 16:28:36 -04:00
|
|
|
|
|
|
|
-- | Requires exactly 4 bytes. Dump the octets of a 32-bit
|
|
|
|
-- word in a big-endian fashion.
|
|
|
|
word32BE :: Word32 -> Builder
|
2019-09-02 01:43:54 -04:00
|
|
|
word32BE w = fromBounded (Bounded.word32BE w)
|
2019-07-03 16:28:36 -04:00
|
|
|
|
|
|
|
-- | Requires exactly 2 bytes. Dump the octets of a 16-bit
|
|
|
|
-- word in a big-endian fashion.
|
|
|
|
word16BE :: Word16 -> Builder
|
2019-09-02 01:43:54 -04:00
|
|
|
word16BE w = fromBounded (Bounded.word16BE w)
|
|
|
|
|
|
|
|
word8 :: Word8 -> Builder
|
|
|
|
word8 w = fromBounded (Bounded.word8 w)
|
2019-08-07 15:23:02 -04:00
|
|
|
|
|
|
|
-- ShortText is already UTF-8 encoded. This is a no-op.
|
|
|
|
shortTextToByteArray :: ShortText -> ByteArray
|
|
|
|
shortTextToByteArray x = case TS.toShortByteString x of
|
|
|
|
SBS a -> ByteArray a
|
|
|
|
|
|
|
|
indexChar8Array :: ByteArray -> Int -> Char
|
|
|
|
indexChar8Array (ByteArray b) (I# i) = C# (Exts.indexCharArray# b i)
|
|
|
|
|
|
|
|
c2w :: Char -> Word8
|
2019-09-02 01:43:54 -04:00
|
|
|
c2w = fromIntegral . ord
|