zoom-cache-1.2.1.1: Data/Iteratee/ZoomCache/Utils.hs
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# OPTIONS -Wall #-}
----------------------------------------------------------------------
-- |
-- Module : Data.Iteratee.ZoomCache.Utils
-- Copyright : Conrad Parker
-- License : BSD3-style (see LICENSE)
--
-- Maintainer : Conrad Parker <conrad@metadecks.org>
-- Stability : unstable
-- Portability : unknown
--
-- Iteratee reading of ZoomCache files.
----------------------------------------------------------------------
module Data.Iteratee.ZoomCache.Utils (
-- * Raw data reading iteratees
readInt8
, readInt16be
, readInt32be
, readInt64be
, readWord8
, readWord16be
, readWord32be
, readWord64be
, readIntegerVLC
, readFloat32be
, readDouble64be
, readRational64be
-- * Codec reading
, readCodec
) where
import Control.Applicative ((<$>))
import Control.Monad (msum)
import Data.Bits
import Data.ByteString (ByteString)
import Data.Int
import Data.Iteratee (Iteratee)
import qualified Data.Iteratee as I
import qualified Data.Iteratee.Offset as OffI
import qualified Data.ListLike as LL
import Data.Offset
import Data.Ratio
import Data.Word
import Unsafe.Coerce (unsafeCoerce)
import Data.ZoomCache.Types
----------------------------------------------------------------------
-- | Read 1 byte as a signed Integral
readInt8 :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m, Integral a)
=> Iteratee s m a
readInt8 = fromIntegral . u8_to_s8 <$> I.head
where
u8_to_s8 :: Word8 -> Int8
u8_to_s8 = fromIntegral
{-# INLINE readInt8 #-}
-- | Read 2 bytes as a big-endian signed Integral
readInt16be :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m, Integral a)
=> Iteratee s m a
readInt16be = fromIntegral . u16_to_s16 <$> I.endianRead2 I.MSB
where
u16_to_s16 :: Word16 -> Int16
u16_to_s16 = fromIntegral
{-# INLINE readInt16be #-}
-- | Read 4 bytes as a big-endian signed Integral
readInt32be :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m, Integral a)
=> Iteratee s m a
readInt32be = fromIntegral . u32_to_s32 <$> I.endianRead4 I.MSB
where
u32_to_s32 :: Word32 -> Int32
u32_to_s32 = fromIntegral
{-# INLINE readInt32be #-}
-- | Read 8 bytes as a big-endian signed Integral
readInt64be :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m, Integral a)
=> Iteratee s m a
readInt64be = fromIntegral . u64_to_s64 <$> I.endianRead8 I.MSB
where
u64_to_s64 :: Word64 -> Int64
u64_to_s64 = fromIntegral
{-# INLINE readInt64be #-}
-- | Read 1 byte as an unsigned Integral
readWord8 :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m, Integral a)
=> Iteratee s m a
readWord8 = fromIntegral <$> I.head
{-# INLINE readWord8 #-}
-- | Read 2 bytes as a big-endian unsigned Integral
readWord16be :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m, Integral a)
=> Iteratee s m a
readWord16be = fromIntegral <$> I.endianRead2 I.MSB
{-# INLINE readWord16be #-}
-- | Read 4 bytes as a big-endian unsigned Integral
readWord32be :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m, Integral a)
=> Iteratee s m a
readWord32be = fromIntegral <$> I.endianRead4 I.MSB
{-# INLINE readWord32be #-}
-- | Read 8 bytes as a big-endian unsigned Integral
readWord64be :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m, Integral a)
=> Iteratee s m a
readWord64be = fromIntegral <$> I.endianRead8 I.MSB
{-# INLINE readWord64be #-}
-- | Read a variable-length-coded Integer.
-- For details of the variable-length coding format, see
-- "Data.ZoomCache.Numeric.Int".
readIntegerVLC :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m)
=> Iteratee s m Integer
readIntegerVLC = do
x0 <- I.head
let sign = if (x0 .&. 1) == 1 then negate else id
contBit = x0 .&. 128
x1 = fromIntegral $ (x0 .&. 126) `shiftR` 1
if contBit == 0
then return . sign $ x1
else sign <$> readVLC 6 x1
where
readVLC :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m)
=> Int -> Integer -> Iteratee s m Integer
readVLC n x0 = do
x <- I.head
let contBit = x .&. 128
x1 = (fromIntegral (x .&. 127) `shiftL` n) .|. x0
if contBit == 0
then return x1
else readVLC (n+7) x1
-- | Read 4 bytes as a big-endian Float
readFloat32be :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m)
=> Iteratee s m Float
readFloat32be = do
n <- I.endianRead4 I.MSB
return (unsafeCoerce n :: Float)
{-# INLINE readFloat32be #-}
-- | Read 8 bytes as a big-endian Double
readDouble64be :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m)
=> Iteratee s m Double
readDouble64be = do
n <- I.endianRead8 I.MSB
return (unsafeCoerce n :: Double)
{-# INLINE readDouble64be #-}
-- | Read 16 bytes as a big-endian Rational, encoded as an 8 byte
-- big endian numerator followed by an 8 byte big endian denominator.
readRational64be :: (I.Nullable s, LL.ListLike s Word8, Functor m, Monad m)
=> Iteratee s m Rational
readRational64be = do
(num :: Integer) <- readInt64be
(den :: Integer) <- readInt64be
if (den == 0)
then return 0
else return (num % den)
----------------------------------------------------------------------
readCodec :: (Functor m, Monad m)
=> [IdentifyCodec]
-> Int
-> Iteratee (Offset ByteString) m (Maybe Codec)
readCodec identifiers n = do
tt <- OffI.takeBS n
return (parseCodec identifiers tt)
parseCodec :: [IdentifyCodec] -> IdentifyCodec
parseCodec identifiers h = msum . map ($ h) $ identifiers