Morphism.hs revision 6c91c5370a0e1a7af181602764b3c94b04ab597c
{- |
Module : $Header$
Description : Morphisms for Maude
Copyright : (c) Martin Kuehl, Uni Bremen 2008
License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt
Maintainer : mkhl@informatik.uni-bremen.de
Stability : experimental
Portability : portable
Definition of morphisms for Maude.
-}
{-
Ref.
...
-}
module Maude.Morphism (
Morphism(..),
fromRenamings,
symbolMap,
empty,
identity,
inverse,
createInclMorph,
isLegal,
mapSentence
) where
import Maude.AS_Maude
import Maude.Symbol
import Maude.Sentence
import Maude.Meta.HasSorts
import Maude.Meta.HasOps
import Maude.Meta.HasLabels
import Maude.Sign (Sign)
import qualified Maude.Sign as Sign
import qualified Data.Set as Set
import qualified Data.Map as Map
import Common.Result (Result)
import qualified Common.Result as Result
import Common.Doc as Doc hiding (empty)
import Common.DocUtils
type SortMap = SymbolMap
type OpMap = SymbolMap
type LabelMap = SymbolMap
data Morphism = Morphism {
source :: Sign,
target :: Sign,
sortMap :: SortMap,
opMap :: OpMap,
labelMap :: LabelMap
} deriving (Show, Ord, Eq)
instance Pretty Morphism where
pretty = Doc.text . show
-- | extract a Morphism from a list of Renamings
fromRenamings :: [Renaming] -> Morphism
fromRenamings = foldr insertRenaming empty
-- | extract a Symbol Map from a Morphism
symbolMap :: Morphism -> SymbolMap
symbolMap mor = Map.unions [(sortMap mor), (opMap mor), (labelMap mor)]
-- | insert a Renaming into a Morphism
insertRenaming :: Renaming -> Morphism -> Morphism
insertRenaming rename mor = let
src = source mor
tgt = target mor
smap = sortMap mor
omap = opMap mor
lmap = labelMap mor
in case rename of
SortRenaming from to -> let
a = sortName from
b = sortName to
in mor {
source = Sign.insertSort from src,
target = Sign.insertSort to tgt,
sortMap = Map.insert a b smap
}
LabelRenaming from to -> let
a = labelName from
b = labelName to
in mor {
labelMap = Map.insert a b lmap
}
OpRenaming1 from (To to _) -> let
a = opName from
b = opName to
in mor {
source = Sign.insertOpName from src,
target = Sign.insertOpName to tgt,
opMap = Map.insert a b omap
}
OpRenaming2 from _ _ (To to _) -> let
a = opName from
b = opName to
in mor {
source = Sign.insertOpName from src,
target = Sign.insertOpName to tgt,
opMap = Map.insert a b omap
}
-- | the empty Morphism
empty :: Morphism
empty = identity Sign.empty
-- | the identity Morphism
identity :: Sign -> Morphism
identity sign = createInclMorph sign sign
-- | the inclusion Morphism
createInclMorph :: Sign -> Sign -> Morphism
createInclMorph src tgt = Morphism {
source = src,
target = tgt,
sortMap = Map.empty,
opMap = Map.empty,
labelMap = Map.empty
}
-- | the inverse Morphism
inverse :: Morphism -> Result Morphism
inverse mor = let
inverseMap = Map.foldWithKey (flip Map.insert) Map.empty
in return Morphism {
source = (target mor),
target = (source mor),
sortMap = inverseMap (sortMap mor),
opMap = inverseMap (opMap mor),
labelMap = inverseMap (labelMap mor)
}
-- -- | the composition of two Morphisms
-- compose :: Morphism -> Morphism -> Result Morphism
-- compose f g
-- | target f /= source g = fail "target of the first and source of the second morphism are different"
-- | otherwise = let
-- apply mp nam = Map.findWithDefault nam nam mp
-- map'map mp = apply (mp g) . apply (mp f)
-- insert mp x = let y = map'map mp x
-- in if x == y then id else Map.insert x y
-- compose'map mp items = if Map.null (mp g)
-- then mp f
-- else Set.fold (insert mp) Map.empty $ items (source f)
-- in return Morphism {
-- source = (source f),
-- target = (target g),
-- sortMap = compose'map sortMap getSorts,
-- opMap = compose'map opMap getOps,
-- labelMap = compose'map labelMap getLabels
-- }
-- | check that a Morphism is legal
-- TODO: Ops don't have labels, so Signs don't have labels. so we can ignore the labelMap. Is that correct?
isLegal :: Morphism -> Bool
isLegal mor = let
src = source mor
tgt = target mor
smap = sortMap mor
omap = opMap mor
-- lmap = labelMap mor
apply mp nam = Map.findWithDefault nam nam mp
subset mp items = Set.isSubsetOf (Set.map (apply mp) $ items src) (items tgt)
legal'source = Sign.isLegal src
legal'sortMap = subset smap getSorts
legal'opMap = subset omap getOps
-- legal'labelMap = subset lmap getLabels
legal'labelMap = True
legal'target = Sign.isLegal tgt
in all id [legal'source, legal'sortMap, legal'opMap, legal'labelMap, legal'target]
-- | translate a Sentence along a Morphism
mapSentence :: Morphism -> Sentence -> Result.Result Sentence
mapSentence mor = let
smap = mapSorts (sortMap mor)
omap = mapOps (opMap mor)
lmap = mapLabels (labelMap mor)
in return . lmap . omap . smap
-- extract the name from a Sort, Op or Label
sortName :: Sort -> Qid
sortName (SortId name) = name
opName :: OpId -> Qid
opName (OpId name) = name
labelName :: LabelId -> Qid
labelName (LabelId name) = name