2014-05-07 14:49:35 +02:00
|
|
|
package akka
|
|
|
|
|
|
|
|
|
|
import sbt._
|
|
|
|
|
import sbtunidoc.Plugin.UnidocKeys._
|
2015-05-15 16:53:24 +02:00
|
|
|
import sbtunidoc.Plugin.{ ScalaUnidoc, JavaUnidoc, scalaJavaUnidocSettings, genjavadocExtraSettings, scalaUnidocSettings }
|
2014-05-07 14:49:35 +02:00
|
|
|
import sbt.Keys._
|
|
|
|
|
import sbt.File
|
|
|
|
|
import scala.annotation.tailrec
|
|
|
|
|
|
|
|
|
|
object Unidoc {
|
|
|
|
|
|
|
|
|
|
def settings(ignoreAggregates: Seq[Project], ignoreProjects: Seq[Project]) = {
|
|
|
|
|
val withoutAggregates = ignoreAggregates.foldLeft(inAnyProject) { _ -- inAggregates(_, transitive = true, includeRoot = true) }
|
|
|
|
|
val docProjectFilter = ignoreProjects.foldLeft(withoutAggregates) { _ -- inProjects(_) }
|
|
|
|
|
|
|
|
|
|
inTask(unidoc)(Seq(
|
|
|
|
|
unidocProjectFilter in ScalaUnidoc := docProjectFilter,
|
|
|
|
|
unidocProjectFilter in JavaUnidoc := docProjectFilter,
|
|
|
|
|
apiMappings in ScalaUnidoc := (apiMappings in (Compile, doc)).value
|
|
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
val genjavadocEnabled = sys.props.get("akka.genjavadoc.enabled").getOrElse("false").toBoolean
|
|
|
|
|
val (unidocSettings, javadocSettings) =
|
2015-05-15 16:53:24 +02:00
|
|
|
if (genjavadocEnabled)
|
|
|
|
|
(scalaJavaUnidocSettings, genjavadocExtraSettings ++ Seq(
|
|
|
|
|
scalacOptions in Compile += "-P:genjavadoc:fabricateParams=true",
|
2015-05-18 11:12:25 +02:00
|
|
|
unidocGenjavadocVersion in Global := "0.9"))
|
2014-05-07 14:49:35 +02:00
|
|
|
else (scalaUnidocSettings, Nil)
|
|
|
|
|
|
|
|
|
|
lazy val scaladocDiagramsEnabled = sys.props.get("akka.scaladoc.diagrams").getOrElse("true").toBoolean
|
|
|
|
|
lazy val scaladocAutoAPI = sys.props.get("akka.scaladoc.autoapi").getOrElse("true").toBoolean
|
|
|
|
|
|
|
|
|
|
def scaladocSettings: Seq[sbt.Setting[_]] = {
|
|
|
|
|
scaladocSettingsNoVerificationOfDiagrams ++
|
|
|
|
|
(if (scaladocDiagramsEnabled) Seq(doc in Compile ~= scaladocVerifier) else Seq.empty)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// for projects with few (one) classes there might not be any diagrams
|
|
|
|
|
def scaladocSettingsNoVerificationOfDiagrams: Seq[sbt.Setting[_]] = {
|
|
|
|
|
inTask(doc)(Seq(
|
|
|
|
|
scalacOptions in Compile <++= (version, baseDirectory in ThisBuild) map scaladocOptions,
|
|
|
|
|
autoAPIMappings := scaladocAutoAPI
|
|
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def scaladocOptions(ver: String, base: File): List[String] = {
|
|
|
|
|
val urlString = GitHub.url(ver) + "/€{FILE_PATH}.scala"
|
|
|
|
|
val opts = List("-implicits", "-doc-source-url", urlString, "-sourcepath", base.getAbsolutePath)
|
|
|
|
|
if (scaladocDiagramsEnabled) "-diagrams"::opts else opts
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def scaladocVerifier(file: File): File= {
|
|
|
|
|
@tailrec
|
|
|
|
|
def findHTMLFileWithDiagram(dirs: Seq[File]): Boolean = {
|
|
|
|
|
if (dirs.isEmpty) false
|
|
|
|
|
else {
|
|
|
|
|
val curr = dirs.head
|
|
|
|
|
val (newDirs, files) = curr.listFiles.partition(_.isDirectory)
|
|
|
|
|
val rest = dirs.tail ++ newDirs
|
|
|
|
|
val hasDiagram = files exists { f =>
|
|
|
|
|
val name = f.getName
|
|
|
|
|
if (name.endsWith(".html") && !name.startsWith("index-") &&
|
2014-08-05 12:01:56 +02:00
|
|
|
!name.equals("index.html") && !name.equals("package.html")) {
|
|
|
|
|
val source = scala.io.Source.fromFile(f)(scala.io.Codec.UTF8)
|
|
|
|
|
val hd = try source.getLines().exists(_.contains("<div class=\"toggleContainer block diagram-container\" id=\"inheritance-diagram-container\">"))
|
|
|
|
|
catch {
|
|
|
|
|
case e: Exception => throw new IllegalStateException("Scaladoc verification failed for file '"+f+"'", e)
|
|
|
|
|
} finally source.close()
|
2014-05-07 14:49:35 +02:00
|
|
|
hd
|
|
|
|
|
}
|
|
|
|
|
else false
|
|
|
|
|
}
|
|
|
|
|
hasDiagram || findHTMLFileWithDiagram(rest)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if we have generated scaladoc and none of the files have a diagram then fail
|
|
|
|
|
if (file.exists() && !findHTMLFileWithDiagram(List(file)))
|
|
|
|
|
sys.error("ScalaDoc diagrams not generated!")
|
|
|
|
|
else
|
|
|
|
|
file
|
|
|
|
|
}
|
|
|
|
|
}
|