diff options
Diffstat (limited to 'src/PursLoader')
-rw-r--r-- | src/PursLoader/ChildProcess.js | 40 | ||||
-rw-r--r-- | src/PursLoader/ChildProcess.purs | 23 | ||||
-rw-r--r-- | src/PursLoader/FS.js | 36 | ||||
-rw-r--r-- | src/PursLoader/FS.purs | 38 | ||||
-rw-r--r-- | src/PursLoader/Glob.js | 18 | ||||
-rw-r--r-- | src/PursLoader/Glob.purs | 22 | ||||
-rw-r--r-- | src/PursLoader/Loader.purs | 139 | ||||
-rw-r--r-- | src/PursLoader/LoaderRef.purs | 13 | ||||
-rw-r--r-- | src/PursLoader/Options.purs | 132 | ||||
-rw-r--r-- | src/PursLoader/Path.js (renamed from src/PursLoader/Loader.js) | 11 | ||||
-rw-r--r-- | src/PursLoader/Path.purs | 14 |
11 files changed, 91 insertions, 395 deletions
diff --git a/src/PursLoader/ChildProcess.js b/src/PursLoader/ChildProcess.js deleted file mode 100644 index d62aef6..0000000 --- a/src/PursLoader/ChildProcess.js +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | 'use strict'; | ||
2 | |||
3 | // module PursLoader.ChildProcess | ||
4 | |||
5 | var child_process = require('child_process'); | ||
6 | |||
7 | var chalk = require('chalk'); | ||
8 | |||
9 | function spawnFn(command, args, errback, callback) { | ||
10 | return function(){ | ||
11 | var process = child_process.spawn(command, args); | ||
12 | |||
13 | var stdout = new Buffer(0); | ||
14 | |||
15 | var stderr = new Buffer(0); | ||
16 | |||
17 | process.stdout.on('data', function(data){ | ||
18 | stdout = Buffer.concat([stdout, new Buffer(data)]); | ||
19 | }); | ||
20 | |||
21 | process.stderr.on('data', function(data){ | ||
22 | stderr = Buffer.concat([stderr, new Buffer(data)]); | ||
23 | }); | ||
24 | |||
25 | process.on('close', function(code){ | ||
26 | var output = stdout.toString('utf-8'); | ||
27 | |||
28 | var error = stderr.toString('utf-8'); | ||
29 | |||
30 | if (error.length > 0) { | ||
31 | console.error('\n' + chalk.red('*') + ' ' + error); | ||
32 | } | ||
33 | |||
34 | if (code !== 0) errback(new Error('Process terminated with code ' + code))(); | ||
35 | else callback(output)(); | ||
36 | }); | ||
37 | }; | ||
38 | } | ||
39 | |||
40 | exports.spawnFn = spawnFn; | ||
diff --git a/src/PursLoader/ChildProcess.purs b/src/PursLoader/ChildProcess.purs deleted file mode 100644 index 3bd960b..0000000 --- a/src/PursLoader/ChildProcess.purs +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | module PursLoader.ChildProcess | ||
2 | ( ChildProcess() | ||
3 | , spawn | ||
4 | ) where | ||
5 | |||
6 | import Prelude (Unit(), ($)) | ||
7 | |||
8 | import Control.Monad.Aff (Aff(), makeAff) | ||
9 | import Control.Monad.Eff (Eff()) | ||
10 | import Control.Monad.Eff.Exception (Error()) | ||
11 | |||
12 | import Data.Function | ||
13 | |||
14 | foreign import data ChildProcess :: ! | ||
15 | |||
16 | spawn :: forall eff. String -> Array String -> Aff (cp :: ChildProcess | eff) String | ||
17 | spawn command args = makeAff $ runFn4 spawnFn command args | ||
18 | |||
19 | foreign import spawnFn :: forall eff. Fn4 String | ||
20 | (Array String) | ||
21 | (Error -> Eff (cp :: ChildProcess | eff) Unit) | ||
22 | (String -> Eff (cp :: ChildProcess | eff) Unit) | ||
23 | (Eff (cp :: ChildProcess | eff) Unit) | ||
diff --git a/src/PursLoader/FS.js b/src/PursLoader/FS.js deleted file mode 100644 index 1a7f5b0..0000000 --- a/src/PursLoader/FS.js +++ /dev/null | |||
@@ -1,36 +0,0 @@ | |||
1 | 'use strict'; | ||
2 | |||
3 | // module PursLoader.FS | ||
4 | |||
5 | var fs = require('fs'); | ||
6 | |||
7 | var async = require('async'); | ||
8 | |||
9 | function writeFileUtf8Fn(filepath, contents, errback, callback) { | ||
10 | return function(){ | ||
11 | fs.writeFile(filepath, contents, function(error){ | ||
12 | if (error) errback(error)(); | ||
13 | else callback()(); | ||
14 | }); | ||
15 | }; | ||
16 | } | ||
17 | |||
18 | function findFileUtf8Fn(nothing, just, regex, filepaths, errback, callback) { | ||
19 | return function(){ | ||
20 | function findFile(filepath, callback) { | ||
21 | fs.readFile(filepath, {encoding: 'utf-8'}, function(error, result){ | ||
22 | if (error) callback(false); | ||
23 | else callback(regex.test(result)); | ||
24 | }); | ||
25 | } | ||
26 | |||
27 | async.detect(filepaths, findFile, function(result){ | ||
28 | if (!result) callback(nothing)(); | ||
29 | else callback(just(result))(); | ||
30 | }); | ||
31 | }; | ||
32 | } | ||
33 | |||
34 | exports.writeFileUtf8Fn = writeFileUtf8Fn; | ||
35 | |||
36 | exports.findFileUtf8Fn = findFileUtf8Fn; | ||
diff --git a/src/PursLoader/FS.purs b/src/PursLoader/FS.purs deleted file mode 100644 index 969e3d0..0000000 --- a/src/PursLoader/FS.purs +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | module PursLoader.FS | ||
2 | ( FS() | ||
3 | , writeFileUtf8 | ||
4 | , findFileUtf8 | ||
5 | ) where | ||
6 | |||
7 | import Prelude (Unit(), ($)) | ||
8 | |||
9 | import Control.Monad.Aff (Aff(), makeAff) | ||
10 | import Control.Monad.Eff (Eff()) | ||
11 | import Control.Monad.Eff.Exception (Error()) | ||
12 | |||
13 | import Data.Maybe (Maybe(..)) | ||
14 | import Data.String.Regex (Regex()) | ||
15 | |||
16 | import Data.Function | ||
17 | |||
18 | foreign import data FS :: ! | ||
19 | |||
20 | writeFileUtf8 :: forall eff. String -> String -> Aff (fs :: FS | eff) Unit | ||
21 | writeFileUtf8 filepath contents = makeAff $ runFn4 writeFileUtf8Fn filepath contents | ||
22 | |||
23 | foreign import writeFileUtf8Fn :: forall eff. Fn4 String | ||
24 | String | ||
25 | (Error -> Eff (fs :: FS | eff) Unit) | ||
26 | (Unit -> Eff (fs :: FS | eff) Unit) | ||
27 | (Eff (fs :: FS | eff) Unit) | ||
28 | |||
29 | findFileUtf8 :: forall eff. Regex -> Array String -> Aff (fs :: FS | eff) (Maybe String) | ||
30 | findFileUtf8 regexp filepaths = makeAff $ runFn6 findFileUtf8Fn Nothing Just regexp filepaths | ||
31 | |||
32 | foreign import findFileUtf8Fn :: forall eff. Fn6 (Maybe String) | ||
33 | (String -> Maybe String) | ||
34 | Regex | ||
35 | (Array String) | ||
36 | (Error -> Eff (fs :: FS | eff) Unit) | ||
37 | (Maybe String -> Eff (fs :: FS | eff) Unit) | ||
38 | (Eff (fs :: FS | eff) Unit) | ||
diff --git a/src/PursLoader/Glob.js b/src/PursLoader/Glob.js deleted file mode 100644 index 960ae9a..0000000 --- a/src/PursLoader/Glob.js +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | 'use strict'; | ||
2 | |||
3 | // module PursLoader.Glob | ||
4 | |||
5 | var glob = require('glob'); | ||
6 | |||
7 | var async = require('async'); | ||
8 | |||
9 | function globAllFn(patterns, errback, callback) { | ||
10 | return function(){ | ||
11 | async.map(patterns, glob, function(error, result){ | ||
12 | if (error) errback(new Error(error))(); | ||
13 | else callback(result)(); | ||
14 | }); | ||
15 | }; | ||
16 | } | ||
17 | |||
18 | exports.globAllFn = globAllFn; | ||
diff --git a/src/PursLoader/Glob.purs b/src/PursLoader/Glob.purs deleted file mode 100644 index 45eeb56..0000000 --- a/src/PursLoader/Glob.purs +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | module PursLoader.Glob | ||
2 | ( Glob() | ||
3 | , globAll | ||
4 | ) where | ||
5 | |||
6 | import Prelude (Unit(), ($)) | ||
7 | |||
8 | import Control.Monad.Aff (Aff(), makeAff) | ||
9 | import Control.Monad.Eff (Eff()) | ||
10 | import Control.Monad.Eff.Exception (Error()) | ||
11 | |||
12 | import Data.Function | ||
13 | |||
14 | foreign import data Glob :: ! | ||
15 | |||
16 | globAll :: forall eff. Array String -> Aff (glob :: Glob | eff) (Array (Array String)) | ||
17 | globAll patterns = makeAff $ runFn3 globAllFn patterns | ||
18 | |||
19 | foreign import globAllFn :: forall eff. Fn3 (Array String) | ||
20 | (Error -> Eff (glob :: Glob | eff) Unit) | ||
21 | ((Array (Array String)) -> Eff (glob :: Glob | eff) Unit) | ||
22 | (Eff (glob :: Glob | eff) Unit) | ||
diff --git a/src/PursLoader/Loader.purs b/src/PursLoader/Loader.purs index a91667c..0cd077d 100644 --- a/src/PursLoader/Loader.purs +++ b/src/PursLoader/Loader.purs | |||
@@ -4,122 +4,75 @@ module PursLoader.Loader | |||
4 | , loaderFn | 4 | , loaderFn |
5 | ) where | 5 | ) where |
6 | 6 | ||
7 | import Prelude (Unit(), ($), (<>), (>>=), (<$>), (++), bind, flip, id, pure, return, unit, show) | 7 | import Prelude (Unit(), ($), (>>=), (<$>), (<*>), (<<<), (++), bind, const) |
8 | 8 | ||
9 | import Control.Monad.Aff (Aff(), runAff) | 9 | import Control.Bind (join) |
10 | import Control.Monad.Eff (Eff()) | 10 | import Control.Monad.Eff (Eff()) |
11 | import Control.Monad.Eff.Class (liftEff) | 11 | import Control.Monad.Eff.Exception (Error(), error) |
12 | import Control.Monad.Eff.Exception (throwException, error, EXCEPTION()) | ||
13 | 12 | ||
14 | import Data.Array ((!!), concat) | 13 | import Data.Array ((!!)) |
15 | import Data.Function (Fn2(), mkFn2) | 14 | import Data.Function (Fn2(), mkFn2) |
16 | import Data.Maybe (Maybe(..), fromMaybe, maybe) | 15 | import Data.Maybe (Maybe(..), maybe) |
17 | import Data.Either (Either(..)) | 16 | import Data.Either (either) |
18 | import Data.String (joinWith) | 17 | import Data.Foreign (Foreign()) |
19 | import Data.String.Regex (Regex(), match, noFlags, regex, test) | ||
20 | import Data.Traversable (sequence) | ||
21 | import Data.Foreign (F()) | ||
22 | import Data.Foreign.Class (read) | 18 | import Data.Foreign.Class (read) |
19 | import Data.Foreign.Null (runNull) | ||
20 | import Data.String.Regex (Regex(), match, noFlags, regex) | ||
21 | |||
22 | import Unsafe.Coerce (unsafeCoerce) | ||
23 | |||
24 | import PursLoader.LoaderRef | ||
25 | ( LoaderRef() | ||
26 | , Loader() | ||
27 | , async | ||
28 | , cacheable | ||
29 | , query | ||
30 | , clearDependencies | ||
31 | , addDependency | ||
32 | , resourcePath | ||
33 | ) | ||
23 | 34 | ||
24 | import PursLoader.ChildProcess (ChildProcess(), spawn) | ||
25 | import PursLoader.FS (FS(), writeFileUtf8, findFileUtf8) | ||
26 | import PursLoader.Glob (Glob(), globAll) | ||
27 | import PursLoader.LoaderRef (LoaderRef(), Loader(), async, cacheable, query, clearDependencies, addDependency, resourcePath) | ||
28 | import PursLoader.LoaderUtil (parseQuery) | 35 | import PursLoader.LoaderUtil (parseQuery) |
29 | import PursLoader.Options (loaderFFIOption, loaderSrcOption, pscOptions, Options(), output) | 36 | import PursLoader.Options (runOptions) |
37 | import PursLoader.Path (dirname, relative) | ||
30 | 38 | ||
31 | type Effects eff = (cp :: ChildProcess, fs :: FS, glob :: Glob, loader :: Loader, err :: EXCEPTION | eff) | 39 | type Effects eff = (loader :: Loader | eff) |
32 | 40 | ||
33 | moduleRegex :: Regex | 41 | type PurescriptWebpackPluginContext eff = { compile :: (Foreign -> Eff (Effects eff) Unit) -> Eff (Effects eff) Unit } |
34 | moduleRegex = regex "(?:^|\\n)module\\s+([\\w\\.]+)" noFlags { ignoreCase = true } | ||
35 | 42 | ||
36 | foreignRegex :: Regex | 43 | loader :: forall eff. LoaderRef -> String -> Eff (Effects eff) Unit |
37 | foreignRegex = regex "(?:^|\\n)\\s*foreign import\\s+" noFlags { ignoreCase = true } | 44 | loader ref source = do |
38 | 45 | callback <- async ref | |
39 | pscCommand :: String | ||
40 | pscCommand = "psc" | ||
41 | |||
42 | psciCommand :: String | ||
43 | psciCommand = "psci" | ||
44 | |||
45 | psciFilename :: String | ||
46 | psciFilename = ".psci" | ||
47 | |||
48 | (!!!) :: forall a. Int -> Array a -> Maybe a | ||
49 | (!!!) = flip (!!) | ||
50 | |||
51 | foreign import cwd :: String | ||
52 | |||
53 | foreign import relative :: String -> String -> String | ||
54 | |||
55 | foreign import resolve :: String -> String | ||
56 | |||
57 | foreign import dirname :: String -> String | ||
58 | |||
59 | foreign import joinPath :: String -> String -> String | ||
60 | |||
61 | mkPsci :: Array (Array String) -> Array (Array String) -> String | ||
62 | mkPsci srcs ffis = joinWith "\n" ((loadModule <$> concat srcs) <> (loadForeign <$> concat ffis)) | ||
63 | where | ||
64 | loadModule :: String -> String | ||
65 | loadModule a = ":m " ++ relative cwd a | ||
66 | |||
67 | loadForeign :: String -> String | ||
68 | loadForeign a = ":f " ++ relative cwd a | ||
69 | |||
70 | findFFI :: forall eff. Array (Array String) -> String -> Aff (fs :: FS | eff) (Maybe String) | ||
71 | findFFI ffiss name = findFileUtf8 re (concat ffiss) | ||
72 | where | ||
73 | re = regex ("(?:^|\\n)//\\s*module\\s*" ++ name ++ "\\s*\\n") noFlags | ||
74 | 46 | ||
75 | loader' :: forall eff. LoaderRef -> String -> Aff (Effects eff) (Maybe String) | 47 | cacheable ref |
76 | loader' ref source = do | ||
77 | liftEff $ cacheable ref | ||
78 | 48 | ||
79 | let parsed = parseQuery $ query ref | 49 | let parsed = parseQuery $ query ref |
80 | srcs = fromMaybe [] (loaderSrcOption parsed) | ||
81 | ffis = fromMaybe [] (loaderFFIOption parsed) | ||
82 | 50 | ||
83 | case read parsed :: F Options of | 51 | options = either (const Nothing) (Just <<< runOptions) (read parsed) |
84 | Left e -> liftEff (throwException (error (show e))) | ||
85 | Right opts -> do | ||
86 | let pscOpts = pscOptions opts | ||
87 | 52 | ||
88 | srcss <- globAll srcs | 53 | moduleName = join $ match moduleRegex source >>= \as -> as !! 1 |
89 | ffiss <- globAll ffis | ||
90 | 54 | ||
91 | let psciFile = mkPsci srcss ffiss | 55 | resourceDir = dirname (resourcePath ref) |
92 | 56 | ||
93 | writeFileUtf8 psciFilename psciFile | 57 | modulePath = (\opts -> relative resourceDir opts.pscBundle) <$> options |
94 | 58 | ||
95 | let moduleName = match moduleRegex source >>= (!!!) 1 >>= id | 59 | result = (\path name -> "module.exports = require('" ++ path ++ "')['" ++ name ++ "'];") <$> modulePath <*> moduleName |
96 | hasForeign = test foreignRegex source | ||
97 | outputDir = resolve (output opts) | ||
98 | resourceDir = dirname (resourcePath ref) | ||
99 | result = (\a -> "module.exports = require('" ++ relative resourceDir (joinPath outputDir a) ++ "');") <$> moduleName | ||
100 | 60 | ||
101 | liftEff do | 61 | clearDependencies ref |
102 | clearDependencies ref | ||
103 | addDependency ref (resourcePath ref) | ||
104 | sequence $ (\src -> addDependency ref (resolve src)) <$> concat srcss | ||
105 | 62 | ||
106 | foreignPath <- if hasForeign | 63 | addDependency ref (resourcePath ref) |
107 | then fromMaybe (pure Nothing) (findFFI ffiss <$> moduleName) | ||
108 | else pure Nothing | ||
109 | 64 | ||
110 | fromMaybe (pure unit) ((\path -> liftEff (addDependency ref path)) <$> foreignPath) | 65 | pluginContext.compile (\err -> maybe (callback (Just $ error "Failed to run loader") "") |
111 | 66 | (callback (compileError err)) result) | |
112 | spawn pscCommand (srcs <> pscOpts) | 67 | where |
68 | moduleRegex :: Regex | ||
69 | moduleRegex = regex "(?:^|\\n)module\\s+([\\w\\.]+)" noFlags { ignoreCase = true } | ||
113 | 70 | ||
114 | return result | 71 | pluginContext :: PurescriptWebpackPluginContext eff |
72 | pluginContext = (unsafeCoerce ref).purescriptWebpackPluginContext | ||
115 | 73 | ||
116 | loader :: forall eff. LoaderRef -> String -> Eff (Effects eff) Unit | 74 | compileError :: Foreign -> Maybe Error |
117 | loader ref source = do | 75 | compileError value = either (const $ Just (error "Failed to compile")) ((<$>) error) (runNull <$> read value) |
118 | callback <- async ref | ||
119 | runAff (\e -> callback (Just e) "") | ||
120 | (maybe (callback (Just (error "Loader has failed to run")) "") | ||
121 | (callback Nothing)) | ||
122 | (loader' ref source) | ||
123 | 76 | ||
124 | loaderFn :: forall eff. Fn2 LoaderRef String (Eff (Effects eff) Unit) | 77 | loaderFn :: forall eff. Fn2 LoaderRef String (Eff (Effects eff) Unit) |
125 | loaderFn = mkFn2 loader | 78 | loaderFn = mkFn2 loader |
diff --git a/src/PursLoader/LoaderRef.purs b/src/PursLoader/LoaderRef.purs index 33c4f7e..87d6006 100644 --- a/src/PursLoader/LoaderRef.purs +++ b/src/PursLoader/LoaderRef.purs | |||
@@ -1,6 +1,7 @@ | |||
1 | module PursLoader.LoaderRef | 1 | module PursLoader.LoaderRef |
2 | ( LoaderRef() | 2 | ( LoaderRef() |
3 | , Loader() | 3 | , Loader() |
4 | , AsyncCallback() | ||
4 | , async | 5 | , async |
5 | , cacheable | 6 | , cacheable |
6 | , query | 7 | , query |
@@ -17,16 +18,18 @@ import Control.Monad.Eff.Exception (Error()) | |||
17 | import Data.Function (Fn3(), runFn3) | 18 | import Data.Function (Fn3(), runFn3) |
18 | import Data.Maybe (Maybe(), fromMaybe, isJust) | 19 | import Data.Maybe (Maybe(), fromMaybe, isJust) |
19 | 20 | ||
21 | type AsyncCallback eff = Maybe Error -> String -> Eff (loader :: Loader | eff) Unit | ||
22 | |||
20 | data LoaderRef | 23 | data LoaderRef |
21 | 24 | ||
22 | foreign import data Loader :: ! | 25 | foreign import data Loader :: ! |
23 | 26 | ||
24 | foreign import asyncFn :: forall eff a. Fn3 (Maybe Error -> Boolean) | 27 | foreign import asyncFn :: forall eff. Fn3 (Maybe Error -> Boolean) |
25 | (Error -> Maybe Error -> Error) | 28 | (Error -> Maybe Error -> Error) |
26 | LoaderRef | 29 | LoaderRef |
27 | (Eff (loader :: Loader | eff) (Maybe Error -> a -> Eff (loader :: Loader | eff) Unit)) | 30 | (Eff (loader :: Loader | eff) (AsyncCallback eff)) |
28 | 31 | ||
29 | async :: forall eff a. LoaderRef -> Eff (loader :: Loader | eff) (Maybe Error -> a -> Eff (loader :: Loader | eff) Unit) | 32 | async :: forall eff. LoaderRef -> Eff (loader :: Loader | eff) (Maybe Error -> String -> Eff (loader :: Loader | eff) Unit) |
30 | async ref = runFn3 asyncFn isJust fromMaybe ref | 33 | async ref = runFn3 asyncFn isJust fromMaybe ref |
31 | 34 | ||
32 | foreign import cacheable :: forall eff. LoaderRef -> Eff (loader :: Loader | eff) Unit | 35 | foreign import cacheable :: forall eff. LoaderRef -> Eff (loader :: Loader | eff) Unit |
diff --git a/src/PursLoader/Options.purs b/src/PursLoader/Options.purs index 3657d1a..132096c 100644 --- a/src/PursLoader/Options.purs +++ b/src/PursLoader/Options.purs | |||
@@ -1,122 +1,30 @@ | |||
1 | module PursLoader.Options | 1 | module PursLoader.Options |
2 | ( pscOptions | 2 | ( Options() |
3 | , loaderSrcOption | 3 | , runOptions |
4 | , loaderFFIOption | ||
5 | , Options() | ||
6 | , output | ||
7 | ) where | 4 | ) where |
8 | 5 | ||
9 | import Prelude ((<>), (<$>), (<<<), (++), (<*>), ($), const, id) | 6 | import Prelude ((<$>), (<<<), id) |
10 | 7 | ||
11 | import Data.Array (concat) | 8 | import Data.Foreign.Class (IsForeign, readProp) |
12 | import Data.Either (either) | 9 | import Data.Foreign.NullOrUndefined (runNullOrUndefined) |
10 | import Data.Maybe (maybe) | ||
13 | 11 | ||
14 | import Data.Foreign (Foreign()) | 12 | import PursLoader.Path (joinPath) |
15 | import Data.Foreign.Class (IsForeign, read, readProp) | ||
16 | import Data.Foreign.NullOrUndefined (NullOrUndefined(..), runNullOrUndefined) | ||
17 | 13 | ||
18 | import Data.Maybe (Maybe(..), maybe, fromMaybe) | 14 | newtype Options = Options { pscBundle :: String } |
19 | 15 | ||
20 | noPreludeOpt :: String | 16 | type Options_ = { pscBundle :: String } |
21 | noPreludeOpt = "no-prelude" | ||
22 | 17 | ||
23 | noOptsOpt :: String | 18 | runOptions :: Options -> Options_ |
24 | noOptsOpt = "no-opts" | 19 | runOptions (Options options) = options |
25 | |||
26 | noMagicDoOpt :: String | ||
27 | noMagicDoOpt = "no-magic-do" | ||
28 | |||
29 | noTcoOpt :: String | ||
30 | noTcoOpt = "no-tco" | ||
31 | |||
32 | verboseErrorsOpt :: String | ||
33 | verboseErrorsOpt = "verbose-errors" | ||
34 | |||
35 | outputOpt :: String | ||
36 | outputOpt = "output" | ||
37 | |||
38 | commentsOpt :: String | ||
39 | commentsOpt = "comments" | ||
40 | |||
41 | noPrefixOpt :: String | ||
42 | noPrefixOpt = "no-prefix" | ||
43 | |||
44 | requirePathOpt :: String | ||
45 | requirePathOpt = "require-path" | ||
46 | |||
47 | srcOpt :: String | ||
48 | srcOpt = "src" | ||
49 | |||
50 | ffiOpt :: String | ||
51 | ffiOpt = "ffi" | ||
52 | |||
53 | newtype Options | ||
54 | = Options { noPrelude :: NullOrUndefined Boolean | ||
55 | , noOpts :: NullOrUndefined Boolean | ||
56 | , noMagicDo :: NullOrUndefined Boolean | ||
57 | , noTco :: NullOrUndefined Boolean | ||
58 | , verboseErrors :: NullOrUndefined Boolean | ||
59 | , comments :: NullOrUndefined Boolean | ||
60 | , output :: String | ||
61 | , noPrefix :: NullOrUndefined Boolean | ||
62 | , requirePath :: String | ||
63 | , src :: NullOrUndefined (Array String) | ||
64 | , ffi :: NullOrUndefined (Array String) | ||
65 | } | ||
66 | |||
67 | output :: Options -> String | ||
68 | output (Options o) = o.output | ||
69 | 20 | ||
70 | instance isForeignOptions :: IsForeign Options where | 21 | instance isForeignOptions :: IsForeign Options where |
71 | read obj = Options <$> ({ noPrelude: _ | 22 | read obj = |
72 | , noOpts: _ | 23 | Options <$> ({ pscBundle: _ } |
73 | , noMagicDo: _ | 24 | <$> (maybe pscBundleDefault id <<< runNullOrUndefined <$> readProp pscBundle obj)) |
74 | , noTco: _ | 25 | where |
75 | , verboseErrors: _ | 26 | pscBundle :: String |
76 | , comments: _ | 27 | pscBundle = "pscBundle" |
77 | , output: _ | 28 | |
78 | , noPrefix: _ | 29 | pscBundleDefault :: String |
79 | , requirePath: "../" | 30 | pscBundleDefault = joinPath "output" "bundle.js" |
80 | , src: _ | ||
81 | , ffi: _ | ||
82 | } <$> readProp noPreludeOpt obj | ||
83 | <*> readProp noOptsOpt obj | ||
84 | <*> readProp noMagicDoOpt obj | ||
85 | <*> readProp noTcoOpt obj | ||
86 | <*> readProp verboseErrorsOpt obj | ||
87 | <*> readProp commentsOpt obj | ||
88 | <*> (maybe "output" id <<< runNullOrUndefined <$> readProp outputOpt obj) | ||
89 | <*> readProp noPrefixOpt obj | ||
90 | <*> readProp srcOpt obj | ||
91 | <*> readProp ffiOpt obj) | ||
92 | |||
93 | class LoaderOption a where | ||
94 | opt :: String -> NullOrUndefined a -> Array String | ||
95 | |||
96 | instance booleanLoaderOption :: LoaderOption Boolean where | ||
97 | opt key val = maybe [] (\a -> if a then ["--" ++ key] else []) (runNullOrUndefined val) | ||
98 | |||
99 | instance stringLoaderOption :: LoaderOption String where | ||
100 | opt key val = maybe [] (\a -> ["--" ++ key ++ "=" ++ a]) (runNullOrUndefined val) | ||
101 | |||
102 | instance arrayLoaderOption :: (LoaderOption a) => LoaderOption (Array a) where | ||
103 | opt key val = concat (opt key <$> (NullOrUndefined <<< Just) | ||
104 | <$> (fromMaybe [] (runNullOrUndefined val))) | ||
105 | |||
106 | pscOptions :: Options -> Array String | ||
107 | pscOptions (Options a) = opt noPreludeOpt a.noPrelude <> | ||
108 | opt noOptsOpt a.noOpts <> | ||
109 | opt noMagicDoOpt a.noMagicDo <> | ||
110 | opt noTcoOpt a.noTco <> | ||
111 | opt verboseErrorsOpt a.verboseErrors <> | ||
112 | opt commentsOpt a.comments <> | ||
113 | opt outputOpt (NullOrUndefined $ Just a.output) <> | ||
114 | opt noPrefixOpt a.noPrefix <> | ||
115 | opt requirePathOpt (NullOrUndefined $ Just a.requirePath) <> | ||
116 | opt ffiOpt a.ffi | ||
117 | |||
118 | loaderSrcOption :: Foreign -> Maybe (Array String) | ||
119 | loaderSrcOption query = either (const Nothing) (\(Options a) -> runNullOrUndefined a.src) (read query) | ||
120 | |||
121 | loaderFFIOption :: Foreign -> Maybe (Array String) | ||
122 | loaderFFIOption query = either (const Nothing) (\(Options a) -> runNullOrUndefined a.ffi) (read query) | ||
diff --git a/src/PursLoader/Loader.js b/src/PursLoader/Path.js index 45e9c2f..878f256 100644 --- a/src/PursLoader/Loader.js +++ b/src/PursLoader/Path.js | |||
@@ -1,27 +1,22 @@ | |||
1 | 'use strict' | 1 | 'use strict' |
2 | 2 | ||
3 | // module PursLoader.Loader | 3 | // module PursLoader.Path |
4 | 4 | ||
5 | var path = require('path'); | 5 | var path = require('path'); |
6 | 6 | ||
7 | var cwd = process.cwd(); | ||
8 | |||
9 | function relative(from) { | 7 | function relative(from) { |
10 | return function(to){ | 8 | return function(to){ |
11 | return path.relative(from, to); | 9 | return path.relative(from, to); |
12 | }; | 10 | }; |
13 | } | 11 | } |
12 | exports.relative = relative; | ||
13 | |||
14 | 14 | ||
15 | function joinPath(a) { | 15 | function joinPath(a) { |
16 | return function(b) { | 16 | return function(b) { |
17 | return path.join(a, b); | 17 | return path.join(a, b); |
18 | }; | 18 | }; |
19 | } | 19 | } |
20 | |||
21 | exports.cwd = cwd; | ||
22 | |||
23 | exports.relative = relative; | ||
24 | |||
25 | exports.joinPath = joinPath; | 20 | exports.joinPath = joinPath; |
26 | 21 | ||
27 | exports.resolve = path.resolve; | 22 | exports.resolve = path.resolve; |
diff --git a/src/PursLoader/Path.purs b/src/PursLoader/Path.purs new file mode 100644 index 0000000..98cad5a --- /dev/null +++ b/src/PursLoader/Path.purs | |||
@@ -0,0 +1,14 @@ | |||
1 | module PursLoader.Path | ||
2 | ( relative | ||
3 | , resolve | ||
4 | , dirname | ||
5 | , joinPath | ||
6 | ) where | ||
7 | |||
8 | foreign import relative :: String -> String -> String | ||
9 | |||
10 | foreign import resolve :: String -> String | ||
11 | |||
12 | foreign import dirname :: String -> String | ||
13 | |||
14 | foreign import joinPath :: String -> String -> String | ||