Difference between revisions of "Integration and Interoperability Facilities Framework: Client Libraries Framework"
(→Additional Support) |
Andrea.manzi (Talk | contribs) (→Distribution) |
||
Line 18: | Line 18: | ||
<artifactId>common-gcore-clients</artifactId> | <artifactId>common-gcore-clients</artifactId> | ||
<version>...</version> | <version>...</version> | ||
− | <scope>compile</ | + | <scope>compile</scope> |
</dependency> | </dependency> | ||
</source> | </source> |
Revision as of 16:21, 23 May 2012
gCube includes client libraries for many of its services and defines a general model for their design. The model requires that all libraries offer a common set of capabilities and adopt uniform patterns for the design of their APIs, regardless of service semantics and technology stacks. The model, however, does not indicate how capabilities and patterns should be implemented, nor does it mandate low-level API details.
The client library framework supports the implementation of client libraries which comply with the model. Through code sharing, the framework reduces development costs for client libraries and ensures the consistency and correctness of their implementations.
In this document, we assume familiarity with the design model and illustrate how the framework can be used to develop a model-compliant client library for a hypothetical foo
service.
Contents
Distribution
The framework is layered across as a set of components, all of which are available in our Maven repositories as artifacts in the org.gcube.core
group.
common-clients is the top layer of the framework and comprises classes and interfaces that do not depend on particular technology stacks. In this sense, common-clients
is as general as the design model. Lower layers of the framework adapt common-clients
to specific stacks. At the time of writing, gCore
is the dominant technology stack for gCube services and their clients. common-gcore-clients is thus the only available specialisation of common-clients
.
We assume accordingly that foo
is a gCore service, i.e. a JAX-RPC Java service that can be deployed in one or more gCore
containers on some gCube hosting nodes. We also assume that the client library for foo
is developed as a Maven project, in line with system recommendations. To use the framework, the library declares a compile-time dependency on common-gcore-clients
in its POM, as follows:
<dependency> <groupId>org.gcube.core</groupId> <artifactId>common-gcore-clients</artifactId> <version>...</version> <scope>compile</scope> </dependency>
This dependency brings common-gcore-clients
and its transitive dependencies, including common-clients
, on the compile-time classpath of the library. The version will vary over time and is 2.0.0
at the time of writing.
The library depends also on the stub library of foo
, which we also assume available as a Maven artifact, e.g.:
<dependency> <groupId>org.gcube.samples</groupId> <artifactId>foo-stubs</artifactId> <version>...</version> <scope>compile</version> </dependency>
Overview
We consider first the requirements that the model raises against client libraries. This illustrates the challenges faced by client libraries to achieve compliance with the model, hence the likelihood of variations in style and quality across their implementations. We then overview the support offered by the framework towards meeting those challenges in a consistent and cost-effective manner.
Implementation Requirements
The design model for client libraries mandates the use of service proxies. The library represents foo
with an interface Foo
and its default implementation DefaultFoo
. Foo
defines methods that correspond to the remote operations of foo
endpoints, and DefaultFoo
implements the methods against the lower-level API of foo
stubs.
For example, if FooPortType
is the type of foo
stubs and bar()
one of their String
-valued methods, the proxy pattern maps onto code of this form:
public interface Foo { String bar() throws ...; } public class DefaultFoo implements Foo { public String bar() throws ... { ...FooPortType endpoint... try { return endpoint.bar(); } catch(...) { //fault handling } }
In itself, the pattern is straightforward. Some complexity may arises from the design requirements of particular Foo
methods, including particular types inputs or outputs (e.g. e.g. streams)), faults with diverse semantics (e.g. outages vs. contingencies), and particular invocation semantics (e.g. asynchronous)). The framework offer limited support here, as the design directives provided by the model do not require it on average. Where they do, the model indicates dedicated gCube libraries that provide it (e.g. the streams library, the scope library, or the security library). The framework does include the classes and interfaces upon which its directives are based, however. We discuss these components and their placement within the framework here.
Arguably, the strongest demand that the model makes on the client library concerns how Foo
proxies bind to service endpoints. The requirement is for two binding modes:
- in direct mode, the proxies obtain the address of given service endpoints from clients and execute all their methods against those endpoints;
- in discovery mode, the proxies identify service endpoints from queries to gCube discovery services;
Implementing direct mode is fairly simple, as clients provide all the binding information. They model addresses as W3CEndpointReference
s or - depending on wether foo
is a stateless or stateful service - as (host, port)
pairs or (host, port, key)
triples. As stubs APIs for gCore services model addresses as EndpointReferenceType
s, the library is required to implement address conversion and address validation. Though conceptually simple, the task is error-prone and sufficiently boilerplate to call for reuse through the framework.
Implementing discovery mode is significantly more complicated, as the proxies are responsible for using query results in a fault-tolerant and optimised manner. The model requires that the library implements binding and caching strategies which depend on correct handling of a variety of different fault types. Queries must be value objects that hide the lower-level idioms of query formulation and submission required by the gCube discovery services.
Since the two modes are markedly different, combining them in a single proxy implementation presents its own challenges. In particular, it becomes difficult to implement Foo
’s methods uniformly, regardless of the binding mode of proxy instances. Lack of homogeneity extends to proxy configuration and threatens the overall testability of the code. Solutions to these problems are likely to vary in style and quality across client libraries.
Framework Support
We now give a tour of the support offered by the framework towards meeting the implementation challenges discussed above. We expand on the role and use of individual framework components in later sections.
The key contribution of the framework comes in the form of ProxyDelegates
, i.e. components that know how to make calls in a given mode on behalf of proxies. The idea is that the library defines explicit Call
objects and its proxies pass them to the delegates for execution.
With this pattern, Foo
proxies can be implemented as follows:
public class DefaultFoo implements Foo { private ProxyDelegate<FooPortType> delegate; public void bar() throws ... { Call<FooPortType,String> barCall = ... try { delegate.make(barCall); } catch(...) { //fault handling } ... }
Call<c/ode>s are anonymous implementations of a simple callback interface:
Call<FooPortType,String> barCall = new Call<FooPortType,String>() { @Override public String call(FooPortType endpoint) { return endpoint.bar(); }}
We discuss <code>Calls in more detail here.
Delegates make the callback above, providing the required stub instance fully configured with the address of the target service endpoint, the scope associated with the current thread, and any other call-specific information. Foo
proxies need not concern themselves with how the delegate discovers and/or binds to endpoints. They can implement their methods uniformly against the delegate. We discuss ProxyDelegate</code>s in more detail here.
Of course, delegates need to be configured to act on behalf of Foo
proxies. The main piece of configuration is a Plugin
object that implements an interface of callback methods. The delegates will consult the plugin to obtain information and services which are specific to theclient library. They will use this information to adapt their binding strategies to foo
endpoints.
public class FooPlugin implements Plugin<FooPortType,Foo> { ... }
Plugin
s are thus the main point of interface between the framework and the client library. We discuss their callbacks in detail here.
Besides Plugin
s, delegates need configuration specific to the mode in which they are to operate. Delegates that operate in direct mode needs given endpoint addresses, and delegates that operate in discovery mode need queries. Some of the required configuration is provided by Foo
clients, other is be provided by the client library.
Building and configuring delegates does not need to fall upon the client library either. The library can use builders provided by the framework instead, a StatelessBuilder
if foo
is stateless and a StatefulBuilder
if foo
is stateful. The library needs only to create these builders on behalf of its clients, ideally from a static factory method that can be conveniently imported by clients. Assuming a a stateless foo
for example, the library can expose builders as follows:
public class FooProxies { private static final FooPlugin plugin = new FooPlugin(); public static StatelessBuilder<Foo> foo() { return new StatelessBuilderImpl<FooPortType,Foo>(plugin); }}
Here, the library creates builders with its Plugin
. The builders will then:
- gather the required configuration from the clients, using a fluent and statically typed API;
- create and configure a delegate with the
Plugin<code> and the configuration provided by clients. Different forms of configurations result in delegates that work in direct or in discovery mode;
- collaborate with the <code>Plugin to give back to clients
Foo
proxies configured with the delegate;
For example, library clients may use the StatelessBuilder
above as follows:
import static ...FooProxies.*; ... Foo proxy = foo().at(“acme.org”,8080).build();
Since the client is providing the address of a given endpoint here, the builder creates a Foo
proxy that uses a delegate which makes calls in direct mode to that endpoint. On the other hand, if the client uses the DSL as follows:
Foo proxy = foo().build();
the builder creates a Foo
proxy that uses a delegate which makes calls in discovery mode. Thus clients are fluently driven towards the proxies they need, and the library can implement its proxies ignoring configuration and binding mode issues.
The builders can also gather additional configuration required by the model (e.g. timeouts), as well as configuration which is specific to the client library. We discuss these possibilities in detail here.
If foo
is stateful, the DSL of StatefulBuilder
s makes room for the configuration of instance queries. Again, the framework provides StatefulQuery
s for foo
instances and the client library needs only to customise the queries and return them to clients. For example:
public class FooProxies { private static final FooPlugin plugin = new FooPlugin(); ... public static StatefulQuery name(String name) { StatefulQuery query = new StatefulQuery(plugin); query.addCondition(“//Name”,name); return query; }}
Here the library exposes queries for service instances that verify a given condition, using XPath to reach within the instance descriptions published within the system. Clients can then embed queries in the DSL of builders, e.g. as follows:
import static ...FooProxies.*; ... Foo proxy = foo().matching(name(“..”)).build();
We discuss queries in more detail here.
Calls
A call to a foo endpoint is represented in the framework as an object of type Call
, where Call
is an interface defined in common-clients
as follows:
package org.gcube.common.clients; public interface Call<S, R> { R call(S endpoint) throws Exception; }
The type parameters describe, respectively, the service stubs and the values returned by the call. Thus a Call
to foo
endpoints that returns String values
is typed as Call<FooPortType,String>
.
For its simplicity, Call
lends itself to anonymous implementations within proxy classes, e.g.:
public class DefaultFoo implements Foo { ... @Override public void bar() throws ... { Call<FooPortType,String> barCall = new Call<FooPortType,String>() { @Override public String call(FooPortType endpoint) { return endpoint.bar(); }; ... } }
Alternatively, Call
s can be returned from factory methods of a dedicated class (e.g. FooCalls
), though the approach is verbose and should be pursued only when implementations are substantial. This should rarely be the case, however, since Call
s are expected to do little more than delegate to stub instances. In particular, Call
s should not:
- include code that converts inputs and outputs between the stub API and proxy API. The task may fall within the scope of
Call
s but it is a better practice to factor conversion code outsideCall
classes, and in fact proxy classes, where it can also be more easily unit tested. Wether the conversion is performed by static methods of some utility class (e.g.SomeStubType Utils.convert(SomeProxyType)
) or in more object-oriented fashion (e.g.SomeStubType SomeProxyType.toStub()
),Call
s should limit themselves to invoke conversion code before and after delegation;
- engage in failure handling and let error propagate outside the scope of the
call()<code> method, which is intentionally designed to throw any <code>Exception
. Failures should be handled instead in proxy classes, asCall
s are passed toProxyDelegate
s for execution, as we discuss next;
- set timeouts on stubs instances, or else proxy them in order to set a scope on the outgoing calls. As we shall see, these services are offered transparently by the framework.
Delegates
ProxyDelegate
s implement a strategy for making Call
s to foo
endpoints on behalf of proxies. Strategies are encapsulated within delegates and proxies need not concern with their details. The ProxyDelegate
interface is thus defined as follows:
package org.gcube.common.clients.delegates; import ... public interface ProxyDelegate<S> { <V> V make(Call<S, V> call) throws Exception; ProxyConfig<?,S> config(); }
The type parameter describes the service stubs used in Call
s. Thus a ProxyDelegate
for Foo
proxies is typed as ProxyDelegate<FooPortType>
.
The config()
method of the interface exposes the configuration of the delegate, an object of type ProxyConfig
defined as follows:
package org.gcube.common.clients.config; import ....; public interface ProxyConfig<A,S> { ProxyPlugin<A,S,?> plugin(); int timeout(); void addProperty(String name, Object value); void addProperty(Property property); boolean hasProperty(String property); <T> T property(String property, Class<T> clazz) throws IllegalStateException, IllegalArgumentException; }
Thus delegates expose three pieces of configuration:
- the
Plugin
of the client library, here under the more generic interfaceProxyPlugin
under which it is known incommon-clients
. As we discuss in more detail later, plugins provide delegates with the information they require to adapter their strategy to the target services. This piece of configuration is typically of less relevance to proxies, which normally do not need to access library-specific information and, when they do, can always obtain them through direct means (e.g. exposing singleton plugins as constants, or returning non-singleton plugins from factory methods in utility classes);
- the timeout of calls. As we will see later, timeouts may be either defined by defaults in the framework or the client library, or they may be explicitly configured by clients at proxy creation time. Like
Plugin
s, timeouts are set directly byProxyDelegate
s and remain transparent to proxies;
- zero or more
Property
s, i.e. arbitrary named objects that capture the custom configuration of proxies. When we discuss builders, we show how client libraries can define defaults for such properties as well as accept clients overrides. Accordingly, this is the only piece of configuration that relates directly to proxies rather thanProxyDelegate
s. The delegates will ignore its meaning and will not use it, but they will make it conveniently available to proxies as part of their configuration. TheProxyConfig
interface allows clients to add properties in a couple of different forms, inspect the configuration for the existence of given properties, and access given properties under their specific type.
Notice that, since ProxyDelegate
s carry the custom configuration of proxies, proxies are fully configured with delegates. This allows proxy classes to resolve initialisation in a minimal manner:
public class DefaultFoo implements Foo { private final ProxyDelegate<FooPortType> delegate; public DefaultFoo(ProxyDelegate<FooPortType> delegate) { this.delegate=delegate; }}
The key method of ProxyDelegate
is make()
, which proxies invoke to delegate the execution of their Call
s. The method is parametric in the output type of Call
s, i.e. can be passed any Call
that expects a stub instance of the right type.
The method is executed differently by different implementations of the interface. Unsurprisingly, the implementations mirror the binding model required by the design model for client libraries. DirectDelegate
makes Call
s in direct mode, and DiscoveryDelegate
makes Call
s in discovery mode. Different delegates require different configurations too. DirectDelegate
expects an EndpointConfig
with a given endpoint address, while DiscoveryDelegate
expects a DiscoveryConfig
with a Query
and an EndpointCache
of endpoint addresses. Caches are used internally by DiscoveryDelegate
s and client libraries need not be aware of their existence (though we will see later on that they can provide specific cache implementations, if they wish). We discuss queries in detail in a later section.

All delegates, however, perform make the following callbacks on the Plugin
found in their configuration:
- given an address of a
foo
endpoint they ask the plugin to resolve that address in afoo
stub instance, which they then pass toCall
s;
- given a failure thrown by
Call
s, the ask the plugin to convert that fault into an equivalent fault to rethrow to proxies frommake()
.
We show in later sections how Plugin
s implement these callbacks, and the implications of fault conversion for the overall fault handling strategy of client libraries.
Builders
ProxyDelegates
and proxies can be created and configured with builders provided by the framework. StatelessBuilder
s are suitable for proxies that target stateless services, while StatefulBuilder
s serve proxies that target stateful services. Both interfaces are defined in common-gcore-clients
, where they adapt more general facilities defined in common-clients
.
Client libraries construct builders with their Plugin
s and then pass them to their clients, typically from factory methods that can be statically imported, e.g.:
public class FooProxies { private static final FooPlugin plugin = new FooPlugin(); public static StatelessBuilder<Foo> foo() { return new StatelessBuilderImpl<FooPortType,Foo>(plugin); } }
Clients use builders to construct sentences of an embedded Domain Specific Language (DSL) suitable for proxy creation and configuration. Sentence construction progresses through a number of method invocations, each of which returns the same builder implementation but under different interfaces that represent the different stages of a partially built sentence. In particular, the interface exposed by the builder at each step allows only the invocation of methods that take clients to the next possible steps. Accordingly, clients are guided by the completion function of their IDEs (as well as the guard of the typechecker) towards well-formed sentences. For example:
import static ...FooProxies.*; import static java.util.concurrent.TimeUnit.*; ... Foo proxy = foo().at(“acme.org”,8080).withTimeout(10,SECONDS).build();
Here, foo()
returns a StatelessBuilderImpl
under an interface which is suitable for the start of the sentence, i.e. StatelessBuilder
. One of the available methods at this stage is at(String,int)
, and invoking it returns the builder under a second interface that allows clients to invoke the method withTimeout(int, TimeUnit)
. Calling this latter method, leaves the client with less options to continue the sentence (e.g. it cannot invoke at()
again). One option allows the client to end the sentence by invoking the method build()
, and the client chooses it. The option is available because the builder has gathered all the information required to create a ProxyDelegate
which can work with the configuration provided so far by the client. The builder can then consult the Plugin
to obtain a DefaultFoo
instance configured with the ProxyDelegate
, which the builder can then relay back to the clients.
Under this fluent interface, clients can use StatelessBuilder<code>s to produce a number of sentences, including:
at(String,int).build(); at(URI).build(); at(URL).build(); at(String,int).withTimeout(int,TimeUnit).build(); at(URL).withTimeout(int,TimeUnit).build(); at(URI).withTimeout(int,TimeUnit).build(); at(URL).with(Property).build(); withTimeout(int,TimeUnit)..build(); with(Property).with(“...”,Object).withTimeout(int,TimeUnit).build(); build(); ...
and many others. The grammar of the DSL supported by <code>StatelessBuilders is in fact the following:
<clause> = <first>.<final> | <final> <first> = <address>.<second> | <property>.<first> | <second> <second> = <timeout>.<final> | <final> <address> = at(String,int)|at(URL)|at(URI) <final> = build() <timeout> = withTimeout(int,TimeUnit) <property> = with(Property) | with(String, Object)
Thus Property
s may be optionally specified at the beginning of sentences, optionally followed by one endpoint address and/or a timeout. If an address is specified, the builder creates a ProxyDelegate
that operates in direct mode, otherwise it creates a ProxyDelegate
that operates in discovery mode.
As discussed above, Property
s are used to capture library-specific configuration. Client libraries may expose them as constants, return them from factory methods, and even provide their own DSL extensions to create complex Property
s that clients can then inject in the core DSL defined above. Default Property
s may also be passed to builders by client libraries, at builder creation time. In what follows, for example, the library defines factory methods for two properties and sets a default on the first. Clients may set both in their configuration sentences:
public class FooProxies { private static final FooPlugin plugin = new FooPlugin(); public static final String P1 = “...” public static final String P2 = “...” private static final Property P1(boolean val) = new Property(p1,val); private static final Property P2(String val) = new Property(p2,val); private static final Property[] defaults = new Property[] {p1(false}; public static StatelessBuilder<Foo> foo() { return new StatelessBuilderImpl<FooPortType,Foo>(plugin,defaults); } } ... Foo foo = foo().with(p1(false)).with(p2(“...”).build();
Similar considerations can be repeated for StatefulBuilder
s, which support a DSL with the following grammar:
<clause> = <first>.<final> | <final> <first> = <address>.<second> | <query>.<second> | <second> <second> = <timeout>.<final> | <property>.<second> | <final> <final> = build() <query> = matching(StatefulQuery) <address> = at(String,String,int)| at(String,URL) | at(String,URI) | at(W3CEndpointReferenceType) <timeout> = withTimeout(int,TimeUnit) <property> = with(Property) | with(String, Object)
Besides the different options to build instance addresses, here the choice between address (hence direct mode) or queries (hence discovery mode) is clearer. Arbitrarily many Property
s may specified after this choice. The basic implementation of StatefulBuilder
s is StatefulBuilderImpl
.
Plugins
Plugin
s expose the information and services that allow framework components to act on behalf of specific client libraries. Delegates, builders, and queries all solicit information, often in overlapping subsets, from Plugin
s.
Plugin
is an interface defined in common-gcore-clients
as an extension for gCore services of a more generic ProxyPlugin
interface defined in common-clients
. The two interfaces are defined as follows:
package org.gcube.common.clients.delegates; import ... public interface ProxyPlugin<A,S,P> { String name(); String namespace(); Exception convert(Exception fault, ProxyConfig<?,?> config); S resolve(A address, ProxyConfig<?,?> config) throws Exception; P newProxy(ProxyDelegate<S> delegate); } package org.gcube.common.clients.gcore.plugins; import ...; public interface Plugin<S,P> extends ProxyPlugin<EndpointReferenceType,S,P> { String serviceClass(); String serviceName(); }
The client library for foo
implements directly Plugin
. With the callbacks name()
, serviceName()
, serviceClass()
, and namespace()
the library describes foo
to the framework. The Implementations are straightforward once it is noted that gCube services can encompass multiple port-types, and that port-types correspond to services in the terminology adopted by the design model for client libraries. In particular, serviceName()
and serviceClass()
should return standard gCube coordinates for foo
, while name()
should return the name of the port-type that implements foo
. Equally, namespace()
should returns the namespace declared in the WSDL of that port-type.
The resolve()
callback returns instances of foo
stubs configured with the address parameter, as simply as follows:
public FooPortType resolve(EndpointReferenceType address, ProxyConfig<?,?> config) throws Exception { return new FooServiceAddressingLocator().getFooTypePort(address); }
The implementation requires standard interaction with factory classes of the stubs API. The ProxyConfig
parameter may be used by the library to translate configuration parameters into stub parameters, though this will be rarely needed. Timeout is one such property, but it is set transparently by the framework. Similarly, the library should not set call scopes on stub instances, as again the framework takes care of it.
The newProxy()
callback returns Foo
instances configured with ProxyDelegate
s, and is easily implemented with the approach to proxy configuration discussed above:
public Foo newProxy(ProxyDelegate<FooPortType> delegate) { return new DefaultFoo(delegate); }
The implementation of the convert()
callback can be slightly less immediate, and we leave it for a later discussion.
Queries
Queries are used by ProxyDelegate
s that operate in discovery mode to retrieve addresses of service endpoints to which Call
s should be directed. A query returns multiple results if the service is replicated within the system, i.e. if there are multiple endpoints that can process the Call
s. As described in the design model, this multiplicity is key to the fault-tolerant strategy of ProxyDelegate
s that operate in discovery mode.
The generic interface of queries is defined in common-clients
as follows:
package org.gcube.common.clients.queries; import ...; public interface Query<A> { List<A> fire() throws DiscoveryException; @Override public boolean equals(Object query); @Override public int hashCode(); @Override public String toString(); }
The type parameter described the addresses of service endpoints, which are the results expected from executing the query. The parameter is instantiated to EndpointReferenceType
by the implementations of the interface which are provided in common-gcore-clients
, as we discuss below.
In line with the design model for client libraries, the interface emphasises that queries are expected to be value objects, i.e. implement hashcode()
and equals()
towards state equivalence. This is because the framework uses queries as keys into caches of service endpoint addresses, hence their equivalence is important to the correct use of the caches. The interface also emphasises that queries should have a textual description, as the framework will invoke toString()
to log them on behalf of client libraries.
The key method in the interface is fire()
, which returns the results of the query. Notice that the framework is not concerned with how queries are executed, only in their results. Encapsulating the details of query execution makes the framework resilient to the evolution of gCube discovery services.
On the other hand, client libraries are unconcerned with the Query
interface, which is entirely framework-facing. Rather, libraries work with specific implementations of the interface provided by common-gcore-clients
: StatelessQuery
for stateless services and StatefulQuery
for stateful services. Both classes are instantiated with a Plugin
, where queries find enough information to identify endpoints of the target service, e.g.:
FooPlugin plugin = new FooPlugin(): StatefulQuery query = new StatefulQuery(plugin);
Client libraries may further customise the queries to restrict the target service endpoints. StatelessQuery
and StatefulQuery
support query customisation through the notions of conditions and result matchers, which they inherit from AbstractQuery
, a partial implementation of the Query
interface included in common-clients
.
Conditions are simple pairs of String
s which can be added to queries to further characterise the target service endpoints (cf. AbstractQuery.addProperty(String,String)
) The first String
identifies an abstract property of service endpoints, and the second String
specifies a value for this property. The framework does not mandate the syntax of conditions, i.e. push towards client libraries any dependency on the low-level capabilities of the discovery mechanisms used within the system. At the time of writing, the system requires that properties are XPath expressions into XML descriptions of service endpoints that are published within the system, e.g:
StatefulQuery query = ...
query.addCondition(“//Name”,”...”);
The framework, on the other hand, considers the state of queries to be entirely defined by their conditions, and implements the requirement for query equivalence accordingly. This means that client libraries need only to create queries and add conditions to them, without worrying about internal requirement for state equivalence of queries.
Besides adding conditions, client libraries can also configure ResultMatcher
s on queries (cf. AbstractQuery.setMatcher(ResultMatcher)
). ResultMatcher
s are used to filter out query results before these are used by the framework. Client libraries can use them whenever conditions alone are not sufficient to characterise the service endpoints. ResultMatcher
is an interface defined in common-clients
as follows:
package org.gcube.common.clients.queries; public interface ResultMatcher<R> { boolean match(R result); }
The type parameter describes the service endpoints and is instantiated to GCUBERunningInstance
for StatelessQuery
s and to RPDocument
for StatefulQuery
s. The match()
method is invoked by the framework and ResultMatcher
s can inspect the service endpoints and return false
whenever they do not match the required conditions, e.g:
StatefulQuery query = ... ResultMatcher<RPDocument> matcher = new ResultMatcher<RPDocument>() { @Override boolean match(RPDocument result) { boolean match = ...result...; return match; }}; query.setMatcher(matcher); 
Typically, StatelessQuery
s and StatefulQuery
s are treated different by client libraries. Since the endpoints of stateless are largely indistinguishable, libraries will rarely need to add conditions or set matchers on StatelessQuery
s. StatelessBuilder
s will thus generate them on behalf of libraries, by default. If needed, however, client libraries can provide their own StatelessQuery
s to builders, e.g.:
StatefulQuery query = ... ... StatelessBuilder<Foo> builder= new StatelessBuilderImpl<FooPortType,Foo>(plugin,query);
In contrast, clients will need to distinguish the instances of stateful services based on some characterise property of their state. The client libraries will then need to generate custom StatefulQuery
s and make them available to clients for embedding in the DSL of StatefulBuilder
s, typically through static methods that clients can statically import. For example:
public static StatefulQuery name(String name) { StatefulQuery query = new StatefulQuery(plugin); query.addCondition(“//Name”,name); return query; } ... Foo proxy = foo().matching(name(“..”)).build();
Failures
The design model specifies how client libraries ought to represent interaction failures, and how their proxies should present them to clients. In particular, the model:
- separates between errors, outages and contingencies, and requires that client libraries represent and reports errors and outages as unchecked
ServiceException
s and contingencies as checkedException
s.
- identifies three common outages,
DiscoveryException
,NoSuchEndpointException
, andIllegalScopeException
, and requires that they are modelled as subclasses ofServiceException
s;
In addition, the model requires that client libraries:
- attempt to recognise which outages and contingencies have an ‘‘unrecoverable'’ semantics for proxies that operate in discovery mode, i.e. induce the proxies to avoid binding to other service endpoints that their queries may have discovered;
- present clients with their own checked
Exception
s for contingencies, rather than exposing them to theException
s with which the same contingencies are modelled by the underlying stack;
if, for example, foo
may raise a FooFault
contingency in its bar
operation, the client library for foo
is required to report the following exception in the interface of its proxies.:
public interface Foo { ... String bar() throws FooException,ServiceException; ... }
where FooException
is a local mapping of the FooFault
thrown by the implementation stack used by the library.
Client libraries find in the org.gcube.common.clients.exceptions
package of common-clients
the ServiceException
s classes identified by the model.
They also find in the framework support towards meeting the implementation requirements raised by the model.
To begin with, in common-gcore-clients
, the framework recognises the standard outages identified by the model from their counterparts in gCore stack.
When ProxyDelegate
s encounter these faults they automatically convert them in the corresponding ServiceException
s and propagate them to proxies if they are known to be unrecoverable (e.g. DiscoveryException
s) or if the prove to be in practice.
The framework also allows allows client libraries to concentrate in their Plugin
s the mapping between the Exception
s that model contingencies locally to the libraries and their counterparts in the gCore stack. As we have anticipated above, libraries can implement the convert()
callback of Plugin
s for this purpose, e.g.:
public Exception convert(Exception failure) { if (failure instanceof FooFault) return new FooException(); return failure; }
ProxyDelegate
s will make the callback and report the converted Exception
s to proxies. This is useful for two reasons. The first is that contingencies that are thrown from multiple methods do not need to be converted within each and every methods. Rather, the fault conversion strategy can be conveniently centralised in a singe place.
The second reason relates to a further form of support that the framework provides for fault handling. The framework defines an Unrecoverable annotation in common-clients
that client libraries can use on their Exception
classes to mark them as unrecoverable contingencies, e.g.:
@Unrecoverablepublic class FooException {...}
ProxyDelegate
s recognise Unrecoverable
annotations and act accordingly upon them when working in discovery mode. Thus converting contingencies in the convert()
callback of Plugin
s, rather than within proxy methods, allows client libraries to easily and effectively cooperate with ProxyDelegate
s.
Collectively, the facilities provided by the framework shape the fault handling strategy of client libraries as follows:
- define
Exception
s for service contingencies, marking them withUnrecoverable
where appropriate;
- avoid handling failures in
Call
implementations;
- implement
Plugin.convert()
to perform contingencies conversion;
- catch and re-throw failures within proxy methods as follows:
public class DefaultFoo implements Foo { private ProxyDelegate<FooPortType> delegate; ... public void bar() throws FooException,ServiceException { Call<FooPortType,String> barCall = new Call<FooPortType,String>() { @Override public String call(FooPortType endpoint) { return endpoint.bar(); } }; try { delegate.make(barCall); } catch(FooException e) { throw e; } catch(ServiceException e) { throw e; } catch(Exception e) { throw new ServiceException(e); } ... }
Converted contingencies and ServiceException
s generated by the framework for standard outages need to be explicitly caught and re-thrown. The generic Exception
thrown by ProxyDelegate.make()
needs also to be caught and wrapped in a ServiceException
before being thrown to clients. Notice that it is not possible to perform this catch-all conversions in Plugin.convert()
, as the compiler demands anyway that proxies deal explicitly with the generic Exception
declared in ProxyDelegate.make()
.
Additional Support
@TODO