git-annex/Remote/Helper/Messages.hs

36 lines
848 B
Haskell
Raw Normal View History

{- git-annex remote messages
-
- Copyright 2013 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
2015-08-17 14:42:14 +00:00
{-# LANGUAGE TypeSynonymInstances, FlexibleInstances #-}
module Remote.Helper.Messages where
import Common.Annex
import qualified Git
import qualified Types.Remote as Remote
class Describable a where
describe :: a -> String
instance Describable Git.Repo where
describe = Git.repoDescribe
instance Describable (Remote.RemoteA a) where
describe = Remote.name
instance Describable String where
describe = id
2015-08-17 14:42:14 +00:00
showChecking :: Describable a => a -> Annex ()
showChecking v = showAction $ "checking " ++ describe v
2015-08-17 14:42:14 +00:00
cantCheck :: Describable a => a -> e
cantCheck v = error $ "unable to check " ++ describe v
showLocking :: Describable a => a -> Annex ()
showLocking v = showAction $ "locking " ++ describe v