teardown-0.1.0.1: src/Control/Teardown/Internal/Types.hs
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE NoImplicitPrelude #-}
module Control.Teardown.Internal.Types where
import Protolude
import Data.Time.Clock (NominalDiffTime)
#if MIN_VERSION_base(4,9,0)
import Control.DeepSeq (NFData (..))
import GHC.Generics (Generic)
#endif
--------------------------------------------------------------------------------
type Description = Text
-- | Result from a 'Teardown' sub-routine
data TeardownResult
-- | Result is composed by multiple teardown sub-routines
= BranchResult
{
-- | Text description of parent teardown spec
resultDescription :: !Description
-- | Sum of elapsed time on sub-routines execution
, resultElapsedTime :: !NominalDiffTime
-- | Tells if any sub-routines failed
, resultDidFail :: !Bool
-- | Results of inner sub-routines
, resultListing :: ![TeardownResult]
}
-- | Result represents a single teardown sub-routine
| LeafResult
{
-- | Text description of sub-routine
resultDescription :: !Description
-- | Elapsed time on sub-routine execution
, resultElapsedTime :: !NominalDiffTime
-- | Exception from sub-routine
, resultError :: !(Maybe SomeException)
}
-- | Represents a stub cleanup operation (for lifting pure values)
| EmptyResult
{
-- | Text description of faked sub-routine
resultDescription :: !Description
}
deriving (Generic, Show)
-- | Sub-routine that performs a resource cleanup operation
newtype Teardown
= Teardown (IO TeardownResult)
deriving (Generic)
instance NFData Teardown where
rnf !_ = ()
-- | A record that __is__ or __contains__ a 'Teardown' sub-routine should
-- instantiate this typeclass
class ITeardown teardown where
-- | Executes teardown sub-routine returning a "TeardownResult"
teardown :: teardown -> IO TeardownResult
-- | A resource or sub-routine that can be transformed into a 'Teardown'
-- operation
class IResource resource where
newTeardown :: Text -> resource -> IO Teardown