forked from GitHub/gf-core
51 lines
1.7 KiB
Haskell
51 lines
1.7 KiB
Haskell
module GF.Command.TreeOperations (
|
|
treeOp,
|
|
allTreeOps,
|
|
treeChunks
|
|
) where
|
|
|
|
import PGF(Expr,PGF,CId,compute,mkApp,unApp,unapply,unMeta,exprSize,exprFunctions)
|
|
import Data.List
|
|
|
|
type TreeOp = [Expr] -> [Expr]
|
|
|
|
treeOp :: PGF -> String -> Maybe (Either TreeOp (CId -> TreeOp))
|
|
treeOp pgf f = fmap snd $ lookup f $ allTreeOps pgf
|
|
|
|
allTreeOps :: PGF -> [(String,(String,Either TreeOp (CId -> TreeOp)))]
|
|
allTreeOps pgf = [
|
|
("compute",("compute by using semantic definitions (def)",
|
|
Left $ map (compute pgf))),
|
|
("largest",("sort trees from largest to smallest, in number of nodes",
|
|
Left $ largest)),
|
|
("nub",("remove duplicate trees",
|
|
Left $ nub)),
|
|
("smallest",("sort trees from smallest to largest, in number of nodes",
|
|
Left $ smallest)),
|
|
("subtrees",("return all fully applied subtrees (stopping at abstractions), by default sorted from the largest",
|
|
Left $ concatMap subtrees)),
|
|
("funs",("return all fun functions appearing in the tree, with duplications",
|
|
Left $ \es -> [mkApp f [] | e <- es, f <- exprFunctions e]))
|
|
]
|
|
|
|
largest :: [Expr] -> [Expr]
|
|
largest = reverse . smallest
|
|
|
|
smallest :: [Expr] -> [Expr]
|
|
smallest = sortBy (\t u -> compare (exprSize t) (exprSize u))
|
|
|
|
treeChunks :: Expr -> [Expr]
|
|
treeChunks = snd . cks where
|
|
cks t =
|
|
case unapply t of
|
|
(t, ts) -> case unMeta t of
|
|
Just _ -> (False,concatMap (snd . cks) ts)
|
|
Nothing -> case unzip (map cks ts) of
|
|
(bs,_) | and bs -> (True, [t])
|
|
(_,cts) -> (False,concat cts)
|
|
|
|
subtrees :: Expr -> [Expr]
|
|
subtrees t = t : case unApp t of
|
|
Just (f,ts) -> concatMap subtrees ts
|
|
_ -> [] -- don't go under abstractions
|