1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 14:54:16 +03:00
semantic/src/Patch.hs

46 lines
1.2 KiB
Haskell
Raw Normal View History

module Patch
( Patch(..)
, after
, before
, unPatch
, patchSum
, maybeFst
, maybeSnd
) where
2015-11-18 05:23:53 +03:00
import Data.These
import Prologue
2016-03-02 22:13:01 +03:00
2016-01-14 19:18:57 +03:00
-- | An operation to replace, insert, or delete an item.
2015-11-18 05:44:55 +03:00
data Patch a =
Replace a a
| Insert a
| Delete a
deriving (Eq, Foldable, Functor, Show, Traversable)
2015-11-20 02:26:40 +03:00
2016-01-14 19:18:57 +03:00
-- | Return the item from the after side of the patch.
2015-11-20 02:26:40 +03:00
after :: Patch a -> Maybe a
after = maybeFst . unPatch
2015-11-20 04:25:28 +03:00
2016-01-14 19:18:57 +03:00
-- | Return the item from the before side of the patch.
2015-11-20 04:25:28 +03:00
before :: Patch a -> Maybe a
before = maybeSnd . unPatch
2015-12-01 03:08:28 +03:00
2016-03-02 22:13:01 +03:00
-- | Return both sides of a patch.
2016-03-14 22:40:35 +03:00
unPatch :: Patch a -> These a a
unPatch (Replace a b) = These a b
unPatch (Insert b) = That b
unPatch (Delete a) = This a
2016-03-02 22:13:01 +03:00
2016-01-14 19:18:57 +03:00
-- | Calculate the cost of the patch given a function to compute the cost of a item.
2015-12-01 03:08:28 +03:00
patchSum :: (a -> Integer) -> Patch a -> Integer
2016-02-23 20:15:06 +03:00
patchSum termCost patch = maybe 0 termCost (before patch) + maybe 0 termCost (after patch)
2016-04-15 04:19:21 +03:00
-- | Return Just the value in This, or the first value in These, if any.
maybeFst :: These a b -> Maybe a
maybeFst = these Just (const Nothing) ((Just .) . const)
-- | Return Just the value in That, or the second value in These, if any.
maybeSnd :: These a b -> Maybe b
maybeSnd = these (const Nothing) Just ((Just .) . flip const)