1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
-----------------------------------------------------------------------------
--
-- Module : Main
-- Copyright : (c) Phil Freeman 2013
-- License : MIT
--
-- Maintainer : Phil Freeman <paf31@cantab.net>
-- Stability : experimental
-- Portability :
--
-- |
--
-----------------------------------------------------------------------------
{-# LANGUAGE DataKinds, GeneralizedNewtypeDeriving, TupleSections, RecordWildCards #-}
module Main where
import Control.Applicative
import Control.Monad.Except
import Control.Monad.Reader
import Data.Version (showVersion)
import Data.Traversable (traverse)
import Options.Applicative as Opts
import System.Directory
(doesFileExist, getModificationTime, createDirectoryIfMissing)
import System.FilePath (takeDirectory)
import System.Exit (exitSuccess, exitFailure)
import System.IO.Error (tryIOError)
import qualified Language.PureScript as P
import qualified Paths_purescript as Paths
data PSCMakeOptions = PSCMakeOptions
{ pscmInput :: [FilePath]
, pscmOutputDir :: FilePath
, pscmOpts :: P.Options P.Make
, pscmUsePrefix :: Bool
}
data InputOptions = InputOptions
{ ioNoPrelude :: Bool
, ioInputFiles :: [FilePath]
}
readInput :: InputOptions -> IO [(Either P.RebuildPolicy FilePath, String)]
readInput InputOptions{..} = do
content <- forM ioInputFiles $ \inFile -> (Right inFile, ) <$> readFile inFile
return (if ioNoPrelude then content else (Left P.RebuildNever, P.prelude) : content)
newtype Make a = Make { unMake :: ReaderT (P.Options P.Make) (ExceptT P.MultipleErrors IO) a }
deriving (Functor, Applicative, Monad, MonadIO, MonadError P.MultipleErrors, MonadReader (P.Options P.Make))
runMake :: P.Options P.Make -> Make a -> IO (Either P.MultipleErrors a)
runMake opts = runExceptT . flip runReaderT opts . unMake
makeIO :: (IOError -> P.ErrorMessage) -> IO a -> Make a
makeIO f io = do
e <- liftIO $ tryIOError io
either (throwError . P.errorMessage . f) return e
instance P.MonadMake Make where
getTimestamp path = makeIO (const (P.CannotGetFileInfo path)) $ do
exists <- doesFileExist path
traverse (const $ getModificationTime path) $ guard exists
readTextFile path = makeIO (const (P.CannotReadFile path))$ do
putStrLn $ "Reading " ++ path
readFile path
writeTextFile path text = makeIO (const (P.CannotWriteFile path)) $ do
mkdirp path
putStrLn $ "Writing " ++ path
writeFile path text
progress = liftIO . putStrLn
compile :: PSCMakeOptions -> IO ()
compile (PSCMakeOptions input outputDir opts usePrefix) = do
modules <- P.parseModulesFromFiles (either (const "") id) <$> readInput (InputOptions (P.optionsNoPrelude opts) input)
case modules of
Left err -> do
print err
exitFailure
Right ms -> do
e <- runMake opts $ P.make outputDir ms prefix
case e of
Left errs -> do
putStrLn (P.prettyPrintMultipleErrors (P.optionsVerboseErrors opts) errs)
exitFailure
Right _ -> do
exitSuccess
where
prefix = if usePrefix
then ["Generated by psc-make version " ++ showVersion Paths.version]
else []
mkdirp :: FilePath -> IO ()
mkdirp = createDirectoryIfMissing True . takeDirectory
inputFile :: Parser FilePath
inputFile = strArgument $
metavar "FILE"
<> help "The input .purs file(s)"
outputDirectory :: Parser FilePath
outputDirectory = strOption $
short 'o'
<> long "output"
<> Opts.value "output"
<> showDefault
<> help "The output directory"
noTco :: Parser Bool
noTco = switch $
long "no-tco"
<> help "Disable tail call optimizations"
noPrelude :: Parser Bool
noPrelude = switch $
long "no-prelude"
<> help "Omit the Prelude"
noMagicDo :: Parser Bool
noMagicDo = switch $
long "no-magic-do"
<> help "Disable the optimization that overloads the do keyword to generate efficient code specifically for the Eff monad."
noOpts :: Parser Bool
noOpts = switch $
long "no-opts"
<> help "Skip the optimization phase."
comments :: Parser Bool
comments = switch $
short 'c'
<> long "comments"
<> help "Include comments in the generated code."
verboseErrors :: Parser Bool
verboseErrors = switch $
short 'v'
<> long "verbose-errors"
<> help "Display verbose error messages"
noPrefix :: Parser Bool
noPrefix = switch $
short 'p'
<> long "no-prefix"
<> help "Do not include comment header"
options :: Parser (P.Options P.Make)
options = P.Options <$> noPrelude
<*> noTco
<*> noMagicDo
<*> pure Nothing
<*> noOpts
<*> verboseErrors
<*> (not <$> comments)
<*> pure P.MakeOptions
pscMakeOptions :: Parser PSCMakeOptions
pscMakeOptions = PSCMakeOptions <$> many inputFile
<*> outputDirectory
<*> options
<*> (not <$> noPrefix)
main :: IO ()
main = execParser opts >>= compile
where
opts = info (version <*> helper <*> pscMakeOptions) infoModList
infoModList = fullDesc <> headerInfo <> footerInfo
headerInfo = header "psc-make - Compiles PureScript to Javascript"
footerInfo = footer $ "psc-make " ++ showVersion Paths.version
version :: Parser (a -> a)
version = abortOption (InfoMsg (showVersion Paths.version)) $ long "version" <> help "Show the version number" <> hidden
|