2012-10-01 19:12:04 +00:00
|
|
|
{- git-annex repo groups
|
|
|
|
-
|
2019-01-09 19:00:43 +00:00
|
|
|
- Copyright 2012, 2019 Joey Hess <id@joeyh.name>
|
2012-10-01 19:12:04 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2012-10-01 19:12:04 +00:00
|
|
|
-}
|
|
|
|
|
|
|
|
module Types.Group (
|
2019-01-09 19:00:43 +00:00
|
|
|
Group(..),
|
|
|
|
fromGroup,
|
|
|
|
toGroup,
|
2012-10-08 19:18:58 +00:00
|
|
|
GroupMap(..),
|
|
|
|
emptyGroupMap
|
2012-10-01 19:12:04 +00:00
|
|
|
) where
|
|
|
|
|
|
|
|
import Types.UUID
|
2019-01-09 19:00:43 +00:00
|
|
|
import Utility.FileSystemEncoding
|
2012-10-01 19:12:04 +00:00
|
|
|
|
|
|
|
import qualified Data.Map as M
|
|
|
|
import qualified Data.Set as S
|
2019-01-09 19:00:43 +00:00
|
|
|
import qualified Data.ByteString as S
|
2012-10-01 19:12:04 +00:00
|
|
|
|
2019-01-09 19:00:43 +00:00
|
|
|
newtype Group = Group S.ByteString
|
convert old uuid-based log parsers to attoparsec
This preserves the workaround for the old bug that caused NoUUID items
to be stored in the log, prefixing log lines with " ". It's now handled
implicitly, by using takeWhile1 (/= ' ') to get the uuid.
There is a behavior change from the old parser, which split the value
into words and then recombined it. That meant that "foo bar" and "foo\tbar"
came out as "foo bar". That behavior was not documented, and seems
surprising; it meant that after a git-annex describe here "foo bar",
you wouldn't get that same string back out when git-annex displayed repo
descriptions.
Otoh, some other parsers relied on the old behavior, and the attoparsec
rewrites had to deal with the issue themselves...
For group.log, there are some edge cases around the user providing a
group name with a leading or trailing space. The old parser would ignore
such excess whitespace. The new parser does too, because the alternative
is to refuse to parse something like " group1 group2 " due to excess
whitespace, which would be even more confusing behavior.
The only git-annex branch log file that is not converted to attoparsec
and bytestring-builder now is transitions.log.
2019-01-10 18:39:36 +00:00
|
|
|
deriving (Eq, Ord, Show)
|
2019-01-09 19:00:43 +00:00
|
|
|
|
|
|
|
fromGroup :: Group -> String
|
|
|
|
fromGroup (Group g) = decodeBS g
|
|
|
|
|
|
|
|
toGroup :: String -> Group
|
|
|
|
toGroup = Group . encodeBS
|
2012-10-01 19:12:04 +00:00
|
|
|
|
2012-10-02 17:45:30 +00:00
|
|
|
data GroupMap = GroupMap
|
|
|
|
{ groupsByUUID :: M.Map UUID (S.Set Group)
|
|
|
|
, uuidsByGroup :: M.Map Group (S.Set UUID)
|
|
|
|
}
|
2012-10-08 19:18:58 +00:00
|
|
|
|
|
|
|
emptyGroupMap :: GroupMap
|
|
|
|
emptyGroupMap = GroupMap M.empty M.empty
|