Graphalyze-0.7.0.0: Data/Graph/Analysis/Internal.hs
{-# OPTIONS_HADDOCK hide #-}
{- |
Module : Data.Graph.Analysis.Internal
Description : Internal definitions
Copyright : (c) Ivan Lazar Miljenovic 2009
License : 2-Clause BSD
Maintainer : Ivan.Miljenovic@gmail.com
This module defines various internal definitions utilised by other
modules of the Graphalyze library.
-}
module Data.Graph.Analysis.Internal where
import Data.Graph.Inductive.Graph
import Data.Either(partitionEithers)
import qualified Data.Map as M
import Data.Map(Map)
import Data.Maybe(fromJust)
import Control.Arrow((***))
import Control.Monad(ap)
-- -----------------------------------------------------------------------------
-- | Squaring a number.
sq :: (Num a) => a -> a
sq x = x * x
-- | Shorthand for 'fromIntegral'
fI :: (Num a) => Int -> a
fI = fromIntegral
-- | Flip a pair.
swap :: (a,b) -> (b,a)
swap (a,b) = (b,a)
-- | Apply the same function to both elements of a pair.
applyBoth :: (a -> b) -> (a,a) -> (b,b)
applyBoth f = f *** f
mkNodeMap :: (Ord a) => [LNode a] -> Map a Node
mkNodeMap = M.fromList . map swap
-- -----------------------------------------------------------------------------
-- | A relationship between two nodes with a label.
type Rel n e = (n, n, e)
applyNodes :: (a -> b) -> Rel a e -> Rel b e
applyNodes f (n1, n2, e) = (f n1, f n2, e)
fromNode :: Rel n e -> n
fromNode (n1, _, _) = n1
toNode :: Rel n e -> n
toNode (_, n2, _) = n2
relLabel :: Rel n e -> e
relLabel (_, _, e) = e
relsToEs :: (Ord a) => Bool -> [LNode a] -> [Rel a e]
-> ([Rel a e], [LEdge e])
relsToEs isDir lns rs = (unRs, graphEdges)
where
-- Creating a lookup map from the label to the @Node@ value.
nodeMap = mkNodeMap lns
findNode v = M.lookup v nodeMap
-- Validate a edge after looking its values up.
validEdge e = case applyNodes findNode e of
(Just x, Just y, l) -> Right (x,y,l)
_ -> Left e
-- The valid edges in the graph.
(unRs, gEdges) = partitionEithers $ map validEdge rs
dupSwap' = if isDir
then id
else concatMap dupSwap
dupSwap e@(x,y,l) | x == y = [e]
| otherwise = [e, (y,x,l)]
graphEdges = dupSwap' gEdges
-- This is needed by Types, so it's defined here and then exported by
-- Utils to avoid cyclic problems.
-- | Obtain the labels for a list of 'Node's.
-- It is assumed that each 'Node' is indeed present in the given graph.
addLabels :: (Graph g) => g a b -> [Node] -> [LNode a]
addLabels gr = map (ap (,) (fromJust . lab gr))