Export 子句
Export 子句为选中的对象成员定义别名。例如:
class BitMap
class InkJet
class Printer {
type PrinterType
def print(bits: BitMap): Unit = ???
def status: List[String] = ???
}
class Scanner {
def scan(): BitMap = ???
def status: List[String] = ???
}
class Copier {
private val printUnit = new Printer { type PrinterType = InkJet }
private val scanUnit = new Scanner
export scanUnit.scan
export printUnit.{status => _, _}
def status: List[String] = printUnit.status ++ scanUnit.status
}
这两个 export
子句在类 Copier
中定义了以下的导出别名:
final def scan(): BitMap = scanUnit.scan()
final def print(bits: BitMap): Unit = printUnit.print(bits)
final type PrinterType = printUnit.PrinterType
它们既可以在 Copier
内部访问,也可以从外部访问:
val copier = new Copier
copier.print(copier.scan())
export
子句的格式与 import
子句的格式类似。其一般形式为:
export path . { sel_1, ..., sel_n }
It consists of a qualifier expression path
, which must be a stable identifier, followed by one or more selectors sel_i
that identify what gets an alias. Selectors can be of one of the following forms:
- A simple selector
x
creates aliases for all eligible members ofpath
that are namedx
. - A renaming selector
x => y
creates aliases for all eligible members ofpath
that are namedx
, but the alias is namedy
instead ofx
. - An omitting selector
x => _
preventsx
from being aliased by a subsequent wildcard selector. - A given selector
given x
has an optional type boundx
. It creates aliases for all eligible given instances that conform to eitherx
, orAny
ifx
is omitted, except for members that are named by a previous simple, renaming, or omitting selector. - A wildcard selector
_
creates aliases for all eligible members ofpath
except for given instances, synthetic members generated by the compiler and those members that are named by a previous simple, renaming, or omitting selector.
A member is eligible if all of the following holds:
- its owner is not a base class of the class(*) containing the export clause,
- the member does not override a concrete definition that has as owner a base class of the class containing the export clause.
- it is accessible at the export clause,
- it is not a constructor, nor the (synthetic) class part of an object,
- it is a given instance (declared with
given
) if and only if the export is from a given selector.
It is a compile-time error if a simple or renaming selector does not identify any eligible members.
Type members are aliased by type definitions, and term members are aliased by method definitions. Export aliases copy the type and value parameters of the members they refer to. Export aliases are always final
. Aliases of given instances are again defined as givens (and aliases of old-style implicits are implicit
). Aliases of inline methods or values are again defined inline
. There are no other modifiers that can be given to an alias. This has the following consequences for overriding:
- Export aliases cannot be overridden, since they are final.
- Export aliases cannot override concrete members in base classes, since they are not marked
override
. - However, export aliases can implement deferred members of base classes.
Export aliases for public value definitions that are accessed without referring to private values in the qualifier path are marked by the compiler as “stable” and their result types are the singleton types of the aliased definitions. This means that they can be used as parts of stable identifier paths, even though they are technically methods. For instance, the following is OK:
class C { type T }
object O { val c: C = ... }
export O.c
def f: c.T = ...
Restrictions:
- Export clauses can appear in classes or they can appear at the top-level. An export clause cannot appear as a statement in a block.
-
If an export clause contains a wildcard or given selector, it is forbidden for its qualifier path to refer to a package. This is because it is not yet known how to safely track wildcard dependencies to a package for the purposes of incremental compilation.
- Simple renaming exports like
export status as stat
are not supported yet. They would run afoul of the restriction that the exported
a
cannot be already a member of the object containing the export. This restriction might be lifted in the future.
(*) Note: Unless otherwise stated, the term “class” in this discussion also includes object and trait definitions.
Motivation
It is a standard recommendation to prefer composition over inheritance. This is really an application of the principle of least power: Composition treats components as blackboxes whereas inheritance can affect the internal workings of components through overriding. Sometimes the close coupling implied by inheritance is the best solution for a problem, but where this is not necessary the looser coupling of composition is better.
So far, object-oriented languages including Scala made it much easier to use inheritance than composition. Inheritance only requires an extends
clause whereas composition required a verbose elaboration of a sequence of forwarders. So in that sense, object-oriented languages are pushing programmers to a solution that is often too powerful. Export clauses redress the balance. They make composition relationships as concise and easy to express as inheritance relationships. Export clauses also offer more flexibility than extends clauses since members can be renamed or omitted.
Export clauses also fill a gap opened by the shift from package objects to top-level definitions. One occasionally useful idiom that gets lost in this shift is a package object inheriting from some class. The idiom is often used in a facade like pattern, to make members of internal compositions available to users of a package. Top-level definitions are not wrapped in a user-defined object, so they can’t inherit anything. However, top-level definitions can be export clauses, which supports the facade design pattern in a safer and more flexible way.
Syntax changes:
TemplateStat ::= ...
| Export
TopStat ::= ...
| Export
Export ::= ‘export’ ImportExpr {‘,’ ImportExpr}
ImportExpr ::= SimpleRef {‘.’ id} ‘.’ ImportSpec
ImportSpec ::= NamedSelector
| WildcardSelector
| ‘{’ ImportSelectors) ‘}’
NamedSelector ::= id [‘as’ (id | ‘_’)]
WildCardSelector ::= ‘*' | ‘given’ [InfixType]
ImportSelectors ::= NamedSelector [‘,’ ImportSelectors]
| WildCardSelector {‘,’ WildCardSelector}
Elaboration of Export Clauses
Export clauses raise questions about the order of elaboration during type checking. Consider the following example:
class B { val c: Int }
object a { val b = new B }
export a._
export b._
Is the export b._
clause legal? If yes, what does it export? Is it equivalent to export a.b._
? What about if we swap the last two clauses?
export b._
export a._
To avoid tricky questions like these, we fix the elaboration order of exports as follows.
Export clauses are processed when the type information of the enclosing object or class is completed. Completion so far consisted of the following steps:
- Elaborate any annotations of the class.
- Elaborate the parameters of the class.
- Elaborate the self type of the class, if one is given.
- Enter all definitions of the class as class members, with types to be completed on demand.
-
Determine the types of all parents of the class.
With export clauses, the following steps are added:
- Compute the types of all paths in export clauses in a context logically inside the class but not considering any imports or exports in that class.
- Enter export aliases for the eligible members of all paths in export clauses.
It is important that steps 6 and 7 are done in sequence: We first compute the types of all paths in export clauses and only after this is done we enter any export aliases as class members. This means that a path of an export clause cannot refer to an alias made available by another export clause of the same class.