sbt/compile/ComponentCompiler.scala

59 lines
2.5 KiB
Scala
Raw Normal View History

2009-08-18 06:51:08 +02:00
package xsbt
import java.io.File
object ComponentCompiler
{
val xsbtiID = "xsbti"
val srcExtension = "-src"
val binSeparator = "-bin_"
val compilerInterfaceID = "compiler-interface"
val compilerInterfaceSrcID = compilerInterfaceID + srcExtension
2009-08-18 06:51:08 +02:00
}
/** This class provides source components compiled with the provided RawCompiler.
* The compiled classes are cached using the provided component manager according
* to the actualVersion field of the RawCompiler.*/
class ComponentCompiler(compiler: RawCompiler, manager: ComponentManager)
2009-08-18 06:51:08 +02:00
{
import ComponentCompiler._
import FileUtilities.{copy, createDirectory, zip, jars, unzip, withTemporaryDirectory}
def apply(id: String): File =
{
val binID = binaryID(id)
2009-10-11 04:01:03 +02:00
manager.file(binID)( new IfMissing.Define(true, compileAndInstall(id, binID)) )
2009-08-18 06:51:08 +02:00
}
def clearCache(id: String): Unit = manager.clearCache(binaryID(id))
protected def binaryID(id: String) = id + binSeparator + compiler.scalaInstance.actualVersion
2009-10-11 04:01:03 +02:00
protected def compileAndInstall(id: String, binID: String)
2009-08-18 06:51:08 +02:00
{
val srcID = id + srcExtension
withTemporaryDirectory { binaryDirectory =>
val targetJar = new File(binaryDirectory, id + ".jar")
2009-10-11 04:01:03 +02:00
compileSources(manager.files(srcID)(IfMissing.Fail), targetJar, id)
manager.define(binID, Seq(targetJar))
}
2009-08-18 06:51:08 +02:00
}
/** Extract sources from source jars, compile them with the xsbti interfaces on the classpath, and package the compiled classes and
* any resources from the source jars into a final jar.*/
private def compileSources(sourceJars: Iterable[File], targetJar: File, id: String)
2009-08-18 06:51:08 +02:00
{
import Paths._
2009-08-18 06:51:08 +02:00
withTemporaryDirectory { dir =>
val extractedSources = (Set[File]() /: sourceJars) { (extracted, sourceJar)=> extracted ++ unzip(sourceJar, dir) }
val (sourceFiles, resources) = extractedSources.partition(_.getName.endsWith(".scala"))
withTemporaryDirectory { outputDirectory =>
2009-10-11 04:01:03 +02:00
val xsbtiJars = manager.files(xsbtiID)(IfMissing.Fail)
manager.log.info("'" + id + "' not yet compiled for Scala " + compiler.scalaInstance.actualVersion + ". Compiling...")
val start = System.currentTimeMillis
try
{
2009-11-02 03:21:59 +01:00
compiler(Set() ++ sourceFiles, Set() ++ xsbtiJars, outputDirectory, "-nowarn" :: Nil, true)
manager.log.info(" Compilation completed in " + (System.currentTimeMillis - start) / 1000.0 + " s")
}
catch { case e: xsbti.CompileFailed => throw new CompileFailed(e.arguments, "Error compiling sbt component '" + id + "'") }
copy(resources x (FileMapper.rebase(dir, outputDirectory)))
zip((outputDirectory ***) x (PathMapper.relativeTo(outputDirectory)), targetJar)
2009-08-18 06:51:08 +02:00
}
}
}
}