git-annex/Annex/LockFile.hs

114 lines
3.1 KiB
Haskell
Raw Normal View History

2014-07-10 04:32:23 +00:00
{- git-annex lock files.
-
- Copyright 2012-2020 Joey Hess <id@joeyh.name>
2014-07-10 04:32:23 +00:00
-
- Licensed under the GNU AGPL version 3 or higher.
2014-07-10 04:32:23 +00:00
-}
{-# LANGUAGE CPP #-}
module Annex.LockFile (
lockFileCached,
2014-07-10 04:32:23 +00:00
unlockFile,
getLockCache,
fromLockCache,
withSharedLock,
2014-07-10 04:32:23 +00:00
withExclusiveLock,
takeExclusiveLock,
tryExclusiveLock,
2014-07-10 04:32:23 +00:00
) where
import Annex.Common
2014-07-10 04:32:23 +00:00
import Annex
import Types.LockCache
2014-07-14 19:55:48 +00:00
import Annex.Perms
import Annex.LockPool
2014-07-10 04:32:23 +00:00
import qualified Data.Map as M
import qualified System.FilePath.ByteString as P
2014-07-10 04:32:23 +00:00
{- Create a specified lock file, and takes a shared lock, which is retained
- in the cache. -}
lockFileCached :: RawFilePath -> Annex ()
lockFileCached file = go =<< fromLockCache file
2014-07-10 04:32:23 +00:00
where
go (Just _) = noop -- already locked
go Nothing = do
#ifndef mingw32_HOST_OS
mode <- annexFileMode
lockhandle <- lockShared (Just mode) file
2014-07-10 04:32:23 +00:00
#else
lockhandle <- liftIO $ waitToLock $ lockShared file
#endif
changeLockCache $ M.insert file lockhandle
2014-07-10 04:32:23 +00:00
unlockFile :: RawFilePath -> Annex ()
unlockFile file = maybe noop go =<< fromLockCache file
2014-07-10 04:32:23 +00:00
where
go lockhandle = do
liftIO $ dropLock lockhandle
changeLockCache $ M.delete file
2014-07-10 04:32:23 +00:00
getLockCache :: Annex LockCache
getLockCache = getState lockcache
2014-07-10 04:32:23 +00:00
fromLockCache :: RawFilePath -> Annex (Maybe LockHandle)
fromLockCache file = M.lookup file <$> getLockCache
2014-07-10 04:32:23 +00:00
changeLockCache :: (LockCache -> LockCache) -> Annex ()
changeLockCache a = do
m <- getLockCache
changeState $ \s -> s { lockcache = a m }
2014-07-10 04:32:23 +00:00
{- Runs an action with a shared lock held. If an exclusive lock is held,
- blocks until it becomes free. -}
withSharedLock :: RawFilePath -> Annex a -> Annex a
withSharedLock lockfile a = debugLocks $ do
createAnnexDirectory $ P.takeDirectory lockfile
mode <- annexFileMode
bracket (lock mode lockfile) (liftIO . dropLock) (const a)
where
#ifndef mingw32_HOST_OS
lock mode = lockShared (Just mode)
#else
lock _mode = liftIO . waitToLock . lockShared
#endif
2014-07-10 04:32:23 +00:00
{- Runs an action with an exclusive lock held. If the lock is already
- held, blocks until it becomes free. -}
withExclusiveLock :: RawFilePath -> Annex a -> Annex a
withExclusiveLock lockfile a = bracket
(takeExclusiveLock lockfile)
(liftIO . dropLock)
(const a)
{- Takes an exclusive lock, blocking until it's free. -}
takeExclusiveLock :: RawFilePath -> Annex LockHandle
takeExclusiveLock lockfile = debugLocks $ do
createAnnexDirectory $ P.takeDirectory lockfile
2014-07-10 04:32:23 +00:00
mode <- annexFileMode
lock mode lockfile
2014-07-10 04:32:23 +00:00
where
#ifndef mingw32_HOST_OS
lock mode = lockExclusive (Just mode)
2014-07-10 04:32:23 +00:00
#else
lock _mode = liftIO . waitToLock . lockExclusive
2014-07-10 04:32:23 +00:00
#endif
{- Tries to take an exclusive lock and run an action. If the lock is
- already held, returns Nothing. -}
tryExclusiveLock :: RawFilePath -> Annex a -> Annex (Maybe a)
tryExclusiveLock lockfile a = debugLocks $ do
createAnnexDirectory $ P.takeDirectory lockfile
mode <- annexFileMode
bracket (lock mode lockfile) (liftIO . unlock) go
where
#ifndef mingw32_HOST_OS
lock mode = tryLockExclusive (Just mode)
#else
lock _mode = liftIO . lockExclusive
#endif
unlock = maybe noop dropLock
go Nothing = return Nothing
go (Just _) = Just <$> a