diff options
author | Joey Hess <joey@kitenet.net> | 2012-06-22 15:46:21 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-06-22 15:49:48 -0400 |
commit | e9630e90decac4fe0c999af88131bd4b7c9d979f (patch) | |
tree | d0d7d897ab63fe8d7d76b47771e9c7c34f08618f /Utility/Parallel.hs | |
parent | 28e28bc0436cb0a33e570b1a1f678e80a770a21a (diff) |
the syncer now pushes out changes to remotes, in parallel
Note that, since this always pushes branch synced/master to the remote, it
assumes that master has already gotten all the commits that are on the
remote merged in. Otherwise, fast-forward prevention may prevent the push.
That's probably ok, because the next stage is to automatically detect
incoming pushes and merge.
Diffstat (limited to 'Utility/Parallel.hs')
-rw-r--r-- | Utility/Parallel.hs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Utility/Parallel.hs b/Utility/Parallel.hs new file mode 100644 index 000000000..a512a6d30 --- /dev/null +++ b/Utility/Parallel.hs @@ -0,0 +1,20 @@ +{- parallel processes + - + - Copyright 2012 Joey Hess <joey@kitenet.net> + - + - Licensed under the GNU GPL version 3 or higher. + -} + +module Utility.Parallel where + +import Common + +{- Runs an action in parallel with a set of values. + - Returns values that caused the action to fail. -} +inParallel :: (v -> IO ()) -> [v] -> IO [v] +inParallel a v = do + pids <- mapM (forkProcess . a) v + statuses <- mapM (getProcessStatus True False) pids + return $ map fst $ filter failed $ zip v statuses + where + failed (_, status) = status /= Just (Exited ExitSuccess) |