summaryrefslogtreecommitdiff
path: root/Command/DropUnused.hs
blob: 1eec688202e35685e2c3174bc3d86360fa824a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{- git-annex command
 -
 - Copyright 2010 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Command.DropUnused where

import Control.Monad (when)
import Control.Monad.State (liftIO)
import qualified Data.Map as M
import System.Directory
import Data.Maybe

import Command
import Types
import Messages
import Locations
import qualified Annex
import qualified Command.Drop
import qualified Command.Move
import qualified Remote
import Backend
import Key

command :: [Command]
command = [repoCommand "dropunused" (paramRepeating paramNumber) seek
	"drop unused file content"]

seek :: [CommandSeek]
seek = [withUnusedMap]

{- Read unusedlog once, and pass the map to each start action. -}
withUnusedMap :: CommandSeek
withUnusedMap params = do
	m <- readUnusedLog
	return $ map (start m) params

start :: M.Map String Key -> CommandStartString
start m s = notBareRepo $ do
	case M.lookup s m of
		Nothing -> return Nothing
		Just key -> do
			showStart "dropunused" s
			from <- Annex.getState Annex.fromremote
			case from of
				Just name -> do
					r <- Remote.byName name
					return $ Just $ performRemote r key
				_ -> return $ Just $ perform key

{- drop both content in the backend and any tmp file for the key -}
perform :: Key -> CommandPerform
perform key = do
	g <- Annex.gitRepo
	let tmp = gitAnnexTmpLocation g key
	tmp_exists <- liftIO $ doesFileExist tmp
	when tmp_exists $ liftIO $ removeFile tmp
	backend <- keyBackend key
	Command.Drop.perform key backend (Just 0) -- force drop

performRemote :: Remote.Remote Annex -> Key -> CommandPerform
performRemote r key = do
	showNote $ "from " ++ Remote.name r ++ "..."
	return $ Just $ Command.Move.fromCleanup r True key

readUnusedLog :: Annex (M.Map String Key)
readUnusedLog = do
	g <- Annex.gitRepo
	let f = gitAnnexUnusedLog g
	e <- liftIO $ doesFileExist f
	if e
		then do
			l <- liftIO $ readFile f
			return $ M.fromList $ map parse $ lines l
		else return $ M.empty
	where
		parse line = (head ws, fromJust $ readKey $ unwords $ tail ws)
			where
				ws = words line