aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PursLoader/Options.purs
blob: 3657d1ace886ff6c7300aaa2b7ee9ceaf72ab239 (plain) (blame)
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
module PursLoader.Options
  ( pscOptions
  , loaderSrcOption
  , loaderFFIOption
  , Options()
  , output
  ) where

import Prelude ((<>), (<$>), (<<<), (++), (<*>), ($), const, id)

import Data.Array (concat)
import Data.Either (either)

import Data.Foreign (Foreign())
import Data.Foreign.Class (IsForeign, read, readProp)
import Data.Foreign.NullOrUndefined (NullOrUndefined(..), runNullOrUndefined)

import Data.Maybe (Maybe(..), maybe, fromMaybe)

noPreludeOpt :: String
noPreludeOpt = "no-prelude"

noOptsOpt :: String
noOptsOpt = "no-opts"

noMagicDoOpt :: String
noMagicDoOpt = "no-magic-do"

noTcoOpt :: String
noTcoOpt = "no-tco"

verboseErrorsOpt :: String
verboseErrorsOpt = "verbose-errors"

outputOpt :: String
outputOpt = "output"

commentsOpt :: String
commentsOpt = "comments"

noPrefixOpt :: String
noPrefixOpt = "no-prefix"

requirePathOpt :: String
requirePathOpt = "require-path"

srcOpt :: String
srcOpt = "src"

ffiOpt :: String
ffiOpt = "ffi"

newtype Options
  = Options { noPrelude :: NullOrUndefined Boolean
            , noOpts :: NullOrUndefined Boolean
            , noMagicDo :: NullOrUndefined Boolean
            , noTco :: NullOrUndefined Boolean
            , verboseErrors :: NullOrUndefined Boolean
            , comments :: NullOrUndefined Boolean
            , output :: String
            , noPrefix :: NullOrUndefined Boolean
            , requirePath :: String
            , src :: NullOrUndefined (Array String)
            , ffi :: NullOrUndefined (Array String)
            }

output :: Options -> String
output (Options o) = o.output

instance isForeignOptions :: IsForeign Options where
  read obj = Options <$> ({ noPrelude: _
                          , noOpts: _
                          , noMagicDo: _
                          , noTco: _
                          , verboseErrors: _
                          , comments: _
                          , output: _
                          , noPrefix: _
                          , requirePath: "../"
                          , src: _
                          , ffi: _
                          } <$> readProp noPreludeOpt obj
                            <*> readProp noOptsOpt obj
                            <*> readProp noMagicDoOpt obj
                            <*> readProp noTcoOpt obj
                            <*> readProp verboseErrorsOpt obj
                            <*> readProp commentsOpt obj
                            <*> (maybe "output" id <<< runNullOrUndefined <$> readProp outputOpt obj)
                            <*> readProp noPrefixOpt obj
                            <*> readProp srcOpt obj
                            <*> readProp ffiOpt obj)

class LoaderOption a where
  opt :: String -> NullOrUndefined a -> Array String

instance booleanLoaderOption :: LoaderOption Boolean where
  opt key val = maybe [] (\a -> if a then ["--" ++ key] else []) (runNullOrUndefined val)

instance stringLoaderOption :: LoaderOption String where
  opt key val = maybe [] (\a -> ["--" ++ key ++ "=" ++ a]) (runNullOrUndefined val)

instance arrayLoaderOption :: (LoaderOption a) => LoaderOption (Array a) where
  opt key val = concat (opt key <$> (NullOrUndefined <<< Just)
                                <$> (fromMaybe [] (runNullOrUndefined val)))

pscOptions :: Options -> Array String
pscOptions (Options a) = opt noPreludeOpt a.noPrelude <>
                         opt noOptsOpt a.noOpts <>
                         opt noMagicDoOpt a.noMagicDo <>
                         opt noTcoOpt a.noTco <>
                         opt verboseErrorsOpt a.verboseErrors <>
                         opt commentsOpt a.comments <>
                         opt outputOpt (NullOrUndefined $ Just a.output) <>
                         opt noPrefixOpt a.noPrefix <>
                         opt requirePathOpt (NullOrUndefined $ Just a.requirePath) <>
                         opt ffiOpt a.ffi

loaderSrcOption :: Foreign -> Maybe (Array String)
loaderSrcOption query = either (const Nothing) (\(Options a) -> runNullOrUndefined a.src) (read query)

loaderFFIOption :: Foreign -> Maybe (Array String)
loaderFFIOption query = either (const Nothing) (\(Options a) -> runNullOrUndefined a.ffi) (read query)