package scala.tools.nsc
package settings
import io.AbstractFile
trait AbsSettings {
type Setting <: AbsSetting
type ResultOfTryToSet
def errorFn: String => Unit
protected def allSettings: collection.Set[Setting]
def visibleSettings = allSettings filterNot (_.isInternalOnly)
def userSetSettings = visibleSettings filterNot (_.isDefault)
def recreateArgs = userSetSettings.toList flatMap (_.unparse)
def lookupSetting(cmd: String): Option[Setting] = allSettings find (_ respondsTo cmd)
override def hashCode() = visibleSettings.hashCode
override def equals(that: Any) = that match {
case s: AbsSettings => this.userSetSettings == s.userSetSettings
case _ => false
}
override def toString() = "Settings {\n%s}\n" format (userSetSettings map (" " + _ + "\n") mkString)
def toConciseString = userSetSettings.mkString("(", " ", ")")
def checkDependencies =
visibleSettings filterNot (_.isDefault) forall (setting => setting.dependencies forall {
case (dep, value) =>
(Option(dep.value) exists (_.toString == value)) || {
errorFn("incomplete option %s (requires %s)".format(setting.name, dep.name))
false
}
})
implicit lazy val SettingOrdering: Ordering[Setting] = Ordering.ordered
trait AbsSettingValue {
type T <: Any
def value: T
def isDefault: Boolean
}
trait AbsSetting extends Ordered[Setting] with AbsSettingValue {
def name: String
def helpDescription: String
def unparse: List[String]
def choices : List[String] = Nil
def withAbbreviation(name: String): this.type
def withHelpSyntax(help: String): this.type
def withDeprecationMessage(msg: String): this.type
def helpSyntax: String = name
def deprecationMessage: Option[String] = None
def abbreviations: List[String] = Nil
def dependencies: List[(Setting, String)] = Nil
def respondsTo(label: String) = (name == label) || (abbreviations contains label)
private var internalSetting = false
def isInternalOnly = internalSetting
def internalOnly(): this.type = {
internalSetting = true
this
}
private var isTerminatorSetting = false
def shouldStopProcessing = isTerminatorSetting
def stopProcessing(): this.type = {
isTerminatorSetting = true
this
}
def errorAndValue[T](msg: String, x: T): T = { errorFn(msg) ; x }
protected[nsc] def tryToSet(args: List[String]): Option[ResultOfTryToSet]
protected[nsc] def tryToSetColon(args: List[String]): Option[ResultOfTryToSet] =
errorAndValue("'%s' does not accept multiple arguments" format name, None)
def tryToSetFromPropertyValue(s: String): Unit = tryToSet(s :: Nil)
def isAdvanced = name match { case "-Y" => true ; case "-X" => false ; case _ => name startsWith "-X" }
def isPrivate = name match { case "-Y" => false ; case _ => name startsWith "-Y" }
def isStandard = !isAdvanced && !isPrivate
def isForDebug = name endsWith "-debug"
def isDeprecated = deprecationMessage.isDefined
def compare(that: Setting): Int = name compare that.name
override def equals(that: Any) = that match {
case x: AbsSettings#AbsSetting => (name == x.name) && (value == x.value)
case _ => false
}
override def hashCode() = (name, value).hashCode
override def toString() = "%s = %s".format(name, value)
}
trait InternalSetting extends AbsSetting {
override def isInternalOnly = true
}
}