Safe Haskell | None |
---|---|
Language | Haskell2010 |
- showPrim :: PrimShow prim => FileNameFormat -> prim wA wB -> Doc
- showPrimFL :: PrimShow prim => FileNameFormat -> FL prim wA wB -> Doc
- primIsAddfile :: PrimClassify prim => prim wX wY -> Bool
- primIsHunk :: PrimClassify prim => prim wX wY -> Bool
- primIsBinary :: PrimClassify prim => prim wX wY -> Bool
- primIsSetpref :: PrimClassify prim => prim wX wY -> Bool
- primIsAdddir :: PrimClassify prim => prim wX wY -> Bool
- is_filepatch :: PrimClassify prim => prim wX wY -> Maybe FileName
- canonize :: PrimCanonize prim => DiffAlgorithm -> prim wX wY -> FL prim wX wY
- tryToShrink :: PrimCanonize prim => FL prim wX wY -> FL prim wX wY
- sortCoalesceFL :: PrimCanonize prim => FL prim wX wY -> FL prim wX wY
- coalesce :: PrimCanonize prim => (prim :> prim) wX wY -> Maybe (FL prim wX wY)
- canonizeFL :: PrimCanonize prim => DiffAlgorithm -> FL prim wX wY -> FL prim wX wY
- tryShrinkingInverse :: PrimCanonize prim => FL prim wX wY -> Maybe (FL prim wX wY)
- summarizePrim :: PrimDetails prim => prim wX wY -> [SummDetail]
- applyPrimFL :: (PrimApply prim, ApplyMonad (ApplyState prim) m) => FL prim wX wY -> m ()
- readPrim :: (PrimRead prim, ParserM m) => FileNameFormat -> m (Sealed (prim wX))
- class FromPrim p where
- class FromPrims p where
- class FromPrim p => ToFromPrim p where
- class (Patchy prim, MyEq prim, PatchListFormat prim, IsHunk prim, RepairToFL prim, PatchInspect prim, ReadPatch prim, ShowPatch prim, Show2 prim, PrimConstruct prim, PrimCanonize prim, PrimClassify prim, PrimDetails prim, PrimShow prim, PrimRead prim, PrimApply prim) => PrimPatch prim
- class PrimPatch (PrimOf p) => PrimPatchBase p where
- class PrimConstruct prim where
Documentation
showPrimFL :: PrimShow prim => FileNameFormat -> FL prim wA wB -> Doc Source #
primIsAddfile :: PrimClassify prim => prim wX wY -> Bool Source #
primIsHunk :: PrimClassify prim => prim wX wY -> Bool Source #
primIsBinary :: PrimClassify prim => prim wX wY -> Bool Source #
primIsSetpref :: PrimClassify prim => prim wX wY -> Bool Source #
primIsAdddir :: PrimClassify prim => prim wX wY -> Bool Source #
is_filepatch :: PrimClassify prim => prim wX wY -> Maybe FileName Source #
canonize :: PrimCanonize prim => DiffAlgorithm -> prim wX wY -> FL prim wX wY Source #
It can sometimes be handy to have a canonical representation of a given
patch. We achieve this by defining a canonical form for each patch type,
and a function canonize
which takes a patch and puts it into
canonical form. This routine is used by the diff function to create an
optimal patch (based on an LCS algorithm) from a simple hunk describing the
old and new version of a file.
tryToShrink :: PrimCanonize prim => FL prim wX wY -> FL prim wX wY Source #
tryToShrink ps
simplifies ps
by getting rid of self-cancellations
or coalescing patches
Question (Eric Kow): what properties should this have? For example, the prim1 implementation only gets rid of the first self-cancellation it finds (as far as I can tell). Is that OK? Can we try harder?
sortCoalesceFL :: PrimCanonize prim => FL prim wX wY -> FL prim wX wY Source #
sortCoalesceFL
ps
coalesces as many patches in ps
as
possible, sorting the results in some standard order.
canonizeFL :: PrimCanonize prim => DiffAlgorithm -> FL prim wX wY -> FL prim wX wY Source #
canonizeFL
ps
puts a sequence of primitive patches into
canonical form. Even if the patches are just hunk patches,
this is not necessarily the same set of results as you would get
if you applied the sequence to a specific tree and recalculated
a diff.
Note that this process does not preserve the commutation behaviour of the patches and is therefore not appropriate for use when working with already recorded patches (unless doing amend-record or the like).
tryShrinkingInverse :: PrimCanonize prim => FL prim wX wY -> Maybe (FL prim wX wY) Source #
tryShrinkingInverse ps
deletes the first subsequence of
primitive patches that is followed by the inverse subsequence,
if one exists. If not, it returns Nothing
summarizePrim :: PrimDetails prim => prim wX wY -> [SummDetail] Source #
applyPrimFL :: (PrimApply prim, ApplyMonad (ApplyState prim) m) => FL prim wX wY -> m () Source #
class FromPrim p => ToFromPrim p where Source #
ToFromPrim (RepoPatchV2 prim) Source # | |
class (Patchy prim, MyEq prim, PatchListFormat prim, IsHunk prim, RepairToFL prim, PatchInspect prim, ReadPatch prim, ShowPatch prim, Show2 prim, PrimConstruct prim, PrimCanonize prim, PrimClassify prim, PrimDetails prim, PrimShow prim, PrimRead prim, PrimApply prim) => PrimPatch prim Source #
class PrimPatch (PrimOf p) => PrimPatchBase p Source #
PrimPatchBase DummyPatch Source # | |
PrimPatchBase p => PrimPatchBase (RL p) Source # | |
PrimPatchBase p => PrimPatchBase (FL p) Source # | |
PrimPatch prim => PrimPatchBase (RepoPatchV1 prim) Source # | |
PrimPatchBase p => PrimPatchBase (Named p) Source # | |
PrimPatchBase p => PrimPatchBase (RebaseName p) Source # | |
PrimPatchBase p => PrimPatchBase (RebaseFixup p) Source # | |
PrimPatchBase p => PrimPatchBase (Suspended p) Source # | |
PrimPatch prim => PrimPatchBase (RepoPatchV2 prim) Source # | |
PrimPatchBase p => PrimPatchBase (WithDroppedDeps p) Source # | |
PrimPatch (PrimOf p) => PrimPatchBase (RebaseChange p) Source # | |
PrimPatchBase p => PrimPatchBase (RebaseSelect p) Source # | |
PrimPatchBase p => PrimPatchBase (WrappedNamed rt p) Source # | |
PrimPatchBase p => PrimPatchBase (PatchInfoAnd rt p) Source # | |
class PrimConstruct prim where Source #
addfile, rmfile, adddir, rmdir, move, changepref, hunk, tokreplace, binary, primFromHunk, anIdentity
addfile :: FilePath -> prim wX wY Source #
rmfile :: FilePath -> prim wX wY Source #
adddir :: FilePath -> prim wX wY Source #
rmdir :: FilePath -> prim wX wY Source #
move :: FilePath -> FilePath -> prim wX wY Source #
changepref :: String -> String -> String -> prim wX wY Source #
hunk :: FilePath -> Int -> [ByteString] -> [ByteString] -> prim wX wY Source #
tokreplace :: FilePath -> String -> String -> String -> prim wX wY Source #
binary :: FilePath -> ByteString -> ByteString -> prim wX wY Source #
primFromHunk :: FileHunk wX wY -> prim wX wY Source #
anIdentity :: prim wX wX Source #