2010-07-17 18:07:41 +02:00
|
|
|
/* sbt -- Simple Build Tool
|
|
|
|
|
* Copyright 2008, 2009, 2010 Mark Harrah
|
|
|
|
|
*/
|
|
|
|
|
package sbt
|
|
|
|
|
|
2010-07-19 18:38:42 +02:00
|
|
|
import Execute.NodeView
|
2010-07-17 18:07:41 +02:00
|
|
|
import complete.HistoryCommands
|
|
|
|
|
import HistoryCommands.{Start => HistoryPrefix}
|
2011-01-19 00:24:11 +01:00
|
|
|
import Project.{SessionKey, StructureKey}
|
|
|
|
|
import sbt.build.{AggressiveCompile, Auto, BuildException, LoadCommand, Parse, ParseException, ProjectLoad, SourceLoad}
|
|
|
|
|
import Command.{Analysis,HistoryPath,Logged,Watch}
|
2010-07-17 18:07:41 +02:00
|
|
|
import scala.annotation.tailrec
|
2010-07-28 05:01:45 +02:00
|
|
|
import scala.collection.JavaConversions._
|
|
|
|
|
import Path._
|
|
|
|
|
|
|
|
|
|
import java.io.File
|
2010-07-17 18:07:41 +02:00
|
|
|
|
|
|
|
|
/** This class is the entry point for sbt.*/
|
|
|
|
|
class xMain extends xsbti.AppMain
|
|
|
|
|
{
|
|
|
|
|
final def run(configuration: xsbti.AppConfiguration): xsbti.MainResult =
|
|
|
|
|
{
|
2010-07-28 05:01:45 +02:00
|
|
|
import Commands.{initialize, defaults}
|
|
|
|
|
import CommandSupport.{DefaultsCommand, InitCommand}
|
|
|
|
|
val initialCommandDefs = Seq(initialize, defaults)
|
|
|
|
|
val commands = DefaultsCommand :: InitCommand :: configuration.arguments.map(_.trim).toList
|
2010-12-19 18:03:10 +01:00
|
|
|
val state = State( configuration, initialCommandDefs, Set.empty, None, commands, initialAttributes, Next.Continue )
|
2010-07-17 18:07:41 +02:00
|
|
|
run(state)
|
|
|
|
|
}
|
2010-12-19 18:03:10 +01:00
|
|
|
def initialAttributes = AttributeMap.empty.put(Logged, ConsoleLogger())
|
2010-07-17 18:07:41 +02:00
|
|
|
|
|
|
|
|
@tailrec final def run(state: State): xsbti.MainResult =
|
|
|
|
|
{
|
|
|
|
|
import Next._
|
|
|
|
|
state.next match
|
|
|
|
|
{
|
|
|
|
|
case Continue => run(next(state))
|
|
|
|
|
case Fail => Exit(1)
|
|
|
|
|
case Done => Exit(0)
|
|
|
|
|
case Reload =>
|
|
|
|
|
val app = state.configuration.provider
|
|
|
|
|
new Reboot(app.scalaProvider.version, state.commands, app.id, state.configuration.baseDirectory)
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-05 01:41:11 +02:00
|
|
|
def next(state: State): State =
|
|
|
|
|
ErrorHandling.wideConvert { state.process(process) } match
|
|
|
|
|
{
|
|
|
|
|
case Right(s) => s
|
|
|
|
|
case Left(t) => Commands.handleException(t, state)
|
|
|
|
|
}
|
2010-07-17 18:07:41 +02:00
|
|
|
def process(command: String, state: State): State =
|
|
|
|
|
{
|
2010-07-28 05:01:45 +02:00
|
|
|
val in = Input(command, None)
|
2010-12-19 18:03:10 +01:00
|
|
|
Commands.applicable(state).flatMap( _.run(in, state) ).headOption.getOrElse {
|
2010-08-05 01:41:46 +02:00
|
|
|
if(command.isEmpty) state
|
|
|
|
|
else {
|
|
|
|
|
System.err.println("Unknown command '" + command + "'")
|
|
|
|
|
state.fail
|
|
|
|
|
}
|
2010-07-17 18:07:41 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-28 05:01:45 +02:00
|
|
|
import CommandSupport._
|
2010-07-17 18:07:41 +02:00
|
|
|
object Commands
|
|
|
|
|
{
|
2010-12-19 18:03:10 +01:00
|
|
|
def DefaultCommands: Seq[Command] = Seq(ignore, help, reload, read, history, continuous, exit, loadCommands, loadProject, compile, discover,
|
2011-01-19 00:24:11 +01:00
|
|
|
projects, project, setOnFailure, ifLast, multi, shell, alias, append)
|
2010-07-28 05:01:45 +02:00
|
|
|
|
2010-09-05 17:16:53 +02:00
|
|
|
def ignore = nothing(Set(FailureWall))
|
|
|
|
|
|
2010-12-19 18:03:10 +01:00
|
|
|
def nothing(ignore: Set[String]) = Command(){ case (in, s) if ignore(in.line) => s }
|
2010-09-05 17:16:53 +02:00
|
|
|
|
2010-12-19 18:03:10 +01:00
|
|
|
def applicable(state: State): Stream[Command] = state.processors.toStream
|
2010-07-28 05:01:45 +02:00
|
|
|
|
|
|
|
|
def detail(selected: Iterable[String])(h: Help): Option[String] =
|
|
|
|
|
h.detail match { case (commands, value) => if( selected exists commands ) Some(value) else None }
|
|
|
|
|
|
|
|
|
|
def help = Command.simple(HelpCommand, helpBrief, helpDetailed) { (in, s) =>
|
|
|
|
|
|
2010-12-19 18:03:10 +01:00
|
|
|
val h = applicable(s).flatMap(_.help(s))
|
2010-07-28 05:01:45 +02:00
|
|
|
val argStr = (in.line stripPrefix HelpCommand).trim
|
2010-07-17 18:07:41 +02:00
|
|
|
|
2010-07-28 05:01:45 +02:00
|
|
|
val message =
|
|
|
|
|
if(argStr.isEmpty)
|
|
|
|
|
h.map( _.brief match { case (a,b) => a + " : " + b } ).mkString("\n", "\n", "\n")
|
|
|
|
|
else
|
|
|
|
|
h flatMap detail( argStr.split("""\s+""", 0) ) mkString("\n", "\n\n", "\n")
|
2010-07-17 18:07:41 +02:00
|
|
|
System.out.println(message)
|
|
|
|
|
s
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-28 05:01:45 +02:00
|
|
|
def alias = Command.simple(AliasCommand, AliasBrief, AliasDetailed) { (in, s) =>
|
|
|
|
|
in.arguments.split("""\s*=\s*""",2).toSeq match {
|
|
|
|
|
case Seq(name, value) => addAlias(s, name.trim, value.trim)
|
|
|
|
|
case Seq(x) if !x.isEmpty=> printAlias(s, x.trim); s
|
|
|
|
|
case _ => printAliases(s); s
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def shell = Command.simple(Shell, ShellBrief, ShellDetailed) { (in, s) =>
|
2011-01-19 00:24:11 +01:00
|
|
|
val historyPath = (s get HistoryPath.key) getOrElse Some((s.baseDir / ".history").asFile)
|
2010-12-19 18:03:10 +01:00
|
|
|
val reader = new LazyJLineReader(historyPath)
|
2010-07-28 05:01:45 +02:00
|
|
|
val line = reader.readLine("> ")
|
2010-08-05 01:41:46 +02:00
|
|
|
line match {
|
2010-12-19 18:03:10 +01:00
|
|
|
case Some(line) => s.copy(onFailure = Some(Shell), commands = line +: Shell +: s.commands)
|
2010-08-05 01:41:46 +02:00
|
|
|
case None => s
|
|
|
|
|
}
|
2010-07-28 05:01:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def multi = Command.simple(Multi, MultiBrief, MultiDetailed) { (in, s) =>
|
|
|
|
|
in.arguments.split(";").toSeq ::: s
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def ifLast = Command.simple(IfLast, IfLastBrief, IfLastDetailed) { (in, s) =>
|
|
|
|
|
if(s.commands.isEmpty) in.arguments :: s else s
|
|
|
|
|
}
|
2010-08-05 01:41:46 +02:00
|
|
|
def append = Command.simple(Append, AppendLastBrief, AppendLastDetailed) { (in, s) =>
|
2010-12-19 18:03:10 +01:00
|
|
|
s.copy(commands = s.commands :+ in.arguments)
|
2010-08-05 01:41:46 +02:00
|
|
|
}
|
2010-07-28 05:01:45 +02:00
|
|
|
|
|
|
|
|
def setOnFailure = Command.simple(OnFailure, OnFailureBrief, OnFailureDetailed) { (in, s) =>
|
2010-12-19 18:03:10 +01:00
|
|
|
s.copy(onFailure = Some(in.arguments))
|
2010-07-28 05:01:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def reload = Command.simple(ReloadCommand, ReloadBrief, ReloadDetailed) { (in, s) =>
|
|
|
|
|
runExitHooks(s).reload
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-24 20:10:48 +01:00
|
|
|
def defaults = Command.simple(DefaultsCommand) { (in, s) =>
|
2010-07-28 05:01:45 +02:00
|
|
|
s ++ DefaultCommands
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-24 20:10:48 +01:00
|
|
|
def initialize = Command.simple(InitCommand) { (in, s) =>
|
2010-08-05 01:41:46 +02:00
|
|
|
/*"load-commands -base ~/.sbt/commands" :: */readLines( readable( sbtRCs(s) ) ) ::: s
|
2010-07-28 05:01:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def read = Command.simple(ReadCommand, ReadBrief, ReadDetailed) { (in, s) =>
|
2010-09-28 00:59:35 +02:00
|
|
|
getSource(in, s.baseDir) match
|
|
|
|
|
{
|
|
|
|
|
case Left(portAndSuccess) =>
|
|
|
|
|
val port = math.abs(portAndSuccess)
|
|
|
|
|
val previousSuccess = portAndSuccess >= 0
|
|
|
|
|
readMessage(port, previousSuccess) match
|
|
|
|
|
{
|
2010-12-19 18:03:10 +01:00
|
|
|
case Some(message) => (message :: (ReadCommand + " " + port) :: s).copy(onFailure = Some(ReadCommand + " " + (-port)))
|
2010-09-28 00:59:35 +02:00
|
|
|
case None =>
|
|
|
|
|
System.err.println("Connection closed.")
|
|
|
|
|
s.fail
|
|
|
|
|
}
|
|
|
|
|
case Right(from) =>
|
|
|
|
|
val notFound = notReadable(from)
|
|
|
|
|
if(notFound.isEmpty)
|
|
|
|
|
readLines(from) ::: s // this means that all commands from all files are loaded, parsed, and inserted before any are executed
|
|
|
|
|
else {
|
|
|
|
|
logger(s).error("Command file(s) not readable: \n\t" + notFound.mkString("\n\t"))
|
|
|
|
|
s
|
|
|
|
|
}
|
2010-07-28 05:01:45 +02:00
|
|
|
}
|
|
|
|
|
}
|
2010-09-28 00:59:35 +02:00
|
|
|
private def getSource(in: Input, baseDirectory: File) =
|
|
|
|
|
{
|
|
|
|
|
try { Left(in.line.stripPrefix(ReadCommand).trim.toInt) }
|
|
|
|
|
catch { case _: NumberFormatException => Right(in.splitArgs map { p => new File(baseDirectory, p) }) }
|
|
|
|
|
}
|
|
|
|
|
private def readMessage(port: Int, previousSuccess: Boolean): Option[String] =
|
|
|
|
|
{
|
|
|
|
|
// split into two connections because this first connection ends the previous communication
|
|
|
|
|
xsbt.IPC.client(port) { _.send(previousSuccess.toString) }
|
|
|
|
|
// and this second connection starts the next communication
|
|
|
|
|
xsbt.IPC.client(port) { ipc =>
|
|
|
|
|
val message = ipc.receive
|
|
|
|
|
if(message eq null) None else Some(message)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-19 18:03:10 +01:00
|
|
|
def continuous =
|
|
|
|
|
Command( Help(continuousBriefHelp) ) { case (in, s) if in.line startsWith ContinuousExecutePrefix =>
|
2011-01-19 00:24:11 +01:00
|
|
|
withAttribute(s, Watch.key, "Continuous execution not configured.") { w =>
|
2010-12-19 18:03:10 +01:00
|
|
|
Watched.executeContinuously(w, s, in)
|
|
|
|
|
}
|
2010-09-05 17:19:19 +02:00
|
|
|
}
|
|
|
|
|
|
2010-12-19 18:03:10 +01:00
|
|
|
def history = Command( historyHelp: _* ) { case (in, s) if in.line startsWith "!" =>
|
|
|
|
|
val logError = (msg: String) => CommandSupport.logger(s).error(msg)
|
2011-01-19 00:24:11 +01:00
|
|
|
HistoryCommands(in.line.substring(HistoryPrefix.length).trim, (s get HistoryPath.key) getOrElse None, 500/*JLine.MaxHistorySize*/, logError) match
|
2010-12-19 18:03:10 +01:00
|
|
|
{
|
|
|
|
|
case Some(commands) =>
|
|
|
|
|
commands.foreach(println) //printing is more appropriate than logging
|
|
|
|
|
(commands ::: s).continue
|
|
|
|
|
case None => s.fail
|
2010-07-17 18:07:41 +02:00
|
|
|
}
|
|
|
|
|
}
|
2010-07-28 05:01:45 +02:00
|
|
|
|
2011-01-19 00:24:11 +01:00
|
|
|
def indent(withStar: Boolean) = if(withStar) "\t*" else "\t "
|
2010-12-19 18:03:10 +01:00
|
|
|
def listProject(name: String, current: Boolean, log: Logger) = log.info( indent(current) + name )
|
2010-07-28 05:01:45 +02:00
|
|
|
|
2011-01-19 00:24:11 +01:00
|
|
|
def act = error("TODO")
|
2010-12-19 18:03:10 +01:00
|
|
|
def projects = Command.simple(ProjectsCommand, projectsBrief, projectsDetailed ) { (in,s) =>
|
|
|
|
|
val log = logger(s)
|
2011-01-19 00:24:11 +01:00
|
|
|
val session = Project.session(s)
|
|
|
|
|
val structure = Project.structure(s)
|
|
|
|
|
val (curi, cid) = session.current
|
|
|
|
|
for( (uri, build) <- structure.units)
|
|
|
|
|
{
|
|
|
|
|
log.info("In " + uri)
|
|
|
|
|
for(id <- build.defined.keys) listProject(id, cid == id, log)
|
2010-12-19 18:03:10 +01:00
|
|
|
}
|
2011-01-19 00:24:11 +01:00
|
|
|
s
|
2010-07-28 05:01:45 +02:00
|
|
|
}
|
2010-12-19 18:03:10 +01:00
|
|
|
def withAttribute[T](s: State, key: AttributeKey[T], ifMissing: String)(f: T => State): State =
|
|
|
|
|
(s get key) match {
|
|
|
|
|
case None => logger(s).error(ifMissing); s.fail
|
|
|
|
|
case Some(nav) => f(nav)
|
|
|
|
|
}
|
2010-07-28 05:01:45 +02:00
|
|
|
|
2010-12-19 18:03:10 +01:00
|
|
|
def project = Command.simple(ProjectCommand, projectBrief, projectDetailed ) { (in,s) =>
|
2011-01-19 00:24:11 +01:00
|
|
|
val to = in.arguments
|
|
|
|
|
val session = Project.session(s)
|
|
|
|
|
val structure = Project.structure(s)
|
|
|
|
|
val uri = session.currentBuild
|
|
|
|
|
def setProject(id: String) = updateCurrent(s.put(SessionKey, session.setCurrent(uri, id)))
|
|
|
|
|
if(to.isEmpty)
|
|
|
|
|
{
|
|
|
|
|
logger(s).info(session.currentProject(uri) + " (in build " + uri + ")")
|
|
|
|
|
s
|
|
|
|
|
}
|
|
|
|
|
else if(to == "/")
|
|
|
|
|
{
|
|
|
|
|
val id = Load.getRootProject(structure.units)(uri)
|
|
|
|
|
setProject(id)
|
|
|
|
|
}
|
|
|
|
|
else if(to.startsWith("^"))
|
|
|
|
|
{
|
|
|
|
|
val newBuild = (new java.net.URI(to substring 1)).normalize
|
|
|
|
|
if(structure.units contains newBuild)
|
|
|
|
|
updateCurrent(s.put(SessionKey, session.setCurrent(uri, session currentProject uri)))
|
|
|
|
|
else
|
2010-07-28 05:01:45 +02:00
|
|
|
{
|
2011-01-19 00:24:11 +01:00
|
|
|
logger(s).error("Invalid build unit '" + newBuild + "' (type 'projects' to list available builds).")
|
2010-07-28 05:01:45 +02:00
|
|
|
s
|
|
|
|
|
}
|
2010-12-19 18:03:10 +01:00
|
|
|
}
|
2011-01-19 00:24:11 +01:00
|
|
|
/* else if(to.forall(_ == '.'))
|
|
|
|
|
if(to.length > 1) gotoParent(to.length - 1, nav, s) else s */ // semantics currently undefined
|
|
|
|
|
else if( structure.units(uri).defined.contains(to) )
|
|
|
|
|
setProject(to)
|
|
|
|
|
else
|
2010-10-30 19:24:23 +02:00
|
|
|
{
|
2011-01-19 00:24:11 +01:00
|
|
|
logger(s).error("Invalid project name '" + to + "' (type 'projects' to list available projects).")
|
|
|
|
|
s.fail
|
2010-10-30 19:24:23 +02:00
|
|
|
}
|
2011-01-19 00:24:11 +01:00
|
|
|
}
|
2010-10-30 19:24:23 +02:00
|
|
|
|
2010-12-19 18:03:10 +01:00
|
|
|
def exit = Command( Help(exitBrief) ) {
|
|
|
|
|
case (in, s) if TerminateActions contains in.line =>
|
2010-07-28 05:01:45 +02:00
|
|
|
runExitHooks(s).exit(true)
|
2010-07-17 18:07:41 +02:00
|
|
|
}
|
2010-07-19 18:38:42 +02:00
|
|
|
|
2010-12-19 18:03:10 +01:00
|
|
|
def discover = Command.simple(Discover, DiscoverBrief, DiscoverDetailed) { (in, s) =>
|
|
|
|
|
withAttribute(s, Analysis, "No analysis to process.") { analysis =>
|
2010-08-05 01:41:46 +02:00
|
|
|
val command = Parse.discover(in.arguments)
|
2011-01-19 00:24:11 +01:00
|
|
|
val discovered = build.Build.discover(analysis, command)
|
2010-08-05 01:41:46 +02:00
|
|
|
println(discovered.mkString("\n"))
|
|
|
|
|
s
|
2010-12-19 18:03:10 +01:00
|
|
|
}
|
2010-08-05 01:41:46 +02:00
|
|
|
}
|
2010-09-04 14:25:34 +02:00
|
|
|
def compile = Command.simple(CompileName, CompileBrief, CompileDetailed ) { (in, s) =>
|
2010-08-05 01:41:46 +02:00
|
|
|
val command = Parse.compile(in.arguments)(s.baseDir)
|
2010-08-10 14:46:27 +02:00
|
|
|
try {
|
2011-01-19 00:24:11 +01:00
|
|
|
val analysis = build.Build.compile(command, s.configuration)
|
2010-12-19 18:03:10 +01:00
|
|
|
s.put(Analysis, analysis)
|
2010-08-10 14:46:27 +02:00
|
|
|
} catch { case e: xsbti.CompileFailed => s.fail /* already logged */ }
|
2010-08-05 01:41:46 +02:00
|
|
|
}
|
2010-09-05 17:12:44 +02:00
|
|
|
|
|
|
|
|
def loadProject = Command.simple(LoadProject, LoadProjectBrief, LoadProjectDetailed) { (in, s) =>
|
2011-01-19 00:24:11 +01:00
|
|
|
val structure = Load.defaultLoad(s, logger(s))
|
|
|
|
|
val session = Load.initialSession(structure)
|
|
|
|
|
val newAttrs = s.attributes.put(StructureKey, structure).put(SessionKey, session)
|
|
|
|
|
val newState = s.copy(attributes = newAttrs)
|
|
|
|
|
updateCurrent(runExitHooks(newState))
|
2010-12-19 18:03:10 +01:00
|
|
|
}
|
2011-01-19 00:24:11 +01:00
|
|
|
|
|
|
|
|
def updateCurrent(s: State): State =
|
2010-12-19 18:03:10 +01:00
|
|
|
{
|
2011-01-19 00:24:11 +01:00
|
|
|
val structure = Project.structure(s)
|
|
|
|
|
val (uri, id) = Project.current(s)
|
|
|
|
|
val ref = ProjectRef(uri, id)
|
|
|
|
|
val project = Load.getProject(structure.units, uri, id)
|
|
|
|
|
logger(s).info("Set current project to " + id + " (in build " + uri +")")
|
|
|
|
|
|
|
|
|
|
val data = structure.data
|
|
|
|
|
val historyPath = HistoryPath(ref).get(data).flatMap(identity)
|
|
|
|
|
val newAttrs = s.attributes.put(Watch.key, makeWatched(data, ref, project)).put(HistoryPath.key, historyPath)
|
2010-12-19 18:03:10 +01:00
|
|
|
s.copy(attributes = newAttrs)
|
2010-09-05 17:12:44 +02:00
|
|
|
}
|
2011-01-19 00:24:11 +01:00
|
|
|
def makeWatched(data: Settings[Scope], ref: ProjectRef, project: Project): Watched =
|
|
|
|
|
{
|
|
|
|
|
def getWatch(ref: ProjectRef) = Watch(ref).get(data)
|
|
|
|
|
getWatch(ref) match
|
|
|
|
|
{
|
|
|
|
|
case Some(currentWatch) =>
|
|
|
|
|
val subWatches = project.uses flatMap { p => getWatch(p) }
|
|
|
|
|
Watched.multi(currentWatch, subWatches)
|
|
|
|
|
case None => Watched.empty
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-07-17 18:07:41 +02:00
|
|
|
|
2010-08-10 14:46:27 +02:00
|
|
|
def handleException(e: Throwable, s: State, trace: Boolean = true): State = {
|
2010-12-19 18:03:10 +01:00
|
|
|
val log = logger(s)
|
|
|
|
|
if(trace) log.trace(e)
|
|
|
|
|
log.error(e.toString)
|
2010-08-05 01:41:11 +02:00
|
|
|
s.fail
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-28 05:01:45 +02:00
|
|
|
def runExitHooks(s: State): State = {
|
|
|
|
|
ExitHooks.runExitHooks(s.exitHooks.toSeq)
|
2010-12-19 18:03:10 +01:00
|
|
|
s.copy(exitHooks = Set.empty)
|
2010-07-28 05:01:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def loadCommands = Command.simple(LoadCommand, Parse.helpBrief(LoadCommand, LoadCommandLabel), Parse.helpDetail(LoadCommand, LoadCommandLabel, true) ) { (in, s) =>
|
2010-08-05 01:41:46 +02:00
|
|
|
applyCommands(s, buildCommands(in.arguments, s.configuration))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def buildCommands(arguments: String, configuration: xsbti.AppConfiguration): Either[Throwable, Seq[Any]] =
|
2010-08-10 14:44:34 +02:00
|
|
|
loadCommand(arguments, configuration, true, classOf[CommandDefinitions].getName)
|
2010-08-05 01:41:46 +02:00
|
|
|
|
|
|
|
|
def applyCommands(s: State, commands: Either[Throwable, Seq[Any]]): State =
|
|
|
|
|
commands match {
|
2010-07-28 05:01:45 +02:00
|
|
|
case Right(newCommands) =>
|
2010-08-10 14:44:34 +02:00
|
|
|
val asCommands = newCommands flatMap {
|
|
|
|
|
case c: CommandDefinitions => c.commands
|
|
|
|
|
case x => error("Not an instance of CommandDefinitions: " + x.asInstanceOf[AnyRef].getClass)
|
|
|
|
|
}
|
2010-12-19 18:03:10 +01:00
|
|
|
s.copy(processors = asCommands ++ s.processors)
|
2010-08-10 14:46:27 +02:00
|
|
|
case Left(e) => handleException(e, s, false)
|
2010-07-17 18:07:41 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-28 05:01:45 +02:00
|
|
|
def loadCommand(line: String, configuration: xsbti.AppConfiguration, allowMultiple: Boolean, defaultSuper: String): Either[Throwable, Seq[Any]] =
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
val parsed = Parse(line)(configuration.baseDirectory)
|
2011-01-19 00:24:11 +01:00
|
|
|
Right( build.Build( translateEmpty(parsed, defaultSuper), configuration, allowMultiple) )
|
2010-07-28 05:01:45 +02:00
|
|
|
}
|
2010-07-17 18:07:41 +02:00
|
|
|
catch { case e @ (_: ParseException | _: BuildException | _: xsbti.CompileFailed) => Left(e) }
|
2010-07-19 18:38:42 +02:00
|
|
|
|
2010-07-28 05:01:45 +02:00
|
|
|
def translateEmpty(load: LoadCommand, defaultSuper: String): LoadCommand =
|
|
|
|
|
load match {
|
|
|
|
|
case ProjectLoad(base, Auto.Explicit, "") => ProjectLoad(base, Auto.Subclass, defaultSuper)
|
|
|
|
|
case s @ SourceLoad(_, _, _, _, Auto.Explicit, "") => s.copy(auto = Auto.Subclass, name = defaultSuper)
|
|
|
|
|
case x => x
|
|
|
|
|
}
|
2010-07-19 18:38:42 +02:00
|
|
|
|
|
|
|
|
def runTask[Task[_] <: AnyRef](root: Task[State], checkCycles: Boolean, maxWorkers: Int)(implicit taskToNode: NodeView[Task]): Result[State] =
|
|
|
|
|
{
|
|
|
|
|
val (service, shutdown) = CompletionService[Task[_], Completed](maxWorkers)
|
|
|
|
|
|
|
|
|
|
val x = new Execute[Task](checkCycles)(taskToNode)
|
|
|
|
|
try { x.run(root)(service) } finally { shutdown() }
|
|
|
|
|
}
|
2010-09-28 00:59:14 +02:00
|
|
|
def processResult[State](result: Result[State], original: State, onFailure: => State): State =
|
2010-07-19 18:38:42 +02:00
|
|
|
result match
|
|
|
|
|
{
|
|
|
|
|
case Value(v) => v
|
2010-09-13 04:43:42 +02:00
|
|
|
case Inc(inc) =>
|
|
|
|
|
println(Incomplete.show(inc, true))
|
|
|
|
|
println("Task did not complete successfully")
|
2010-09-28 00:59:14 +02:00
|
|
|
onFailure
|
2010-07-19 18:38:42 +02:00
|
|
|
}
|
2010-07-28 05:01:45 +02:00
|
|
|
|
|
|
|
|
def addAlias(s: State, name: String, value: String): State =
|
|
|
|
|
{
|
|
|
|
|
val in = Input(name, None)
|
|
|
|
|
if(in.name == name) {
|
|
|
|
|
val removed = removeAlias(s, name)
|
2010-12-19 18:03:10 +01:00
|
|
|
if(value.isEmpty) removed else removed.copy(processors = new Alias(name, value) +: removed.processors)
|
2010-07-28 05:01:45 +02:00
|
|
|
} else {
|
|
|
|
|
System.err.println("Invalid alias name '" + name + "'.")
|
|
|
|
|
s.fail
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
def removeAlias(s: State, name: String): State =
|
2010-12-19 18:03:10 +01:00
|
|
|
s.copy(processors = s.processors.filter { case a: Alias if a.name == name => false; case _ => true } )
|
2010-07-28 05:01:45 +02:00
|
|
|
|
|
|
|
|
def printAliases(s: State): Unit = {
|
|
|
|
|
val strings = aliasStrings(s)
|
|
|
|
|
if(!strings.isEmpty) println( strings.mkString("\t", "\n\t","") )
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def printAlias(s: State, name: String): Unit =
|
|
|
|
|
for(a <- aliases(s)) if (a.name == name) println("\t" + name + " = " + a.value)
|
|
|
|
|
|
|
|
|
|
def aliasStrings(s: State) = aliases(s).map(a => a.name + " = " + a.value)
|
|
|
|
|
def aliases(s: State) = s.processors collect { case a: Alias => a }
|
|
|
|
|
|
2010-08-10 14:44:34 +02:00
|
|
|
final class Alias(val name: String, val value: String) extends Command {
|
2010-07-28 05:01:45 +02:00
|
|
|
assert(name.length > 0)
|
|
|
|
|
assert(value.length > 0)
|
2010-12-19 18:03:10 +01:00
|
|
|
def help = _ => Nil
|
|
|
|
|
def run = (in, s) => if(in.name == name) Some((value + " " + in.arguments) :: s) else None
|
2010-07-28 05:01:45 +02:00
|
|
|
}
|
2010-07-17 18:07:41 +02:00
|
|
|
}
|