hakyll/src/Hakyll/Preview/Poll.hs

41 lines
1.3 KiB
Haskell
Raw Normal View History

2012-12-29 08:53:59 +00:00
module Hakyll.Preview.Poll
( watchUpdates
2011-02-21 12:35:20 +00:00
) where
2012-12-29 08:53:59 +00:00
--------------------------------------------------------------------------------
import Filesystem.Path.CurrentOS (decodeString, encodeString)
2013-03-30 15:24:20 +00:00
import System.FSNotify (startManagerConf, watchTree,
Event(..), WatchConfig(..))
2012-12-29 08:53:59 +00:00
--------------------------------------------------------------------------------
import Hakyll.Core.Configuration
2011-02-21 12:35:20 +00:00
2012-12-29 08:53:59 +00:00
--------------------------------------------------------------------------------
-- | A thread that watches for updates in a 'providerDirectory' and recompiles
-- a site as soon as any changes occur
watchUpdates :: Configuration -> IO () -> IO ()
watchUpdates conf update = do
2013-03-30 16:07:16 +00:00
_ <- update
manager <- startManagerConf (Debounce 0.1)
2013-04-03 10:31:27 +00:00
watchTree manager path (not . isRemove) update'
2011-02-21 12:35:20 +00:00
where
path = decodeString $ providerDirectory conf
2013-04-03 10:31:27 +00:00
update' evt = do
ignore <- shouldIgnoreFile conf $ eventPath evt
if ignore then return () else update
2013-04-03 10:31:27 +00:00
eventPath :: Event -> FilePath
eventPath evt = encodeString $ evtPath evt
where
evtPath (Added p _) = p
evtPath (Modified p _) = p
evtPath (Removed p _) = p
isRemove :: Event -> Bool
isRemove (Removed _ _) = True
isRemove _ = False