module Darcs.Patch.Bundle
( hashBundle
, makeBundle2
, makeBundleN
, scanBundle
, contextPatches
, scanContextFile
, patchFilename
, getContext
, minContext
, parseBundle
) where
import Prelude ()
import Darcs.Prelude
import Data.Char ( isAlpha, toLower, isDigit, isSpace )
import qualified Data.ByteString as B ( ByteString, length, null, drop,
isPrefixOf )
import qualified Data.ByteString.Char8 as BC ( unpack, break, pack )
import Darcs.Util.Tree( Tree )
import Darcs.Util.Tree.Monad( virtualTreeIO )
import Darcs.Patch ( RepoPatch, showPatch, showContextPatch,
readPatchPartial )
import Darcs.Patch.Apply( ApplyState )
import Darcs.Patch.Bracketed ( Bracketed, unBracketedFL )
import Darcs.Patch.Bracketed.Instances ()
import Darcs.Patch.Commute( commute )
import Darcs.Patch.Depends ( slightlyOptimizePatchset )
import Darcs.Patch.Format ( PatchListFormat )
import Darcs.Patch.Info ( PatchInfo, readPatchInfo, showPatchInfo,
showPatchInfoUI, isTag )
import Darcs.Patch.Named.Wrapped ( WrappedNamed )
import Darcs.Patch.PatchInfoAnd ( PatchInfoAnd, piap, fmapFLPIAP, info,
patchInfoAndPatch, unavailable, hopefully,
generaliseRepoTypePIAP
)
import Darcs.Patch.ReadMonads ( parseStrictly )
import Darcs.Patch.RepoType ( RepoType(..), RebaseType(..) )
import Darcs.Patch.Set ( PatchSet(..), Tagged(..), SealedPatchSet, Origin )
import Darcs.Patch.Show ( ShowPatchBasic )
import Darcs.Patch.Witnesses.Ordered
( RL(..), FL(..), (:>)(..), reverseFL, (+<+),
mapFL, mapFL_FL, mapRL )
import Darcs.Patch.Witnesses.Sealed ( Sealed(Sealed), seal )
import Darcs.Patch.Witnesses.Unsafe ( unsafeCoerceP )
import Darcs.Util.ByteString ( mmapFilePS, linesPS, unlinesPS, dropSpace, substrPS)
import Darcs.Util.Crypt.SHA1 ( sha1PS )
import Darcs.Util.Printer ( Doc, renderPS, newline, text, ($$),
(<>), vcat, vsep, renderString, RenderMode(..) )
hashBundle :: (PatchListFormat p, ShowPatchBasic p) => FL (WrappedNamed rt p) wX wY
-> String
hashBundle to_be_sent =
show $ sha1PS $ renderPS Standard $ vcat (mapFL showPatch to_be_sent) <> newline
makeBundleN :: (ApplyState p ~ Tree, RepoPatch p) => Maybe (Tree IO)
-> PatchSet rt p wStart wX -> FL (WrappedNamed rt p) wX wY -> IO Doc
makeBundleN the_s (PatchSet (_ :<: Tagged t _ _) ps) to_be_sent =
makeBundle2 the_s ((NilRL :<: t) +<+ ps) to_be_sent to_be_sent
makeBundleN the_s (PatchSet NilRL ps) to_be_sent =
makeBundle2 the_s ps to_be_sent to_be_sent
makeBundle2 :: (ApplyState p ~ Tree, RepoPatch p) => Maybe (Tree IO)
-> RL (PatchInfoAnd rt p) wStart wX -> FL (WrappedNamed rt p) wX wY
-> FL (WrappedNamed rt p) wX wY -> IO Doc
makeBundle2 the_s common' to_be_sent to_be_sent2 = do
patches <- case the_s of
Just tree -> fst `fmap` virtualTreeIO (showContextPatch to_be_sent) tree
Nothing -> return (vsep $ mapFL showPatch to_be_sent)
return $ format patches
where
format the_new = text ""
$$ text "New patches:"
$$ text ""
$$ the_new
$$ text ""
$$ text "Context:"
$$ text ""
$$ vcat (map showPatchInfo common)
$$ text "Patch bundle hash:"
$$ text (hashBundle to_be_sent2)
$$ text ""
common = mapRL info common'
parseBundle :: forall rt p. RepoPatch p => B.ByteString
-> Either String
(Sealed ((PatchSet rt p :> FL (PatchInfoAnd rt p)) Origin))
parseBundle input | B.null input = Left "Bad patch bundle!"
parseBundle input = case sillyLex input of
("New patches:", rest) -> case getPatches rest of
(Sealed bracketedPatches, rest') -> case sillyLex rest' of
("Context:", rest'') -> case getContext rest'' of
(cont, maybe_hash) ->
let sealedCtxAndPs = sealCtxAndPs cont bracketedPatches in
case substrPS (BC.pack "Patch bundle hash:") maybe_hash of
Just n ->
let hPs = mapFL_FL hopefully bracketedPatches
realHash = hashBundle hPs
getHash = fst . sillyLex . snd . sillyLex
bundleHash = getHash $ B.drop n maybe_hash in
if realHash == bundleHash
then sealedCtxAndPs
else Left hashFailureMessage
Nothing -> sealedCtxAndPs
(a, r) -> Left $ "Malformed patch bundle: '" ++ a
++ "' is not 'Context:'\n" ++ BC.unpack r
("Context:", rest) -> case getContext rest of
(cont, rest') -> case sillyLex rest' of
("New patches:", rest'') -> case getPatches rest'' of
(Sealed bracketedPatches, _) ->
Right $ sealContextWithPatches cont bracketedPatches
(a, _) -> Left $ "Malformed patch bundle: '" ++ a
++ "' is not 'New patches:'"
("-----BEGIN PGP SIGNED MESSAGE-----",rest) ->
parseBundle $ filterGpgDashes rest
(_, rest) -> parseBundle rest
where
hashFailureMessage = "Patch bundle failed hash!\n"
++ "This probably means that the patch has been "
++ "corrupted by a mailer.\n"
++ "The most likely culprit is CRLF newlines."
sealCtxAndPs ctx ps = Right $ sealContextWithPatches ctx ps
sealContextWithPatches :: RepoPatch p => [PatchInfo]
-> FL (PatchInfoAnd ('RepoType 'NoRebase) (Bracketed p)) wX wY
-> Sealed
((PatchSet rt p :> FL (PatchInfoAnd rt p)) Origin)
sealContextWithPatches context bracketedPatches =
let
notRebasing _
= error "internal error: unreachable case (Darcs.Patch.Bundle.parseBundle.notRebasing)"
patches = mapFL_FL (generaliseRepoTypePIAP . fmapFLPIAP unBracketedFL notRebasing)
bracketedPatches
in
case reverse context of
(x : ry) | isTag x ->
let ps = unavailablePatches (reverse ry)
t = Tagged (piUnavailable x) Nothing NilRL in
Sealed $ PatchSet (NilRL :<: t) ps :> patches
_ -> let ps = PatchSet NilRL (unavailablePatches context) in
Sealed $ ps :> patches
scanBundle :: forall rt p . RepoPatch p => B.ByteString
-> Either String (SealedPatchSet rt p Origin)
scanBundle bundle = do
Sealed (PatchSet tagged recent :> ps) <- parseBundle bundle
return . Sealed $ PatchSet tagged (recent +<+ reverseFL ps)
filterGpgDashes :: B.ByteString -> B.ByteString
filterGpgDashes ps =
unlinesPS $ map drop_dashes $
takeWhile (/= BC.pack "-----END PGP SIGNED MESSAGE-----") $
dropWhile not_context_or_newpatches $ linesPS ps
where
drop_dashes x
| B.length x < 2 = x
| BC.pack "- " `B.isPrefixOf` x = B.drop 2 x
| otherwise = x
not_context_or_newpatches s = (s /= BC.pack "Context:") &&
(s /= BC.pack "New patches:")
unavailablePatches :: RepoPatch p => [PatchInfo] -> RL (PatchInfoAnd rt p) wX wY
unavailablePatches = foldr (flip (:<:) . piUnavailable) (unsafeCoerceP NilRL)
piUnavailable :: RepoPatch p => PatchInfo -> PatchInfoAnd rt p wX wY
piUnavailable i = patchInfoAndPatch i . unavailable $
"Patch not stored in patch bundle:\n" ++ renderString Encode (showPatchInfoUI i)
getContext :: B.ByteString -> ([PatchInfo],B.ByteString)
getContext ps = case parseStrictly readPatchInfo ps of
Just (pinfo, r') -> case getContext r' of
(pis, r'') -> (pinfo : pis, r'')
Nothing -> ([], ps)
(-:-) :: a wX wY -> (Sealed (FL a wY), b) -> (Sealed (FL a wX), b)
p -:- (Sealed ps, r) = (Sealed (p :>: ps), r)
getPatches :: RepoPatch p => B.ByteString
-> (Sealed (FL (PatchInfoAnd ('RepoType 'NoRebase) (Bracketed p)) wX), B.ByteString)
getPatches ps = case parseStrictly readPatchInfo ps of
Nothing -> (Sealed NilFL, ps)
Just (pinfo, _) -> case readPatchPartial ps of
Nothing -> (Sealed NilFL, ps)
Just (Sealed p, r) -> (pinfo `piap` p) -:- getPatches r
sillyLex :: B.ByteString -> (String, B.ByteString)
sillyLex ps = (BC.unpack a, b)
where
(a, b) = BC.break (== '\n') (dropSpace ps)
contextPatches :: RepoPatch p => PatchSet rt p Origin wX
-> (PatchSet rt p :> RL (PatchInfoAnd rt p)) Origin wX
contextPatches set = case slightlyOptimizePatchset set of
PatchSet (ts :<: Tagged t _ ps') ps ->
PatchSet ts ps' :> ((NilRL :<: t) +<+ ps)
PatchSet NilRL ps -> PatchSet NilRL NilRL :> ps
scanContextFile :: RepoPatch p => FilePath -> IO (PatchSet rt p Origin wX)
scanContextFile filename = scanContext `fmap` mmapFilePS filename
where
scanContext :: RepoPatch p => B.ByteString -> PatchSet rt p Origin wX
scanContext input
| B.null input = error "Bad context!"
| otherwise = case sillyLex input of
("Context:",rest) -> case getContext rest of
(cont@(_ : _), _) | isTag (last cont) ->
let ps = unavailablePatches $ init cont
t = Tagged (piUnavailable $ last cont) Nothing NilRL in
PatchSet (NilRL :<: t) ps
(cont, _) -> PatchSet NilRL (unavailablePatches cont)
("-----BEGIN PGP SIGNED MESSAGE-----",rest) ->
scanContext $ filterGpgDashes rest
(_, rest) -> scanContext rest
minContext :: (RepoPatch p)
=> PatchSet rt p wStart wB
-> FL (PatchInfoAnd rt p) wB wC
-> Sealed ((PatchSet rt p :> FL (PatchInfoAnd rt p)) wStart)
minContext (PatchSet behindTag topCommon) to_be_sent =
case go topCommon NilFL to_be_sent of
Sealed (c :> to_be_sent') -> seal (PatchSet behindTag c :> to_be_sent')
where
go :: (RepoPatch p)
=> RL (PatchInfoAnd rt p) wA wB
-> FL (PatchInfoAnd rt p) wB wC
-> FL (PatchInfoAnd rt p) wC wD
-> Sealed (( RL (PatchInfoAnd rt p) :> FL (PatchInfoAnd rt p) ) wA )
go NilRL necessary to_be_sent' = seal (reverseFL necessary :> to_be_sent')
go (rest :<: candidate) necessary to_be_sent' =
let fl1 = (candidate :>: NilFL) in
case commute (fl1 :> necessary) of
Nothing -> go rest (candidate :>: necessary) to_be_sent'
Just (necessary' :> fl1') ->
case commute (fl1' :> to_be_sent') of
Nothing -> go rest (candidate :>: necessary) to_be_sent'
Just (to_be_sent'' :> _) ->
go rest necessary' to_be_sent''
patchFilename :: String -> String
patchFilename the_summary = name ++ ".dpatch"
where
name = map safeFileChar the_summary
safeFileChar c | isAlpha c = toLower c
| isDigit c = c
| isSpace c = '-'
safeFileChar _ = '_'