See: Description
Package | Description |
---|---|
com.caplin.datasrc.enums | |
com.caplin.datasrc.fields |
Provides field management interfaces and classes that represent all the configured fields that
are available.
|
com.caplin.datasrc.interfaces |
Defines the main data interfaces used by DataSource for Java SDK and related products.
|
com.caplin.net.udp |
Provides access to the UDP command interface for receiving and sending UDP messages.
|
com.caplin.transformer.module |
Provides the core interfaces and classes that are required to write a Java Transformer module.
|
com.caplin.transformer.module.datasrc |
Provides the classes used to represent the either an update received for a DataSource object, or
the cached data for a DataSource object.
|
com.caplin.transformer.module.exceptions |
Contains all the exceptions specific to the Java Transformer module.
|
com.caplin.transformer.module.persistence |
Provides access to the Persistence interface supported by the Transformer core module "persistence"
|
com.caplin.transformer.module.pipeline | |
com.caplin.transformer.module.wrappers |
Provides Java classes that wrap around Transformer modules written in C.
|
com.caplin.util.base64 |
Provides Base64 encoding for sending typed objects using DataSource.
|
The Transformer Module SDK for Java provides Java developers with the tools necessary to perform business rules and calculations on data updates being passed between applications connected to the DataSource API (DataSource peers such as Caplin Liberator servers).
For example, you can use the SDK to do the following:
Each calculation or set of calculations is performed by individual modules connected to a central core. The Transformer Core distributes incoming data to the modules that have requested it. It is also a DataSource peer.
A module for Caplin Transformer takes the form of a dynamic library which is loaded on startup or on receipt of a UDP command. A Java module is loaded into a VM started up by the Transformer Core, configured from a file. When a module requests data, the data sink element of the Transformer Core forwards the request to that peer or set of peers which can provide it. When an update occurs, the Core extracts the returned data from the DataSource API and sends it to the module for processing.
The module can then output the transformed data to the Core, for distribution in two possible ways:
There are two main steps to using the Transformer Module SDK:
Follow the links on the table below for information on the following topics:
The TransformerModule
is the main interface for the Transformer Module Java SDK. This interface
must be implemented by a developer, and the resulting class should be the one
referenced
in the transformer.conf file.
In addition, a reference to the TransformerAccessor
passed into the Transformer module initialise method
must be kept in order to access the main interfaces
needed to communicate with the Transformer Core.
In order for Caplin Transformer to supply updated information to a module, the module has to tell the Core that it has interest in a particular set of symbols. The Core then makes an active request for the symbols from DataSource applications connected to the DataSource API, unless a requested symbol is already within the its memory (i.e. another module has requested it), in which case your module will receive the data without it being rerequesting from the data source.
The Subscriber
object allows
a module to register and deregister subscriptions with the Transformer Core.
Subscriptions
can be made for both object
name patterns and ObjectType
s.
If you specify wildcards in the object name pattern (for example /LO/* for all symbols on the London Stock Exchange), the data cannot be requested from any peers: your module must wait for the information to come into the Transformer Core. Only if the exact symbol is known can an active request be made to a DataSource peer (for example /LO/BAY). Wildcards are particularly useful for listening for broadcast data however, which will come into the Transformer Core without being actively requested by any module.
Example:
SubscriptionListener subListener
= new LondonSubscriptionListener(); transformerAccessor.getSubscriber().addSubscriptionListener("/LO/*", subListener); |
public class LondonSubscriptionListener implements SubscriptionListener { public void objectDeleted(String objectName) { // code to handle object deletion... } public void update(DataSourceUpdateEvent event) |
Having requested data for a particular symbol, whenever any values associated with that symbol change, the Transformer Core will receive a packet of information containing an array of values. Individual values can then be extracted and processed.
The DataProviderRegistrar
class
allows a module to register and deregister itself as a provider of data. The
module should register itself as a provider of data for a particular object
name pattern. When a DataSource peer makes a request for an
object that matches the pattern, the
module will be asked if it can provide data for
that
DataSource
object.
Example:
DataProvider chartingProvider = new ChartingDataProvider(); transformerAccessor.getDataProviderRegistrar().register("/CHART/*", chartingProvider); |
public class ChartingDataProvider implements DataProvider |
Every exchange uses a different set of symbols to identify the various financial instruments that are traded. Object name patterns enable you to search all available symbols and return a list of those fitting your search criteria.
Patterns may contain asterisk "*" and question mark "?" wildcards. The asterisk will match any number of characters, whilst the question mark will match any one character.
For example:
The DataCache
class provides
a module access the data that is cached within the Transformer core. This data
might be useful for helping with calculations based on an update that has just
been received.
The latest values for an object can be retrieved from the Transformer Core
using get(objectName)
method.
To find out which objects are available in the Core, the getObjectNames(objectNamePattern)
method can be used.
Example:
TransformerData vodafoneData = transformerAccessor.getDataCache().get("/LO/VOD"); |
The method getLastUpdateTime(objectName)
returns the last time an update was received
for this symbol. This can be used to create modules which output
data regarding time periods for use in charts.
Once data has been sent to the
Transformer core its memory is freed. If the update needs to be sent, then
further changes made to the object, either the DSFactory.createTransformerData(TransformerData)
or the DSFactory.createTransformerRecord(TransformerRecord)
methods can be used to create a copy of the object before the update is sent.
In order to process a field value of an update, you must get a reference to the field (DSField) using one of the following methods:
The field value or field number/name can be modified using the following methods:
Example:
public class FieldModificationSubscriptionListener implements SubscriptionListener |
The Caplin Transformer core can output data in the following ways:
Example:
String objectName = "/LO/CPLN"; try { // add a place holder for the object within the Core transformerAccessor.getDataCache().put(objectName, DataCache.SILENT_SEND); // send an update for the object TransformerRecord record = DSFactory.createTransformerRecord(objectName); record.addRecordData("CompanyName", "Caplin Systems Limited"); record.addRecordData("Currency", "GBP"); record.addRecordData("Volume", 0); record.send(); } catch (DataCachePutException e) { // code to handle exception... } |
To load a Transformer Java Module, the following configuration settings should be added to the Core's configuration file etc/transformer.conf:
Note: For more information on these and other parameters, and how the Transformer Core is configured, please refer to the Transformer Core Administrator's Guide.
The example configuration below loads a Transformer Module implemented in a Java class, examples.first.FirstTransformerModule.
add-module jtm.so # Configuration of Java
class to be loaded # Configuration of the JVM |
To add other startup options for the JVM, multiple configuration lines beginning jvm-options may be specified. For example, to enable socket debugging on port 9955 the following configuration options could be added:
jvm-options -Xdebug |
To load a second Transformer Java Module, make a copy of jtm.so (found in the lib folder), and add a second add-javaclass entry. The class-id parameter must be set to the name of the copied file (jtm2 in the example below).
For example, if jtm.so were copied as jtm2.so, a second module could be loaded by:
add-module jtm2.so add-javaclass |
The UDPAccessor
allows
a module to send UDP commands and to add or remove its own listeners for UDP
commands.
Listeners associated with a certain UDP message will be informed each time that command is executed.
If a particular listener is added multiple times for the same command, then it will be informed of a single execution of that command multiple times. When a listener that has been added multiple times for the same command is deleted, only the first occurrence Listeners will be removed. If one particular listener is used to listen to multiple commands, it can identify which command was executed from the first command argument (which is always the command itself).
UDP commands can be used to change logging levels for debugging purposes and the writing of lists of watched objects to files.
Example:
// tell the Transformer Core to set the debug level
to warn transformerAccessor.getUDPAccessor().send("debug-level " + ServerLevel.WARN_LEVEL.intValue()); |
Other UDP commands that may be useful to a Transformer module include the following:
Other commands can be sent by a Transformer module; the Transformer core will send these to any other modules that are listening for them.
Example:
// tell the Transformer Core to write its memory out to
disk transformerAccessor.getUDPAccessor().send("memory_write"); |
TransformerAccessor provides a getLogger() method which returns a java.util.logging.Logger that can be used to write messages to the Transformer module's log file.
ServerLevel
provides the
different levels at which a message can be debugged.
Value | Description |
DEBUG | Reports all errors and events |
INFO | Reports events and information regarding normal operation and all errors included in the WARN, NOTIFY, ERROR and CRITICAL debug levels. |
WARN | Reports minor errors and all errors included in the NOTIFY, ERROR and CRITICAL debug levels. |
NOTIFY | Reports errors regarding data corruptions and all errors included in the ERROR and CRITICAL debug levels. |
ERROR | Reports serious errors regarding network connections and all errors included in the CRITICAL debug level. |
CRITICAL | Reports critical errors that prevent the module running. |
Example:
transformerAccessor.getLogger().log(ServerLevel.ERROR_LEVEL, "This is an error message"); |
Please send bug reports and comments to Caplin support