summaryrefslogtreecommitdiff
path: root/src/test/scala/forge/Main.scala
blob: b65099ec8c046ee97293ef94d6edd3a2bf0100cc (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
package forge
import java.io.FileOutputStream
import java.nio.{file => jnio}
import java.util.jar.JarEntry
import collection.JavaConverters._
object Main{

  def main(args: Array[String]): Unit = {

    val sourceRoot = Target.path(jnio.Paths.get("src/test/resources/example/src"))
    val resourceRoot = Target.path(jnio.Paths.get("src/test/resources/example/resources"))
    val allSources = list(sourceRoot)
    val classFiles = compileAll(allSources)
    val jar = jarUp(resourceRoot, classFiles)

//    val evaluator = new Evaluator(
//      jnio.Paths.get("target/workspace"),
//      DefCtx("forge.Main ", None)
//    )
//    evaluator.evaluate(OSet(jar))
  }
  def compileAll(sources: Target[Seq[jnio.Path]])  = {
    new Target.Subprocess(
      Seq(sources),
      args =>
        Seq("javac") ++
          args[Seq[jnio.Path]](0).map(_.toAbsolutePath.toString) ++
          Seq("-d", args.dest.toAbsolutePath.toString)
    ).map(_.dest)
  }

  def list(root: Target[jnio.Path]): Target[Seq[jnio.Path]] = {
    root.map(jnio.Files.list(_).iterator().asScala.toArray[jnio.Path])
  }
  case class jarUp(roots: Target[jnio.Path]*) extends Target[jnio.Path]{

    val inputs = roots
    def evaluate(args: Args): jnio.Path = {

      val output = new java.util.jar.JarOutputStream(new FileOutputStream(args.dest.toFile))
      for{
        root0 <- args.args
        root = root0.asInstanceOf[jnio.Path]

        path <- jnio.Files.walk(root).iterator().asScala
        if jnio.Files.isRegularFile(path)
      }{
        val relative = root.relativize(path)
        output.putNextEntry(new JarEntry(relative.toString))
        output.write(jnio.Files.readAllBytes(path))
      }
      output.close()
      args.dest
    }


  }

}