software = science + art + people
2008-08-19
This is part 3 of a series. You can read part 2 as well.
We want all the encapsulation and data hiding benefits that interfaces provide. We want to be able to version our interfaces so consumers can depend on them reliably, but we don’t want the producer and consumer of an interface to have to coordinate tightly. We don’t want the producer of an interface to have to version so often that there’s a built-in disincentive to follow best practice. And we want all the compiler and IDE benefits that early binding typically offers to a programmer.
I claim that no current solution really provides all of this — not COM, not SOAP-based web services, not late-bound REST web services.
Fear not.
This solution could be built on top of COM, RPC-over-soap-style web services, or a RESTful service interface more analogous to document-oriented web services. Other environments such as CORBA/EJB may also be candidates, though I am less familiar with the details there.
Most SOAP comm pipelines get a remote object and deserialize it to a tightly bound object type in a single step, using a type cast as a runtime check that the remote source meets the calling code’s expectations. Such code would have to change so a remote object is fetched and deserialized in an initial step, and subsequently, the standard cast is replaced with a function that creates a wrapper object from the local interface if compatibility tests pass.
[caption id=”attachment_46” align=”alignnone” width=”128” caption=”TryCast Pseudocode”][/caption]
In COM code, the analogous initial step must return an IUnknown; the second step consists of composing the semantic union of all interfaces the IUnknown supports, and then using that überinterface as the basis for compatibility testing. Since IUnknown does not support enumeration, the semantic union of all interfaces in an IUnknown would require a list of possible IIDs to perform a series of QueryInterface calls, or a low-level analysis of the object’s vtable.
In a RESTful document-oriented web service, a URL returns an xml document that describes an arbitrary object using structural elements that do not vary across returned object type. For example, instead of
Dragon’s Egg Stephen King </book></code></blockquote>
you have
<prop name=”title” type=”string”>Dragon’s Egg</prop><prop name=”author”>Stephen King</prop>
or something similar. This conveys the object’s semantic constraints along with its data, much like sending a table definition along with a tuple in response to a DB query. The initial step of deserialization constructs a generic object; the second step tests compatibility against the semantic constraints embedded directly in the document and constructs an instance of a wrapper class on success.
It’s important to distinguish between read-only and read-write usage patterns in this mechanism. Consumers of an interface that only intend to display data are infinitely backward compatible if the runtime check for semantic compatibility passes, regardless of the version numbers/guids in play under a given scenario, because the wrapper classes depend on an interface mapping that’s generated dynamically at runtime. However, if a consumer of an object wants to update its state at the source, the wrapper class must contain every property that the provider will require — or else the provider must set such properties either before serving the object or when the update is requested. Using wrapper classes rather than the traditional generated SOAP stubs is an important element of this mechanism because this allows mods to objects that a client does not fully understand.
[caption id="attachment_55" align="alignnone" width="128" caption="New Approach - Pros and Cons"][/caption]
Comments-
-
Decoupling Interfaces As Versions Evolve, Part 1 « Codecraft, 2013-02-21:
[...] look at some approaches to that goal, and discuss why they still leave me unsatisfied. In part 3, I’ll offer my own [...]
Decoupling Interfaces as Versions Evolve, Part 2 « Codecraft, 2013-02-21:
[...] is part 2 of a series. You can read part 1 and part 3 as [...]