2013-10-28 18:05:55 +00:00
|
|
|
{- types for limits
|
|
|
|
-
|
|
|
|
- Copyright 2013 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
|
|
|
module Types.Limit where
|
|
|
|
|
|
|
|
import Common.Annex
|
|
|
|
import Types.FileMatcher
|
|
|
|
|
|
|
|
import qualified Data.Set as S
|
|
|
|
|
|
|
|
type MkLimit = String -> Either String MatchFiles
|
2013-10-28 18:50:17 +00:00
|
|
|
|
2013-10-28 18:05:55 +00:00
|
|
|
type AssumeNotPresent = S.Set UUID
|
2014-01-18 18:51:55 +00:00
|
|
|
type MatchFiles = AssumeNotPresent -> MatchInfo -> Annex Bool
|