-- | -- Copyright: (C) 2013 Amgen, Inc. -- {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE DefaultSignatures #-} module Control.Monad.R.Class ( MonadR(..) , acquireSome ) where import Control.Memory.Region import Foreign.R import Control.Applicative import Control.Monad.Catch (MonadCatch, MonadMask) import Control.Monad.Trans (MonadIO(..)) import Prelude -- | The class of R interaction monads. For safety, in compiled code we normally -- use the 'Language.R.Instance.R' monad. For convenience, in a GHCi session, we -- normally use the 'IO' monad directly (by means of a 'MonadR' instance for -- 'IO', imported only in GHCi). class (Applicative m, MonadIO m, MonadCatch m, MonadMask m) => MonadR m where type Region m :: * type Region m = G -- | Lift an 'IO' action. io :: IO a -> m a io = liftIO -- | Acquire ownership in the current region of the given object. This means -- that the liveness of the object is guaranteed so long as the current region -- remains active (the R garbage collector will not attempt to free it). acquire :: SEXP V a -> m (SEXP (Region m) a) default acquire :: (MonadIO m, Region m ~ G) => SEXP s a -> m (SEXP G a) acquire = liftIO . protect -- | 'acquire' for 'SomeSEXP'. acquireSome :: (MonadR m) => SomeSEXP V -> m (SomeSEXP (Region m)) acquireSome (SomeSEXP s) = SomeSEXP <$> acquire s