2019-06-25 15:18:34 -04:00
|
|
|
{-# language BangPatterns #-}
|
|
|
|
{-# language ScopedTypeVariables #-}
|
2019-06-17 13:24:24 -04:00
|
|
|
{-# language TypeApplications #-}
|
|
|
|
|
2019-06-25 15:18:34 -04:00
|
|
|
import Control.Monad.ST (runST)
|
|
|
|
import Data.Bytes.Types (MutableBytes(..))
|
2019-06-17 13:24:24 -04:00
|
|
|
import Data.ByteArray.Builder.Small
|
|
|
|
import Data.Word
|
|
|
|
import Data.Char (ord)
|
|
|
|
import Data.Primitive (ByteArray)
|
2019-06-25 15:18:34 -04:00
|
|
|
import Debug.Trace
|
2019-06-17 13:24:24 -04:00
|
|
|
import Test.Tasty (defaultMain,testGroup,TestTree)
|
|
|
|
import Test.QuickCheck ((===))
|
2019-06-25 15:18:34 -04:00
|
|
|
import Text.Printf (printf)
|
|
|
|
import qualified Data.Primitive as PM
|
|
|
|
import qualified Data.List as L
|
|
|
|
import qualified Data.Vector as V
|
2019-06-17 13:24:24 -04:00
|
|
|
import qualified Test.Tasty.QuickCheck as TQC
|
|
|
|
import qualified Test.QuickCheck as QC
|
|
|
|
import qualified GHC.Exts as Exts
|
|
|
|
|
|
|
|
main :: IO ()
|
|
|
|
main = defaultMain tests
|
|
|
|
|
|
|
|
tests :: TestTree
|
|
|
|
tests = testGroup "Tests"
|
|
|
|
[ TQC.testProperty "word64Dec" $ \w ->
|
|
|
|
run 1 (word64Dec w) === pack (show w)
|
|
|
|
, TQC.testProperty "word64Dec-x3" $ \x y z ->
|
|
|
|
run 1 (word64Dec x <> word64Dec y <> word64Dec z)
|
|
|
|
===
|
|
|
|
pack (show x ++ show y ++ show z)
|
2019-06-25 15:18:34 -04:00
|
|
|
, TQC.testProperty "word64PaddedUpperHex" $ \w ->
|
|
|
|
run 1 (word64PaddedUpperHex w)
|
|
|
|
===
|
|
|
|
pack (showWord64PaddedUpperHex w)
|
|
|
|
, TQC.testProperty "pasteArrayST" $ \(xs :: [Word64]) ->
|
|
|
|
(runArray word64Dec (V.fromList xs))
|
|
|
|
===
|
|
|
|
pack (foldMap show xs)
|
2019-06-17 13:24:24 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
pack :: String -> ByteArray
|
|
|
|
pack = Exts.fromList . map (fromIntegral @Int @Word8 . ord)
|
|
|
|
|
2019-06-25 15:18:34 -04:00
|
|
|
-- This is used to test pasteArrayST
|
|
|
|
runArray ::
|
|
|
|
(a -> Builder) -- ^ Builder
|
|
|
|
-> V.Vector a -- ^ Elements to serialize
|
|
|
|
-> ByteArray -- ^ Number of elements serialized, serialization
|
|
|
|
runArray f !xs = runST $ do
|
|
|
|
let go !v0 !sz !chunks = if V.null v0
|
|
|
|
then pure (mconcat (L.reverse chunks))
|
|
|
|
else do
|
|
|
|
arr <- PM.newByteArray sz
|
|
|
|
(v1,MutableBytes _ off _) <- pasteArrayST (MutableBytes arr 0 sz) f v0
|
|
|
|
-- If nothing was serialized, we need a bigger buffer
|
|
|
|
let szNext = if V.length v0 == V.length v1 then sz + 1 else sz
|
|
|
|
c <- PM.unsafeFreezeByteArray =<< PM.resizeMutableByteArray arr off
|
|
|
|
go v1 szNext (c : chunks)
|
|
|
|
go xs 1 []
|
|
|
|
|
|
|
|
showWord64PaddedUpperHex :: Word64 -> String
|
|
|
|
showWord64PaddedUpperHex = printf "%016X"
|