aboutsummaryrefslogtreecommitdiff
path: root/Assistant/DaemonStatus.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-10-30 14:11:14 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-10-30 14:11:14 -0400
commitdbf9ac41086ffb39296bd1d977cc1db844ff0b32 (patch)
tree357f7397929bc0545b0097e503b4fc2c352a533f /Assistant/DaemonStatus.hs
parent8ccbaabb0a6b85753f9899f6c066e203281f01e4 (diff)
split out daemonstatus types
Diffstat (limited to 'Assistant/DaemonStatus.hs')
-rw-r--r--Assistant/DaemonStatus.hs49
1 files changed, 1 insertions, 48 deletions
diff --git a/Assistant/DaemonStatus.hs b/Assistant/DaemonStatus.hs
index 44547fbf6..421ade975 100644
--- a/Assistant/DaemonStatus.hs
+++ b/Assistant/DaemonStatus.hs
@@ -10,8 +10,7 @@
module Assistant.DaemonStatus where
import Common.Annex
-import Assistant.Alert
-import Assistant.Pairing
+import Assistant.Types.DaemonStatus
import Utility.TempFile
import Utility.NotificationBroadcaster
import Logs.Transfer
@@ -27,52 +26,6 @@ import Data.Time
import System.Locale
import qualified Data.Map as M
-data DaemonStatus = DaemonStatus
- -- False when the daemon is performing its startup scan
- { scanComplete :: Bool
- -- Time when a previous process of the daemon was running ok
- , lastRunning :: Maybe POSIXTime
- -- True when the sanity checker is running
- , sanityCheckRunning :: Bool
- -- Last time the sanity checker ran
- , lastSanityCheck :: Maybe POSIXTime
- -- Currently running file content transfers
- , currentTransfers :: TransferMap
- -- Messages to display to the user.
- , alertMap :: AlertMap
- , lastAlertId :: AlertId
- -- Ordered list of remotes to sync with.
- , syncRemotes :: [Remote]
- -- Pairing request that is in progress.
- , pairingInProgress :: Maybe PairingInProgress
- -- Broadcasts notifications about all changes to the DaemonStatus
- , changeNotifier :: NotificationBroadcaster
- -- Broadcasts notifications when queued or current transfers change.
- , transferNotifier :: NotificationBroadcaster
- -- Broadcasts notifications when there's a change to the alerts
- , alertNotifier :: NotificationBroadcaster
- }
-
-type TransferMap = M.Map Transfer TransferInfo
-
-{- This TMVar is never left empty, so accessing it will never block. -}
-type DaemonStatusHandle = TMVar DaemonStatus
-
-newDaemonStatus :: IO DaemonStatus
-newDaemonStatus = DaemonStatus
- <$> pure False
- <*> pure Nothing
- <*> pure False
- <*> pure Nothing
- <*> pure M.empty
- <*> pure M.empty
- <*> pure firstAlertId
- <*> pure []
- <*> pure Nothing
- <*> newNotificationBroadcaster
- <*> newNotificationBroadcaster
- <*> newNotificationBroadcaster
-
getDaemonStatus :: DaemonStatusHandle -> IO DaemonStatus
getDaemonStatus = atomically . readTMVar