Class AnnotationDrivenProcessFactory
- All Implemented Interfaces:
ProcessFactory,Factory,OptionalFactory
- Direct Known Subclasses:
AnnotatedBeanProcessFactory,StaticMethodsProcessFactory
Process.
The annotations supported are:
DescribeProcess- describes the process functionalityDescribeResult- describes a process resultDescribeParameter- describes a process parameter
- Author:
- jody, aaime
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCerate a process (for the indicated name).protected abstract ObjectcreateProcessBean(Name name) Creates the bean upon which the process execution method will be invoked.getDescription(Name name) Human readable description of the specified processMap of hints (maybe unmodifiable) used by this factory to customize its use.getParameterInfo(Name name) Description of the Map parameter to use when executing.protected abstract DescribeProcessgetProcessDescription(Name name) getResultInfo(Name name, Map<String, Object> parameters) Description of the results returnedgetTitle()Name suitable for display to end user.Human readable title suitable for display for the specified processgetVersion(Name name) Return the version of the processbooleanReturnstrueif this factory is ready for use.protected MethodlookupClipOnRenderingArea(Object targetObject, String methodName) Used to recogniseRenderingProcessimplementations; returns a non null method forRenderingProcess.clipOnRenderingArea(Map).protected MethodlookupCustomizeReadParams(Object targetObject, String methodName) Used to recogniseRenderingProcessimplementations; returns a non null method forRenderingProcess.customizeReadParams(Map, GridCoverageReader, GeneralParameterValue[]).protected MethodlookupInvertGridGeometry(Object targetObject, String methodName) Used to recogniseRenderingProcessimplementations; returns a non null method forRenderingProcess.invertGridGeometry(Map, Query, GridGeometry).protected MethodlookupInvertQuery(Object targetObject, String methodName) Used to recogniseRenderingProcessimplementations; returns a non null method forRenderingProcess.invertQuery(Map, Query, GridGeometry).protected abstract MethodbooleansupportsProgress(Name name) It is up to the process implementors to implement progress on the task, this method is used to see if the process has progress monitoring implementedMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ProcessFactory
getNames
-
Field Details
-
namespace
-
-
Constructor Details
-
AnnotationDrivenProcessFactory
-
-
Method Details
-
getProcessDescription
-
method
-
getTitle
Description copied from interface:ProcessFactoryName suitable for display to end user.- Specified by:
getTitlein interfaceProcessFactory- Returns:
- A short name suitable for display in a user interface.
-
getDescription
Description copied from interface:ProcessFactoryHuman readable description of the specified process- Specified by:
getDescriptionin interfaceProcessFactory- Parameters:
name- the process whose description is to be returned
-
getParameterInfo
Description copied from interface:ProcessFactoryDescription of the Map parameter to use when executing.- Specified by:
getParameterInfoin interfaceProcessFactory- Parameters:
name- the process identifier- Returns:
- Description of required parameters
-
getResultInfo
public Map<String,Parameter<?>> getResultInfo(Name name, Map<String, Object> parameters) throws IllegalArgumentExceptionDescription copied from interface:ProcessFactoryDescription of the results returned- Specified by:
getResultInfoin interfaceProcessFactory- Parameters:
name- the process identifierparameters- the parameters to be used- Throws:
IllegalArgumentException
-
getTitle
Description copied from interface:ProcessFactoryHuman readable title suitable for display for the specified processPlease note that this title is *not* stable across locale; if you want to remember a ProcessFactory between runs please use getName (which is dependent on the implementor to guarantee uniqueness) or use the classname
- Specified by:
getTitlein interfaceProcessFactory- Parameters:
name- the process identifier
-
getVersion
Description copied from interface:ProcessFactoryReturn the version of the process- Specified by:
getVersionin interfaceProcessFactory- Parameters:
name- the process identifier- Returns:
- String version
-
supportsProgress
Description copied from interface:ProcessFactoryIt is up to the process implementors to implement progress on the task, this method is used to see if the process has progress monitoring implemented- Specified by:
supportsProgressin interfaceProcessFactory- Parameters:
name- the process identifier- Returns:
- true if it supports progress monitoring
-
isAvailable
public boolean isAvailable()Description copied from interface:OptionalFactoryReturnstrueif this factory is ready for use. An optional factory may returnsfalsefor now but returnstruelater. However, the converse is not recommended.- Specified by:
isAvailablein interfaceOptionalFactory
-
getImplementationHints
Description copied from interface:FactoryMap of hints (maybe unmodifiable) used by this factory to customize its use. This map is not guaranteed to contains all the hints supplied by the user; it may be only a subset. Consequently, hints provided here are usually not suitable for creating new factories, unless the implementation make some additional garantees.The primary purpose of this method is to determine if an existing factory instance can be reused for a set of user-supplied hints. This method is invoked by
FactoryRegistryin order to compare this factory's hints against user's hints. This is dependency introspection only;FactoryRegistrynever invokes this method for creating new factories.Keys are usually static constants from the
Hintsclass, while values are instances of some key-dependent class. The key set must contains at least all hints impacting functionality. While the key set may contains all hints supplied by the user, it is recommended to limit the set to only the hints used by this particular factory instance. A minimal set will helpsFactoryRegistryto compare only hints that matter and avoid the creation of unnecessary instances of this factory.The hint values may be different than the one supplied by the user. If a user supplied a hint as a
Classobject, this method shall replace it by the actual instance used, if possible.Implementations of this method are usually quite simple. For example if a datum authority factory uses an ordinary datum factory, its method could be implemented as below (note that we should not check if the datum factory is null, since key with null value is the expected behaviour in this case). Example:
Map hints = new HashMap(); hints.put(Hints.DATUM_FACTORY, datumFactory); return hints;- Specified by:
getImplementationHintsin interfaceFactory- Returns:
- The map of hints, or an {@linkplain java.util.Collections.emptyMap() empty map} if none.
-
create
Cerate a process (for the indicated name).Subclasses can control the process using their implementation of:
method(String): must return a non null methodcreateProcessBean(Name): return a bean to use; or null for static methods
- Specified by:
createin interfaceProcessFactory- Parameters:
name- the process identifier- Returns:
- Process implementation
-
lookupInvertGridGeometry
Used to recogniseRenderingProcessimplementations; returns a non null method forRenderingProcess.invertGridGeometry(Map, Query, GridGeometry).Used to look up the method to use for "invertGridGeometry"; if a specific method name is not provided "invertGridGeometry" will be used.
- For null method name "invertGridGeometry" will be used.
- For "execute" method name "invertGridGeometry" will be used.
- For "buffer" method name "bufferInvertGridGeometry" will be used
- Parameters:
targetObject- Target object; may be null for static method lookupmethodName- method to use for "invertGridGeometry"- Returns:
- method to use for RenderingProcess "invertGridGeometry", or null if not a RenderingProcess
-
lookupCustomizeReadParams
Used to recogniseRenderingProcessimplementations; returns a non null method forRenderingProcess.customizeReadParams(Map, GridCoverageReader, GeneralParameterValue[]).Used to look up the method to use for "customizeReadParams"; if a specific method name is not provided "customizeReadParams" will be used.
- For null method name "customizeReadParams" will be used.
- For "execute" method name "customizeReadParams" will be used.
- For "buffer" method name "customizeReadParams" will be used
- Parameters:
targetObject- Target object; may be null for static method lookupmethodName- method to use for "invertGridGeometry"- Returns:
- method to use for RenderingProcess "invertGridGeometry", or null if not a RenderingProcess
-
lookupClipOnRenderingArea
Used to recogniseRenderingProcessimplementations; returns a non null method forRenderingProcess.clipOnRenderingArea(Map).Used to look up the method to use for "clipOnRenderingArea"; if a specific method name is not provided "clipOnRenderingArea" will be used.
- For null method name "clipOnRenderingArea" will be used.
- For "execute" method name "clipOnRenderingArea" will be used.
- For "buffer" method name "bufferClipOnRenderingArea" will be used
- Parameters:
targetObject- Target object; may be null for static method lookupmethodName- method to use for "clipOnRenderingArea"- Returns:
- method to use for RenderingProcess "clipOnRenderingArea", or
nullif not a RenderingProcess
-
lookupInvertQuery
Used to recogniseRenderingProcessimplementations; returns a non null method forRenderingProcess.invertQuery(Map, Query, GridGeometry).Used to look up the method to use for "invertQuery"; if a specific method name is not provided "invertGridGeometry" will be used.
- For null method name "invertQuery" will be used.
- For "execute" method name "invertQuery" will be used.
- For "buffer" method name "bufferInvertQuery" will be used
- Parameters:
targetObject- Target object; may be null for static method lookupmethodName- method to use for "invertQuery"- Returns:
- method to use for RenderingProcess "invertQuery", or
nullif not a RenderingProcess
-
createProcessBean
Creates the bean upon which the process execution method will be invoked.Can be null in case the method is a static one
- Parameters:
name- Name of the process bean- Returns:
- intance of process bean; or null if the method is a static method
-