]> gitweb.michael.orlitzky.com - dead/lwn-epub.git/commitdiff
Use parallel-io instead of mapM to download images and full stories.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 9 Jul 2012 03:31:37 +0000 (23:31 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 9 Jul 2012 03:31:37 +0000 (23:31 -0400)
lwn-epub.cabal
src/LWN/HTTP.hs
src/LWN/Page.hs
src/Main.hs

index c9a505c72061d710fea3cf076961698154bfefb7..08ee1bf9601eeecaa392c9b7191d71760eecd329 100644 (file)
@@ -24,6 +24,7 @@ executable lwn-epub
     MissingH                == 1.1.*,
     network                 == 2.3.*,
     pandoc                  == 1.9.*,
+    parallel-io             == 0.3.*,
     regex-posix             == 0.95.*,
     temporary               == 1.*,
     test-framework          == 0.6.*,
index 63079fd127aa853e6b69eef96588153dace02d30..ef4fc5aeebf14cbefd25be3cf7084052eeac4025 100644 (file)
@@ -3,6 +3,7 @@
 module LWN.HTTP
 where
 
+import Control.Concurrent.ParallelIO (parallel)
 import qualified Data.ByteString as B (hPut)
 import qualified Data.Map as Map (Map, empty, insert)
 import Data.Maybe (fromJust, isNothing)
@@ -177,7 +178,7 @@ type ImageMap = Map.Map URL FilePath
 
 download_image_urls :: [URL] -> IO ImageMap
 download_image_urls image_urls = do
-  files <- mapM save_image image_urls
+  files <- parallel $ map save_image image_urls
   let pairs = zip image_urls files
   return $ foldl my_insert empty_map pairs
   where
index f0ada7cd13cfff0707904272f93fa2b4b354f9e3..c61bf6a5c028dd55e41c71a75748426790dd9885 100644 (file)
@@ -3,6 +3,7 @@
 module LWN.Page
 where
 
+import Control.Concurrent.ParallelIO (parallel)
 import qualified Data.Map as Map (lookup)
 import Data.Time (getCurrentTime)
 import qualified Data.ByteString.Lazy as B (ByteString, hPut)
@@ -172,7 +173,7 @@ type StoryMap = Map.Map URL Article
 -- These come *before* preprocessing.
 download_full_story_urls :: Cfg -> [URL] -> IO StoryMap
 download_full_story_urls cfg story_urls = do
-  pages <- mapM (page_from_url cfg) story_urls
+  pages <- parallel $ map (page_from_url cfg) story_urls
   let pairs = zip story_urls pages
   return $ foldl my_insert empty_map pairs
   where
@@ -352,7 +353,6 @@ fp_parse_articles xml = do
                           []    -> []
   -- Put the separator back, it was lost during the split.
   let split_articles = map (article_separator ++) split_articles'
-  --_ <- mapM print_article split_articles
   real_articles <- mapM parse_html_article split_articles
   let just_articles = catMaybes real_articles
   return just_articles
index a1230d60e836c08e849f9c40e78b34e6c4925151..3ce1eef324283e94ac6ae1cb1850d35edca79619 100644 (file)
@@ -2,6 +2,7 @@
 module Main
 where
 
+import Control.Concurrent.ParallelIO (stopGlobalPool)
 import System.Directory (doesFileExist)
 import System.IO (
   Handle,
@@ -47,3 +48,6 @@ main = do
     Nothing -> do
       _ <- show_help
       return ()
+
+  -- Necessary, for some reason.
+  stopGlobalPool