git-annex/Command/Find.hs

62 lines
1.6 KiB
Haskell
Raw Normal View History

2010-11-14 16:35:05 +00:00
{- git-annex command
-
- Copyright 2010-2012 Joey Hess <joey@kitenet.net>
2010-11-14 16:35:05 +00:00
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Find where
import qualified Data.Map as M
2011-10-05 20:02:51 +00:00
import Common.Annex
2010-11-14 16:35:05 +00:00
import Command
2011-10-04 04:40:47 +00:00
import Annex.Content
import Limit
import qualified Annex
import qualified Utility.Format
import Utility.DataUnits
import Types.Key
2012-01-06 14:14:37 +00:00
import qualified Option
2010-11-14 16:35:05 +00:00
def :: [Command]
def = [noCommit $ noMessages $ withOptions [formatOption, print0Option] $
command "find" paramPaths seek SectionQuery "lists available files"]
2012-01-06 14:14:37 +00:00
formatOption :: Option
formatOption = Option.field [] "format" paramFormat "control format of output"
print0Option :: Option
2012-01-06 14:14:37 +00:00
print0Option = Option.Option [] ["print0"] (Option.NoArg set)
"terminate output with null"
2012-11-12 05:05:04 +00:00
where
set = Annex.setField (Option.name formatOption) "${file}\0"
seek :: [CommandSeek]
2012-01-06 14:14:37 +00:00
seek = [withField formatOption formatconverter $ \f ->
withFilesInGit $ whenAnnexed $ start f]
2012-11-12 05:05:04 +00:00
where
formatconverter = return . fmap Utility.Format.gen
2010-11-14 16:35:05 +00:00
start :: Maybe Utility.Format.Format -> FilePath -> (Key, Backend) -> CommandStart
start format file (key, _) = do
-- only files inAnnex are shown, unless the user has requested
-- others via a limit
whenM (limited <||> inAnnex key) $
unlessM (showFullJSON vars) $
case format of
2011-12-23 02:03:18 +00:00
Nothing -> liftIO $ putStrLn file
Just formatter -> liftIO $ putStr $
Utility.Format.format formatter $
M.fromList vars
2011-05-15 06:02:46 +00:00
stop
2012-11-12 05:05:04 +00:00
where
vars =
[ ("file", file)
, ("key", key2file key)
, ("backend", keyBackendName key)
, ("bytesize", size show)
, ("humansize", size $ roughSize storageUnits True)
]
size c = maybe "unknown" c $ keySize key