
scala.tools.nsc.MainTokenMetric.scala Maven / Gradle / Ivy
/*
* Scala (https://www.scala-lang.org)
*
* Copyright EPFL and Lightbend, Inc.
*
* Licensed under Apache License 2.0
* (http://www.apache.org/licenses/LICENSE-2.0).
*
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*/
package scala
package tools.nsc
import scala.tools.nsc.reporters.ConsoleReporter
/** The main class for NSC, a compiler for the programming
* language Scala.
*/
object MainTokenMetric {
private var reporter: ConsoleReporter = _
def tokenMetric(compiler: Global, fnames: List[String]): Unit = {
import compiler.CompilationUnit
import compiler.syntaxAnalyzer.UnitScanner
import ast.parser.Tokens.EOF
var totale = 0
for (source <- fnames) {
val s = new UnitScanner(new CompilationUnit(compiler.getSourceFile(source)))
s.nextToken()
var i = 0
while (s.token != EOF) {
i += 1
s.nextToken()
}
Console.println(i.toString + " " + source.toString())
totale += i
}
Console.println(totale.toString()+" total")
}
def process(args: Array[String]): Unit = {
val settings = new Settings(msg => throw new RuntimeException(msg))
reporter = new ConsoleReporter(settings)
val command = new CompilerCommand(args.toList, settings)
try {
val compiler = new Global(command.settings, reporter)
tokenMetric(compiler, command.files)
} catch {
case ex @ FatalError(msg) =>
if (command.settings.isDebug)
ex.printStackTrace()
reporter.error(null, "fatal error: " + msg)
}
}
def main(args: Array[String]): Unit = {
process(args)
System.exit(if (reporter.hasErrors) 1 else 0)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy