Apache Felix Service Component RuntimePage edited by Felix MeschbergerChanges (6)
Full Content[ Example ] [ Component ] [ Declaration ] [ Activation ] [ Service Binding ] [ Looking up the Service ] [ Receiving the Service ] [ Maven SCR Plugin ] [ Management ] [ Shell Command ] [ API Use ] [ Summary ]
The Apache Felix Service Component Runtime described by the OSGi Declarative Services Specification is implemented by the org.apache.felix.scr bundle. As specified, the components must be declared in XML-formatted descriptor files which in turn must be listed in the Service-Component header of the declaring bundle. The component declarations are read when the declaring bundle is started and the respective components are verified and activated depending on their declaration. ExampleTo help you get a head start, here is an example of using Declarative Services. You will find more examples in the trunk/examples folder of the Apache Felix Project. ComponentFirst of all the component must be implemented in a simple Java class. The Declarative Services Specification basically places no restrictions on the contents of this class. If you make use of advanced functionality such as providing an activate() or deactivate() method or using service loopup by event strategy (see 112.3.1 Accessing Services) you will of course have to provide the respective methods. For the sake of example, lets define a very simple class, which implements a java.util.Comparator service: sample/SampleComparator.java package sample; import java.util.Comparator; public class SampleComparator implements Comparator { public int compare( Object o1, Object o2 ) { // TODO: calculate the result return o1.equals( o2 ) ? 0 : -1; } }
To finalize this declaration, add the following header to the bundle manifest: Service-Component: OSGI-INF/sample.xml ActivationIt may well be that the component needs to be notified, when it is activated and deactivated. For this, the component may implement an activate method and a deactivate method. Both methods must be public or protected and take a single argument, the org.osgi.service.ComponentContext. It is recommended for this method to the protected as it is only used by the Service Component Runtime and should of course not be part of the public API of the component. Here is the initial class extended with activation and deactivation methods: sample/SampleComparator.java package sample; import java.util.Comparator; import org.osgi.service.component.ComponentContext; public class SampleComparator implements Comparator { public int compare( Object o1, Object o2 ) { // TODO: calculate the result return o1.equals( o2 ) ? 0 : -1; } protected void activate(ComponentContext context) { // TODO: Do something on activation } protected void deactivate(ComponentContext context) { // TODO: Do something on deactivation } } Nothing more needs to be done as the Service Component Runtime automatically recognizes and calls these methods. Service BindingThe next step would probably be to do some service binding. This is somewhat more overhead, as the referred to services must be declared. On the other hand, you do not have to care to listen for these services. As examples of these strategies we will first use the lookup strategy to access an OSGi HttpService and then we will use the event strategy to access an OSGi LogService (I personally prefer the event strategy, but your mileage may vary). Looking up the ServiceTo use the service, the reference must be declared in the service declaration in an reference element. Here is the respective declaration for a log service to lookup: LogService Reference
<component...>
...
<reference name="http"
interface="org.osgi.service.http.HttpService"
cardinality="1..1"
policy="static"
/>
...
</component>
To use this service you call the ComponentContext.getService(String) method, for example in the activate method: protected void activate(ComponentContext context) { HttpService http = ( HttpService ) context.locateService( "http" ); } Receiving the ServiceThe event strategy works by declaring bind and unbind methods in the component descriptor. These methods take a single parameter of the type defined in the reference.interface attribute and must be declared public or protected. As with the activate and deactive it is recommended for the bind and unbind methods to be declared protected as they are generally not part of the public API of the component. When using the event strategy, you will want to store the service in a private field of the component for later use. First here is the reference declaration: LogService Reference <component...> ... <reference name="log" interface="org.osgi.service.log.LogService" cardinality="1..1" policy="static" bind="bindLog" unbind="unbindLog" /> ... </component> And here is some code: private LogService log; protected void activate(ComponentContext context) { log.log(LogService.LOG_INFO, "Hello Components!"); } protected void bindLog(LogService log) { this.log = log; } protected void unbindLog(LogService log) { this.log = null; } Note, that you may refer to the log field in the activate method as we declared the reference as required. In this case the reference is provided to the component in the bind method before the activate method is called. Maven SCR PluginTo simplify the tasks of generating the SCR Desriptor and adding the Service-Component header to the bundle manifest, the Apache Felix Maven SCR Plugin may be used. This helps keeping the descriptor and the code in sync especially during development. ManagementThe OSGi Compendium specification defines no management API for Declarative Services. As of version 0.9.0-20071123.131249-8 a simple management API is provided the Apache Felix implementation. The bundle itself also has a Felix Shell Command providing easy commands to introspect the states of the registered components. Shell CommandThe management API is made available to the Felix Shell as the scr command with a short list of subcommands:
The management API commands are also available in the Gogo shell where the subcommand names must be prefixed with the name space scr. Thus the list command corresponds to scr:list in the Gogo shell. API UseThe API consists of the main interface org.apache.felix.scr.ScrService and two helper interfaces org.apache.felix.scr.Component describing a registered component and org.apache.felix.scr.Reference describing a single reference of a registered component. To access the management API, client applications just ask for the ScrService as usual: .... ServiceReference scrServiceRef = bundleContext.getServiceReference( ScrService.class.getName() ); ScrService scrService = (ScrService) bundleContext.getService(scrServiceRef); .... Alternatively, you may of course use the ServiceTracker or if you are using the ScrService in a component, you may have the ScrService bound according to the component declaration. The ScrService allows access to all registered components, to a specific component by component ID or to all registered components of a specific bundle. SummaryThis tutorial just listed some very basic information on Declarative Service. To get more information, for example on hoe the Configuration Admin Service may be used to configure components, refer to the Declarative Services Sepecification in the OSGi Service Platform Service Compendium book. Have Fun !
Change Notification Preferences
View Online
|
View Changes
|
Add Comment
|
- [CONF] Apache Felix > Apache Felix Service Component Runtime confluence
