{-# LANGUAGE ExistentialQuantification, RecordWildCards, ScopedTypeVariables #-}
{-# LANGUAGE ConstraintKinds #-}
module Development.Shake.Internal.Value(
Value, newValue, fromValue,
Key, newKey, fromKey, typeKey,
ShakeValue
) where
import Development.Shake.Classes
import Development.Shake.Internal.Errors
import Data.Typeable
import Data.Bits
import Unsafe.Coerce
type ShakeValue a = (Show a, Typeable a, Eq a, Hashable a, Binary a, NFData a)
data Key = forall a . Key
{keyType :: TypeRep
,keyShow :: a -> String
,keyRnf :: a -> ()
,keyEq :: a -> a -> Bool
,keyHash :: Int -> a -> Int
,keyValue :: a
}
data Value = forall a . Value
{valueType :: TypeRep
,valueShow :: a -> String
,valueRnf :: a -> ()
,valueValue :: a
}
newKey :: forall a . ShakeValue a => a -> Key
newKey = Key (typeRep (Proxy :: Proxy a)) show rnf (==) hashWithSalt
newValue :: forall a . (Typeable a, Show a, NFData a) => a -> Value
newValue = Value (typeRep (Proxy :: Proxy a)) show rnf
typeKey :: Key -> TypeRep
typeKey Key{..} = keyType
fromKey :: forall a . Typeable a => Key -> a
fromKey Key{..}
| keyType == resType = unsafeCoerce keyValue
| otherwise = throwImpure $ errorInternal $ "fromKey, bad cast, have " ++ show keyType ++ ", wanted " ++ show resType
where resType = typeRep (Proxy :: Proxy a)
fromValue :: forall a . Typeable a => Value -> a
fromValue Value{..}
| valueType == resType = unsafeCoerce valueValue
| otherwise = throwImpure $ errorInternal $ "fromValue, bad cast, have " ++ show valueType ++ ", wanted " ++ show resType
where resType = typeRep (Proxy :: Proxy a)
instance Show Key where
show Key{..} = keyShow keyValue
instance Show Value where
show Value{..} = valueShow valueValue
instance NFData Key where
rnf Key{..} = keyRnf keyValue
instance NFData Value where
rnf Value{..} = valueRnf valueValue
instance Hashable Key where
hashWithSalt salt Key{..} = hashWithSalt salt keyType `xor` keyHash salt keyValue
instance Eq Key where
Key{keyType=at,keyValue=a,keyEq=eq} == Key{keyType=bt,keyValue=b}
| at /= bt = False
| otherwise = eq a (unsafeCoerce b)