2011-07-01 19:24:07 +00:00
|
|
|
{- git-annex presence log
|
|
|
|
-
|
|
|
|
- This is used to store presence information in the git-annex branch in
|
|
|
|
- a way that can be union merged.
|
|
|
|
-
|
|
|
|
- A line of the log will look like: "date N INFO"
|
|
|
|
- Where N=1 when the INFO is present, and 0 otherwise.
|
|
|
|
-
|
|
|
|
- Copyright 2010-2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module PresenceLog (
|
|
|
|
LogStatus(..),
|
2011-07-01 21:15:46 +00:00
|
|
|
addLog,
|
2011-07-01 19:24:07 +00:00
|
|
|
readLog,
|
2011-08-20 00:05:08 +00:00
|
|
|
parseLog,
|
2011-07-01 19:24:07 +00:00
|
|
|
logNow,
|
|
|
|
compactLog,
|
2011-08-20 00:05:08 +00:00
|
|
|
currentLog,
|
|
|
|
LogLine
|
2011-07-01 19:24:07 +00:00
|
|
|
) where
|
|
|
|
|
|
|
|
import Data.Time.Clock.POSIX
|
|
|
|
import Data.Time
|
|
|
|
import System.Locale
|
2011-09-28 06:46:54 +00:00
|
|
|
import qualified Data.Map as M
|
2011-07-01 19:24:07 +00:00
|
|
|
|
2011-10-04 04:40:47 +00:00
|
|
|
import Annex.Common
|
|
|
|
import qualified Annex.Branch
|
2011-07-01 19:24:07 +00:00
|
|
|
|
|
|
|
data LogLine = LogLine {
|
|
|
|
date :: POSIXTime,
|
|
|
|
status :: LogStatus,
|
|
|
|
info :: String
|
|
|
|
} deriving (Eq)
|
|
|
|
|
|
|
|
data LogStatus = InfoPresent | InfoMissing | Undefined
|
|
|
|
deriving (Eq)
|
|
|
|
|
|
|
|
instance Show LogStatus where
|
|
|
|
show InfoPresent = "1"
|
|
|
|
show InfoMissing = "0"
|
|
|
|
show Undefined = "undefined"
|
|
|
|
|
|
|
|
instance Read LogStatus where
|
|
|
|
readsPrec _ "1" = [(InfoPresent, "")]
|
|
|
|
readsPrec _ "0" = [(InfoMissing, "")]
|
|
|
|
readsPrec _ _ = [(Undefined, "")]
|
|
|
|
|
|
|
|
instance Show LogLine where
|
|
|
|
show (LogLine d s i) = unwords [show d, show s, i]
|
|
|
|
|
|
|
|
instance Read LogLine where
|
|
|
|
-- This parser is robust in that even unparsable log lines are
|
|
|
|
-- read without an exception being thrown.
|
|
|
|
-- Such lines have a status of Undefined.
|
|
|
|
readsPrec _ string =
|
|
|
|
if length w >= 3
|
|
|
|
then maybe bad good pdate
|
|
|
|
else bad
|
|
|
|
where
|
|
|
|
w = words string
|
|
|
|
s = read $ w !! 1
|
|
|
|
i = w !! 2
|
|
|
|
pdate :: Maybe UTCTime
|
|
|
|
pdate = parseTime defaultTimeLocale "%s%Qs" $ head w
|
|
|
|
|
|
|
|
good v = ret $ LogLine (utcTimeToPOSIXSeconds v) s i
|
|
|
|
bad = ret $ LogLine 0 Undefined ""
|
|
|
|
ret v = [(v, "")]
|
|
|
|
|
2011-07-01 21:15:46 +00:00
|
|
|
addLog :: FilePath -> LogLine -> Annex ()
|
2011-10-04 04:40:47 +00:00
|
|
|
addLog file line = Annex.Branch.change file $ \s ->
|
2011-10-03 19:41:25 +00:00
|
|
|
showLog $ compactLog (line : parseLog s)
|
2011-07-01 21:15:46 +00:00
|
|
|
|
2011-07-01 19:24:07 +00:00
|
|
|
{- Reads a log file.
|
|
|
|
- Note that the LogLines returned may be in any order. -}
|
|
|
|
readLog :: FilePath -> Annex [LogLine]
|
2011-10-04 04:40:47 +00:00
|
|
|
readLog file = parseLog <$> Annex.Branch.get file
|
2011-07-01 19:24:07 +00:00
|
|
|
|
|
|
|
parseLog :: String -> [LogLine]
|
2011-09-28 06:35:23 +00:00
|
|
|
parseLog = filter parsable . map read . lines
|
2011-07-01 19:24:07 +00:00
|
|
|
where
|
|
|
|
-- some lines may be unparseable, avoid them
|
|
|
|
parsable l = status l /= Undefined
|
|
|
|
|
2011-10-03 19:41:25 +00:00
|
|
|
{- Generates a log file. -}
|
|
|
|
showLog :: [LogLine] -> String
|
|
|
|
showLog = unlines . map show
|
2011-07-01 19:24:07 +00:00
|
|
|
|
|
|
|
{- Generates a new LogLine with the current date. -}
|
|
|
|
logNow :: LogStatus -> String -> Annex LogLine
|
|
|
|
logNow s i = do
|
2011-07-15 07:12:05 +00:00
|
|
|
now <- liftIO getPOSIXTime
|
2011-07-01 19:24:07 +00:00
|
|
|
return $ LogLine now s i
|
|
|
|
|
|
|
|
{- Reads a log and returns only the info that is still in effect. -}
|
|
|
|
currentLog :: FilePath -> Annex [String]
|
2011-09-28 06:35:23 +00:00
|
|
|
currentLog file = map info . filterPresent <$> readLog file
|
2011-07-01 19:24:07 +00:00
|
|
|
|
|
|
|
{- Returns the info from LogLines that are in effect. -}
|
|
|
|
filterPresent :: [LogLine] -> [LogLine]
|
2011-09-28 06:35:23 +00:00
|
|
|
filterPresent = filter (\l -> InfoPresent == status l) . compactLog
|
2011-07-01 19:24:07 +00:00
|
|
|
|
|
|
|
{- Compacts a set of logs, returning a subset that contains the current
|
|
|
|
- status. -}
|
|
|
|
compactLog :: [LogLine] -> [LogLine]
|
2011-09-28 06:46:54 +00:00
|
|
|
compactLog = M.elems . foldr mapLog M.empty
|
2011-09-28 06:35:23 +00:00
|
|
|
|
2011-09-28 06:46:54 +00:00
|
|
|
type LogMap = M.Map String LogLine
|
2011-07-01 19:24:07 +00:00
|
|
|
|
|
|
|
{- Inserts a log into a map of logs, if the log has better (ie, newer)
|
|
|
|
- information than the other logs in the map -}
|
2011-09-28 06:46:54 +00:00
|
|
|
mapLog :: LogLine -> LogMap -> LogMap
|
|
|
|
mapLog l m =
|
2011-07-01 19:24:07 +00:00
|
|
|
if better
|
2011-09-28 06:46:54 +00:00
|
|
|
then M.insert i l m
|
2011-07-01 19:24:07 +00:00
|
|
|
else m
|
|
|
|
where
|
2011-09-28 06:46:54 +00:00
|
|
|
better = maybe True newer $ M.lookup i m
|
2011-09-28 06:35:23 +00:00
|
|
|
newer l' = date l' <= date l
|
2011-07-01 19:24:07 +00:00
|
|
|
i = info l
|