summaryrefslogtreecommitdiff
path: root/examples/scala-js/sbt-plugin/src/main/scala/scala/scalajs/sbtplugin/OptimizerOptions.scala
blob: 25d617834fe63c94bd3ba91a0fae3603d4c772d3 (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
/*                     __                                               *\
**     ________ ___   / /  ___      __ ____  Scala.js sbt plugin        **
**    / __/ __// _ | / /  / _ | __ / // __/  (c) 2013, LAMP/EPFL        **
**  __\ \/ /__/ __ |/ /__/ __ |/_// /_\ \    http://scala-js.org/       **
** /____/\___/_/ |_/____/_/ | |__/ /____/                               **
**                          |/____/                                     **
\*                                                                      */


package scala.scalajs.sbtplugin

import OptimizerOptions._

/** Various options for the Scala.js optimizer tool chain
 *
 *  This is not a case class and does have a private constructor so that we
 *  can add fields in a binary-compatible manner.
 *
 *  Use [[OptimizerOptions.apply]] and the `with` methods to create a configured
 *  instance.
 */
final class OptimizerOptions private (
    /** Whether to parallelize the optimizer (currently fastOptJS only) **/
    val parallel: Boolean = true,
    /** Whether to run the optimizer in batch (i.e. non-incremental) mode */
    val batchMode: Boolean = false,
    /** Whether to run the Scala.js optimizer */
    val disableOptimizer: Boolean = false,
    /** Whether to pretty-print in fullOptJS */
    val prettyPrintFullOptJS: Boolean = false,
    /** Perform expensive checks of the sanity of the Scala.js IR */
    val checkScalaJSIR: Boolean = false
) {

  def withParallel(parallel: Boolean): OptimizerOptions = {
    new OptimizerOptions(parallel, batchMode,
        disableOptimizer, prettyPrintFullOptJS, checkScalaJSIR)
  }

  def withBatchMode(batchMode: Boolean): OptimizerOptions = {
    new OptimizerOptions(parallel, batchMode,
        disableOptimizer, prettyPrintFullOptJS, checkScalaJSIR)
  }

  def withDisableOptimizer(disableOptimizer: Boolean): OptimizerOptions = {
    new OptimizerOptions(parallel, batchMode,
        disableOptimizer, prettyPrintFullOptJS, checkScalaJSIR)
  }

  def withPrettyPrintFullOptJS(prettyPrintFullOptJS: Boolean): OptimizerOptions = {
    new OptimizerOptions(parallel, batchMode,
        disableOptimizer, prettyPrintFullOptJS, checkScalaJSIR)
  }

  def withCheckScalaJSIR(checkScalaJSIR: Boolean): OptimizerOptions = {
    new OptimizerOptions(parallel, batchMode,
        disableOptimizer, prettyPrintFullOptJS, checkScalaJSIR)
  }

  override def toString: String = {
    s"""OptimizerOptions(
       |  parallel             = $parallel
       |  batchMode            = $batchMode
       |  disableOptimizer     = $disableOptimizer
       |  prettyPrintFullOptJS = $prettyPrintFullOptJS
       |  checkScalaJSIR       = $checkScalaJSIR
       |)""".stripMargin
  }

}

object OptimizerOptions {
  def apply() = new OptimizerOptions()
}