This document explains the rationale for choosing to make implementation coherence a goal for Carbon, and the alternatives considered.
- Approach taken: coherence
- The "Hashtable Problem"
- Rejected alternative: no orphan rule
- Rejected alternative: incoherence
The main thing to understand is that coherence is a desirable property, but to get that property we need an orphan rule, and that rule has a cost. It in particular limits how much control users of a type have over how that type implements interfaces. There are a few main problematic use cases to consider:
- Selecting between multiple implementations of an interface for a type. For
example selecting the implementation of the
Comparable
interface for aSong
type to support "by title", "by artist", and "by album" orderings. - Implementing an interface for a type when there is no relationship between the libraries defining the interface and the type.
- When the implementation of an interface for a type relies on something that can't be referenced from the file or files where the implementation is allowed to be defined.
These last two cases are highlighted as concerns in Rust in Rust RFC #1856: orphan rules are stricter than we would like.
Since Carbon is bundling interface implementations into types, for the convenience and expressiveness that provides, we satisfy those use cases by giving the user control over the type of a value. This means having facilities for defining new compatible types with different interface implementations, and casting between those types as needed.
The "Hashtable problem" is that the specific hash function used to compute the
hash of keys in a hashtable must be the same when adding an entry, when looking
it up, and other operations like resizing. So a hashtable type is dependent on
both the key type, and the key type's implementation of the Hashable
interface. If the key type can have more than one implementation of Hashable
,
there needs to be some mechanism for choosing a single one to be used
consistently by the hashtable type, or the invariants of the type will be
violated.
Without the orphan rule to enforce coherence, we might have a situation like this:
-
Package
Container
defines aHashSet
type.package Container; class HashSet(Key:! Hashable) { ... }
-
A
Song
type is defined in packageSongLib
. -
Package
SongHashArtistAndTitle
defines an implementation ofHashable
forSongLib.Song
.package SongHashArtistAndTitle; import SongLib; impl SongLib.Song as Hashable { fn Hash[self: Self]() -> u64 { ... } }
-
Package
SongUtil
uses theHashable
implementation fromSongHashArtistAndTitle
to define a functionIsInHashSet
.package SongUtil; import SongLib; import SongHashArtistAndTitle; import Containers; fn IsInHashSet( s: SongLib.Song, h: Containers.HashSet(SongLib.Song)*) -> bool { return h->Contains(s); }
-
Package
SongHashAppleMusicURL
defines a different implementation ofHashable
forSongLib.Song
than packageSongHashArtistAndTitle
.package SongHashAppleMusicURL; import SongLib; impl SongLib.Song as Hashable { fn Hash[self: Self]() -> u64 { ... } }
-
Finally, package
Trouble
importsSongHashAppleMusicURL
, creates a hash set, and then calls theIsInHashSet
function from packageSongUtil
.package Trouble; import SongLib; import SongHashAppleMusicURL; import Containers; import SongUtil; fn SomethingWeirdHappens() { var unchained_melody: SongLib.Song = ...; var song_set: auto = Containers.HashSet(SongLib.Song).Make(); song_set.Add(unchained_melody); // Either this is a compile error or does something unexpected. if (SongUtil.IsInHashSet(unchained_melody, &song_set)) { Print("This is expected, but doesn't happen."); } else { Print("This is what happens even though it is unexpected."); } }
The issue is that in package Trouble
, the song_set
is created in a context
where SongLib.Song
has a Hashable
implementation from
SongHashAppleMusicURL
, and stores unchained_melody
under that hash value.
When we go to look up the same song in SongUtil.IsInHashSet
, it uses the hash
function from SongHashArtistAndTitle
which returns a different hash value for
unchained_melody
, and so reports the song is missing.
Background: This post discusses the hashtable problem in the context of Haskell, and this 2011 Rust followup discusses how to detect problems at compile time.
In Swift an implementation of an interface, or a "protocol" as it is called in Swift, can be provided in any module. As long as any module provides an implementation, that implementation is used globally throughout the program.
In Swift, since some protocol implementations can come from the runtime environment provided by the operating system, multiple implementations for a protocol can arise as a runtime warning. When this happens, Swift picks one implementation arbitrarily.
In Carbon, we could make this a build time error. However, there would be nothing preventing two independent libraries from providing conflicting implementations. Furthermore, the error would only be diagnosed at link time.
The undesirable result of incoherence is that the interpretation of source code changes based on imports. In particular, imagine there is a function call that depends on a type implementing an interface, and two different implementations are defined in two different libraries. A call to that function will be treated differently depending on which of those two libraries are imported:
- If neither is imported, it is an error.
- If both are imported, it is ambiguous.
- If only one is imported, you get totally different code executed depending on which it is.
Furthermore, this means that the behavior of a file can depend on an import even if nothing from that package is referenced explicitly. In general, Carbon is avoiding this sort of context sensitivity. This context sensitivity would make moving code between files when refactoring more difficult and less safe.
One possible approach would be to bind interface implementations to a value at
the point it was created. In the example above, the
implementation of the Hashable
interface for Song
would be fixed for the
song_set
HashSet
object based on which implementation was in scope in the
body of the SomethingWeirdHappens
function.
This idea is discussed briefly in section 5.4 on separate compilation of WG21 proposal n1848 for implementing "Indiana" C++0x concepts (1, and 2).
This has some downsides:
- It is harder to reason about. The behavior of
SongUtil.IsInHashSet
depends on the dynamic behavior of the program. At the time of the call, we may have no idea where theHashSet
argument was created. - An object may be created far from a call that has a particular interface requirement, with no guarantee that the object was created with any implementation of the interface at all. This error would only be detected at runtime, not at type checking time.
- It requires more data space at runtime because we need to store a pointer to the witness table representing the implementation with the object, since it varies instead of being known statically.
- It is slower to execute from dynamic dispatch and the inability to inline.
- In some cases it may not be feasible to use dynamic dispatch. For example, if the return type of an interface method involves an associated constant, we might not know the calling convention of the function without knowing some details about the value of that constant.
As a result, this doesn't make sense as the default behavior for Carbon based on its goals. That being said, this could be a feature added later as opt-in behavior to either allow users to reduce code size or support use cases that require dynamic dispatch.
Carbon could alternatively provide some kind of manual disambiguation syntax to resolve problems where they arise. The problems with this approach have been considered in the context of Rust.
A specific example of this approach is called scoped conformance, where the conflict resolution is based on limiting the visibility of implementations to particular scopes. This hasn't been implemented, but it has the drawbacks described above. Depending on the details of the implementation, either:
- there are incompatible values with types that have the same name, or
- it is difficult to reason about the program's behavior because it behaves like dynamic implementation binding (though perhaps with a monomorphization cost instead of a runtime cost).
In addition, this can create unsoundness when combined with dynamic downcasts and a more complex, less predictable implementation model as discussed in Swift. This approach would be particularly complex in Carbon due to supporting impl specialization.