summaryrefslogtreecommitdiff
path: root/project/build/Packer.scala
blob: 8e3be9d9a393d7fd442121a4c2e24886b3d50922 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import sbt._
import java.io.{File,FileInputStream}
import java.util.jar.Manifest
import BasicLayer._
import FileUtilities._

/**
 * Create the jars of pack
 * @author Grégory Moix
 */
trait Packer {
  self: BasicLayer =>

  def libraryToCopy:List[Path] = Nil

  protected def jarPattern(path:PathFinder) = path.descendentsExcept(AllPassFilter, defaultExcludes || new ExactFilter("MANIFEST.MF")).get

  def createJar(j:Packaging):Option[String] = {
    def pack0(content:Iterable[Path])=jar(content.flatMap(jarPattern(_)),j.jarDestination, j.manifest, false, log)
    j.jarsToInclude match {
      case Nil => pack0(j.jarContent)
      case list => {
        withTemporaryDirectory(log) { tmp: File =>
           val tmpPath = Path.fromFile(tmp)
           log.debug("List of jars to be added : " +list)
           def unzip0(l:List[Path]):Option[String] = l match {
              case x::xs => {unzip(x,tmpPath,log);unzip0(xs)} //TODO properly handle failing of unzip
              case Nil => None
           }
           unzip0(list)
           log.debug("Content of temp folder"+ tmpPath.##.**( GlobFilter("*")))
           pack0(j.jarContent ++ Set(tmpPath ##))
       }
      }
    }
  }

  lazy val pack= task {

    def iterate(steps:List[Step]):Option[String]= steps match{
        case x::xs => x match{
          case c:Packaging => {
            createJar(c) orElse iterate(xs)
          }
          case _ => iterate(xs)
        }
        case Nil => None
      }

     def copy0 ={
       copyFile(manifestPath,packingDestination/"META-INF"/"MANIFEST.MF",log) orElse {
       copy(libraryToCopy,packingDestination , true,true,log) match {
          case Right(_) => None
          case Left(e) => Some(e)
          }
       }
     }
     iterate(allSteps.topologicalSort) orElse copy0
  }.dependsOn(finishLayer)



}

trait Packaging extends Step{
  def manifest = new Manifest
  def jarDestination:Path = packagingDestination /"lib" / jarName
  def packagingDestination:Path
  def jarName:String
  def jarsToInclude:List[Path] = Nil
  def jarContent:Iterable[Path]

}

trait WrapperPackaging extends Packaging {
  self : WrapperStep =>

  def jarContent = {
    def getContent(list:List[Step],acc:List[Path]):List[Path]= list match {
      case Nil => acc
      case x::xs => x match {
        case w:WrapperStep => getContent(xs,getContent(w.dependencies.toList,acc))
        case c:CompilationStep => getContent(xs,(c.outputDirectory ##)::acc)
      }
    }
    getContent(dependencies.toList,Nil)
  }

}