A library with a set of components is ready to be used in the Cilia framework. Here these components are described and its utilization illustrated.

Immediate

Description : The immediate-scheduler activates the mediator as soon as one data is received, and triggers immediatly the processor.

name namespace location
immediate-scheduler fr.liglab.adele.cilia cilia-runtime

Example of code declaring a mediator using the immediate-scheduler:

<mediator-component name="MyMediator" namespace="fr.liglab.adele.cilia.test">
    <scheduler name="immediate-scheduler" namespace="fr.liglab.adele.cilia"/>
    <processor name="MyProcessor" namespace="fr.liglab.adele.cilia.test"/>
    <dispatcher name="MyDispatcher" namespace="fr.liglab.adele.cilia.test"/>
</mediator-component>

Periodic

Description : The periodic scheduler activates periodically the mediator, with a period defined by the user in properties, and after a first delay defined by the user in properties.

name namespace location
periodic-scheduler fr.liglab.adele.cilia cilia-runtime
Properties
name default value description
delay 3000 time to wait to trigger for the first time.
period 3000 time between processing tasks

Example of code declaring a mediator using the periodic-scheduler:

<mediator-component name="MyMediator" namespace="fr.liglab.adele.cilia.test">
 <ports>
   <in-port name="unique" type="XML" />
   <out-port name="unique" type="XML" />
 </ports>
 <scheduler name="periodic-scheduler" namespace="fr.liglab.adele.cilia"/>
 <processor name="MyProcessor" namespace="fr.liglab.adele.cilia.test"/>
 <dispatcher name="MyDispatcher" namespace="fr.liglab.adele.cilia.test"/>
</mediator-component>

Example of code instantiating this mediator with a period and a delay of 10 seconds :

  <mediator-instance id="mediatorId" type="MyMediator">
    <scheduler>           
       <property name="period" value="10000"/>
       <property name="delay" value="10000"/>
    </scheduler>
  </mediator-instance>

Counter

Description : The counter-scheduler watches the datas content, and decides whether this data counts or not. When the counter is valid under a certain condition, the mediator is activated, and the processor triggered.

name namespace location
counter-scheduler fr.liglab.adele.cilia cilia-runtime
Properties
name default value description
count (Map) A list of counting expressions to be applied to the collected data.
correlation (String) (*) An LDAP based expression to identify correlated messages.
condition (String) LDAP expression to determine when to trigger processing, the condition will be applied to the resulting counts.

Example of code declaring a mediator using the counter-scheduler:

<mediator-component name="MyMediator" namespace="fr.liglab.adele.cilia.test">
    <ports>
      <in-port name="entry-port" />
      <out-port name="exit-port" />
    </ports>
   <scheduler name="counter-scheduler" namespace="fr.liglab.adele.cilia"/>
   <processor name="MyProcessor" namespace="fr.liglab.adele.cilia.test"/>
   <dispatcher name="MyDispatcher" namespace="fr.liglab.adele.cilia.test"/>
</mediator-component>

Example of code instantiating this mediator. The processig will be trigger when there exists one data which data.name is dog, and when two data have their data.name as cat.

  <mediator-instance id="mediatorId" type="MyMediator">
    <scheduler>           
       <property name="correlation" value="(*)"/>
       <property name="count">
           <item key="dogs" value="(data.name=dog)"/>
           <item key="cats" value="(data.name=cat)" />
       </property>
       <property name="condition" value="(&(dogs=1)(cats=2))"/>
    </scheduler>
  </mediator-instance>

Correlation

Description : This scheduler wait to some correlated correlated messages arrive to be trigger the processing. Those messages must contain a \$SPLIT.TOTAL variable in order to determine when the correlated messages are complete.

name namespace location
correlation-scheduler fr.liglab.adele.cilia cilia-runtime
Properties
name default value description
correlation "($SPLIT.ID)" an ldap based expression to identify correlated messages.

Example of code declaring a mediator using the correlation-scheduler:

<mediator-component name="MyMediator" namespace="fr.liglab.adele.cilia.test">
    <ports>
      <in-port name="entry-port" />
      <out-port name="exit-port" />
    </ports>
   <scheduler name="correlation-scheduler" namespace="fr.liglab.adele.cilia"/>
   <processor name="MyProcessor" namespace="fr.liglab.adele.cilia.test"/>
   <dispatcher name="MyDispatcher" namespace="fr.liglab.adele.cilia.test"/>
