{-# LANGUAGE OverlappingInstances #-} {-# LANGUAGE UndecidableInstances #-} -- | Type constrained syntax trees module Language.Syntactic.Constraint where import Data.Constraint import Language.Syntactic.Syntax import Language.Syntactic.Interpretation.Equality import Language.Syntactic.Interpretation.Render import Language.Syntactic.Interpretation.Evaluation -------------------------------------------------------------------------------- -- * Type predicates -------------------------------------------------------------------------------- -- | Intersection of type predicates class (c1 a, c2 a) => (c1 :/\: c2) a instance (c1 a, c2 a) => (c1 :/\: c2) a infixr 5 :/\: -- | Universal type predicate class Top a instance Top a -- | Evidence that the predicate @sub@ is a subset of @sup@ type Sub sub sup = forall a . Dict (sub a) -> Dict (sup a) -- | Weaken an intersection weakL :: Sub (c1 :/\: c2) c1 weakL Dict = Dict -- | Weaken an intersection weakR :: Sub (c1 :/\: c2) c2 weakR Dict = Dict -- | Subset relation on type predicates class sub :< sup where -- | Compute evidence that @sub@ is a subset of @sup@ (i.e. that @(sup a)@ -- implies @(sub a)@) sub :: Sub sub sup instance p :< p where sub = id instance (p :/\: ps) :< p where sub = weakL instance (ps :< q) => ((p :/\: ps) :< q) where sub = sub . weakR -------------------------------------------------------------------------------- -- * Constrained syntax -------------------------------------------------------------------------------- -- | Constrain the result type of the expression by the given predicate data (expr :| pred) sig where C :: pred (DenResult sig) => expr sig -> (expr :| pred) sig infixl 4 :| instance Project sub sup => Project sub (sup :| pred) where prj (C s) = prj s instance Equality dom => Equality (dom :| pred) where equal (C a) (C b) = equal a b exprHash (C a) = exprHash a instance Render dom => Render (dom :| pred) where renderArgs args (C a) = renderArgs args a instance Eval dom => Eval (dom :| pred) where evaluate (C a) = evaluate a instance ToTree dom => ToTree (dom :| pred) where toTreeArgs args (C a) = toTreeArgs args a -- | Constrain the result type of the expression by the given predicate -- -- The difference between ':||' and ':|' is seen in the instances of the 'Sat' -- type: -- -- > type Sat (dom :| pred) = pred :/\: Sat dom -- > type Sat (dom :|| pred) = pred data (expr :|| pred) sig where C' :: pred (DenResult sig) => expr sig -> (expr :|| pred) sig infixl 4 :|| instance Project sub sup => Project sub (sup :|| pred) where prj (C' s) = prj s instance Equality dom => Equality (dom :|| pred) where equal (C' a) (C' b) = equal a b exprHash (C' a) = exprHash a instance Render dom => Render (dom :|| pred) where renderArgs args (C' a) = renderArgs args a instance Eval dom => Eval (dom :|| pred) where evaluate (C' a) = evaluate a instance ToTree dom => ToTree (dom :|| pred) where toTreeArgs args (C' a) = toTreeArgs args a -- | Expressions that constrain their result types class Constrained expr where -- | Returns a predicate that is satisfied by the result type of all -- expressions of the given type (see 'exprDict'). type Sat (expr :: * -> *) :: * -> Constraint -- | Compute a constraint on the result type of an expression exprDict :: expr a -> Dict (Sat expr (DenResult a)) instance Constrained dom => Constrained (AST dom) where type Sat (AST dom) = Sat dom exprDict (Sym s) = exprDict s exprDict (s :$ _) = exprDict s instance Constrained (sub1 :+: sub2) where -- | An over-approximation of the union of @Sat sub1@ and @Sat sub2@ type Sat (sub1 :+: sub2) = Top exprDict (InjL s) = Dict exprDict (InjR s) = Dict instance Constrained dom => Constrained (dom :| pred) where type Sat (dom :| pred) = pred :/\: Sat dom exprDict (C s) = case exprDict s of Dict -> Dict instance Constrained (dom :|| pred) where type Sat (dom :|| pred) = pred exprDict (C' s) = Dict type ConstrainedBy expr c = (Constrained expr, Sat expr :< c) -- | A version of 'exprDict' that returns a constraint for a particular -- predicate @p@ as long as @(p :< Sat dom)@ holds exprDictSub :: ConstrainedBy expr p => expr a -> Dict (p (DenResult a)) exprDictSub = sub . exprDict -- | A version of 'exprDict' that works for domains of the form -- @(dom1 :+: dom2)@ as long as @(Sat dom1 ~ Sat dom2)@ holds exprDictPlus :: (Constrained dom1, Constrained dom2, Sat dom1 ~ Sat dom2) => AST (dom1 :+: dom2) a -> Dict (Sat dom1 (DenResult a)) exprDictPlus (s :$ _) = exprDictPlus s exprDictPlus (Sym (InjL a)) = exprDict a exprDictPlus (Sym (InjR a)) = exprDict a -- | Symbol injection (like ':<:') with constrained result types class (Project sub sup, Sat sup a) => InjectC sub sup a where injC :: (DenResult sig ~ a) => sub sig -> sup sig instance InjectC sub sup sig => InjectC sub (AST sup) sig where injC = Sym . injC instance (InjectC sub sup sig, pred sig) => InjectC sub (sup :| pred) sig where injC = C . injC instance (InjectC sub sup sig, pred sig) => InjectC sub (sup :|| pred) sig where injC = C' . injC instance Sat expr sig => InjectC expr expr sig where injC = id instance InjectC expr1 (expr1 :+: expr2) sig where injC = InjL instance InjectC expr1 expr3 sig => InjectC expr1 (expr2 :+: expr3) sig where injC = InjR . injC -- | Generic symbol application -- -- 'appSymC' has any type of the form: -- -- > appSymC :: InjectC expr (AST dom) x -- > => expr (a :-> b :-> ... :-> Full x) -- > -> (ASTF dom a -> ASTF dom b -> ... -> ASTF dom x) appSymC :: (ApplySym sig f dom, InjectC sym (AST dom) (DenResult sig)) => sym sig -> f appSymC = appSym' . injC -- | 'AST' with existentially quantified result type data ASTE dom where ASTE :: ASTF dom a -> ASTE dom liftASTE :: (forall a . ASTF dom a -> b) -> ASTE dom -> b liftASTE f (ASTE a) = f a liftASTE2 :: (forall a b . ASTF dom a -> ASTF dom b -> c) -> ASTE dom -> ASTE dom -> c liftASTE2 f (ASTE a) (ASTE b) = f a b -- | 'AST' with bounded existentially quantified result type data ASTB dom where ASTB :: Sat dom a => ASTF dom a -> ASTB dom liftASTB :: (forall a . Sat dom a => ASTF dom a -> b) -> ASTB dom -> b liftASTB f (ASTB a) = f a liftASTB2 :: (forall a b . (Sat dom a, Sat dom b) => ASTF dom a -> ASTF dom b -> c) -> ASTB dom -> ASTB dom -> c liftASTB2 f (ASTB a) (ASTB b) = f a b