diff options
Diffstat (limited to 'compiler/app/Main.hs')
-rw-r--r-- | compiler/app/Main.hs | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/compiler/app/Main.hs b/compiler/app/Main.hs index 1864dee..594a5b7 100644 --- a/compiler/app/Main.hs +++ b/compiler/app/Main.hs | |||
@@ -20,11 +20,13 @@ module Main where | |||
20 | 20 | ||
21 | import GHC.Generics (Generic) | 21 | import GHC.Generics (Generic) |
22 | import Paths_ldgallery_compiler (version, getDataFileName) | 22 | import Paths_ldgallery_compiler (version, getDataFileName) |
23 | import Control.Monad (when) | ||
23 | import Data.Version (showVersion) | 24 | import Data.Version (showVersion) |
24 | import Data.Int (Int64) | 25 | import Data.Int (Int64) |
25 | import Data.Aeson (ToJSON) | 26 | import Data.Aeson (ToJSON) |
26 | import Data.Time.Clock.System (getSystemTime, systemSeconds) | 27 | import Data.Time.Clock.System (getSystemTime, systemSeconds) |
27 | import System.FilePath ((</>)) | 28 | import System.FilePath ((</>)) |
29 | import System.Directory (canonicalizePath) | ||
28 | import System.Console.CmdArgs | 30 | import System.Console.CmdArgs |
29 | 31 | ||
30 | import Compiler | 32 | import Compiler |
@@ -88,11 +90,9 @@ main = | |||
88 | do | 90 | do |
89 | opts <- cmdArgs options | 91 | opts <- cmdArgs options |
90 | buildGallery opts | 92 | buildGallery opts |
91 | if (withViewer opts) then do | 93 | when (withViewer opts) $ do |
92 | copyViewer (outputDir opts) | 94 | copyViewer (outputDir opts) |
93 | writeViewerConfig (outputDir opts </> "config.json") | 95 | writeViewerConfig (outputDir opts </> "config.json") |
94 | else | ||
95 | return () | ||
96 | 96 | ||
97 | where | 97 | where |
98 | gallerySubdir :: String | 98 | gallerySubdir :: String |
@@ -100,12 +100,18 @@ main = | |||
100 | 100 | ||
101 | buildGallery :: Options -> IO () | 101 | buildGallery :: Options -> IO () |
102 | buildGallery opts = | 102 | buildGallery opts = |
103 | compileGallery | 103 | checkDistinctPaths (inputDir opts) (outputDir opts) |
104 | (inputDir opts) | 104 | >> compileGallery |
105 | (galleryOutputDir opts) | 105 | (inputDir opts) |
106 | [outputDir opts] | 106 | (galleryOutputDir opts) |
107 | (rebuilAll opts) | 107 | [outputDir opts] |
108 | (cleanOutput opts) | 108 | (rebuilAll opts) |
109 | (cleanOutput opts) | ||
110 | where | ||
111 | checkDistinctPaths a b = do | ||
112 | canonicalA <- canonicalizePath a | ||
113 | canonicalB <- canonicalizePath b | ||
114 | when (canonicalA == canonicalB) $ error "Input and output paths refer to the same location." | ||
109 | 115 | ||
110 | galleryOutputDir :: Options -> FilePath | 116 | galleryOutputDir :: Options -> FilePath |
111 | galleryOutputDir opts = | 117 | galleryOutputDir opts = |