packages feed

bytestring-arbitrary (empty) → 0.0.1

raw patch · 6 files changed

+220/−0 lines, 6 filesdep +QuickCheckdep +basedep +bytestringsetup-changed

Dependencies added: QuickCheck, base, bytestring, bytestring-arbitrary, criterion, cryptohash

Files

+ LICENSE view
@@ -0,0 +1,30 @@+Copyright (c) 2014, jay groven++All rights reserved.++Redistribution and use in source and binary forms, with or without+modification, are permitted provided that the following conditions are met:++    * Redistributions of source code must retain the above copyright+      notice, this list of conditions and the following disclaimer.++    * Redistributions in binary form must reproduce the above+      copyright notice, this list of conditions and the following+      disclaimer in the documentation and/or other materials provided+      with the distribution.++    * Neither the name of jay groven nor the names of other+      contributors may be used to endorse or promote products derived+      from this software without specific prior written permission.++THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ Setup.hs view
@@ -0,0 +1,2 @@+import Distribution.Simple+main = defaultMain
+ benches/bench.hs view
@@ -0,0 +1,34 @@+import Test.QuickCheck.Arbitrary+import Test.QuickCheck.Gen+import Criterion.Main++import Data.ByteString.Arbitrary++main :: IO ()+main = defaultMain+  [ bgroup "ArbByteString"+    [ bench "arbitrary"    $ action (arbitrary :: Gen ArbByteString)+    , bench "arbitrary1M"  $ action (arbitrary :: Gen ArbByteString1M)+    , bench "arbitrary10M" $ action (arbitrary :: Gen ArbByteString10M)+    , bgroup "fastRandBs"+      [ bench "10B" $ action (fastRandBs 10)+      , bench "1KB" $ action (fastRandBs 1024)+      , bench "1MB" $ action (fastRandBs (1024*1024))+      ]+    , bgroup "slowRandBs"+      [ bench "10B" $ action (slowRandBs 10)+      , bench "1KB" $ action (slowRandBs 1024)+      , bench "10KB" $ action (slowRandBs 10240)+      ]+    ]+  ]++  where+  action :: Gen a -> IO ()+  action act = do+    samples <- sample' act+    examine samples+    where+    examine :: [a] -> IO ()+    examine [] = return ()+    examine (hd:tl) = hd `seq` examine tl
+ bytestring-arbitrary.cabal view
@@ -0,0 +1,55 @@+-- Initial bytestring-arbitrary.cabal generated by cabal init.  For further+--  documentation, see http://haskell.org/cabal/users-guide/++name:                bytestring-arbitrary+version:             0.0.1+synopsis:            Arbitrary instances for ByteStrings+-- description:         +homepage:            https://github.com/tsuraan/bytestring-arbitrary+license:             BSD3+license-file:        LICENSE+author:              jay groven+maintainer:          tsuraan@gmail.com+-- copyright:           +category:            Data+build-type:          Simple+-- extra-source-files:  +cabal-version:       >=1.10++library+  exposed-modules:     Data.ByteString.Arbitrary+  -- other-modules:       +  -- other-extensions:    +  build-depends:       base >=4.6 && <4.7+                     , bytestring >=0.10 && <0.11+                     , cryptohash+                     , QuickCheck+  hs-source-dirs:      src+  default-language:    Haskell2010+  ghc-options:         -fllvm -Wall++benchmark benchmark-all+  type:                exitcode-stdio-1.0+  hs-source-dirs:      benches+  main-is:             bench.hs+  build-depends:       base >=4.6 && <4.7+                     , bytestring >=0.10 && <0.11+                     , cryptohash+                     , QuickCheck+                     , criterion+                     , bytestring-arbitrary+  default-language:    Haskell2010+  ghc-options:         -fllvm -Wall++Test-Suite test-all+  type:                exitcode-stdio-1.0+  hs-source-dirs:      tests+  main-is:             test.hs+  build-depends:       base+                     , bytestring+                     , QuickCheck+                     , cryptohash+                     , bytestring-arbitrary+  default-language:    Haskell2010+  ghc-options:         -fllvm -Wall+
+ src/Data/ByteString/Arbitrary.hs view
@@ -0,0 +1,80 @@+module Data.ByteString.Arbitrary+( ArbByteString(..)+, ArbByteString1M(..)+, ArbByteString10M(..)+, fastRandBs+, slowRandBs+) where++import qualified Data.ByteString as BS+import Data.ByteString ( ByteString )+import Crypto.Hash.Skein512 ( hash )+import Test.QuickCheck ( Arbitrary(..), Gen, choose, vectorOf )++-- | A ByteString wrapper so we can implement Arbitrary for ByteString. This+-- will currently generate random ByteStrings of length 0 to 100KB.+newtype ArbByteString = ABS { fromABS :: ByteString }+  deriving (Eq, Ord, Read, Show )++-- | A wrapper to generate 1MB bytestrings. The shrink implementation still+-- returns "ArbByteString1M" instances, of course, but they're smaller than+-- 1MB.+newtype ArbByteString1M = ABS1M { fromABS1M :: ByteString }+  deriving (Eq, Ord, Read, Show )++-- | A wrapper to generate 10MB bytestrings. I should really figure out how+-- type-level Nats work, so one can just do (ArbByteStringN 10000000) and have+-- selectable sizes, but I don't see how to do that yet, so 10MB is as big as+-- this library goes. As with the 1MB version, shrink here will generate+-- ArbByteString10M instances that wrap ByteStrings smaller than 10MB.+newtype ArbByteString10M = ABS10M { fromABS10M :: ByteString }+  deriving (Eq, Ord, Read, Show )++instance Arbitrary ArbByteString where+  arbitrary = do+    len <- choose (0, 100*1024)+    ABS `fmap` fastRandBs len++  shrink (ABS bs) = map ABS $ shrinks bs++instance Arbitrary ArbByteString1M where+  arbitrary =+    ABS1M `fmap` fastRandBs (1024*1024)++  shrink (ABS1M bs) = map ABS1M $ shrinks bs++instance Arbitrary ArbByteString10M where+  arbitrary =+    ABS10M `fmap` fastRandBs (10*1024*1024)++  shrink (ABS10M bs) = map ABS10M $ shrinks bs++-- | Generate a bunch of binary data quickly. This abuses the cryptohash skein+-- function to generate a megabyte of data at a time, and then concats chunks+-- until it has enough.+fastRandBs :: Int -> Gen ByteString+fastRandBs len = do+  let perChunk = 1024*1024+  let (rounds, bytes) = len `divMod` perChunk+  bSeed <- slowRandBs $ 16 -- 16 bytes of "really" random seed++  -- Notice the hash (8*) calls; hash always returns an integral number of+  -- bytes (duh), but it wants its output length in bits. We just always track+  -- bytes, and multiply by 8 when calling hash.+  let preChunks = if bytes == 0 then BS.empty else hash (8*bytes) bSeed+  if rounds == 0+    then return preChunks+    else do+      rSeed <- slowRandBs $ 16+      let hashes = tail $ iterate (hash $ 8*perChunk) rSeed+      return $ BS.concat $ preChunks : take rounds hashes++-- | Generate binary data slowly. This generates a list of Word8s, and then+-- uses Data.ByteString.pack to concatenate it into a single ByteString.+slowRandBs :: Int -> Gen ByteString+slowRandBs numBytes = BS.pack `fmap` vectorOf numBytes (choose (0, 255))++shrinks :: ByteString -> [ByteString]+shrinks bs =+  [ BS.append a b | (a, b) <- zip (BS.inits bs) (tail $ BS.tails bs) ]+
+ tests/test.hs view
@@ -0,0 +1,19 @@+import qualified Data.ByteString as BS+import Data.ByteString ( ByteString )+import Test.QuickCheck.Monadic+import Test.QuickCheck++import Data.ByteString.Arbitrary ( fastRandBs, slowRandBs )++main :: IO ()+main = do+  quickCheck $ lengths fastRandBs+  quickCheck $ lengths (\i -> slowRandBs $ min i 10240)+  where+  lengths :: (Int -> Gen ByteString) -> Int -> Property+  lengths genFn len =+    let gen = genFn len+    in monadicIO $ do+        samples <- run $ sample' gen+        return $ all (==len) $ map BS.length samples+