2012-06-13 16:36:33 +00:00
|
|
|
{- git-annex assistant tree watcher
|
|
|
|
-
|
|
|
|
- Copyright 2012 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2012-07-20 23:29:59 +00:00
|
|
|
module Assistant.Threads.Watcher (
|
|
|
|
watchThread,
|
|
|
|
checkCanWatch,
|
|
|
|
needLsof,
|
|
|
|
stageSymlink,
|
|
|
|
onAddSymlink,
|
|
|
|
runHandler,
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Assistant.Common
|
2012-06-13 16:36:33 +00:00
|
|
|
import Assistant.DaemonStatus
|
2012-06-19 06:40:21 +00:00
|
|
|
import Assistant.Changes
|
2012-10-29 23:30:23 +00:00
|
|
|
import Assistant.Types.Changes
|
2012-07-05 16:58:49 +00:00
|
|
|
import Assistant.TransferQueue
|
2012-07-29 15:31:06 +00:00
|
|
|
import Assistant.Alert
|
2012-10-19 18:22:13 +00:00
|
|
|
import Assistant.Drop
|
2012-07-05 16:58:49 +00:00
|
|
|
import Logs.Transfer
|
2012-06-19 03:47:48 +00:00
|
|
|
import Utility.DirWatcher
|
|
|
|
import Utility.Types.DirWatcher
|
2012-12-14 19:52:44 +00:00
|
|
|
import Utility.Lsof
|
2012-06-20 23:04:16 +00:00
|
|
|
import qualified Annex
|
2012-06-13 16:36:33 +00:00
|
|
|
import qualified Annex.Queue
|
2012-12-24 18:24:13 +00:00
|
|
|
import qualified Git
|
2012-06-13 16:36:33 +00:00
|
|
|
import qualified Git.UpdateIndex
|
|
|
|
import qualified Git.HashObject
|
2012-12-24 18:24:13 +00:00
|
|
|
import qualified Git.LsFiles as LsFiles
|
2012-06-13 16:36:33 +00:00
|
|
|
import qualified Backend
|
|
|
|
import Annex.Content
|
2012-12-25 19:48:15 +00:00
|
|
|
import Annex.Direct
|
|
|
|
import Annex.Content.Direct
|
2012-06-13 16:36:33 +00:00
|
|
|
import Annex.CatFile
|
|
|
|
import Git.Types
|
2012-12-24 18:42:19 +00:00
|
|
|
import Config
|
2012-06-13 16:36:33 +00:00
|
|
|
|
|
|
|
import Data.Bits.Utils
|
|
|
|
import qualified Data.ByteString.Lazy as L
|
|
|
|
|
2012-06-17 18:02:58 +00:00
|
|
|
checkCanWatch :: Annex ()
|
2012-06-19 03:47:48 +00:00
|
|
|
checkCanWatch
|
2012-12-14 19:52:44 +00:00
|
|
|
| canWatch = do
|
|
|
|
liftIO setupLsof
|
2012-09-13 04:57:52 +00:00
|
|
|
unlessM (liftIO (inPath "lsof") <||> Annex.getState Annex.force)
|
2012-06-19 03:47:48 +00:00
|
|
|
needLsof
|
|
|
|
| otherwise = error "watch mode is not available on this system"
|
2012-06-17 18:02:58 +00:00
|
|
|
|
|
|
|
needLsof :: Annex ()
|
|
|
|
needLsof = error $ unlines
|
|
|
|
[ "The lsof command is needed for watch mode to be safe, and is not in PATH."
|
|
|
|
, "To override lsof checks to ensure that files are not open for writing"
|
|
|
|
, "when added to the annex, you can use --force"
|
|
|
|
, "Be warned: This can corrupt data in the annex, and make fsck complain."
|
|
|
|
]
|
|
|
|
|
2012-10-29 13:55:40 +00:00
|
|
|
watchThread :: NamedThread
|
2013-01-26 06:09:33 +00:00
|
|
|
watchThread = namedThread "Watcher" $ do
|
2012-10-30 21:14:26 +00:00
|
|
|
startup <- asIO1 startupScan
|
2012-12-24 18:42:19 +00:00
|
|
|
direct <- liftAnnex isDirect
|
2012-12-25 19:48:15 +00:00
|
|
|
addhook <- hook $ if direct then onAddDirect else onAdd
|
2012-10-29 13:55:40 +00:00
|
|
|
delhook <- hook onDel
|
|
|
|
addsymlinkhook <- hook onAddSymlink
|
|
|
|
deldirhook <- hook onDelDir
|
|
|
|
errhook <- hook onErr
|
|
|
|
let hooks = mkWatchHooks
|
|
|
|
{ addHook = addhook
|
|
|
|
, delHook = delhook
|
|
|
|
, addSymlinkHook = addsymlinkhook
|
|
|
|
, delDirHook = deldirhook
|
|
|
|
, errHook = errhook
|
2012-10-29 04:15:43 +00:00
|
|
|
}
|
2012-10-29 13:55:40 +00:00
|
|
|
void $ liftIO $ watchDir "." ignored hooks startup
|
|
|
|
debug [ "watching", "."]
|
|
|
|
where
|
|
|
|
hook a = Just <$> asIO2 (runHandler a)
|
2012-06-13 16:36:33 +00:00
|
|
|
|
2012-06-19 02:13:39 +00:00
|
|
|
{- Initial scartup scan. The action should return once the scan is complete. -}
|
2012-10-29 13:55:40 +00:00
|
|
|
startupScan :: IO a -> Assistant a
|
|
|
|
startupScan scanner = do
|
|
|
|
liftAnnex $ showAction "scanning"
|
2012-10-29 20:49:47 +00:00
|
|
|
alertWhile' startupScanAlert $ do
|
2012-10-29 13:55:40 +00:00
|
|
|
r <- liftIO $ scanner
|
2012-06-19 02:13:39 +00:00
|
|
|
|
2012-07-29 23:05:51 +00:00
|
|
|
-- Notice any files that were deleted before
|
|
|
|
-- watching was started.
|
2012-12-24 18:24:13 +00:00
|
|
|
top <- liftAnnex $ fromRepo Git.repoPath
|
|
|
|
(fs, cleanup) <- liftAnnex $ inRepo $ LsFiles.deleted [top]
|
|
|
|
forM_ fs $ \f -> do
|
|
|
|
liftAnnex $ Annex.Queue.addUpdateIndex =<<
|
|
|
|
inRepo (Git.UpdateIndex.unstageFile f)
|
|
|
|
maybe noop recordChange =<< madeChange f RmChange
|
|
|
|
void $ liftIO $ cleanup
|
|
|
|
|
|
|
|
liftAnnex $ showAction "started"
|
2013-01-15 17:34:59 +00:00
|
|
|
liftIO $ putStrLn ""
|
2012-07-30 06:07:02 +00:00
|
|
|
|
2012-10-30 19:39:15 +00:00
|
|
|
modifyDaemonStatus_ $ \s -> s { scanComplete = True }
|
2012-07-30 20:32:32 +00:00
|
|
|
|
|
|
|
return (True, r)
|
2012-06-19 02:13:39 +00:00
|
|
|
|
2012-06-13 16:36:33 +00:00
|
|
|
ignored :: FilePath -> Bool
|
2012-06-18 17:01:58 +00:00
|
|
|
ignored = ig . takeFileName
|
2012-10-29 04:15:43 +00:00
|
|
|
where
|
2012-06-18 17:01:58 +00:00
|
|
|
ig ".git" = True
|
|
|
|
ig ".gitignore" = True
|
|
|
|
ig ".gitattributes" = True
|
|
|
|
ig _ = False
|
|
|
|
|
2012-10-29 13:55:40 +00:00
|
|
|
type Handler = FilePath -> Maybe FileStatus -> Assistant (Maybe Change)
|
2012-06-13 16:36:33 +00:00
|
|
|
|
2012-10-29 13:55:40 +00:00
|
|
|
{- Runs an action handler, and if there was a change, adds it to the ChangeChan.
|
2012-06-13 16:36:33 +00:00
|
|
|
-
|
|
|
|
- Exceptions are ignored, otherwise a whole watcher thread could be crashed.
|
|
|
|
-}
|
2012-10-29 13:55:40 +00:00
|
|
|
runHandler :: Handler -> FilePath -> Maybe FileStatus -> Assistant ()
|
|
|
|
runHandler handler file filestatus = void $ do
|
|
|
|
r <- tryIO <~> handler file filestatus
|
2012-06-13 16:36:33 +00:00
|
|
|
case r of
|
2012-10-29 13:55:40 +00:00
|
|
|
Left e -> liftIO $ print e
|
2012-06-13 16:36:33 +00:00
|
|
|
Right Nothing -> noop
|
2012-10-29 13:55:40 +00:00
|
|
|
Right (Just change) -> do
|
|
|
|
-- Just in case the commit thread is not
|
|
|
|
-- flushing the queue fast enough.
|
|
|
|
liftAnnex $ Annex.Queue.flushWhenFull
|
2012-10-29 23:30:23 +00:00
|
|
|
recordChange change
|
2012-06-13 16:36:33 +00:00
|
|
|
|
2012-12-25 19:48:15 +00:00
|
|
|
onAdd :: Handler
|
|
|
|
onAdd file filestatus
|
2012-10-29 23:30:23 +00:00
|
|
|
| maybe False isRegularFile filestatus = pendingAddChange file
|
|
|
|
| otherwise = noChange
|
2012-06-13 16:36:33 +00:00
|
|
|
|
2012-12-25 19:48:15 +00:00
|
|
|
{- In direct mode, add events are received for both new files, and
|
|
|
|
- modified existing files. Or, in some cases, existing files that have not
|
|
|
|
- really been modified. -}
|
|
|
|
onAddDirect :: Handler
|
|
|
|
onAddDirect file fs = do
|
2013-01-05 19:26:22 +00:00
|
|
|
v <- liftAnnex $ catKeyFile file
|
2012-12-25 19:48:15 +00:00
|
|
|
case (v, fs) of
|
|
|
|
(Just key, Just filestatus) ->
|
|
|
|
ifM (liftAnnex $ changedFileStatus key filestatus)
|
2012-12-29 18:58:13 +00:00
|
|
|
( do
|
2012-12-25 19:48:15 +00:00
|
|
|
liftAnnex $ changedDirect key file
|
|
|
|
pendingAddChange file
|
2012-12-29 18:58:13 +00:00
|
|
|
, noChange
|
2012-12-25 19:48:15 +00:00
|
|
|
)
|
|
|
|
_ -> pendingAddChange file
|
|
|
|
|
2012-06-13 16:36:33 +00:00
|
|
|
{- A symlink might be an arbitrary symlink, which is just added.
|
|
|
|
- Or, if it is a git-annex symlink, ensure it points to the content
|
|
|
|
- before adding it.
|
|
|
|
-}
|
|
|
|
onAddSymlink :: Handler
|
2012-10-29 13:55:40 +00:00
|
|
|
onAddSymlink file filestatus = go =<< liftAnnex (Backend.lookupFile file)
|
2012-10-29 04:15:43 +00:00
|
|
|
where
|
|
|
|
go (Just (key, _)) = do
|
2012-10-29 13:55:40 +00:00
|
|
|
link <- liftAnnex $ calcGitLink file key
|
2013-01-05 20:07:27 +00:00
|
|
|
ifM ((==) (Just link) <$> liftIO (catchMaybeIO $ readSymbolicLink file))
|
2012-10-29 04:15:43 +00:00
|
|
|
( do
|
2012-10-30 18:44:18 +00:00
|
|
|
s <- getDaemonStatus
|
2012-10-29 04:15:43 +00:00
|
|
|
checkcontent key s
|
2013-01-05 20:07:27 +00:00
|
|
|
ensurestaged (Just link) s
|
2012-10-29 04:15:43 +00:00
|
|
|
, do
|
|
|
|
liftIO $ removeFile file
|
|
|
|
liftIO $ createSymbolicLink link file
|
2012-10-30 18:44:18 +00:00
|
|
|
checkcontent key =<< getDaemonStatus
|
2012-10-29 04:15:43 +00:00
|
|
|
addlink link
|
|
|
|
)
|
|
|
|
go Nothing = do -- other symlink
|
2013-01-05 20:07:27 +00:00
|
|
|
mlink <- liftIO (catchMaybeIO $ readSymbolicLink file)
|
|
|
|
ensurestaged mlink =<< getDaemonStatus
|
2012-10-29 04:15:43 +00:00
|
|
|
|
|
|
|
{- This is often called on symlinks that are already
|
|
|
|
- staged correctly. A symlink may have been deleted
|
|
|
|
- and being re-added, or added when the watcher was
|
|
|
|
- not running. So they're normally restaged to make sure.
|
|
|
|
-
|
|
|
|
- As an optimisation, during the startup scan, avoid
|
|
|
|
- restaging everything. Only links that were created since
|
|
|
|
- the last time the daemon was running are staged.
|
|
|
|
- (If the daemon has never ran before, avoid staging
|
|
|
|
- links too.)
|
|
|
|
-}
|
2013-01-05 20:07:27 +00:00
|
|
|
ensurestaged (Just link) daemonstatus
|
2012-10-29 04:15:43 +00:00
|
|
|
| scanComplete daemonstatus = addlink link
|
|
|
|
| otherwise = case filestatus of
|
2012-10-29 15:58:29 +00:00
|
|
|
Just s
|
2012-10-29 23:30:23 +00:00
|
|
|
| not (afterLastDaemonRun (statusChangeTime s) daemonstatus) -> noChange
|
2012-10-29 04:15:43 +00:00
|
|
|
_ -> addlink link
|
2013-01-05 20:07:27 +00:00
|
|
|
ensurestaged Nothing _ = noChange
|
2012-10-29 04:15:43 +00:00
|
|
|
|
|
|
|
{- For speed, tries to reuse the existing blob for symlink target. -}
|
|
|
|
addlink link = do
|
2012-10-29 13:55:40 +00:00
|
|
|
debug ["add symlink", file]
|
|
|
|
liftAnnex $ do
|
|
|
|
v <- catObjectDetails $ Ref $ ':':file
|
|
|
|
case v of
|
|
|
|
Just (currlink, sha)
|
|
|
|
| s2w8 link == L.unpack currlink ->
|
|
|
|
stageSymlink file sha
|
|
|
|
_ -> do
|
|
|
|
sha <- inRepo $
|
|
|
|
Git.HashObject.hashObject BlobObject link
|
2012-06-13 16:36:33 +00:00
|
|
|
stageSymlink file sha
|
2012-10-29 23:30:23 +00:00
|
|
|
madeChange file LinkChange
|
2012-10-29 04:15:43 +00:00
|
|
|
|
|
|
|
{- When a new link appears, or a link is changed, after the startup
|
2012-11-24 19:38:24 +00:00
|
|
|
- scan, handle getting or dropping the key's content.
|
|
|
|
- Also, moving or copying a link may caused it be be transferred
|
|
|
|
- elsewhere, so check that too. -}
|
2012-10-29 04:15:43 +00:00
|
|
|
checkcontent key daemonstatus
|
|
|
|
| scanComplete daemonstatus = do
|
2012-10-29 13:55:40 +00:00
|
|
|
present <- liftAnnex $ inAnnex key
|
2012-11-24 19:38:24 +00:00
|
|
|
if present
|
|
|
|
then queueTransfers Next key (Just file) Upload
|
|
|
|
else queueTransfers Next key (Just file) Download
|
2012-11-24 20:30:15 +00:00
|
|
|
handleDrops present key (Just file) Nothing
|
2012-10-29 04:15:43 +00:00
|
|
|
| otherwise = noop
|
2012-07-05 16:58:49 +00:00
|
|
|
|
2012-06-13 16:36:33 +00:00
|
|
|
onDel :: Handler
|
2012-10-29 13:55:40 +00:00
|
|
|
onDel file _ = do
|
|
|
|
debug ["file deleted", file]
|
|
|
|
liftAnnex $
|
|
|
|
Annex.Queue.addUpdateIndex =<<
|
|
|
|
inRepo (Git.UpdateIndex.unstageFile file)
|
2012-10-29 23:30:23 +00:00
|
|
|
madeChange file RmChange
|
2012-06-13 16:36:33 +00:00
|
|
|
|
|
|
|
{- A directory has been deleted, or moved, so tell git to remove anything
|
|
|
|
- that was inside it from its cache. Since it could reappear at any time,
|
|
|
|
- use --cached to only delete it from the index.
|
|
|
|
-
|
|
|
|
- Note: This could use unstageFile, but would need to run another git
|
|
|
|
- command to get the recursive list of files in the directory, so rm is
|
|
|
|
- just as good. -}
|
|
|
|
onDelDir :: Handler
|
2012-10-29 13:55:40 +00:00
|
|
|
onDelDir dir _ = do
|
|
|
|
debug ["directory deleted", dir]
|
|
|
|
liftAnnex $ Annex.Queue.addCommand "rm"
|
2012-06-13 16:36:33 +00:00
|
|
|
[Params "--quiet -r --cached --ignore-unmatch --"] [dir]
|
2012-10-29 23:30:23 +00:00
|
|
|
madeChange dir RmDirChange
|
2012-06-13 16:36:33 +00:00
|
|
|
|
2012-09-06 17:56:23 +00:00
|
|
|
{- Called when there's an error with inotify or kqueue. -}
|
2012-06-13 16:36:33 +00:00
|
|
|
onErr :: Handler
|
2012-10-29 13:55:40 +00:00
|
|
|
onErr msg _ = do
|
|
|
|
liftAnnex $ warning msg
|
2012-10-30 19:39:15 +00:00
|
|
|
void $ addAlert $ warningAlert "watcher" msg
|
2012-10-29 23:30:23 +00:00
|
|
|
noChange
|
2012-06-13 16:36:33 +00:00
|
|
|
|
|
|
|
{- Adds a symlink to the index, without ever accessing the actual symlink
|
preliminary deferring of file adds to commit time
Defer adding files to the annex until commit time, when during a batch
operation, a bundle of files will be available. This will allow for
checking a them all with a single lsof call.
The tricky part is that adding the file causes a symlink change inotify.
So I made it wait for an appropriate number of symlink changes to be
received before continuing with the commit. This avoids any delay
in the commit process. It is possible that some unrelated symlink change is
made; if that happens it'll commit it and delay committing the newly added
symlink for 1 second. This seems ok. I do rely on the expected symlink
change event always being received, but only when the add succeeds.
Another way to do it might be to directly stage the symlink, and then
ignore the redundant symlink change event. That would involve some
redundant work, and perhaps an empty commit, but if this code turns
out to have some bug, that'd be the best way to avoid it.
FWIW, this change seems to, as a bonus, have produced better grouping
of batch changes into single commits. Before, a large batch change would
result in a series of commits, with the first containing only one file,
and each of the rest bundling a number of files. Now, the added wait for
the symlink changes to arrive gives time for additional add changes to
be processed, all within the same commit.
2012-06-15 20:27:44 +00:00
|
|
|
- on disk. This avoids a race if git add is used, where the symlink is
|
2012-12-24 17:37:29 +00:00
|
|
|
- changed to something else immediately after creation. It also allows
|
|
|
|
- direct mode to work.
|
preliminary deferring of file adds to commit time
Defer adding files to the annex until commit time, when during a batch
operation, a bundle of files will be available. This will allow for
checking a them all with a single lsof call.
The tricky part is that adding the file causes a symlink change inotify.
So I made it wait for an appropriate number of symlink changes to be
received before continuing with the commit. This avoids any delay
in the commit process. It is possible that some unrelated symlink change is
made; if that happens it'll commit it and delay committing the newly added
symlink for 1 second. This seems ok. I do rely on the expected symlink
change event always being received, but only when the add succeeds.
Another way to do it might be to directly stage the symlink, and then
ignore the redundant symlink change event. That would involve some
redundant work, and perhaps an empty commit, but if this code turns
out to have some bug, that'd be the best way to avoid it.
FWIW, this change seems to, as a bonus, have produced better grouping
of batch changes into single commits. Before, a large batch change would
result in a series of commits, with the first containing only one file,
and each of the rest bundling a number of files. Now, the added wait for
the symlink changes to arrive gives time for additional add changes to
be processed, all within the same commit.
2012-06-15 20:27:44 +00:00
|
|
|
-}
|
2012-06-13 16:36:33 +00:00
|
|
|
stageSymlink :: FilePath -> Sha -> Annex ()
|
|
|
|
stageSymlink file sha =
|
|
|
|
Annex.Queue.addUpdateIndex =<<
|
|
|
|
inRepo (Git.UpdateIndex.stageSymlink file sha)
|