data-named-0.5.1: Data/Named/Tree.hs
-- | Working with NE trees and forests.
module Data.Named.Tree
(
-- * Auxiliary types
NeTree
, NeForest
-- * Span
, Span (..)
, leafSpan
, (<>)
, spanSet
-- * Trees with span
, span
, spanTree
, spanForest
, unSpanTree
, unSpanForest
, sortTree
, sortForest
-- * Utilities
, mapForest
, mapTree
, onLeaf
, onNode
, onEither
, onBoth
, groupForestLeaves
, groupTreeLeaves
, module Data.Tree
) where
import Prelude hiding (span)
import Data.List (sortBy, groupBy)
import Data.Either (rights)
import Data.Ord (comparing)
import Data.Ix (Ix, range)
import Data.Tree
import qualified Data.Set as S
-- | A tree with a values in internal nodes and b values in leaves.
type NeTree a b = Tree (Either a b)
-- | A forest with a values in internal nodes and b values in leaves.
type NeForest a b = Forest (Either a b)
-- | Map function over the leaf value.
onLeaf :: (a -> b) -> Either c a -> Either c b
onLeaf _ (Left x) = Left x
onLeaf f (Right x) = Right (f x)
{-# INLINE onLeaf #-}
-- | Map function over the internal node value.
onNode :: (a -> b) -> Either a c -> Either b c
onNode f (Left x) = Left (f x)
onNode _ (Right x) = Right x
{-# INLINE onNode #-}
-- | Map the first function over internal node value
-- and the second one over leaf value.
onEither :: (a -> c) -> (b -> d) -> Either a b -> Either c d
onEither f _ (Left x) = Left (f x)
onEither _ g (Right x) = Right (g x)
{-# INLINE onEither #-}
-- | Map one function over both node and leaf values.
onBoth :: (a -> b) -> Either a a -> Either b b
onBoth f (Left x) = Left (f x)
onBoth f (Right x) = Right (f x)
{-# INLINE onBoth #-}
-- | Map function over each tree from the forest.
mapForest :: (a -> b) -> Forest a -> Forest b
mapForest = map . mapTree
{-# INLINE mapForest #-}
-- | Map function over the tree.
mapTree :: (a -> b) -> Tree a -> Tree b
mapTree = fmap
{-# INLINE mapTree #-}
-- | Group leaves with respect to the given equality function.
groupForestLeaves :: (b -> b -> Bool) -> NeForest a b -> NeForest a [b]
groupForestLeaves f
= concatMap joinLeaves
. groupBy (both isLeaf)
. map (groupTreeLeaves f)
where
joinLeaves [x] = [x]
joinLeaves xs =
let ys = (concat . rights) (map rootLabel xs)
in [Node (Right ys') [] | ys' <- groupBy f ys]
both g x y = g x && g y
isLeaf (Node (Right _) []) = True
isLeaf _ = False
-- | Group leaves with respect to the given equality function.
groupTreeLeaves :: (b -> b -> Bool) -> NeTree a b -> NeTree a [b]
groupTreeLeaves f (Node v xs) = Node (fmap (:[]) v) (groupForestLeaves f xs)
-- | Spanning of a tree.
data Span w = Span
{ beg :: w
, end :: w }
deriving (Show, Eq, Ord)
-- | Make span for a leaf node.
leafSpan :: w -> Span w
leafSpan i = Span i i
-- | Minimum span overlapping both input spans.
(<>) :: Ord w => Span w -> Span w -> Span w
Span p q <> Span p' q' = Span (min p p') (max q q')
{-# INLINE (<>) #-}
-- | Set of positions covered by the span.
spanSet :: Ix w => Span w -> S.Set w
spanSet s = S.fromList $ range (beg s, end s)
-- | Get span of the span-annotated tree.
span :: Tree (a, Span w) -> Span w
span = snd . rootLabel
-- | Annotate tree nodes with spanning info given the function
-- which assignes indices to leaf nodes.
spanTree :: Ord w => Tree (Either n w) -> Tree (Either n w, Span w)
spanTree (Node (Right k) []) = Node (Right k, leafSpan k) []
spanTree (Node k ts) =
let us = spanForest ts
s = foldl1 (<>) (map span us)
in Node (k, s) us
-- | Annotate forest nodes with spanning info.
spanForest :: Ord w => Forest (Either n w) -> Forest (Either n w, Span w)
spanForest = map spanTree
-- | Remove span annotations from the tree.
unSpanTree :: Tree (k, Span w) -> Tree k
unSpanTree = fmap fst
-- | Remove span annotations from the forest.
unSpanForest :: Forest (k, Span w) -> Forest k
unSpanForest = map unSpanTree
-- | Sort the tree with respect to spanning info.
sortTree :: Ord w => Tree (k, Span w) -> Tree (k, Span w)
sortTree (Node x ts) = Node x (sortForest ts)
-- | Sort the forest with respect to spanning info.
sortForest :: Ord w => Forest (k, Span w) -> Forest (k, Span w)
sortForest = sortBy (comparing span) . map sortTree