2015-11-18 04:15:10 +03:00
|
|
|
module Interpreter (interpret) where
|
2015-11-18 04:05:16 +03:00
|
|
|
|
|
|
|
import Algorithm
|
|
|
|
import Control.Monad.Free
|
|
|
|
import Control.Comonad.Cofree
|
|
|
|
import Operation
|
|
|
|
import Diff
|
2015-11-18 04:29:18 +03:00
|
|
|
import Syntax
|
2015-11-18 04:50:15 +03:00
|
|
|
import Data.Map
|
2015-11-18 04:05:16 +03:00
|
|
|
|
2015-11-18 04:17:45 +03:00
|
|
|
constructAndRun :: Term a Info -> Term a Info -> Maybe (Diff a)
|
|
|
|
constructAndRun a b =
|
2015-11-18 04:05:16 +03:00
|
|
|
run algorithm where
|
|
|
|
algorithm = Free $ Recursive a b Pure
|
|
|
|
|
|
|
|
run :: Algorithm a (Diff a) -> Maybe (Diff a)
|
|
|
|
run (Pure diff) = Just diff
|
2015-11-18 04:59:01 +03:00
|
|
|
run (Free (Recursive a b f)) = run . f $ recur a b where
|
2015-11-18 04:29:18 +03:00
|
|
|
recur (_ :< Indexed a') (_ :< Indexed b') | length a' == length b' =
|
2015-11-18 04:59:01 +03:00
|
|
|
Free . Indexed $ zipWith interpret a' b'
|
2015-11-18 04:35:00 +03:00
|
|
|
recur (_ :< Fixed a') (_ :< Fixed b') | length a' == length b' =
|
2015-11-18 04:59:01 +03:00
|
|
|
Free . Fixed $ zipWith interpret a' b'
|
2015-11-18 04:50:15 +03:00
|
|
|
recur (_ :< Keyed a') (_ :< Keyed b') | keys a' == keys b' =
|
2015-11-18 05:16:39 +03:00
|
|
|
Free . Keyed . fromList . fmap repack $ keys b' where
|
|
|
|
repack key = (key, interpretInBoth key a' b')
|
2015-11-18 04:50:15 +03:00
|
|
|
interpretInBoth key a' b' = maybeInterpret (Data.Map.lookup key a') (Data.Map.lookup key b')
|
|
|
|
maybeInterpret (Just a) (Just b) = interpret a b
|
2015-11-18 04:59:01 +03:00
|
|
|
recur _ _ = Pure Patch { old = Just a, new = Just b }
|
2015-11-18 04:13:48 +03:00
|
|
|
|
|
|
|
interpret :: Term a Info -> Term a Info -> Diff a
|
2015-11-18 04:17:45 +03:00
|
|
|
interpret a b = maybeReplace $ constructAndRun a b where
|
2015-11-18 04:13:48 +03:00
|
|
|
maybeReplace (Just a) = a
|
|
|
|
maybeReplace Nothing = Just a </> Just b
|