</mediator-component>

Example of code instantiating this mediator:

  <mediator-instance id="mediatorId" type="MyMediator">
    <scheduler>           
       <property name="correlation" value="value"/>
    </scheduler>
  </mediator-instance>

NOTE: This schedulers works with an splitter who add the SPLIT.TOTAL variable to each message.

Dispatchers

Dispatchers are the components which decide how to dispatch data from their mediators.

Multicast

Description : The multicast-dispatcher dispatches any data that it receives to all the bound elements, mediators or adapters.

name namespace location
multicast-dispatcher fr.liglab.adele.cilia cilia-runtime

Example of code declaring a mediator using the multicast-dispatcher:

<mediator-component name="MyMediator" namespace="fr.liglab.adele.cilia.test">
    <ports>
      <in-port name="entry-port" />
      <out-port name="exit-port1" />
      <out-port name="exit-port2" />
    </ports>
   <scheduler name="MyScheduler" namespace="fr.liglab.adele.cilia.test"/>
   <processor name="MyProcessor" namespace="fr.liglab.adele.cilia.test"/>
   <dispatcher name="multicast-dispatcher" namespace="fr.liglab.adele.cilia"/>
</mediator-component>

Content-based

Description : The content-based-dispatcher dispatches the data in a way depending on the datas content. The user defines conditions, and ports associated to one condition, through a Map where keys are the conditions, and where the values are the ports identifiers. If the datas content is valid for a condition, then the data is sent to the port that is associated with this condition.

name namespace location
content-based-dispatcher fr.liglab.adele.cilia cilia-runtime
Properties
name default value description
language (String) ldap Condition language to inspect the data content. Available options: LDAP, XPATH
conditions (Map) Pair of key,value. Keys are the conditions, and the value is the port to send the data when the condition is valid.

Example of code declaring a mediator using the content-based-dispatcher:

<mediator-component name="MyMediator" namespace="fr.liglab.adele.cilia.test">
    <ports>
      <in-port name="entry-port" />
      <out-port name="exit-port1" />
      <out-port name="exit-port2" />
    </ports>
   <scheduler name="MyScheduler" namespace="fr.liglab.adele.cilia.test"/>
   <processor name="MyProcessor" namespace="fr.liglab.adele.cilia.test"/>
   <dispatcher name="content-based-dispatcher" namespace="fr.liglab.adele.cilia"/>
 </mediator-component>

Example of code instantiating this mediator. When the data has a property value of data.name as cat, it send the data throw port exit-port1. When the value is dog, it send it throw port exit-port2.

  <mediator-instance id="mediatorId" type="MyMediator">

    <dispatcher>           
       <property name="language" value="ldap"/>
       <property name="conditions">
          <item key="(data.name=cat)" value="exit-port1" />
          <item key="(data.name=dog)" value="exit-port2" />
       </property>
    </dispatcher>
  </mediator-instance>

Processors

Processors are mediator elements in charge of performing modifications or treatment to the received data.

XSLT Transformer

Description : This processor take the incoming data as a String in an XML format and perform some transformation based on a XSLT file.

name namespace location
XsltTransformerProcessor fr.liglab.adele.cilia cilia-runtime
Properties
name default value description
xslt-file absolute path where the xslt file is located.

Example of code declaring a mediator using the XsltTransformerProcessor:

<mediator-component name="MyMediator" namespace="fr.liglab.adele.cilia.test">
    <ports>
      <in-port name="entry-port" />
      <out-port name="exit-port" />
    </ports>
   <scheduler name="MyScheduler" namespace="fr.liglab.adele.cilia.test"/>
   <processor name="XsltTransformerProcessor" namespace="fr.liglab.adele.cilia"/>
   <dispatcher name="MyDispatcher" namespace="fr.liglab.adele.cilia.test"/>
 </mediator-component>

Example of code instantiating this mediator:

  <mediator-instance id="mediatorId" type="MyMediator">
    <processor>
       <property name="xslt-file" value="/home/torito/files/transformator.xslt"/>
    </processor>
  </mediator-instance>

XML Splitter

Description : An XML splitter processor. This processor take the incoming data as a String in an XML format and perform an split operation using an XPATH pattern.

