2013-11-24 03:45:49 +00:00
|
|
|
{- git-annex assistant thread to detect when git-annex is upgraded
|
2013-11-22 22:46:45 +00:00
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2013 Joey Hess <id@joeyh.name>
|
2013-11-22 22:46:45 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2013-11-22 22:46:45 +00:00
|
|
|
-}
|
|
|
|
|
2013-11-23 03:12:06 +00:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2013-11-22 22:46:45 +00:00
|
|
|
module Assistant.Threads.UpgradeWatcher (
|
2013-11-24 17:20:58 +00:00
|
|
|
upgradeWatcherThread
|
2013-11-22 22:46:45 +00:00
|
|
|
) 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
|
2013-11-23 03:12:06 +00:00
|
|
|
import Utility.ThreadScheduler
|
|
|
|
import Assistant.Types.UrlRenderer
|
|
|
|
import Assistant.Alert
|
|
|
|
import Assistant.DaemonStatus
|
|
|
|
#ifdef WITH_WEBAPP
|
|
|
|
import Assistant.WebApp.Types
|
2017-12-14 16:46:57 +00:00
|
|
|
import qualified BuildInfo
|
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 qualified Data.Text as T
|
2013-11-22 22:46:45 +00:00
|
|
|
|
|
|
|
data WatcherState = InStartupScan | Started | Upgrading
|
|
|
|
deriving (Eq)
|
|
|
|
|
2013-11-24 17:20:58 +00:00
|
|
|
upgradeWatcherThread :: UrlRenderer -> NamedThread
|
|
|
|
upgradeWatcherThread urlrenderer = namedThread "UpgradeWatcher" $ do
|
|
|
|
whenM (liftIO checkSuccessfulUpgrade) $
|
2013-11-23 16:39:36 +00:00
|
|
|
showSuccessfulUpgrade urlrenderer
|
2013-11-24 03:45:49 +00:00
|
|
|
go =<< liftIO upgradeFlagFile
|
2013-11-22 22:46:45 +00:00
|
|
|
where
|
2015-02-28 20:59:52 +00:00
|
|
|
go flagfile = do
|
2013-11-22 22:46:45 +00:00
|
|
|
mvar <- liftIO $ newMVar InStartupScan
|
2013-11-24 03:45:49 +00:00
|
|
|
changed <- Just <$> asIO2 (changedFile urlrenderer mvar flagfile)
|
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
|
|
|
|
}
|
2015-01-09 17:11:56 +00:00
|
|
|
let dir = parentDir flagfile
|
2013-11-22 22:46:45 +00:00
|
|
|
let depth = length (splitPath dir) + 1
|
|
|
|
let nosubdirs f = length (splitPath f) == depth
|
2014-03-05 21:44:14 +00:00
|
|
|
void $ liftIO $ watchDir dir nosubdirs False hooks (startup mvar)
|
2014-10-09 18:53:13 +00:00
|
|
|
-- Ignore bogus events generated during the startup scan.
|
2014-03-05 21:44:14 +00:00
|
|
|
-- We ask the watcher to not generate them, but just to be safe..
|
2014-10-09 18:53:13 +00:00
|
|
|
startup mvar scanner = do
|
2013-11-22 22:46:45 +00:00
|
|
|
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 ()
|
2013-11-24 03:45:49 +00:00
|
|
|
changedFile urlrenderer mvar flagfile file _status
|
|
|
|
| flagfile /= file = noop
|
2013-11-23 03:12:06 +00:00
|
|
|
| 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
|
2013-11-24 03:45:49 +00:00
|
|
|
ifM (liftIO upgradeSanityCheck)
|
2013-11-23 03:12:06 +00:00
|
|
|
( handleUpgrade urlrenderer
|
|
|
|
, do
|
2013-11-24 03:45:49 +00:00
|
|
|
debug ["new version failed sanity check; not using"]
|
2013-11-23 03:12:06 +00:00
|
|
|
setstate Started
|
|
|
|
)
|
|
|
|
where
|
|
|
|
setstate = void . liftIO . swapMVar mvar
|
|
|
|
|
|
|
|
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
|
2013-11-24 19:20:18 +00:00
|
|
|
-- place.) Not needed when using a distribution bundle, because
|
|
|
|
-- in that case git-annex handles the upgrade in a non-racy way.
|
|
|
|
liftIO $ unlessM usingDistribution $
|
|
|
|
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
|
|
|
|
)
|
2017-12-14 16:46:57 +00:00
|
|
|
void $ addAlert $ upgradeFinishedAlert button BuildInfo.packageversion
|
2013-11-23 16:39:36 +00:00
|
|
|
#else
|
|
|
|
noop
|
|
|
|
#endif
|