package scala.tools.nsc
package reporters
import java.io.{ BufferedReader, IOException, PrintWriter }
import util._
import scala.tools.util.StringOps.countElementsAsString
class ConsoleReporter(val settings: Settings, reader: BufferedReader, writer: PrintWriter) extends AbstractReporter {
def this(settings: Settings) = this(settings, Console.in, new PrintWriter(Console.err, true))
var shortname: Boolean = false
final val ERROR_LIMIT = 100
private def label(severity: Severity): String = severity match {
case ERROR => "error"
case WARNING => "warning"
case INFO => null
}
private def clabel(severity: Severity): String = {
val label0 = label(severity)
if (label0 eq null) "" else label0 + ": "
}
private def getCountString(severity: Severity): String =
countElementsAsString((severity).count, label(severity))
def printMessage(msg: String) { writer.print(msg + "\n"); writer.flush() }
def printMessage(posIn: Position, msg: String) {
val pos = if (posIn eq null) NoPosition
else if (posIn.isDefined) posIn.inUltimateSource(posIn.source)
else posIn
pos match {
case FakePos(fmsg) =>
printMessage(fmsg+" "+msg)
case NoPosition =>
printMessage(msg)
case _ =>
val buf = new StringBuilder(msg)
val file = pos.source.file
printMessage((if (shortname) file.name else file.path)+":"+pos.line+": "+msg)
printSourceLine(pos)
}
}
def print(pos: Position, msg: String, severity: Severity) {
printMessage(pos, clabel(severity) + msg)
}
def printSourceLine(pos: Position) {
printMessage(pos.lineContent.stripLineEnd)
printColumnMarker(pos)
}
def printColumnMarker(pos: Position) =
if (pos.isDefined) { printMessage(" " * (pos.column - 1) + "^") }
def printSummary() {
if (WARNING.count > 0) printMessage(getCountString(WARNING) + " found")
if ( ERROR.count > 0) printMessage(getCountString(ERROR ) + " found")
}
def display(pos: Position, msg: String, severity: Severity) {
severity.count += 1
if (severity != ERROR || severity.count <= ERROR_LIMIT)
print(pos, msg, severity)
}
def displayPrompt(): Unit = try {
var continue = true
while (continue) {
writer.print("r)esume, a)bort: ")
writer.flush()
var line = reader.readLine()
if (line ne null) {
line = line.toLowerCase()
if ("abort" startsWith line)
abort("user abort")
if ("resume" startsWith line)
continue = false
}
}
}
catch {
case ex: IOException => {
ex.printStackTrace()
abort("input read error")
}
}
private def abort(msg: String) = throw new Error(msg)
override def flush() { writer.flush() }
}