git-annex/Command/DropUnused.hs

45 lines
1.3 KiB
Haskell
Raw Normal View History

2010-11-15 22:06:21 +00:00
{- git-annex command
-
- Copyright 2010,2012 Joey Hess <joey@kitenet.net>
2010-11-15 22:06:21 +00:00
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.DropUnused where
2011-10-05 20:02:51 +00:00
import Common.Annex
2010-11-15 22:06:21 +00:00
import Command
import qualified Annex
import qualified Command.Drop
2011-04-03 00:59:41 +00:00
import qualified Remote
import qualified Git
2012-01-06 14:14:37 +00:00
import qualified Option
import Command.Unused (withUnusedMaps, UnusedMaps(..), startUnused)
def :: [Command]
def = [withOptions [Command.Drop.fromOption] $
command "dropunused" (paramRepeating paramNumRange)
seek SectionMaintenance "drop unused file content"]
seek :: [CommandSeek]
seek = [withUnusedMaps start]
start :: UnusedMaps -> Int -> CommandStart
start = startUnused "dropunused" perform (performOther gitAnnexBadLocation) (performOther gitAnnexTmpLocation)
2011-04-03 00:59:41 +00:00
perform :: Key -> CommandPerform
perform key = maybe droplocal dropremote =<< Remote.byNameWithUUID =<< from
2012-11-12 05:05:04 +00:00
where
dropremote r = do
showAction $ "from " ++ Remote.name r
ok <- Remote.removeKey r key
next $ Command.Drop.cleanupRemote key r ok
2012-11-24 20:30:15 +00:00
droplocal = Command.Drop.performLocal key (Just 0) Nothing -- force drop
2012-11-12 05:05:04 +00:00
from = Annex.getField $ Option.name Command.Drop.fromOption
2011-04-03 00:59:41 +00:00
performOther :: (Key -> Git.Repo -> FilePath) -> Key -> CommandPerform
performOther filespec key = do
f <- fromRepo $ filespec key
2012-06-06 17:13:13 +00:00
liftIO $ nukeFile f
2011-05-15 06:02:46 +00:00
next $ return True