Packages

c

scala.tools.nsc

StandardCompileServer

class StandardCompileServer extends SocketServer

The server part of the fsc offline compiler. It awaits compilation commands and executes them. It caches a compiler instance so that it can respond more quickly.

Source
CompileServer.scala
Version

1.0

Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StandardCompileServer
  2. SocketServer
  3. CompileOutputCommon
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StandardCompileServer(fixPort: Int = 0)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from StandardCompileServer to any2stringadd[StandardCompileServer] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (StandardCompileServer, B)
    Implicit
    This member is added by an implicit conversion from StandardCompileServer to ArrowAssoc[StandardCompileServer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. val BufferSize: Int
    Definition Classes
    SocketServer
  7. val MaxCharge: Double
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. lazy val compileSocket: CompileSocket
  11. def createServerSocket(): ServerSocket
    Attributes
    protected
    Definition Classes
    SocketServer
  12. def doSession(clientSocket: Socket): Unit
    Definition Classes
    SocketServer
  13. def echo(msg: String): Unit
    Definition Classes
    CompileOutputCommon
  14. def ensuring(cond: (StandardCompileServer) ⇒ Boolean, msg: ⇒ Any): StandardCompileServer
    Implicit
    This member is added by an implicit conversion from StandardCompileServer to Ensuring[StandardCompileServer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (StandardCompileServer) ⇒ Boolean): StandardCompileServer
    Implicit
    This member is added by an implicit conversion from StandardCompileServer to Ensuring[StandardCompileServer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): StandardCompileServer
    Implicit
    This member is added by an implicit conversion from StandardCompileServer to Ensuring[StandardCompileServer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): StandardCompileServer
    Implicit
    This member is added by an implicit conversion from StandardCompileServer to Ensuring[StandardCompileServer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  20. def fatal(msg: String): Nothing
    Definition Classes
    CompileOutputCommon
  21. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from StandardCompileServer to StringFormat[StandardCompileServer] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  23. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  25. var idleMinutes: Int
    Attributes
    protected
    Definition Classes
    SocketServer
  26. var in: BufferedReader
    Definition Classes
    SocketServer
  27. def info(msg: String): Unit
    Definition Classes
    CompileOutputCommon
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. def isMemoryFullEnough(): Boolean
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. def newGlobal(settings: Settings, reporter: Reporter): Global

    Create a new compiler instance

  32. final def notify(): Unit
    Definition Classes
    AnyRef
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  34. var out: PrintWriter
    Definition Classes
    SocketServer
  35. lazy val port: Int
    Definition Classes
    SocketServer
  36. def printMemoryStats(): Unit
  37. var reporter: ConsoleReporter
  38. def run(): Unit
    Definition Classes
    SocketServer
  39. lazy val serverSocket: ServerSocket
    Definition Classes
    SocketServer
  40. def session(): Unit
    Definition Classes
    StandardCompileServerSocketServer
  41. var shutdown: Boolean
    Definition Classes
    StandardCompileServerSocketServer
  42. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  43. def timeout(): Unit
    Definition Classes
    StandardCompileServerSocketServer
  44. def toString(): String
    Definition Classes
    AnyRef → Any
  45. def unequalSettings(s1: Settings, s2: Settings): Set[Settings.Setting]

    Problematically, Settings are only considered equal if every setting is exactly equal.

    Problematically, Settings are only considered equal if every setting is exactly equal. In fsc this immediately breaks down because the randomly chosen temporary outdirs differ between client and server. Among other things. Long term we could use a meaningful equality; short term I'm just ignoring options which I can see causing a new compiler instance every time and which do not interestingly influence compilation products.

  46. var verbose: Boolean
  47. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. def warn(msg: String): Unit
    Definition Classes
    CompileOutputCommon
  51. def [B](y: B): (StandardCompileServer, B)
    Implicit
    This member is added by an implicit conversion from StandardCompileServer to ArrowAssoc[StandardCompileServer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from SocketServer

Inherited from CompileOutputCommon

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from StandardCompileServer to any2stringadd[StandardCompileServer]

Inherited by implicit conversion StringFormat from StandardCompileServer to StringFormat[StandardCompileServer]

Inherited by implicit conversion Ensuring from StandardCompileServer to Ensuring[StandardCompileServer]

Inherited by implicit conversion ArrowAssoc from StandardCompileServer to ArrowAssoc[StandardCompileServer]

Ungrouped