aboutsummaryrefslogblamecommitdiff
path: root/src/dotty/tools/dotc/Run.scala
blob: 3f15bd4c3597af7dcbaef6e0ac4a366870286e0d (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                   
                                                               
                   
                                                    
                         

                                                   


                                                  










                                                 
                                                
                                         



                                                                          

                                                  







                                                               
                            

                                                             
                                                                           
         
       

     
 





                                                   
                                           

                                                                                                                                 

                            
                                                     

   

                                                      
                                    


                                   
   
 
package dotty.tools
package dotc

import core._
import Contexts._, Periods._, Symbols._, Phases._, Decorators._
import io.PlainFile
import util.{SourceFile, NoSource, Stats, SimpleMap}
import reporting.Reporter
import java.io.{BufferedWriter, OutputStreamWriter}
import scala.reflect.io.VirtualFile

class Run(comp: Compiler)(implicit ctx: Context) {

  var units: List[CompilationUnit] = _

  def getSource(fileName: String): SourceFile = {
    val f = new PlainFile(fileName)
    if (f.exists) new SourceFile(f)
    else {
      ctx.error(s"not found: $fileName")
      NoSource
    }
  }

  def compile(fileNames: List[String]): Unit = {
    val sources = fileNames map getSource
    compileSources(sources)
  }

  def compileSources(sources: List[SourceFile]) = Stats.monitorHeartBeat {
    if (sources forall (_.exists)) {
      units = sources map (new CompilationUnit(_))
      def stoppedBefore(phase: Phase) =
        ctx.settings.YstopBefore.value.containsPhase(phase) ||
        ctx.settings.YstopAfter.value.containsPhase(phase.prev)
      val phasesToRun = ctx.allPhases.init
        .takeWhile(!stoppedBefore(_))
        .filterNot(ctx.settings.Yskip.value.containsPhase(_))
      for (phase <- phasesToRun) {
        if (!ctx.reporter.hasErrors) {
          phase.runOn(units)
          if (ctx.settings.Xprint.value.containsPhase(phase))
            for (unit <- units)
              printTree(ctx.fresh.setPhase(phase).setCompilationUnit(unit))
        }
      }
    }
  }

  private def printTree(implicit ctx: Context) = {
    val unit = ctx.compilationUnit
    println(s"result of $unit after ${ctx.phase}:")
    println(unit.tpdTree.show)
  }

  def compile(sourceCode: String): Unit = {
    val virtualFile = new VirtualFile(sourceCode) // use source code as name as it's used for equals
    val writer = new BufferedWriter(new OutputStreamWriter(virtualFile.output, "UTF-8")) // buffering is still advised by javadoc
    writer.write(sourceCode)
    writer.close()
    compileSources(List(new SourceFile(virtualFile)))
  }

  /** Print summary; return # of errors encountered */
  def printSummary(): Reporter = {
    ctx.runInfo.printMaxConstraint()
    val r = ctx.typerState.reporter
    r.printSummary
    r
  }
}