name namespace location
XmlSplitterProcessor fr.liglab.adele.cilia cilia-runtime
Properties
name default value description
separator An XPATH expression used to split xml.

Example of code declaring a mediator using the XmlSplitterProcessor:

<mediator-component name="MyMediator" namespace="fr.liglab.adele.cilia.test">
    <ports>
      <in-port name="entry-port" />
      <out-port name="exit-port" />
    </ports>
   <scheduler name="MyScheduler" namespace="fr.liglab.adele.cilia.test"/>
   <processor name="XmlSplitterProcessor" namespace="fr.liglab.adele.cilia"/>
   <dispatcher name="MyDispatcher" namespace="fr.liglab.adele.cilia.test"/>
</mediator-component>

Example of code instantiating this mediator:

  <mediator-instance id="mediatorId" type="MyMediator">
    <processor>
       <property name="separator" value="//suiviconso-requete"/>
    </processor>
  </mediator-instance>

String Splitter

Description : An splitter processor. This processor take the content of each data as a String and perform a split operation to it. The resulting is a set of Data, each of one containing each chunk of data.

name namespace location
StringSplitterProcessor fr.liglab.adele.cilia cilia-runtime
Properties
name default value description
separator A regex expression used to split string located in the data content.

Example of code declaring a mediator using the StringSplitterProcessor:

<mediator-component name="MyMediator" namespace="fr.liglab.adele.cilia.test">
    <ports>
      <in-port name="entry-port" />
      <out-port name="exit-port" />
    </ports>
   <scheduler name="MyScheduler" namespace="fr.liglab.adele.cilia.test"/>
   <processor name="StringSplitterProcessor" namespace="fr.liglab.adele.cilia"/>
   <dispatcher name="MyDispatcher" namespace="fr.liglab.adele.cilia.test"/>
</mediator-component>

Example of code instantiating this mediator. This instance will split each message using : as a separator token.

  <mediator-instance id="mediatorId" type="MyMediator">
    <processor>
       <property name="separator" value=":"/>
    </processor>
  </mediator-instance>

Simple Aggregator

Description : This processor will receive a set of Data, and will construct a new Data containing as content a List (java.util.List) of the received set of data.

name namespace location
AggregatorProcessor fr.liglab.adele.cilia cilia-runtime

Basically, this processor will perform the following operation.

return new Data(list, "aggregated-data");

Where the object list, is an instance of java.util.List containing a set of data objects. The string aggregated-data is the name of the data.

Example of code declaring a mediator using the AggregatorProcessor:

<mediator-component name="MyMediator" namespace="fr.liglab.adele.cilia.test">
    <scheduler name="MyScheduler" namespace="fr.liglab.adele.cilia.test"/>
    <processor name="AggregatorProcessor" namespace="fr.liglab.adele.cilia"/>
    <dispatcher name="MyDispatcher" namespace="fr.liglab.adele.cilia.test"/>
</mediator-component>

Semantic Translator

Description : This processor replace words on the data content based on a given dictionary.

name namespace location
SemanticTranslatorProcessor fr.liglab.adele.cilia cilia-runtime
Properties
name default value description
dictionary (Map) list of words to be translated, the key is the word to translate, and the value is the replacing word.

Example of code declaring a mediator using the SemanticTranslatorProcessor:

<mediator-component name="MyMediator" namespace="fr.liglab.adele.cilia.test">
    <ports>
        <in-port name="entry-port" />
        <out-port name="exit-port" />
    </ports>
   <scheduler name="MyScheduler" namespace="fr.liglab.adele.cilia.test"/>
   <processor name="SemanticTranslatorProcessor" namespace="fr.liglab.adele.cithlia"/>
   <dispatcher name="MyDispatcher" namespace="fr.liglab.adele.cilia.test"/>
</mediator-component>

Example of code instantiating this mediator. This processor will replace the word dog for Canidae and the word cat for Felidae.

  <mediator-instance id="mediatorId" type="MyMediator">
    <processor>
       <property name="dictionary">
          <item key="dog" value="Canidae"/>
          <item key="cat" value="Felidae"/>
       </property>
    </processor>
  </mediator-instance>

Linkers

Linkers are in charge of binding two mediation components.

Direct

Description : The direct-binding is the default when binding two mediator components.

Example of code declaring a binding using a direct binding:

<bindings>
    <binding from="source-meduatir:exit" to="target-mediator:entry" />
