summaryrefslogblamecommitdiff
path: root/src/compiler/scala/tools/nsc/ScalaDoc.scala
blob: 61a3f343e72dc566c6cff1794a54fdb0556ac2b5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                
                                
                          
                             
   




                       

                                                            

                             
 

                                                                   
   
                 
 

                          


                                       

                                   
                                                
                                                                                       

   


                                            
                                   
 


                                                                                                                                                 

                 
                                                   






                                                                                             
       








                                                                               
 

                                                                                       
 
                                                                                    



                                            
                                    




                                                            

       
 

   
                                         
                 
                                              
   
 
/* scaladoc, a documentation generator for Scala
 * Copyright 2005-2011 LAMP/EPFL
 * @author  Martin Odersky
 * @author  Geoffrey Washburn
 */

package scala.tools.nsc

import java.io.File

import scala.tools.nsc.reporters.{Reporter, ConsoleReporter}
import scala.tools.nsc.util.FakePos //{Position}
import Properties.msilLibPath
import File.pathSeparator

/** The main class for scaladoc, a front-end for the Scala compiler
 *  that generates documentation from source files.
 */
object ScalaDoc {

  val versionMsg: String =
    "Scaladoc " +
    Properties.versionString + " -- " +
    Properties.copyrightString

  var reporter: ConsoleReporter = _

  private def scalacError(msg: String): Unit = {
    reporter.error(FakePos("scalac"), msg + "\n  scalac -help  gives more information")
  }

  def process(args: Array[String]): Unit = {

    val docSettings: doc.Settings =
      new doc.Settings(scalacError)

    reporter = new ConsoleReporter(docSettings) {
      override def hasErrors = false // need to do this so that the Global instance doesn't trash all the symbols just because there was an error
    }

    val command =
      new CompilerCommand(args.toList, docSettings)

    if (!reporter.hasErrors) { // No need to continue if reading the command generated errors

      if (docSettings.version.value)
        reporter.info(null, versionMsg, true)
      else if (docSettings.help.value) {
        reporter.info(null, command.usageMsg, true)
      }
      else if (docSettings.Xhelp.value)
        reporter.info(null, command.xusageMsg, true)
      else if (docSettings.Yhelp.value)
        reporter.info(null, command.yusageMsg, true)
      else if (docSettings.showPlugins.value)
        reporter.warning(null, "Plugins are not available when using Scaladoc")
      else if (docSettings.showPhases.value)
        reporter.warning(null, "Phases are restricted when using Scaladoc")
      else try {

        if (docSettings.target.value == "msil")
          msilLibPath foreach (x => docSettings.assemrefs.value += (pathSeparator + x))

        val docProcessor = new scala.tools.nsc.doc.DocFactory(reporter, docSettings)
        docProcessor.document(command.files)

      }
      catch {
        case ex @ FatalError(msg) =>
          if (docSettings.debug.value) ex.printStackTrace();
          reporter.error(null, "fatal error: " + msg)
      }
      finally {
        reporter.printSummary()
      }
    }

  }

  def main(args: Array[String]): Unit = {
    process(args)
    sys.exit(if (reporter.hasErrors) 1 else 0)
  }
}