summaryrefslogtreecommitdiff
path: root/src/Hakyll/Core/Run.hs
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-01-08 10:31:08 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-01-08 10:31:08 +0100
commitc6710ac09a5ae0155b83a30497af65be17a44b00 (patch)
tree0ad10993afe6aa071bf9ece46222c8e943a486c7 /src/Hakyll/Core/Run.hs
parentdf8e221aef147ded6e8fe7331619913cc2f51513 (diff)
downloadhakyll-c6710ac09a5ae0155b83a30497af65be17a44b00.tar.gz
Migrate Reader → Reader, State in Run module
Diffstat (limited to 'src/Hakyll/Core/Run.hs')
-rw-r--r--src/Hakyll/Core/Run.hs39
1 files changed, 26 insertions, 13 deletions
diff --git a/src/Hakyll/Core/Run.hs b/src/Hakyll/Core/Run.hs
index 324294f..a010af4 100644
--- a/src/Hakyll/Core/Run.hs
+++ b/src/Hakyll/Core/Run.hs
@@ -41,27 +41,39 @@ hakyll rules = do
provider <- fileResourceProvider
let ruleSet = runRules rules provider
compilers = rulesCompilers ruleSet
- runReaderT (unHakyll (addNewCompilers [] compilers)) $
- env ruleSet provider store
+
+ -- Extract the reader/state
+ reader = unHakyll $ addNewCompilers [] compilers
+ state' = runReaderT reader $ env ruleSet provider store
+
+ evalStateT state' state
where
env ruleSet provider store = HakyllEnvironment
{ hakyllRoute = rulesRoute ruleSet
, hakyllResourceProvider = provider
, hakyllStore = store
- , hakyllModified = S.empty
- , hakyllObsolete = S.empty
+ }
+
+ state = HakyllState
+ { hakyllModified = S.empty
+ , hakyllObsolete = S.empty
+ , hakyllGraph = mempty
}
data HakyllEnvironment = HakyllEnvironment
{ hakyllRoute :: Route
, hakyllResourceProvider :: ResourceProvider
, hakyllStore :: Store
- , hakyllModified :: Set Identifier
- , hakyllObsolete :: Set Identifier
+ }
+
+data HakyllState = HakyllState
+ { hakyllModified :: Set Identifier
+ , hakyllObsolete :: Set Identifier
+ , hakyllGraph :: DirectedGraph Identifier
}
newtype Hakyll a = Hakyll
- { unHakyll :: ReaderT HakyllEnvironment IO a
+ { unHakyll :: ReaderT HakyllEnvironment (StateT HakyllState IO) a
} deriving (Functor, Applicative, Monad)
-- | Return a set of modified identifiers
@@ -104,9 +116,9 @@ addNewCompilers oldCompilers newCompilers = Hakyll $ do
-- Check which items are up-to-date. This only needs to happen for the new
-- compilers
- oldModified <- hakyllModified <$> ask
+ oldModified <- hakyllModified <$> get
newModified <- liftIO $ modified provider store $ map fst newCompilers
- oldObsolete <- hakyllObsolete <$> ask
+ oldObsolete <- hakyllObsolete <$> get
let modified' = oldModified `S.union` newModified
@@ -122,12 +134,13 @@ addNewCompilers oldCompilers newCompilers = Hakyll $ do
liftIO $ putStrLn "Adding compilers..."
+ modify $ updateState modified' obsolete
+
-- Now run the ordered list of compilers
- local (updateEnv modified' obsolete) $
- unHakyll $ runCompilers orderedCompilers
+ unHakyll $ runCompilers orderedCompilers
where
-- Add the modified information for the new compilers
- updateEnv modified' obsolete env = env
+ updateState modified' obsolete state = state
{ hakyllModified = modified'
, hakyllObsolete = obsolete
}
@@ -142,7 +155,7 @@ runCompilers ((id', compiler) : compilers) = Hakyll $ do
route' <- hakyllRoute <$> ask
provider <- hakyllResourceProvider <$> ask
store <- hakyllStore <$> ask
- modified' <- hakyllModified <$> ask
+ modified' <- hakyllModified <$> get
let -- Determine the URL
url = runRoute route' id'