[swift-evolution] Properties on Default Protocol Implementations

Chris Lattner clattner at apple.com
Mon Jan 11 12:27:12 CST 2016


On Jan 10, 2016, at 8:34 PM, Douglas Gregor via swift-evolution <swift-evolution at swift.org> wrote:
> Default implementations of functions don’t require per-instance state, while adding a stored property via a protocol extension does. Let’s step back to a simpler problem: stored properties in (non-protocol) extensions.
> 
> For classes, where we have object identity, we could have a side table containing the stored properties (keyed on the object’s address). This is how Objective-C’s associated objects work, and it’s a reasonable module for out-of-module stored properties in extensions of classes.
> 
> Getting back to stored properties in protocol extensions, the general feature isn’t implementable without having some mechanism for out-of-module stored properties in extensions of structs and enums, so you can limit it in a few ways:
> 
> 	* Only allow them on class-bound protocols, where there is a reasonable implementation model
> 
> 	* Allow them as default implementations within a protocol (not an extension of a protocol!); a type can conform to that protocol either by providing its own implementation of that property or somewhere where it is reasonable for the default implementation to inject a stored property into that context (e.g., on the primary type, within the same module as the primary type, or on a class).
> 
> Either handles the example brought up in the discussion of abstract base classes.

Hi Doug,

Have you considered this similar-but-different approach?

- Allow extensions on classes (only) within the same module/resilience domain as the class to add stored properties. This would keep them inline in the instance.
- Allow protocols to have stored property declarations, introducing a new “protocol with storage” (PwS) concept.
- Classes can directly conform to a PwS in its definition, or within an extension inside the same module/resilience domain.

Just this would give many of the benefits of a full mix-in programming model.  People could define these protocols, and their local implementation of the type can benefit from them.  It doesn’t support retroactive mixin’ing, but that is probably a good thing.  I’m assuming that we don’t want to allow adding state to structs within a resilience domain, just because I don’t think that is actually a good thing to add to the programming model (other reasonable people will surely disagree).

This base model could then be extended:
- Structs could conform to a PwS in their definition, but not an extension.  We could optionally require the struct to redeclare the properties to improve readability of the struct, but it wouldn’t be required from an implementation perspective.
- Classes could conform to a PwS across resilience boundaries, but wouldn’t get the state: they’d have to implement the storage requirement with a computed property.
- We could introduce an “associated objects” property behavior that makes providing the computed property very straight-forward, using the out of band implementation approach of ObjC.

The advantages of this approach I see are:

1) implementable, always a bonus.
2) keeps predictable performance.  You don’t get out “associated objects” overhead unexpectedly.  All state is always stored inline.
3) retroactive mixins are possible, but explicit.

The primary downside of this approach is that it introduces yet another weird protocol variant with limitations and behaviors, making the model more complicated.

-Chris


More information about the swift-evolution mailing list