summaryrefslogtreecommitdiff
path: root/src/Hakyll
diff options
context:
space:
mode:
authorTroels Henriksen <athas@sigkill.dk>2012-02-13 21:44:38 +0100
committerTroels Henriksen <athas@sigkill.dk>2012-02-13 21:44:38 +0100
commit87f6279c62840c111bf9635bbbf71f7fa4102adc (patch)
tree77697db2d6d99b8756f6545a6e6f30720e7285ba /src/Hakyll
parent7e82c665567385178a38f254ff05decf1912b420 (diff)
downloadhakyll-87f6279c62840c111bf9635bbbf71f7fa4102adc.tar.gz
Add byIdentifier compiler.
Diffstat (limited to 'src/Hakyll')
-rw-r--r--src/Hakyll/Core/Compiler.hs58
1 files changed, 38 insertions, 20 deletions
diff --git a/src/Hakyll/Core/Compiler.hs b/src/Hakyll/Core/Compiler.hs
index 409cff0..5f91c23 100644
--- a/src/Hakyll/Core/Compiler.hs
+++ b/src/Hakyll/Core/Compiler.hs
@@ -111,17 +111,18 @@ module Hakyll.Core.Compiler
, traceShowCompiler
, mapCompiler
, timedCompiler
+ , byIdentifier
, byExtension
) where
import Prelude hiding ((.), id)
-import Control.Arrow ((>>>), (&&&), arr)
+import Control.Arrow ((>>>), (&&&), arr, first)
import Control.Applicative ((<$>))
import Control.Monad.Reader (ask)
import Control.Monad.Trans (liftIO)
import Control.Monad.Error (throwError)
import Control.Category (Category, (.), id)
-import Data.Maybe (fromMaybe)
+import Data.List (find)
import System.FilePath (takeExtension)
import Data.Binary (Binary)
@@ -342,33 +343,50 @@ timedCompiler msg (Compiler d j) = Compiler d $ \x -> CompilerM $ do
logger <- compilerLogger <$> ask
timed logger msg $ unCompilerM $ j x
--- | Choose a compiler by extension
---
--- Example:
+-- | Choose a compiler by identifier
--
--- > route "css/*" $ setExtension "css"
--- > compile "css/*" $ byExtension (error "Not a (S)CSS file")
--- > [ (".css", compressCssCompiler)
--- > , (".scss", sass)
--- > ]
+-- For example, assume that most content files need to be compiled
+-- normally, but a select few need an extra step in the pipeline:
--
--- This piece of code will select the @compressCssCompiler@ for @.css@ files,
--- and the @sass@ compiler (defined elsewhere) for @.scss@ files.
+-- > compile $ pageCompiler
+-- > >>> byIdentifier id
+-- > [ ((=="projects.md") . toFilePath, addProjectListCompiler)
+-- > , ((=="sitemap.md") . toFilePath, addSiteMapCompiler)
+-- > ]
--
-byExtension :: Compiler a b -- ^ Default compiler
- -> [(String, Compiler a b)] -- ^ Choices
- -> Compiler a b -- ^ Resulting compiler
-byExtension defaultCompiler choices = Compiler deps job
+byIdentifier :: Compiler a b -- ^ Default compiler
+ -> [(Identifier a -> Bool, Compiler a b)] -- ^ Choices
+ -> Compiler a b -- ^ Resulting compiler
+byIdentifier defaultCompiler choices = Compiler deps job
where
-- Lookup the compiler, give an error when it is not found
lookup' identifier =
- let extension = takeExtension $ toFilePath identifier
- in fromMaybe defaultCompiler $ lookup extension choices
+ maybe defaultCompiler snd $ find (\(f,_) -> f identifier) choices
-- Collect the dependencies of the choice
deps = do
- identifier <- dependencyIdentifier <$> ask
+ identifier <- castIdentifier . dependencyIdentifier <$> ask
compilerDependencies $ lookup' identifier
-- Collect the job of the choice
job x = CompilerM $ do
- identifier <- compilerIdentifier <$> ask
+ identifier <- castIdentifier . compilerIdentifier <$> ask
unCompilerM $ compilerJob (lookup' identifier) x
+
+-- | Choose a compiler by extension
+--
+-- Example:
+--
+-- > match "css/*" $ do
+-- > route $ setExtension "css"
+-- > compile $ byExtension (error "Not a (S)CSS file")
+-- > [ (".css", compressCssCompiler)
+-- > , (".scss", sass)
+-- > ]
+--
+-- This piece of code will select the @compressCssCompiler@ for @.css@ files,
+-- and the @sass@ compiler (defined elsewhere) for @.scss@ files.
+--
+byExtension :: Compiler a b -- ^ Default compiler
+ -> [(String, Compiler a b)] -- ^ Choices
+ -> Compiler a b -- ^ Resulting compiler
+byExtension defaultCompiler = byIdentifier defaultCompiler . map (first cmp)
+ where cmp c = (==c) . takeExtension . toFilePath