summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/ant/sabbus/Compilers.scala
blob: bb32149a7558eee944ca5ab520572461d09db72a (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
/*                     __                                               *\
**     ________ ___   / /  ___     Scala Ant Tasks                      **
**    / __/ __// _ | / /  / _ |    (c) 2005-2011, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */


package scala.tools.ant.sabbus

import java.net.URL

object Compilers extends scala.collection.DefaultMap[String, Compiler] {

  val debug = false

  private val container = new collection.mutable.HashMap[String, Compiler]

  def iterator = container.iterator

  def get(id: String) = container.get(id)

  override def size = container.size

  def make(id: String, classpath: Array[URL], settings: Settings): Compiler = {
    if (debug) println("Making compiler " + id)
    if (debug) println("  memory before: " + freeMemoryString)
    val comp = new Compiler(classpath, settings)
    container += Pair(id, comp)
    if (debug) println("  memory after: " + freeMemoryString)
    comp
  }

  def break(id: String): Null = {
    if (debug) println("Breaking compiler " + id)
    if (debug) println("  memory before: " + freeMemoryString)
    container -= id
    System.gc()
    if (debug) println("  memory after: " + freeMemoryString)
    null
  }

  private def freeMemoryString: String =
    (Runtime.getRuntime.freeMemory/1048576.0).formatted("%10.2f") + " MB"
}