2011-06-01 23:10:38 +00:00
|
|
|
{- git-annex UUID type
|
|
|
|
-
|
2019-01-01 17:49:19 +00:00
|
|
|
- Copyright 2011-2019 Joey Hess <id@joeyh.name>
|
2011-06-01 23:10:38 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2011-06-01 23:10:38 +00:00
|
|
|
-}
|
|
|
|
|
2019-01-01 19:39:45 +00:00
|
|
|
{-# LANGUAGE TypeSynonymInstances, FlexibleInstances, GeneralizedNewtypeDeriving #-}
|
2015-10-08 20:55:11 +00:00
|
|
|
|
2011-06-02 01:56:04 +00:00
|
|
|
module Types.UUID where
|
2011-06-01 23:10:38 +00:00
|
|
|
|
2019-01-01 17:49:19 +00:00
|
|
|
import qualified Data.ByteString as B
|
add ConfigMonitor thread
Monitors git-annex branch for changes, which are noticed by the Merger
thread whenever the branch ref is changed (either due to an incoming push,
or a local change), and refreshes cached config values for modified config
files.
Rate limited to run no more often than once per minute. This is important
because frequent git-annex branch changes happen when files are being
added, or transferred, etc.
A primary use case is that, when preferred content changes are made,
and get pushed to remotes, the remotes start honoring those settings.
Other use cases include propigating repository description and trust
changes to remotes, and learning when a remote has added a new special
remote, so the webapp can present the GUI to enable that special remote
locally.
Also added a uuid.log cache. All other config files already had caches.
2012-10-20 20:37:06 +00:00
|
|
|
import qualified Data.Map as M
|
2014-04-16 00:13:35 +00:00
|
|
|
import qualified Data.UUID as U
|
|
|
|
import Data.Maybe
|
2019-01-01 19:39:45 +00:00
|
|
|
import Data.String
|
2019-01-09 18:00:35 +00:00
|
|
|
import Data.ByteString.Builder
|
2019-01-18 18:08:10 +00:00
|
|
|
import qualified Data.Semigroup as Sem
|
add ConfigMonitor thread
Monitors git-annex branch for changes, which are noticed by the Merger
thread whenever the branch ref is changed (either due to an incoming push,
or a local change), and refreshes cached config values for modified config
files.
Rate limited to run no more often than once per minute. This is important
because frequent git-annex branch changes happen when files are being
added, or transferred, etc.
A primary use case is that, when preferred content changes are made,
and get pushed to remotes, the remotes start honoring those settings.
Other use cases include propigating repository description and trust
changes to remotes, and learning when a remote has added a new special
remote, so the webapp can present the GUI to enable that special remote
locally.
Also added a uuid.log cache. All other config files already had caches.
2012-10-20 20:37:06 +00:00
|
|
|
|
2019-01-01 17:49:19 +00:00
|
|
|
import Utility.FileSystemEncoding
|
2019-02-21 16:22:50 +00:00
|
|
|
import Utility.QuickCheck
|
2016-11-17 21:19:04 +00:00
|
|
|
import qualified Utility.SimpleProtocol as Proto
|
|
|
|
|
2011-11-07 18:46:01 +00:00
|
|
|
-- A UUID is either an arbitrary opaque string, or UUID info may be missing.
|
2019-01-01 17:49:19 +00:00
|
|
|
data UUID = NoUUID | UUID B.ByteString
|
2012-08-08 20:06:01 +00:00
|
|
|
deriving (Eq, Ord, Show, Read)
|
2011-11-07 18:46:01 +00:00
|
|
|
|
2019-01-01 17:49:19 +00:00
|
|
|
class FromUUID a where
|
|
|
|
fromUUID :: UUID -> a
|
2011-11-07 18:46:01 +00:00
|
|
|
|
2015-10-08 20:55:11 +00:00
|
|
|
class ToUUID a where
|
|
|
|
toUUID :: a -> UUID
|
|
|
|
|
2019-01-01 17:49:19 +00:00
|
|
|
instance FromUUID UUID where
|
|
|
|
fromUUID = id
|
|
|
|
|
2015-10-08 21:58:32 +00:00
|
|
|
instance ToUUID UUID where
|
|
|
|
toUUID = id
|
|
|
|
|
2019-01-01 17:49:19 +00:00
|
|
|
instance FromUUID B.ByteString where
|
|
|
|
fromUUID (UUID u) = u
|
|
|
|
fromUUID NoUUID = B.empty
|
|
|
|
|
|
|
|
instance ToUUID B.ByteString where
|
|
|
|
toUUID b
|
|
|
|
| B.null b = NoUUID
|
|
|
|
| otherwise = UUID b
|
|
|
|
|
|
|
|
instance FromUUID String where
|
2019-01-02 02:44:04 +00:00
|
|
|
fromUUID s = decodeBS' (fromUUID s)
|
2019-01-01 17:49:19 +00:00
|
|
|
|
2015-10-08 20:55:11 +00:00
|
|
|
instance ToUUID String where
|
2019-01-02 02:44:04 +00:00
|
|
|
toUUID s = toUUID (encodeBS' s)
|
2019-01-01 17:49:19 +00:00
|
|
|
|
|
|
|
-- There is no matching FromUUID U.UUID because a git-annex UUID may
|
|
|
|
-- be NoUUID or perhaps contain something not allowed in a canonical UUID.
|
|
|
|
instance ToUUID U.UUID where
|
|
|
|
toUUID = toUUID . U.toASCIIBytes
|
add ConfigMonitor thread
Monitors git-annex branch for changes, which are noticed by the Merger
thread whenever the branch ref is changed (either due to an incoming push,
or a local change), and refreshes cached config values for modified config
files.
Rate limited to run no more often than once per minute. This is important
because frequent git-annex branch changes happen when files are being
added, or transferred, etc.
A primary use case is that, when preferred content changes are made,
and get pushed to remotes, the remotes start honoring those settings.
Other use cases include propigating repository description and trust
changes to remotes, and learning when a remote has added a new special
remote, so the webapp can present the GUI to enable that special remote
locally.
Also added a uuid.log cache. All other config files already had caches.
2012-10-20 20:37:06 +00:00
|
|
|
|
2019-01-09 18:00:35 +00:00
|
|
|
buildUUID :: UUID -> Builder
|
|
|
|
buildUUID (UUID b) = byteString b
|
2019-01-10 21:17:37 +00:00
|
|
|
buildUUID NoUUID = mempty
|
2019-01-09 18:00:35 +00:00
|
|
|
|
2014-04-16 00:13:35 +00:00
|
|
|
isUUID :: String -> Bool
|
|
|
|
isUUID = isJust . U.fromString
|
|
|
|
|
2019-01-01 19:39:45 +00:00
|
|
|
-- A description of a UUID.
|
|
|
|
newtype UUIDDesc = UUIDDesc B.ByteString
|
2019-01-18 18:08:10 +00:00
|
|
|
deriving (Eq, Sem.Semigroup, Monoid, IsString)
|
2019-01-01 19:39:45 +00:00
|
|
|
|
|
|
|
fromUUIDDesc :: UUIDDesc -> String
|
|
|
|
fromUUIDDesc (UUIDDesc d) = decodeBS d
|
|
|
|
|
|
|
|
toUUIDDesc :: String -> UUIDDesc
|
|
|
|
toUUIDDesc = UUIDDesc . encodeBS
|
|
|
|
|
2019-01-09 18:00:35 +00:00
|
|
|
buildUUIDDesc :: UUIDDesc -> Builder
|
|
|
|
buildUUIDDesc (UUIDDesc b) = byteString b
|
|
|
|
|
2019-01-01 19:39:45 +00:00
|
|
|
type UUIDDescMap = M.Map UUID UUIDDesc
|
2016-11-17 21:19:04 +00:00
|
|
|
|
|
|
|
instance Proto.Serializable UUID where
|
|
|
|
serialize = fromUUID
|
|
|
|
deserialize = Just . toUUID
|
2019-02-21 16:22:50 +00:00
|
|
|
|
|
|
|
instance Arbitrary UUID where
|
|
|
|
arbitrary = frequency [(1, return NoUUID), (3, UUID <$> arb)]
|
|
|
|
where
|
2019-03-06 20:44:17 +00:00
|
|
|
arb = encodeBS <$> listOf1 (elements uuidchars)
|
|
|
|
uuidchars = '-' : ['a'..'z'] ++ ['A'..'Z'] ++ ['0'..'9']
|