2013-10-28 18:50:17 +00:00
|
|
|
{- git-annex checking whether content is wanted
|
2012-10-08 20:06:56 +00:00
|
|
|
-
|
|
|
|
- Copyright 2012 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Annex.Wanted where
|
|
|
|
|
|
|
|
import Common.Annex
|
|
|
|
import Logs.PreferredContent
|
|
|
|
import Annex.UUID
|
|
|
|
|
|
|
|
import qualified Data.Set as S
|
|
|
|
|
2012-10-08 21:14:01 +00:00
|
|
|
{- Check if a file is preferred content for the local repository. -}
|
2014-01-23 20:37:08 +00:00
|
|
|
wantGet :: Bool -> Maybe Key -> AssociatedFile -> Annex Bool
|
|
|
|
wantGet def key file = isPreferredContent Nothing S.empty key file def
|
2012-10-08 20:06:56 +00:00
|
|
|
|
2012-10-08 21:14:01 +00:00
|
|
|
{- Check if a file is preferred content for a remote. -}
|
2014-01-23 20:37:08 +00:00
|
|
|
wantSend :: Bool -> Maybe Key -> AssociatedFile -> UUID -> Annex Bool
|
|
|
|
wantSend def key file to = isPreferredContent (Just to) S.empty key file def
|
2012-10-08 20:06:56 +00:00
|
|
|
|
2012-10-08 21:14:01 +00:00
|
|
|
{- Check if a file can be dropped, maybe from a remote.
|
|
|
|
- Don't drop files that are preferred content. -}
|
2014-01-23 20:37:08 +00:00
|
|
|
wantDrop :: Bool -> Maybe UUID -> Maybe Key -> AssociatedFile -> Annex Bool
|
|
|
|
wantDrop def from key file = do
|
2012-10-08 21:14:01 +00:00
|
|
|
u <- maybe getUUID (return . id) from
|
2014-01-23 20:37:08 +00:00
|
|
|
not <$> isPreferredContent (Just u) (S.singleton u) key file def
|