git-annex/Command/Whereis.hs

43 lines
905 B
Haskell
Raw Normal View History

{- git-annex command
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Whereis where
import LocationLog
import Command
import Messages
import Remote
import Types
command :: [Command]
command = [repoCommand "whereis" (paramOptional $ paramRepeating paramPath) seek
"lists repositories that have file content"]
seek :: [CommandSeek]
seek = [withFilesInGit start]
start :: CommandStartString
start file = isAnnexed file $ \(key, _) -> do
showStart "whereis" file
2011-05-15 06:02:46 +00:00
next $ perform key
perform :: Key -> CommandPerform
perform key = do
2011-06-22 20:13:43 +00:00
uuids <- keyLocations key
2011-03-05 21:41:36 +00:00
let num = length uuids
showNote $ show num ++ " " ++ copiesplural num
2011-07-15 16:47:14 +00:00
if null uuids
2011-05-15 06:02:46 +00:00
then stop
2011-03-05 21:41:36 +00:00
else do
pp <- prettyPrintUUIDs "whereis" uuids
2011-07-15 16:47:14 +00:00
showLongNote pp
showOutput
2011-05-15 06:02:46 +00:00
next $ return True
2011-03-05 21:41:36 +00:00
where
copiesplural 1 = "copy"
copiesplural _ = "copies"