We can use the type erasure pattern to combine both generic type parameters and associated types to satisfy both the compiler and our flexibility goals.
We will need to create three discrete types in order to satisfy these constraints. This pattern includes an abstract base class, a private box class, and finally a public wrapper class. This same pattern, as diagramed below, is even used in the Swift standard library.
The first step of the process is to create an abstract base class. This base class will have three requirements:
Row
protocol.Model
that serves as Row
’s associated type.This class will not be used directly, but instead subclassed in order to bind the generic type constraint to our protocol’s associated type. We’ve marked this class private
as well as by convention prefixing it with an _
.
Next we create a private
Box class with these requirements:
_AnyRowBase
.Concrete
that itself conforms to Row
.Concrete
for later usage.Row
protocol function calls to the stored Concrete
instance.This class is referred to as a Box class, because it holds a reference to our concrete implementer of the protocol. In our case this would be a FileCell
, FolderCell
or DetailFileCell
all of which implement Row
. We receive the Row
protocol conformance from our super class _AnyRowBase
and override each function by trampolining the call over to the concrete class. Finally, this class serves a conduit to connect our concrete class’s associated type with our base classes generic type parameter.
With our private implementation details in place, we need to create a public interface for our type erased wrapper. The naming convention used for this pattern is to prefix Any
in front of the protocol you’re wrapping, in our case AnyRow
.
This class has the following responsibilities:
Row
protocol.Model
that serves as Row
s associated type.Row
protocol.private
Box _AnyRowBase<Model>
.Row
function call along to the Box.This final piece of the puzzle performs the actual type erasing. We supply the AnyRow
class with a concrete implementer of Row
(i.e. FileCell
) and it erases that concrete type allowing us to work with simply any adopter of Row
with matching associated types (i.e. AnyRow<File>
).
Notice that while our concrete implementer is a property of type _AnyRowBase<Model>
, we have to wrap it up in an instance of _AnyRowBox
. The only requirement on _AnyRowBox
’s initializer is that the concrete class implements Row
. This is where the actual type easement occurs. Without this layer in our stack we’d be required to supply the associated type Model
to _AnyRowBase<Model>
explicitly; and we’d be back to square one.
The biggest benefit to this process is all the messy boilerplate is an implementation detail. We are left with a relatively simple public API. Let’s revisit our original goals that are now possible with our type erased AnyRow<Model>
.
One important thing to note is we haven’t lost all of the conveniences and safety of strong typing. With Swift type checker still helping us out we cannot hold an array of just any AnyRow
, our Model
type must remain consistent.
This differs from how other more loosely typed languages such as Objective-C would handle the situation. The following is perfectly valid in Objective-C:
Swift, on the other hand, requires our array to be homogeneous around our protocol’s associated type. If we attempt the same line of code in Swift
we’re presented with an error:
This is a good thing; we’re allowed enough flexibility to work with multiple types conforming to Row
but we cannot be bitten by receiving a type we did not expect.
Assembling all the pieces required in the type erasure pattern can be overwhelming at first. Fortunately, it’s a formulaic process that will not differ based on your protocol. It’s such a systematic process that the Swift standard library may very well do this for you at some point. See the Swift Evolution’s Completing Generics Manifesto
To explore type erasure concepts in a Swift Playground, check out our accompanying Type Erasure Playgrounds:
https://www.bignerdranch.com/blog/breaking-down-type-erasures-in-swift/
Breaking Down Type Erasure in Swift
原文:https://www.cnblogs.com/feng9exe/p/10524612.html