module Darcs.Patch.Info ( PatchInfo(..), patchinfo, invertName,
rawPatchInfo,
addJunk, makePatchname,
makeFilename, readPatchInfo,
justName, justAuthor, justLog,
showPatchInfoUI, toXml, piDate,
setPiDate, piDateString, piDateBytestring,
piName, piRename, piAuthor, piTag, piLog,
showPatchInfo, isTag, readPatchInfos, escapeXML
) where
import Prelude ()
import Darcs.Prelude
import System.Random ( randomRIO )
import Numeric ( showHex )
import Control.Monad ( when, unless, void )
import Darcs.Util.ByteString ( unlinesPS, packStringToUTF8, unpackPSFromUTF8, decodeLocale)
import qualified Darcs.Patch.ReadMonads as RM ( take )
import Darcs.Patch.ReadMonads as RM ( skipSpace, char,
takeTill, anyChar, ParserM,
option, parseStrictly,
takeTillChar,
linesStartingWithEndingWith)
import qualified Data.ByteString as B (length, splitAt, null
,isPrefixOf, tail, concat
,empty, head, cons, append
,ByteString )
import qualified Data.ByteString.Char8 as BC (index, head, unpack, pack)
import Data.List( isPrefixOf )
import Darcs.Util.Printer ( Doc, packedString,
empty, ($$), (<>), (<+>), vcat, text, cyanText, blueText, prefix )
import Darcs.Patch.OldDate ( readUTCDate, showIsoDateTime )
import System.Time ( CalendarTime(ctTZ), calendarTimeToString, toClockTime,
toCalendarTime )
import System.IO.Unsafe ( unsafePerformIO )
import Darcs.Util.Crypt.SHA1 ( sha1PS, SHA1 )
import Darcs.Util.Prompt ( promptYorn )
import Darcs.Util.Show ( appPrec )
import Prelude hiding (pi, log)
data PatchInfo = PatchInfo { _piDate :: !B.ByteString
, _piName :: !B.ByteString
, _piAuthor :: !B.ByteString
, _piLog :: ![B.ByteString]
, isInverted :: !Bool
}
deriving (Eq,Ord)
instance Show PatchInfo where
showsPrec d (PatchInfo date name author log inverted) =
showParen (d > appPrec) $
showString "rawPatchInfo " . showsPrec (appPrec + 1) date .
showString " " . showsPrec (appPrec + 1) name .
showString " " . showsPrec (appPrec + 1) author .
showString " " . showsPrec (appPrec + 1) log .
showString " " . showsPrec (appPrec + 1) inverted
rawPatchInfo :: String -> String -> String -> [String] -> Bool -> PatchInfo
rawPatchInfo date name author log inverted =
PatchInfo { _piDate = BC.pack date
, _piName = packStringToUTF8 name
, _piAuthor = packStringToUTF8 author
, _piLog = map packStringToUTF8 log
, isInverted = inverted }
patchinfo :: String -> String -> String -> [String] -> IO PatchInfo
patchinfo date name author log =
addJunk $ rawPatchInfo date name author log False
addJunk :: PatchInfo -> IO PatchInfo
addJunk pinf =
do x <- randomRIO (0,2^(128 ::Integer) :: Integer)
when (_piLog pinf /= ignoreJunk (_piLog pinf)) $
do putStrLn "Lines beginning with 'Ignore-this: ' will be ignored."
confirmed <- promptYorn "Proceed? "
unless confirmed $ fail "User cancelled because of Ignore-this."
return $ pinf { _piLog = BC.pack (head ignored++showHex x ""):
_piLog pinf }
ignored :: [String]
ignored = ["Ignore-this: "]
ignoreJunk :: [B.ByteString] -> [B.ByteString]
ignoreJunk = filter isnt_ignored
where isnt_ignored x = doesnt_start_with x (map BC.pack ignored)
doesnt_start_with x ys = not $ any (`B.isPrefixOf` x) ys
invertName :: PatchInfo -> PatchInfo
invertName pi = pi { isInverted = not (isInverted pi) }
justName :: PatchInfo -> String
justName pinf = if isInverted pinf then "UNDO: " ++ nameString
else nameString
where nameString = metadataToString (_piName pinf)
justAuthor :: PatchInfo -> String
justAuthor = metadataToString . _piAuthor
justLog :: PatchInfo -> String
justLog = unlines . map BC.unpack . _piLog
showPatchInfoUI :: PatchInfo -> Doc
showPatchInfoUI pi =
cyanText "patch " <> cyanText (show $ makePatchname pi)
$$ text "Author: " <> text (piAuthor pi)
$$ text "Date: " <> text (friendlyD $ _piDate pi)
$$ hfn (piName pi)
$$ vcat (map ((text " " <>) . text) (piLog pi))
where hfn x = case piTag pi of
Nothing -> inverted <+> text x
Just t -> text " tagged" <+> text t
inverted = if isInverted pi then text " UNDO:" else text " *"
piName :: PatchInfo -> String
piName = metadataToString . _piName
piRename :: PatchInfo -> String -> PatchInfo
piRename x n = x { _piName = packStringToUTF8 n }
piAuthor :: PatchInfo -> String
piAuthor = metadataToString . _piAuthor
isTag :: PatchInfo -> Bool
isTag pinfo = "TAG " `isPrefixOf` justName pinfo
readPatchDate :: B.ByteString -> CalendarTime
readPatchDate = ignoreTz . readUTCDate . BC.unpack
where ignoreTz ct = ct { ctTZ = 0 }
piDate :: PatchInfo -> CalendarTime
piDate = readPatchDate . _piDate
piDateString :: PatchInfo -> String
piDateString = BC.unpack . _piDate
piDateBytestring :: PatchInfo -> B.ByteString
piDateBytestring = _piDate
setPiDate :: String -> PatchInfo -> PatchInfo
setPiDate date pi = pi { _piDate = BC.pack date }
piLog :: PatchInfo -> [String]
piLog = map metadataToString . ignoreJunk . _piLog
piTag :: PatchInfo -> Maybe String
piTag pinf =
if l == t
then Just $ metadataToString r
else Nothing
where (l, r) = B.splitAt (B.length t) (_piName pinf)
t = BC.pack "TAG "
metadataToString :: B.ByteString -> String
metadataToString bs | '\xfffd' `notElem` bsUtf8 = bsUtf8
| otherwise = decodeLocale bs
where bsUtf8 = unpackPSFromUTF8 bs
friendlyD :: B.ByteString -> String
friendlyD d = unsafePerformIO $ do
ct <- toCalendarTime $ toClockTime $ readPatchDate d
return $ calendarTimeToString ct
toXml :: PatchInfo -> Doc
toXml pi =
text "<patch"
<+> text "author='" <> escapeXMLByteString (_piAuthor pi) <> text "'"
<+> text "date='" <> escapeXMLByteString (_piDate pi) <> text "'"
<+> text "local_date='" <> escapeXML (friendlyD $ _piDate pi) <> text "'"
<+> text "inverted='" <> text (show $ isInverted pi) <> text "'"
<+> text "hash='" <> text (show $ makePatchname pi) <> text "'>"
$$ prefix "\t" (
text "<name>" <> escapeXMLByteString (_piName pi) <> text "</name>"
$$ commentsAsXml (_piLog pi))
$$ text "</patch>"
commentsAsXml :: [B.ByteString] -> Doc
commentsAsXml comments
| B.length comments' > 0 = text "<comment>"
<> escapeXMLByteString comments'
<> text "</comment>"
| otherwise = empty
where comments' = unlinesPS comments
escapeXML :: String -> Doc
escapeXML = text . strReplace '\'' "'" . strReplace '"' """ .
strReplace '>' ">" . strReplace '<' "<" . strReplace '&' "&"
escapeXMLByteString :: B.ByteString -> Doc
escapeXMLByteString = packedString . bstrReplace '\'' "'"
. bstrReplace '"' """
. bstrReplace '>' ">"
. bstrReplace '<' "<"
. bstrReplace '&' "&"
strReplace :: Char -> String -> String -> String
strReplace _ _ [] = []
strReplace x y (z:zs)
| x == z = y ++ strReplace x y zs
| otherwise = z : strReplace x y zs
bstrReplace :: Char -> String -> B.ByteString -> B.ByteString
bstrReplace c s bs | B.null bs = B.empty
| otherwise = if BC.head bs == c
then B.append (BC.pack s)
(bstrReplace c s (B.tail bs))
else B.cons (B.head bs)
(bstrReplace c s (B.tail bs))
makeFilename :: PatchInfo -> String
makeFilename pi = showIsoDateTime d++"-"++sha1_a++"-"++ (show $ makePatchname pi) ++ ".gz"
where d = readPatchDate $ _piDate pi
sha1_a = take 5 $ show $ sha1PS $ _piAuthor pi
makePatchname :: PatchInfo -> SHA1
makePatchname pi = sha1PS sha1_me
where b2ps True = BC.pack "t"
b2ps False = BC.pack "f"
sha1_me = B.concat [_piName pi,
_piAuthor pi,
_piDate pi,
B.concat $ _piLog pi,
b2ps $ isInverted pi]
showPatchInfo :: PatchInfo -> Doc
showPatchInfo pi =
blueText "[" <> packedString (_piName pi)
$$ packedString (_piAuthor pi) <> text inverted <> packedString (_piDate pi)
<> myunlines (_piLog pi) <> blueText "] "
where inverted = if isInverted pi then "*-" else "**"
myunlines [] = empty
myunlines xs =
foldr (\s -> ((text "\n " <> packedString s) <>)) (text "\n") xs
readPatchInfo :: ParserM m => m PatchInfo
readPatchInfo = do
skipSpace
char '['
name <- takeTillChar '\n'
_ <- anyChar
author <- takeTillChar '*'
s2 <- RM.take 2
ct <- takeTill (\c->c==']'||c=='\n')
option () (void (char '\n'))
log <- linesStartingWithEndingWith ' ' ']'
return PatchInfo { _piDate = ct
, _piName = name
, _piAuthor = author
, _piLog = log
, isInverted = BC.index s2 1 /= '*'
}
readPatchInfos :: B.ByteString -> [PatchInfo]
readPatchInfos inv | B.null inv = []
readPatchInfos inv = case parseStrictly readPatchInfo inv of
Just (pinfo,r) -> pinfo : readPatchInfos r
_ -> []