summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/plugins/Plugin.scala
blob: a584a4ed5d2fb97d0ae0077f1847db1052775083 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/* NSC -- new Scala compiler
 * Copyright 2007-2013 LAMP/EPFL
 * @author Lex Spoon
 */

package scala.tools.nsc
package plugins

import scala.tools.nsc.io.{ Jar }
import scala.tools.nsc.util.ScalaClassLoader
import scala.reflect.io.{ Directory, File, Path }
import java.io.InputStream
import java.util.zip.ZipException

import scala.collection.mutable.ListBuffer
import scala.util.{ Try, Success, Failure }
import scala.xml.XML

/** Information about a plugin loaded from a jar file.
 *
 *  The concrete subclass must have a one-argument constructor
 *  that accepts an instance of `global`.
 *  {{{
 *    (val global: Global)
 *  }}}
 *
 *  @author Lex Spoon
 *  @version 1.0, 2007-5-21
 */
abstract class Plugin {
  /** The name of this plugin */
  val name: String

  /** The components that this phase defines */
  val components: List[PluginComponent]

  /** A one-line description of the plugin */
  val description: String

  /** The compiler that this plugin uses.  This is normally equated
   *  to a constructor parameter in the concrete subclass.
   */
  val global: Global

  /** Handle any plugin-specific options.  The `-P:plugname:` part
   *  will not be present.
   */
  def processOptions(options: List[String], error: String => Unit) {
    if (!options.isEmpty)
      error("Error: " + name + " has no options")
  }

  /** A description of this plugin's options, suitable as a response
   *  to the -help command-line option.  Conventionally, the options
   *  should be listed with the `-P:plugname:` part included.
   */
  val optionsHelp: Option[String] = None
}

/** ...
 *
 *  @author Lex Spoon
 *  @version 1.0, 2007-5-21
 */
object Plugin {

  private val PluginXML = "scalac-plugin.xml"

  /** Create a class loader with the specified locations plus
   *  the loader that loaded the Scala compiler.
   */
  private def loaderFor(locations: Seq[Path]): ScalaClassLoader = {
    val compilerLoader = classOf[Plugin].getClassLoader
    val urls = locations map (_.toURL)

    ScalaClassLoader fromURLs (urls, compilerLoader)
  }

  /** Try to load a plugin description from the specified location.
   */
  private def loadDescriptionFromJar(jarp: Path): Try[PluginDescription] = {
    // XXX Return to this once we have more ARM support
    def read(is: Option[InputStream]) = is match {
      case None => throw new RuntimeException(s"Missing $PluginXML in $jarp")
      case _    => PluginDescription fromXML (XML load is.get)
    }
    Try(new Jar(jarp.jfile).withEntryStream(PluginXML)(read))
  }

  private def loadDescriptionFromFile(f: Path): Try[PluginDescription] =
    Try(XML loadFile f.jfile) map (PluginDescription fromXML _)

  type AnyClass = Class[_]

  /** Use a class loader to load the plugin class.
   */
  def load(classname: String, loader: ClassLoader): Try[AnyClass] = {
    Try[AnyClass] {
      loader loadClass classname
    } recoverWith {
      case _: Exception =>
        Failure(new RuntimeException(s"Warning: class not found: ${classname}"))
    }
  }

  /** Load all plugins specified by the arguments.
   *  Each of `jars` must be a valid plugin archive or exploded archive.
   *  Each of `dirs` may be a directory containing arbitrary plugin archives.
   *  Skips all plugins named in `ignoring`.
   *  A single classloader is created and used to load all of them.
   */
  def loadAllFrom(
    jars: List[Path],
    dirs: List[Path],
    ignoring: List[String]): List[Try[AnyClass]] =
  {
    // List[(jar, Success(descriptor))] in dir
    def scan(d: Directory) = for {
      f  <- d.files.toList sortBy (_.name)
      if Jar isJarOrZip f
      pd = loadDescriptionFromJar(f)
      if pd.isSuccess
    } yield (f, pd)
    // (dir, Try(descriptor))
    def explode(d: Directory) = d -> loadDescriptionFromFile(d / PluginXML)
    // (j, Try(descriptor))
    def required(j: Path) = j -> loadDescriptionFromJar(j)

    type Paired = Pair[Path, Try[PluginDescription]]
    val included: List[Paired] = (dirs flatMap (_ ifDirectory scan)).flatten
    val exploded: List[Paired] = jars flatMap (_ ifDirectory explode)
    val explicit: List[Paired] = jars flatMap (_ ifFile required)
    def ignored(p: Paired) = p match {
      case (path, Success(pd)) => ignoring contains pd.name
      case _                   => false
    }
    val (locs, pds) = ((explicit ::: exploded ::: included) filterNot ignored).unzip
    val loader = loaderFor(locs.distinct)
    (pds filter (_.isSuccess) map (_.get.classname)).distinct map (Plugin load (_, loader))
  }

  /** Instantiate a plugin class, given the class and
   *  the compiler it is to be used in.
   */
  def instantiate(clazz: AnyClass, global: Global): Plugin = {
    (clazz getConstructor classOf[Global] newInstance global).asInstanceOf[Plugin]
  }
}