{-# LANGUAGE CPP #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE ScopedTypeVariables #-}
#if __GLASGOW_HASKELL__ >= 706
{-# LANGUAGE PolyKinds #-}
#endif
{-# OPTIONS_GHC -fno-warn-orphans -fno-warn-unused-imports #-}
module Data.Binary.Orphans () where
import Data.Binary
import Data.Binary.Put
import Control.Applicative (Alternative (..))
import Control.Monad (MonadPlus (..), liftM, liftM2)
import qualified Control.Monad.Fail as Fail
import Data.Bits (Bits, shiftL, shiftR, (.|.))
import Data.Complex (Complex (..))
import qualified Data.Fixed as Fixed
import Data.Functor.Identity (Identity (..))
import Data.List (foldl', unfoldr)
import qualified Data.List.NonEmpty as NE
import qualified Data.Monoid as Monoid
import Data.Semigroup ((<>))
import qualified Data.Semigroup as Semigroup
import Data.Version (Version (..))
import Data.Void (Void, absurd)
import GHC.Fingerprint (Fingerprint (..))
import Numeric.Natural (Natural)
#if !(MIN_VERSION_binary(0,7,1))
#endif
#if !(MIN_VERSION_binary(0,7,3) )
#ifndef MIN_VERSION_nats
#define MIN_VERSION_nats(x,y,z) 0
#endif
#if !(MIN_VERSION_nats(1,1,0))
type NaturalWord = Word64
instance Binary Natural where
{-# INLINE put #-}
put n | n <= hi =
putWord8 0
>> put (fromIntegral n :: NaturalWord)
where
hi = fromIntegral (maxBound :: NaturalWord) :: Natural
put n =
putWord8 1
>> put (unroll (abs n))
{-# INLINE get #-}
get = do
tag <- get :: Get Word8
case tag of
0 -> liftM fromIntegral (get :: Get NaturalWord)
_ -> do bytes <- get
return $! roll bytes
unroll :: (Integral a, Bits a) => a -> [Word8]
unroll = unfoldr step
where
step 0 = Nothing
step i = Just (fromIntegral i, i `shiftR` 8)
roll :: (Integral a, Bits a) => [Word8] -> a
roll = foldl' unstep 0 . reverse
where
unstep a b = a `shiftL` 8 .|. fromIntegral b
#endif
#endif
#if !MIN_VERSION_binary(0,7,6)
instance Binary Fingerprint where
put (Fingerprint x1 x2) = put x1 <> put x2
get = do
x1 <- get
x2 <- get
return $! Fingerprint x1 x2
#endif
#if !(MIN_VERSION_binary(0,8,0))
instance Binary Version where
put (Version br tags) = put br <> put tags
get = liftM2 Version get get
instance Binary Void where
put = absurd
get = fail "get @Void"
#if MIN_VERSION_base(4,7,0)
instance Binary (Fixed.Fixed a) where
put (Fixed.MkFixed a) = put a
get = Fixed.MkFixed `fmap` get
#else
instance Fixed.HasResolution a => Binary (Fixed.Fixed a) where
put x = put (truncate (x * fromInteger (Fixed.resolution (undefined :: Maybe a))) :: Integer)
get = (\x -> fromInteger x / fromInteger (Fixed.resolution (undefined :: Maybe a))) `fmap` get
#endif
#endif
#if !(MIN_VERSION_binary(0,8,2)) || !(MIN_VERSION_base(4,9,0))
instance Fail.MonadFail Get where
fail = Prelude.fail
#endif
#if !(MIN_VERSION_binary(0,8,3)) || !(MIN_VERSION_base(4,9,0))
instance Semigroup.Semigroup Put where
(<>) = (>>)
#endif
#if !(MIN_VERSION_binary(0,8,3))
instance Monoid.Monoid Put where
mempty = return ()
mappend = (<>)
#endif
#if !(MIN_VERSION_binary(0,8,3))
instance Binary a => Binary (Complex a) where
{-# INLINE put #-}
put (r :+ i) = put (r, i)
{-# INLINE get #-}
get = fmap (\(r,i) -> r :+ i) get
#endif
#if !MIN_VERSION_binary(0,8,4)
instance Binary a => Binary (Monoid.Dual a) where
get = fmap Monoid.Dual get
put = put . Monoid.getDual
instance Binary Monoid.All where
get = fmap Monoid.All get
put = put . Monoid.getAll
instance Binary Monoid.Any where
get = fmap Monoid.Any get
put = put . Monoid.getAny
instance Binary a => Binary (Monoid.Sum a) where
get = fmap Monoid.Sum get
put = put . Monoid.getSum
instance Binary a => Binary (Monoid.Product a) where
get = fmap Monoid.Product get
put = put . Monoid.getProduct
instance Binary a => Binary (Monoid.First a) where
get = fmap Monoid.First get
put = put . Monoid.getFirst
instance Binary a => Binary (Monoid.Last a) where
get = fmap Monoid.Last get
put = put . Monoid.getLast
#if MIN_VERSION_base(4,8,0)
instance Binary (f a) => Binary (Monoid.Alt f a) where
get = fmap Monoid.Alt get
put = put . Monoid.getAlt
#endif
#endif
#if !MIN_VERSION_binary(0,8,4) || !MIN_VERSION_base(4,9,0)
instance Binary a => Binary (Semigroup.Min a) where
get = fmap Semigroup.Min get
put = put . Semigroup.getMin
instance Binary a => Binary (Semigroup.Max a) where
get = fmap Semigroup.Max get
put = put . Semigroup.getMax
instance Binary a => Binary (Semigroup.First a) where
get = fmap Semigroup.First get
put = put . Semigroup.getFirst
instance Binary a => Binary (Semigroup.Last a) where
get = fmap Semigroup.Last get
put = put . Semigroup.getLast
instance Binary a => Binary (Semigroup.Option a) where
get = fmap Semigroup.Option get
put = put . Semigroup.getOption
instance Binary m => Binary (Semigroup.WrappedMonoid m) where
get = fmap Semigroup.WrapMonoid get
put = put . Semigroup.unwrapMonoid
instance (Binary a, Binary b) => Binary (Semigroup.Arg a b) where
get = liftM2 Semigroup.Arg get get
put (Semigroup.Arg a b) = put a <> put b
instance Binary a => Binary (NE.NonEmpty a) where
get = do
x <- get
case x of
[] -> fail "empty NonEmpty"
(x:xs) -> return (x NE.:| xs)
put = put . NE.toList
#endif
#if !(MIN_VERSION_binary(8,6,0))
#endif
#if !(MIN_VERSION_binary(8,6,0))
#if !MIN_VERSION_base(4,8,0)
instance Binary a => Binary (Identity a) where
put (Identity x) = put x
get = fmap Identity get
#endif
#endif