summaryrefslogtreecommitdiff
path: root/Assistant/WebApp/DashBoard.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-08-31 12:14:16 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-08-31 12:14:16 -0400
commit4004baafaf4297e77ca7bd23bb5b0de7fc8efb3e (patch)
tree9511ac5035da43605c4a9305ca42e903550bd127 /Assistant/WebApp/DashBoard.hs
parent34aeecb78a40229b0a82638ec93f2feeb15bba27 (diff)
fix alterTransferInfo
don't want to stomp over fields other than the ones being changed
Diffstat (limited to 'Assistant/WebApp/DashBoard.hs')
-rw-r--r--Assistant/WebApp/DashBoard.hs17
1 files changed, 6 insertions, 11 deletions
diff --git a/Assistant/WebApp/DashBoard.hs b/Assistant/WebApp/DashBoard.hs
index f9fad1bf6..1b052d84f 100644
--- a/Assistant/WebApp/DashBoard.hs
+++ b/Assistant/WebApp/DashBoard.hs
@@ -182,16 +182,15 @@ cancelTransfer pause t = do
where
stop dstatus info = do
{- When there's a thread associated with the
- - transfer, it's killed first, to avoid it
+ - transfer, it's signaled first, to avoid it
- displaying any alert about the transfer having
- failed when the transfer process is killed. -}
maybe noop signalthread $ transferTid info
maybe noop killproc $ transferPid info
if pause
then void $
- alterTransferInfo dstatus t $ info
- { transferPaused = True
- , transferPid = Nothing }
+ alterTransferInfo dstatus t $ \i -> i
+ { transferPaused = True }
else void $
removeTransfer dstatus t
signalthread tid
@@ -211,18 +210,18 @@ startTransfer t = do
m <- getCurrentTransfers
maybe startqueued go (M.lookup t m)
where
- go info = maybe (start info) (resume info) $ transferTid info
+ go info = maybe (start info) resume $ transferTid info
startqueued = do
webapp <- getYesod
let dstatus = daemonStatus webapp
let q = transferQueue webapp
is <- liftIO $ map snd <$> getMatchingTransfers q dstatus (== t)
maybe noop start $ headMaybe is
- resume info tid = do
+ resume tid = do
webapp <- getYesod
let dstatus = daemonStatus webapp
liftIO $ do
- alterTransferInfo dstatus t $ info
+ alterTransferInfo dstatus t $ \i -> i
{ transferPaused = False }
throwTo tid ResumeTransfer
start info = do
@@ -230,10 +229,6 @@ startTransfer t = do
let st = fromJust $ threadState webapp
let dstatus = daemonStatus webapp
let slots = transferSlots webapp
- {- This transfer was being run by another process,
- - forget that old pid, and start a new one. -}
- liftIO $ alterTransferInfo dstatus t $ info
- { transferPid = Nothing, transferPaused = False }
liftIO $ inImmediateTransferSlot dstatus slots $ do
program <- readProgramFile
Transferrer.startTransfer st dstatus program t info