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



                   
                                                               
                                                                
                   
                                                    
                         
                            

                                                   
                                  


                                                  


                                                                










                                                 
                                                    
                                         
                           

                        
                                                                   
              

   
                                                                                        
                                                                              

                                                                                  

                                                      
                                                 

                                                  
                    
     






                                                                                                                         
                                                                





                                                                                         
   
 
                                         
                                  
                                                         
                                               
 

                                                           

   
                                           

                                                                                                                                 

                            
                                                     

   

                                                      
                                    
                        

                  
   
 
package dotty.tools
package dotc

import core._
import Contexts._, Periods._, Symbols._, Phases._, Decorators._
import dotty.tools.dotc.transform.TreeTransforms.TreeTransformer
import io.PlainFile
import util.{SourceFile, NoSource, Stats, SimpleMap}
import reporting.Reporter
import transform.TreeChecker
import java.io.{BufferedWriter, OutputStreamWriter}
import scala.reflect.io.VirtualFile
import scala.util.control.NonFatal

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

  assert(comp.phases.last.last.id <= Periods.MaxPossiblePhaseId)
  assert(ctx.runId <= Periods.MaxPossibleRunId)

  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 = try {
    val sources = fileNames map getSource
    compileSources(sources)
  } catch {
    case NonFatal(ex) =>
      ctx.println(i"exception occurred while compiling $units%, %")
      throw ex
  }

  /** TODO: There's a fundamental design problem here: We assemble phases using `squash`
   *  when we first build the compiler. But we modify them with -Yskip, -Ystop
   *  on each run. That modification needs to either transform the tree structure,
   *  or we need to assemble phases on each run, and take -Yskip, -Ystop into
   *  account. I think the latter would be preferable.
   */
  def compileSources(sources: List[SourceFile]) =
    if (sources forall (_.exists)) {
      units = sources map (new CompilationUnit(_))
      compileUnits()
    }

  protected def compileUnits() = Stats.monitorHeartBeat {
    val phases = ctx.squashPhases(ctx.phasePlan,
      ctx.settings.Yskip.value, ctx.settings.YstopBefore.value, ctx.settings.YstopAfter.value, ctx.settings.Ycheck.value)
    ctx.usePhases(phases)
    for (phase <- ctx.allPhases)
      if (!ctx.reporter.hasErrors) {
        if (ctx.settings.verbose.value) ctx.println(s"[$phase]")
        units = phase.runOn(units)
        def foreachUnit(op: Context => Unit)(implicit ctx: Context): Unit =
          for (unit <- units) op(ctx.fresh.setPhase(phase.next).setCompilationUnit(unit))
        if (ctx.settings.Xprint.value.containsPhase(phase))
          foreachUnit(printTree)
      }
  }

  private def printTree(ctx: Context) = {
    val unit = ctx.compilationUnit
    val prevPhase = ctx.phase.prev // can be a mini-phase
    val squashedPhase = ctx.squashed(prevPhase)

    ctx.println(s"result of $unit after ${squashedPhase}:")
    ctx.println(unit.tpdTree.show(ctx))
  }

  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.reporter
    r.printSummary
    r
  }
}