git-annex/Command/Find.hs

75 lines
2.1 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
import GitAnnex.Options
2010-11-14 16:35:05 +00:00
def :: [Command]
def = [noCommit $ noMessages $ withOptions [formatOption, print0Option, jsonOption] $
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"
getFormat :: Annex (Maybe Utility.Format.Format)
getFormat = getOptionField formatOption $ return . fmap Utility.Format.gen
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
seek ps = do
format <- getFormat
withFilesInGit (whenAnnexed $ start format) ps
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) $
showFormatted format file $ ("file", file) : keyVars key
2011-05-15 06:02:46 +00:00
stop
showFormatted :: Maybe Utility.Format.Format -> String -> [(String, String)] -> Annex ()
showFormatted format unformatted vars =
unlessM (showFullJSON vars) $
case format of
Nothing -> liftIO $ putStrLn unformatted
Just formatter -> liftIO $ putStr $
Utility.Format.format formatter $
M.fromList vars
keyVars :: Key -> [(String, String)]
keyVars key =
[ ("key", key2file key)
, ("backend", keyBackendName key)
, ("bytesize", size show)
, ("humansize", size $ roughSize storageUnits True)
, ("keyname", keyName key)
, ("hashdirlower", hashDirLower key)
, ("hashdirmixed", hashDirMixed key)
, ("mtime", whenavail show $ keyMtime key)
]
2012-11-12 05:05:04 +00:00
where
size c = whenavail c $ keySize key
whenavail = maybe "unknown"