@@ -42,12 +42,26 @@ import org.scalajs.logging._
42
42
*
43
43
* @param logger The logger to use in the run. A [[JSEnv ]] is not required to
44
44
* log anything.
45
+ *
46
+ * @param env Additional environment variables for this run.
47
+ *
48
+ * How these are retrieved in the JS code run inside the [[JSEnv ]] is
49
+ * completely up to the implementation, including whether:
50
+ * - they are implemented with system environment variables,
51
+ * - they share the same namespace than the system environment variables.
52
+ *
53
+ * However, in any case, the variables in [[env ]] take precedence
54
+ * over any (explicitly or implicitly) ambiant environment vars.
55
+ *
56
+ * This is an optional feature; but [[JSEnv ]]s are required to support an
57
+ * empty [[env ]].
45
58
*/
46
59
final class RunConfig private (
47
60
val onOutputStream : Option [RunConfig .OnOutputStream ],
48
61
val inheritOutput : Boolean ,
49
62
val inheritError : Boolean ,
50
63
val logger : Logger ,
64
+ val env : Map [String , String ],
51
65
/** An option that will never be supported by anything because it is not exposed.
52
66
*
53
67
* This is used to test that [[JSEnv ]]s properly validate their configuration.
@@ -62,6 +76,7 @@ final class RunConfig private (
62
76
inheritOutput = true ,
63
77
inheritError = true ,
64
78
logger = NullLogger ,
79
+ env = Map .empty,
65
80
eternallyUnsupportedOption = false )
66
81
}
67
82
@@ -77,6 +92,9 @@ final class RunConfig private (
77
92
def withLogger (logger : Logger ): RunConfig =
78
93
copy(logger = logger)
79
94
95
+ def withEnv (env : Map [String , String ]): RunConfig =
96
+ copy(env = env)
97
+
80
98
private [jsenv] def withEternallyUnsupportedOption (
81
99
eternallyUnsupportedOption : Boolean ): RunConfig =
82
100
copy(eternallyUnsupportedOption = eternallyUnsupportedOption)
@@ -85,10 +103,11 @@ final class RunConfig private (
85
103
inheritOutput : Boolean = inheritOutput,
86
104
inheritError : Boolean = inheritError,
87
105
logger : Logger = logger,
106
+ env : Map [String , String ] = env,
88
107
eternallyUnsupportedOption : Boolean = eternallyUnsupportedOption
89
108
): RunConfig = {
90
109
new RunConfig (onOutputStream, inheritOutput, inheritError, logger,
91
- eternallyUnsupportedOption)
110
+ env, eternallyUnsupportedOption)
92
111
}
93
112
94
113
/** Validates constraints on the config itself. */
@@ -119,9 +138,10 @@ final object RunConfig {
119
138
*/
120
139
final class Validator private (
121
140
inheritIO : Boolean ,
122
- onOutputStream : Boolean
141
+ onOutputStream : Boolean ,
142
+ env : Boolean
123
143
) {
124
- private def this () = this (false , false )
144
+ private def this () = this (false , false , false )
125
145
126
146
/** The caller supports [[RunConfig#inheritOutput ]] and
127
147
* [[RunConfig#inheritError ]].
@@ -131,6 +151,9 @@ final object RunConfig {
131
151
/** The caller supports [[RunConfig#onOutputStream ]]. */
132
152
def supportsOnOutputStream (): Validator = copy(onOutputStream = true )
133
153
154
+ /** The caller supports [[RunConfig#env ]]. */
155
+ def supportsEnv (): Validator = copy(env = true )
156
+
134
157
/** Validates that `config` is valid and only sets supported options.
135
158
*
136
159
* @throws java.lang.IllegalArgumentException if there are unsupported options.
@@ -146,13 +169,19 @@ final object RunConfig {
146
169
if (! onOutputStream && config.onOutputStream.isDefined)
147
170
fail(" onOutputStream is not supported." )
148
171
172
+ if (! env && config.env.nonEmpty)
173
+ fail(" env is not supported." )
174
+
149
175
if (config.eternallyUnsupportedOption)
150
176
fail(" eternallyUnsupportedOption is not supported." )
151
177
}
152
178
153
- private def copy (inheritIO : Boolean = inheritIO,
154
- onOutputStream : Boolean = onOutputStream) = {
155
- new Validator (inheritIO, onOutputStream)
179
+ private def copy (
180
+ inheritIO : Boolean = inheritIO,
181
+ onOutputStream : Boolean = onOutputStream,
182
+ env : Boolean = env
183
+ ) = {
184
+ new Validator (inheritIO, onOutputStream, env)
156
185
}
157
186
}
158
187
0 commit comments