</bindings>

Event Admin

The Event Admin Specification, part of the OSGi Compendium specification, defines a general inter-bundle communication mechanism. The communication conforms to the popular publish/subscribe paradigm.

Description : The event-admin linker is in charge of binding two mediator components using the Event Admin Service.

Example of code declaring a binding using the event admin binding:

<bindings>
    <binding from="source-meduatir:exit" to="target-mediator:entry" linker="event-admin"/>
</bindings>

Example of code using custom properties:

<bindings>
    <binding from="source-mediator:exit" to="target-mediator:entry" linker="event-admin">
        <property name="topic" value="fromSource/to/targetMediator"/>
    </binding>
</bindings>

Adapters

Adapters are the mediation components in charge of the communication with external entities (applications, services, communication protocols, middlewares,). Most of the linkers had also an equivalent as adapter, but is not always applied in the inverse. Here are some of the available adapters for the current cilia version.

Connecting Adapters

Adapters in this section is presented the current available adapters and its properties to be used in mediation chains. One important issue to know about these adapters is that they had only one cilia port to communicate with other mediation components. This port is named unique and it receives any kind of Data. So, in order to bind an adapter, we must do as follow:

<adapters>
    <adapter-instance type="event-admin-in-adapter" id="ea-in-adapter">
        <property name="topic" value="topic/to/listen"/>
    </adapter-instance>
<adapters>
    <adapter-instance type="console-adapter" id="console-adapter" />
</adapters>

<bindings>
    <binding from="ea-in-adapter:unique" to"console-adapter:unique" />
</bindings>

Console Adapter

The console adapter allows print the received Data to the shell. It does a simple System.out.println call.

OUTPUT Adapter

Description : Print the Data to the console shell

name location
console-adapter cilia-runtime
Properties
name default value description
console.detail false If it will print all the data or only its content.
console.header A specific header to print before the Data.

Example of code declaring a INPUT Event Admin adapter:

<adapters>
   <adapter-instance type="console-adapter" id="console-adapter">
     <property name="console.detail" value="true"/>
     <property name="console.header" value="[Chain-1]:"/>
   </adapter-instance>
</adapters>

Event Admin Adapter

Event Admin could be used to link two mediation components but also to communicate a mediation chain with an external application using Event Admin. This allows, for example, to have a loosely coupled architecture.

INPUT Adapter

Description : The input event-admin adapter is in charge of receiving information of an external service/component running in the same gateway, using the Event Admin Service.

name location
event-admin ea-adapter
Properties
name default value description
topic topic

Example of code declaring a INPUT Event Admin adapter:

<adapters>
   <adapter-instance type="event-admin-in-adapter" id="ea-in-adapter">
     <property name="topic" value="topic/to/listen"/>
   </adapter-instance>
</adapters>

OUTPUT Adapter

Description : The output event-admin adapter is in charge of sending information to an external service/component running in the same gateway, using the Event Admin Service.

name location
event-admin ea-adapter
Properties
name default value description
topic topic

Example of code declaring a OUTPUT Event Admin adapter:

<adapters>
   <adapter-instance type="event-admin-out-adapter" id="ea-out-adapter">
     <property name="topic" value="topic/to/listen"/>
   </adapter-instance>
</adapters>

JMS/Joram (JMS 1.1) Adapter

Joram is an Open source implementation of JMS (Java Message System) 1.1 Cilia provides INPUT and OUTPUT adapters to communicate with applications or systems using Joram as a Message Oriented Middleware (MOM). Also, there is possible to communicate two distributed mediation chains using the JMS adapters.

INPUT Adapter

Description : The input JMS adapter is in charge of receiving information of the JMS server on an specified topic

name location
JMS-in-adapter jms-adapter
Properties
name default value description
jms.topic The JMS topic to receive event messages.
jms.host localhost The hostname where the JMS server is located.
jms.port 16010 The port number to connect to the JMS server.
jms.login root The user name to connect to the JMS server.
jms.password root The password to connect to the JMS server.

Example of code declaring a INPUT JMS adapter:

<adapters>
   <adapter-instance type="JMS-in-adapter" id="jms-in-adapter-1">
     <property name="jms.topic" value="topic$to$listen"/>
     <property name="jms.host" value="129.88.51.194"/>
     <property name="jms.login" value="garciai"/>
     <property name="jms.password" value="12375"/>
   </adapter-instance>
