de.tototec.sbuild.runner

SBuildRunner

object SBuildRunner extends SBuildRunner

Linear Supertypes
SBuildRunner, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SBuildRunner
  2. SBuildRunner
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class Cache extends AnyRef

    This cache automatically resolves and caches dependencies of targets.

  2. class ExecProgress extends AnyRef

    Definition Classes
    SBuildRunner
  3. class ExecutedTarget extends AnyRef

    Definition Classes
    SBuildRunner

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def checkCacheableTargets(project: Project, printWarning: Boolean)(implicit baseProject: Project): Option[String]

    Check a project for target definition with cacheable or evictCache property.

    Check a project for target definition with cacheable or evictCache property. If cacheable targets are found but not at least one evictCache target, return a error message.

    Definition Classes
    SBuildRunner
  8. def checkTargets(projects: Seq[Project])(implicit baseProject: Project): Seq[(Target, String)]

    Check all targets of the given projects for problems.

    Check all targets of the given projects for problems.

    Checked problems are: - invalid target names - missing dependencies - cycles in dependencies - missing scheme handlers

    returns

    A sequence of pairs of problematic target and a error message.

    Definition Classes
    SBuildRunner
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  10. def createSBuildStub(projectFile: File, stubDir: File): Unit

    Create a new build file.

    Create a new build file. If a file with the same name exists in the stubDir, then this one will be copied, else a build file with one target will be created. If the file already exists, it will throw an de.tototec.sbuild.SBuildException.

    Definition Classes
    SBuildRunner
  11. def dependenciesLastModified(dependencies: Seq[ExecutedTarget])(implicit project: Project): Long

    Definition Classes
    SBuildRunner
  12. def determineRequestedTarget(target: String, searchInAllProjects: Boolean = false)(implicit project: Project): Option[Target]

    Determine the requested target for the given input string.

    Determine the requested target for the given input string.

    Definition Classes
    SBuildRunner
  13. def determineRequestedTargets(targets: Seq[String])(implicit project: Project): (Seq[Target], Seq[String])

    Definition Classes
    SBuildRunner
  14. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  16. def fError(text: ⇒ String): Ansi

    Definition Classes
    SBuildRunner
  17. def fErrorEmph(text: ⇒ String): Ansi

    Definition Classes
    SBuildRunner
  18. def fMainTarget(text: ⇒ String): Ansi

    Definition Classes
    SBuildRunner
  19. def fOk(text: ⇒ String): Ansi

    Definition Classes
    SBuildRunner
  20. def fPercent(text: ⇒ String): Ansi

    Definition Classes
    SBuildRunner
  21. def fTarget(text: ⇒ String): Ansi

    Definition Classes
    SBuildRunner
  22. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  23. def formatProject(project: Project)(implicit baseProject: Project): String

    Definition Classes
    SBuildRunner
  24. def formatTarget(target: Target)(implicit project: Project): String

    Definition Classes
    SBuildRunner
  25. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  26. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  27. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  28. def main(args: Array[String]): Unit

  29. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  32. def preorderedDependenciesForest(request: Seq[Target], execProgress: Option[ExecProgress] = None, skipExec: Boolean = false, dependencyTrace: List[Target] = List(), depth: Int = 0, treePrinter: Option[(Int, Target) ⇒ Unit] = None, cache: Cache = new Cache())(implicit project: Project): Seq[ExecutedTarget]

    Visit a forest of targets, each target of parameter request is the root of a tree.

    Visit a forest of targets, each target of parameter request is the root of a tree. Each tree will search deep-first. If parameter skipExec is true, the associated actions will not executed. If skipExec is false, for each target the up-to-date state will be evaluated, and if the target is no up-to-date, the associated action will be executed.

    Definition Classes
    SBuildRunner
  33. def preorderedDependenciesTree(curTarget: Target, execProgress: Option[ExecProgress] = None, skipExec: Boolean = false, dependencyTrace: List[Target] = Nil, depth: Int = 0, treePrinter: Option[(Int, Target) ⇒ Unit] = None, cache: Cache = new Cache())(implicit project: Project): ExecutedTarget

    Visit each target of tree node deep-first.

    Visit each target of tree node deep-first.

    If parameter skipExec is true, the associated actions will not executed. If skipExec is false, for each target the up-to-date state will be evaluated, and if the target is no up-to-date, the associated action will be executed.

    Definition Classes
    SBuildRunner
  34. def projectSorter(baseProject: Project)(l: Project, r: Project): Boolean

    Sort projects by their fully qualified build file name.

    Sort projects by their fully qualified build file name. The base project is always sorted to top position.

    Definition Classes
    SBuildRunner
  35. def run(config: Config, classpathConfig: ClasspathConfig, bootstrapStart: Long = System.currentTimeMillis): Int

    Definition Classes
    SBuildRunner
  36. def run(args: Array[String]): Int

    Run the SBuild (command line) application with the given arguments.

    Run the SBuild (command line) application with the given arguments.

    returns

    The exit value, 0 means no errors.

    Definition Classes
    SBuildRunner
  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  38. def toString(): String

    Definition Classes
    AnyRef → Any
  39. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  40. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  41. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from SBuildRunner

Inherited from AnyRef

Inherited from Any

Ungrouped