2013-11-22 22:46:45 +00:00
|
|
|
{- git-annex assistant thread to detect when git-annex binary is changed
|
|
|
|
-
|
|
|
|
- Copyright 2013 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2013-11-23 03:12:06 +00:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2013-11-22 22:46:45 +00:00
|
|
|
module Assistant.Threads.UpgradeWatcher (
|
|
|
|
upgradWatcherThread
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Assistant.Common
|
2013-11-23 04:54:08 +00:00
|
|
|
import Assistant.Upgrade
|
2013-11-22 22:46:45 +00:00
|
|
|
import Utility.DirWatcher
|
|
|
|
import Utility.DirWatcher.Types
|
|
|
|
import Config.Files
|
2013-11-23 03:12:06 +00:00
|
|
|
import qualified Utility.Lsof as Lsof
|
|
|
|
import Utility.ThreadScheduler
|
|
|
|
import Assistant.Types.UrlRenderer
|
|
|
|
import Assistant.Alert
|
|
|
|
import Assistant.DaemonStatus
|
|
|
|
#ifdef WITH_WEBAPP
|
|
|
|
import Assistant.WebApp.Types
|
2013-11-23 16:39:36 +00:00
|
|
|
import qualified Build.SysConfig
|
2013-11-23 03:12:06 +00:00
|
|
|
#endif
|
2013-11-22 22:46:45 +00:00
|
|
|
|
|
|
|
import Control.Concurrent.MVar
|
2013-11-23 03:12:06 +00:00
|
|
|
import Data.Tuple.Utils
|
|
|
|
import qualified Data.Text as T
|
2013-11-22 22:46:45 +00:00
|
|
|
|
|
|
|
data WatcherState = InStartupScan | Started | Upgrading
|
|
|
|
deriving (Eq)
|
|
|
|
|
2013-11-23 03:12:06 +00:00
|
|
|
upgradWatcherThread :: UrlRenderer -> NamedThread
|
2013-11-23 16:39:36 +00:00
|
|
|
upgradWatcherThread urlrenderer = namedThread "UpgradeWatcher" $ do
|
|
|
|
whenM (liftIO $ checkSuccessfulUpgrade) $
|
|
|
|
showSuccessfulUpgrade urlrenderer
|
|
|
|
go =<< liftIO programPath
|
2013-11-22 22:46:45 +00:00
|
|
|
where
|
|
|
|
go Nothing = debug [ "cannot determine program path" ]
|
|
|
|
go (Just program) = do
|
|
|
|
mvar <- liftIO $ newMVar InStartupScan
|
2013-11-23 03:12:06 +00:00
|
|
|
changed <- Just <$> asIO2 (changedFile urlrenderer mvar program)
|
2013-11-22 22:46:45 +00:00
|
|
|
let hooks = mkWatchHooks
|
|
|
|
{ addHook = changed
|
2013-11-23 03:53:24 +00:00
|
|
|
, delHook = changed
|
2013-11-22 22:46:45 +00:00
|
|
|
, addSymlinkHook = changed
|
|
|
|
, modifyHook = changed
|
|
|
|
, delDirHook = changed
|
|
|
|
}
|
|
|
|
let dir = parentDir program
|
|
|
|
let depth = length (splitPath dir) + 1
|
|
|
|
let nosubdirs f = length (splitPath f) == depth
|
|
|
|
void $ liftIO $ watchDir dir nosubdirs hooks (startup mvar)
|
|
|
|
-- Ignore bogus events generated during the startup scan.
|
|
|
|
startup mvar scanner = do
|
|
|
|
r <- scanner
|
|
|
|
void $ swapMVar mvar Started
|
|
|
|
return r
|
|
|
|
|
2013-11-23 03:12:06 +00:00
|
|
|
changedFile :: UrlRenderer -> MVar WatcherState -> FilePath -> FilePath -> Maybe FileStatus -> Assistant ()
|
|
|
|
changedFile urlrenderer mvar program file _status
|
|
|
|
| program /= file = noop
|
|
|
|
| otherwise = do
|
2013-11-22 22:46:45 +00:00
|
|
|
state <- liftIO $ readMVar mvar
|
2013-11-23 03:12:06 +00:00
|
|
|
when (state == Started) $ do
|
|
|
|
setstate Upgrading
|
|
|
|
ifM (sanityCheck program)
|
|
|
|
( handleUpgrade urlrenderer
|
|
|
|
, do
|
|
|
|
debug ["new version of", program, "failed sanity check; not using"]
|
|
|
|
setstate Started
|
|
|
|
)
|
|
|
|
where
|
|
|
|
setstate = void . liftIO . swapMVar mvar
|
|
|
|
|
|
|
|
{- The program's file has been changed. Before restarting,
|
|
|
|
- it needs to not be open for write by anything, and should run
|
|
|
|
- successfully when run with the parameter "version".
|
|
|
|
-}
|
|
|
|
sanityCheck :: FilePath -> Assistant Bool
|
|
|
|
sanityCheck program = do
|
2013-11-23 16:39:36 +00:00
|
|
|
untilM (liftIO $ present <&&> nowriter) $ do
|
2013-11-23 03:12:06 +00:00
|
|
|
debug [program, "is still being written; waiting"]
|
|
|
|
liftIO $ threadDelaySeconds (Seconds 60)
|
|
|
|
debug [program, "has changed, and seems to be ready to run"]
|
|
|
|
liftIO $ boolSystem program [Param "version"]
|
|
|
|
where
|
2013-11-23 04:54:08 +00:00
|
|
|
present = doesFileExist program
|
|
|
|
nowriter = null
|
2013-11-23 03:12:06 +00:00
|
|
|
. filter (`elem` [Lsof.OpenReadWrite, Lsof.OpenWriteOnly])
|
|
|
|
. map snd3
|
|
|
|
<$> Lsof.query [program]
|
|
|
|
|
|
|
|
handleUpgrade :: UrlRenderer -> Assistant ()
|
|
|
|
handleUpgrade urlrenderer = do
|
2013-11-23 03:53:24 +00:00
|
|
|
-- Wait 2 minutes for any final upgrade changes to settle.
|
|
|
|
-- (For example, other associated files may be being put into
|
|
|
|
-- place.)
|
|
|
|
liftIO $ threadDelaySeconds (Seconds 120)
|
global webapp redirects, to finish upgrades
When an automatic upgrade completes, or when the user clicks on the upgrade
button in one webapp, but also has it open in another browser window/tab,
we have a problem: The current web server is going to stop running in
minutes, but there is no way to send a redirect to the web browser to the
new url.
To solve this, used long polling, so the webapp is always listening for
urls it should redirect to. This allows globally redirecting every open
webapp. Works great! Tested with 2 web browsers with 2 tabs each.
May be useful for other purposes later too, dunno.
The overhead is 2 http requests per page load in the webapp. Due to yesod's
speed, this does not seem to noticibly delay it. Only 1 of the requests
could possibly block the page load, the other is async.
2013-11-23 18:47:38 +00:00
|
|
|
ifM autoUpgradeEnabled
|
2013-11-23 04:54:08 +00:00
|
|
|
( do
|
|
|
|
debug ["starting automatic upgrade"]
|
|
|
|
unattendedUpgrade
|
2013-11-23 03:12:06 +00:00
|
|
|
#ifdef WITH_WEBAPP
|
2013-11-23 04:54:08 +00:00
|
|
|
, do
|
2013-11-23 16:39:36 +00:00
|
|
|
button <- mkAlertButton True (T.pack "Finish Upgrade") urlrenderer ConfigFinishUpgradeR
|
|
|
|
void $ addAlert $ upgradeReadyAlert button
|
2013-11-23 03:12:06 +00:00
|
|
|
#else
|
2013-11-23 04:54:08 +00:00
|
|
|
, noop
|
2013-11-23 03:12:06 +00:00
|
|
|
#endif
|
2013-11-23 04:54:08 +00:00
|
|
|
)
|
2013-11-23 16:39:36 +00:00
|
|
|
|
|
|
|
showSuccessfulUpgrade :: UrlRenderer -> Assistant ()
|
|
|
|
showSuccessfulUpgrade urlrenderer = do
|
|
|
|
#ifdef WITH_WEBAPP
|
global webapp redirects, to finish upgrades
When an automatic upgrade completes, or when the user clicks on the upgrade
button in one webapp, but also has it open in another browser window/tab,
we have a problem: The current web server is going to stop running in
minutes, but there is no way to send a redirect to the web browser to the
new url.
To solve this, used long polling, so the webapp is always listening for
urls it should redirect to. This allows globally redirecting every open
webapp. Works great! Tested with 2 web browsers with 2 tabs each.
May be useful for other purposes later too, dunno.
The overhead is 2 http requests per page load in the webapp. Due to yesod's
speed, this does not seem to noticibly delay it. Only 1 of the requests
could possibly block the page load, the other is async.
2013-11-23 18:47:38 +00:00
|
|
|
button <- ifM autoUpgradeEnabled
|
|
|
|
( pure Nothing
|
|
|
|
, Just <$> mkAlertButton True
|
|
|
|
(T.pack "Enable Automatic Upgrades")
|
|
|
|
urlrenderer ConfigEnableAutomaticUpgradeR
|
|
|
|
)
|
2013-11-23 16:39:36 +00:00
|
|
|
void $ addAlert $ upgradeFinishedAlert button Build.SysConfig.packageversion
|
|
|
|
#else
|
|
|
|
noop
|
|
|
|
#endif
|