For my bachelor thesis[1] (reusable components in multi MediaType rest applications) I invented a way to hide the details of the Resource Representation from the method handler (Resource method in JAX-RS) and wanted to know whether something similar already exists:
Resource methods have access to a DataHandler[2] that wraps the declared Media Type of the data and the DataSource. Users can then request Facades to the data from the DataHandler. The DataHandler has access to a registry of Facade factories.
- Facades provide read-only access to the data
- Facades can depend on other Facades and thus reuse work
- Facades could do:
- Parse the InputStream with a common JSON/XML framework
- Could check whether the data represents a concept like a contact or calendar item, independent from the underlying Media Type (vCard, xCard, portable contacts, iCal, xCal)
- Could provide a transformation to another representation (XML<->JSON, xCard to portable contacts)
- could extract generic informations from different media types: Title, Authors, Updated, Summary
- A Facade (Java Interface) that provides access to the Name of a Contact Resource could be implemented by different classes that could work either on vCard, xCard or Portable Contacts. The resource method does not need to be aware or the original media type of the data.
The concept is powerful because Facades can easily be added without changing existing classes. In JAX-RS the resource Method needs to decide, on which representation of the data it wants to work. With this concept, a resource method could use several different available Facades to access the data.
A sketch of the API:
interface FacadeFactory<T> { T build(DataHandler) }
interface FacadeRegistry {
// Lookup in this map is first done for the full MediaType, then only for
// the Top level media Type and afterwards for */*
Map<MediaType, FacadeFactory>
Object getFacade(DataHandler, Class)
// calls itself recursively for transient dependencies
private hasFacade(DataHandler, Class)
register(FacadeFactory xy, Iterable<MediaType> matchingTypes,
Iterable<Class> requiredDependencyFacades)
))
}
class DataHandler {
private FacadeRegistry
private MediaType
private DataSource // encapsulates e.g. an InputStream
getFacade(Class) // delegate call to FacadeRegistry
hasFacade(Class) // delegate call to FacadeRegistry
}
[1] https://github.com/thkoch2001/bachelor-thesis
[2] The idea is inspired by the DataHandler of the Java activation framework
So does sth. like this already exists? Is the idea sound?
Comparison to slightly similar things:
The JAF's (AWT's) java.awt.datatransfer.Transferable interface is similar, but has no concept of reuse or composition of a DataFlavor by another. It is designed with the needs of a Desktop clipboard in mind. No use of Generics.
It is possible in JAX-RS to get a MessageBodyReader for the creation of another facade. The necessary code to do so however is verbose and every MessageBodyReader would again parse the message body InputStream without reuse of work already done by another MessageBodyReader.