</adapters>

OUTPUT Adapter

Description : The output JMS adapter is in charge of sending information to the JMS server using an specified topic

name location
JMS-out-adapter jms-adapter
Properties
name default value description
jms.topic The JMS topic to sent event messages.
jms.host localhost The hostname where the JMS server is located.
jms.port 16010 The port number to connect to the JMS server.
jms.login root The user name to connect to the JMS server.
jms.password root The password to connect to the JMS server.

Example of code declaring a OUTPUT JMS adapter:

<adapters>
   <adapter-instance type="JMS-out-adapter" id="jms-out-adapter-1">
     <property name="jms.topic" value="topic$to$listen"/>
     <property name="jms.host" value="129.88.51.194"/>
     <property name="jms.login" value="garciai"/>
     <property name="jms.password" value="12375"/>
   </adapter-instance>
</adapters>

JMS/Joram (JMS 2.0) Adapter

Joram is an Open source implementation of JMS (Java Message System) 2.0 Cilia provides INPUT and OUTPUT adapters to communicate with applications or systems using Joram as a Message Oriented Middleware (MOM). Also, there is possible to communicate two distributed mediation chains using the JMS adapters.

INPUT Adapter

Description : The input JMS adapter is in charge of receiving information of the JMS server on an specified topic

name location
JMS2-in-adapter jms2-adapter
Properties
name default value description
jms.topic The JMS topic to receive event messages.
jms.host localhost The hostname where the JMS server is located.
jms.port 16010 The port number to connect to the JMS server.
jms.login root The user name to connect to the JMS server.
jms.password root The password to connect to the JMS server.

Example of code declaring a INPUT JMS2 adapter:

<adapters>
   <adapter-instance type="JMS2-in-adapter" id="jms2-in-adapter-1">
     <property name="jms.topic" value="topic$to$listen"/>
     <property name="jms.host" value="129.88.51.194"/>
     <property name="jms.login" value="garciai"/>
     <property name="jms.password" value="12375"/>
   </adapter-instance>
</adapters>

OUTPUT Adapter

Description : The output JMS2 adapter is in charge of sending information to the JMS server using an specified topic

name location
JMS2-out-adapter jms2-adapter
Properties
name default value description
jms.topic The JMS topic to sent event messages.
jms.host localhost The hostname where the JMS server is located.
jms.port 16010 The port number to connect to the JMS server.
jms.login root The user name to connect to the JMS server.
jms.password root The password to connect to the JMS server.

Example of code declaring a OUTPUT JMS adapter:

<adapters>
   <adapter-instance type="JMS2-out-adapter" id="jms2-out-adapter-1">
     <property name="jms.topic" value="topic$to$listen"/>
     <property name="jms.host" value="129.88.51.194"/>
     <property name="jms.login" value="garciai"/>
     <property name="jms.password" value="12375"/>
   </adapter-instance>
</adapters>

Simple TCP Adapter

TCP Adapters can be used to communicate in a point-to-point way with external application or systems. Also, could be used to communicate distributed mediation chains.

INPUT Adapter

Description : The input tcp adapter is in charge of receiving information of an external application, using an specified port number. The adapter will open the port, so it must be had the rights to do it.

name location
tcp-in-adapter tcp-adapter
Properties
name default value description
port 9999 The port where the adapter will listen to new connections.

Example of code declaring a INPUT TCP adapter:

<adapters>
   <adapter-instance type="tcp-in-adapter" id="tcp-in-adapter-1">
     <property name="port" value="9878" />
   </adapter-instance>
</adapters>

OUTPUT Adapter

Description : The output TCP adapter is in charge of sending information to an external application listening on the specified port.

name location
tcp-out-adapter tcp-adapter
Properties
name default value description
hostname localhost The server name to send the data.
port 9999 The server port to send the data.

Example of code declaring a OUTPUT TCP adapter:

<adapters>
   <adapter-instance type="tcp-out-adapter" id="tcp-out-adapter">
     <property name="port" value="9878"/>
     <property name="hostname" value="129.88.51.194"/>
   </adapter-instance>
</adapters>

Back to top

Version: 1.7.5-SNAPSHOT. Last Published: 2013-12-31.

Reflow Maven skin by Andrius Velykis.