2011-10-06 19:23:26 +00:00
|
|
|
{- git-annex uuid-based logs
|
|
|
|
-
|
2014-07-24 20:23:36 +00:00
|
|
|
- This is used to store information about UUIDs in a way that can
|
2011-10-06 19:23:26 +00:00
|
|
|
- be union merged.
|
|
|
|
-
|
|
|
|
- A line of the log will look like: "UUID[ INFO[ timestamp=foo]]"
|
|
|
|
- The timestamp is last for backwards compatability reasons,
|
|
|
|
- and may not be present on old log lines.
|
add remote state logs
This allows a remote to store a piece of arbitrary state associated with a
key. This is needed to support Tahoe, where the file-cap is calculated from
the data stored in it, and used to retrieve a key later. Glacier also would
be much improved by using this.
GETSTATE and SETSTATE are added to the external special remote protocol.
Note that the state is left as-is even when a key is removed from a remote.
It's up to the remote to decide when it wants to clear the state.
The remote state log, $KEY.log.rmt, is a UUID-based log. However,
rather than using the old UUID-based log format, I created a new variant
of that format. The new varient is more space efficient (since it lacks the
"timestamp=" hack, and easier to parse (and the parser doesn't mess with
whitespace in the value), and avoids compatability cruft in the old one.
This seemed worth cleaning up for these new files, since there could be a
lot of them, while before UUID-based logs were only used for a few log
files at the top of the git-annex branch. The transition code has also
been updated to handle these new UUID-based logs.
This commit was sponsored by Daniel Hofer.
2014-01-03 20:35:57 +00:00
|
|
|
-
|
|
|
|
- New uuid based logs instead use the form: "timestamp UUID INFO"
|
2011-10-06 19:23:26 +00:00
|
|
|
-
|
2019-01-09 17:06:37 +00:00
|
|
|
- Copyright 2011-2019 Joey Hess <id@joeyh.name>
|
2011-10-06 19:23:26 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2019-01-09 18:00:35 +00:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
|
2011-10-15 20:21:08 +00:00
|
|
|
module Logs.UUIDBased (
|
2011-10-06 19:23:26 +00:00
|
|
|
Log,
|
|
|
|
LogEntry(..),
|
2017-08-14 17:55:38 +00:00
|
|
|
VectorClock,
|
|
|
|
currentVectorClock,
|
2011-10-06 19:23:26 +00:00
|
|
|
parseLog,
|
add remote state logs
This allows a remote to store a piece of arbitrary state associated with a
key. This is needed to support Tahoe, where the file-cap is calculated from
the data stored in it, and used to retrieve a key later. Glacier also would
be much improved by using this.
GETSTATE and SETSTATE are added to the external special remote protocol.
Note that the state is left as-is even when a key is removed from a remote.
It's up to the remote to decide when it wants to clear the state.
The remote state log, $KEY.log.rmt, is a UUID-based log. However,
rather than using the old UUID-based log format, I created a new variant
of that format. The new varient is more space efficient (since it lacks the
"timestamp=" hack, and easier to parse (and the parser doesn't mess with
whitespace in the value), and avoids compatability cruft in the old one.
This seemed worth cleaning up for these new files, since there could be a
lot of them, while before UUID-based logs were only used for a few log
files at the top of the git-annex branch. The transition code has also
been updated to handle these new UUID-based logs.
This commit was sponsored by Daniel Hofer.
2014-01-03 20:35:57 +00:00
|
|
|
parseLogNew,
|
2012-10-10 17:52:24 +00:00
|
|
|
parseLogWithUUID,
|
2019-01-09 18:00:35 +00:00
|
|
|
buildLog,
|
2019-01-09 17:06:37 +00:00
|
|
|
buildLogNew,
|
2011-10-06 19:23:26 +00:00
|
|
|
changeLog,
|
|
|
|
addLog,
|
|
|
|
simpleMap,
|
|
|
|
) where
|
|
|
|
|
|
|
|
import qualified Data.Map as M
|
|
|
|
|
|
|
|
import Common
|
|
|
|
import Types.UUID
|
2017-08-14 17:55:38 +00:00
|
|
|
import Annex.VectorClock
|
2014-03-15 17:44:31 +00:00
|
|
|
import Logs.MapLog
|
2016-05-27 15:45:13 +00:00
|
|
|
import Logs.Line
|
2011-10-06 19:23:26 +00:00
|
|
|
|
2019-01-10 17:23:42 +00:00
|
|
|
import qualified Data.ByteString.Lazy as L
|
|
|
|
import qualified Data.Attoparsec.ByteString.Lazy as A
|
2019-01-09 17:06:37 +00:00
|
|
|
import Data.ByteString.Builder
|
|
|
|
|
2014-03-15 17:44:31 +00:00
|
|
|
type Log v = MapLog UUID v
|
2011-10-06 19:23:26 +00:00
|
|
|
|
2019-01-09 18:00:35 +00:00
|
|
|
buildLog :: (v -> Builder) -> Log v -> Builder
|
|
|
|
buildLog builder = mconcat . map genline . M.toList
|
2012-11-11 04:51:07 +00:00
|
|
|
where
|
2019-01-09 18:00:35 +00:00
|
|
|
genline (u, LogEntry c@(VectorClock {}) v) =
|
|
|
|
buildUUID u <> sp <> builder v <> sp <>
|
|
|
|
byteString "timestamp=" <> buildVectorClock c <> nl
|
|
|
|
genline (u, LogEntry Unknown v) =
|
|
|
|
buildUUID u <> sp <> builder v <> nl
|
|
|
|
sp = charUtf8 ' '
|
|
|
|
nl = charUtf8 '\n'
|
2011-10-06 19:23:26 +00:00
|
|
|
|
|
|
|
parseLog :: (String -> Maybe a) -> String -> Log a
|
2012-10-10 17:52:24 +00:00
|
|
|
parseLog = parseLogWithUUID . const
|
|
|
|
|
|
|
|
parseLogWithUUID :: (UUID -> String -> Maybe a) -> String -> Log a
|
2016-05-27 15:45:13 +00:00
|
|
|
parseLogWithUUID parser = M.fromListWith best . mapMaybe parse . splitLines
|
2012-11-11 04:51:07 +00:00
|
|
|
where
|
|
|
|
parse line
|
2013-11-09 18:30:26 +00:00
|
|
|
-- This is a workaround for a bug that caused
|
|
|
|
-- NoUUID items to be stored in the log.
|
|
|
|
-- It can be removed at any time; is just here to clean
|
|
|
|
-- up logs where that happened temporarily.
|
|
|
|
| " " `isPrefixOf` line = Nothing
|
2012-11-11 04:51:07 +00:00
|
|
|
| null ws = Nothing
|
|
|
|
| otherwise = parser u (unwords info) >>= makepair
|
|
|
|
where
|
|
|
|
makepair v = Just (u, LogEntry ts v)
|
|
|
|
ws = words line
|
|
|
|
u = toUUID $ Prelude.head ws
|
|
|
|
t = Prelude.last ws
|
|
|
|
ts
|
2017-08-14 18:43:56 +00:00
|
|
|
| tskey `isPrefixOf` t = fromMaybe Unknown $
|
|
|
|
parseVectorClock $ drop 1 $ dropWhile (/= '=') t
|
2012-11-11 04:51:07 +00:00
|
|
|
| otherwise = Unknown
|
|
|
|
info
|
|
|
|
| ts == Unknown = drop 1 ws
|
|
|
|
| otherwise = drop 1 $ beginning ws
|
2011-10-06 19:23:26 +00:00
|
|
|
|
2019-01-09 17:06:37 +00:00
|
|
|
buildLogNew :: (v -> Builder) -> Log v -> Builder
|
2019-01-09 18:00:35 +00:00
|
|
|
buildLogNew = buildMapLog buildUUID
|
2011-10-06 19:23:26 +00:00
|
|
|
|
2019-01-10 17:23:42 +00:00
|
|
|
parseLogNew :: A.Parser v -> L.ByteString -> Log v
|
|
|
|
parseLogNew = parseMapLog (toUUID <$> A.takeByteString)
|
2011-10-06 19:23:26 +00:00
|
|
|
|
2017-08-14 17:55:38 +00:00
|
|
|
changeLog :: VectorClock -> UUID -> v -> Log v -> Log v
|
2014-03-15 17:44:31 +00:00
|
|
|
changeLog = changeMapLog
|
2011-10-06 19:23:26 +00:00
|
|
|
|
2014-03-15 17:44:31 +00:00
|
|
|
addLog :: UUID -> LogEntry v -> Log v -> Log v
|
|
|
|
addLog = addMapLog
|
2011-10-06 19:23:26 +00:00
|
|
|
|
2014-03-15 17:44:31 +00:00
|
|
|
tskey :: String
|
|
|
|
tskey = "timestamp="
|