module Ideas.Common.Context
(
Context, newContext
, fromContext, fromContextWith, fromContextWith2
, ContextNavigator, noNavigator, navigator, termNavigator
, liftToContext, contextView
, use, useC, applyTop
, currentTerm, changeTerm, replaceInContext, currentInContext, changeInContext
) where
import Data.Maybe
import Ideas.Common.Environment
import Ideas.Common.Id
import Ideas.Common.Rewriting
import Ideas.Common.Traversal.Navigator
import Ideas.Common.Traversal.Utils
import Ideas.Common.View hiding (left, right)
import Ideas.Utils.Uniplate
data Context a = C
{ getEnvironment :: Environment
, getNavigator :: ContextNavigator a
}
fromContext :: Monad m => Context a -> m a
fromContext = maybe (fail "fromContext") return .
currentNavigator . getNavigator . top
fromContextWith :: Monad m => (a -> b) -> Context a -> m b
fromContextWith f = fmap f . fromContext
fromContextWith2 :: Monad m => (a -> b -> c) -> Context a -> Context b -> m c
fromContextWith2 f a b = f <$> fromContext a <*> fromContext b
instance Eq a => Eq (Context a) where
x == y = fromMaybe False $ (==) <$> fromContext x <*> fromContext y
instance Show a => Show (Context a) where
show c@(C env a) =
let rest | noBindings env = ""
| otherwise = " {" ++ show env ++ "}"
in maybe "??" show (currentNavigator a) ++
" @ " ++ show (location c) ++ rest
instance Navigator (Context a) where
up = liftCN up
down = liftCN down
downLast = liftCN downLast
left = liftCN left
right = liftCN right
location = navLocation . getNavigator
instance HasEnvironment (Context a) where
environment = getEnvironment
setEnvironment e c = c {getEnvironment = e}
newContext :: ContextNavigator a -> Context a
newContext = C mempty
noNavigator :: a -> ContextNavigator a
noNavigator = NoNav
navigator :: Uniplate a => a -> ContextNavigator a
navigator = Simple . focus
termNavigator :: IsTerm a => a -> ContextNavigator a
termNavigator = TermNav . focus . toTerm
data ContextNavigator a where
TermNav :: IsTerm a => UniplateNavigator Term -> ContextNavigator a
Simple :: Uniplate a => UniplateNavigator a -> ContextNavigator a
NoNav :: a -> ContextNavigator a
liftCN :: Monad m => (forall b . Navigator b => b -> m b)
-> Context a -> m (Context a)
liftCN f (C env (TermNav a)) = (C env . TermNav) <$> f a
liftCN f (C env (Simple a)) = (C env . Simple) <$> f a
liftCN _ (C _ (NoNav _)) = fail "noNavigator"
navLocation :: ContextNavigator a -> Location
navLocation (TermNav a) = location a
navLocation (Simple a) = location a
navLocation (NoNav _) = mempty
currentNavigator :: ContextNavigator a -> Maybe a
currentNavigator (TermNav a) = matchM termView (current a)
currentNavigator (Simple a) = Just (current a)
currentNavigator (NoNav a) = Just a
changeNavigator :: (a -> a) -> ContextNavigator a -> ContextNavigator a
changeNavigator f (TermNav a) = TermNav (change (simplifyWith f termView) a)
changeNavigator f (Simple a) = Simple (change f a)
changeNavigator f (NoNav a) = NoNav (f a)
currentT :: ContextNavigator a -> Maybe Term
currentT (TermNav a) = Just (current a)
currentT _ = Nothing
changeT :: (Term -> Maybe Term) -> ContextNavigator a -> Maybe (ContextNavigator a)
changeT f (TermNav a) = TermNav <$> changeM f a
changeT _ _ = Nothing
castT :: IsTerm b => ContextNavigator a -> Maybe (ContextNavigator b)
castT (TermNav a) = Just (TermNav a)
castT _ = Nothing
contextView :: View (Context a) (a, Context a)
contextView = "views.contextView" @> makeView f g
where
f ctx = currentInContext ctx >>= \a -> Just (a, ctx)
g = uncurry replaceInContext
liftToContext :: LiftView f => f a -> f (Context a)
liftToContext = liftViewIn contextView
applyTop :: (a -> a) -> Context a -> Context a
applyTop f c =
navigateTowards (location c) (changeInContext f (top c))
use :: (LiftView f, IsTerm a, IsTerm b) => f a -> f (Context b)
use = useC . liftToContext
useC :: (LiftView f, IsTerm a, IsTerm b) => f (Context a) -> f (Context b)
useC = liftViewIn (makeView f g)
where
f old@(C env a) = castT a >>= \b -> return (C env b, old)
g (C env a, old) = fromMaybe old (C env <$> castT a)
currentTerm :: Context a -> Maybe Term
currentTerm = currentT . getNavigator
changeTerm :: (Term -> Maybe Term) -> Context a -> Maybe (Context a)
changeTerm f c = do
new <- changeT f (getNavigator c)
return c {getNavigator = new}
currentInContext :: Context a -> Maybe a
currentInContext (C _ a) = currentNavigator a
changeInContext :: (a -> a) -> Context a -> Context a
changeInContext f (C env a) = C env (changeNavigator f a)
replaceInContext :: a -> Context a -> Context a
replaceInContext = changeInContext . const