|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.felix.ipojo.composite.CompositeServiceContext
public class CompositeServiceContext
CompositeServiceContext Class. This class provides an implementation of the service context for composite.
| Nested Class Summary | |
|---|---|
private class |
CompositeServiceContext.Record
Structure storing the reference, the factory and the registration. |
| Field Summary | |
|---|---|
private java.util.List |
m_factories
List of imported factories. |
private org.osgi.framework.BundleContext |
m_global
Global service context. |
private ComponentInstance |
m_instance
Component Instance who creates this registry. |
private ServiceRegistry |
m_registry
Internal service registry. |
private Tracker |
m_tracker
Tracker tracking Factories to import. |
| Constructor Summary | |
|---|---|
CompositeServiceContext(org.osgi.framework.BundleContext context)
Constructor. |
|
CompositeServiceContext(org.osgi.framework.BundleContext context,
ComponentInstance instance)
Constructor. |
|
| Method Summary | |
|---|---|
void |
addBundleListener(org.osgi.framework.BundleListener arg0)
Add a bundle listener. |
void |
addedService(org.osgi.framework.ServiceReference reference)
A matching reference has been added. |
void |
addFrameworkListener(org.osgi.framework.FrameworkListener arg0)
Add a framework listener. |
boolean |
addingService(org.osgi.framework.ServiceReference reference)
A new factory is detected. |
void |
addServiceListener(org.osgi.framework.ServiceListener arg0)
Add a service listener. |
void |
addServiceListener(org.osgi.framework.ServiceListener arg0,
java.lang.String arg1)
Add a filtered service listener. |
private boolean |
containsRef(org.osgi.framework.ServiceReference ref)
Check if the factory list contain the given reference. |
org.osgi.framework.Filter |
createFilter(java.lang.String arg0)
Create a LDAP filter. |
org.osgi.framework.ServiceReference[] |
getAllServiceReferences(java.lang.String arg0,
java.lang.String arg1)
Get all service references. |
org.osgi.framework.Bundle |
getBundle()
Get the current bundle. |
org.osgi.framework.Bundle |
getBundle(long bundleId)
Get the bundle object with the given id. |
org.osgi.framework.Bundle[] |
getBundles()
Get installed bundles. |
java.io.File |
getDataFile(java.lang.String filename)
Get a data file. |
java.lang.String |
getProperty(java.lang.String key)
Get a property value. |
java.lang.Object |
getService(org.osgi.framework.ServiceReference arg0)
Get a service object for the given service reference. |
org.osgi.framework.ServiceReference |
getServiceReference(java.lang.String arg0)
Get a service reference for the required interface. |
org.osgi.framework.ServiceReference[] |
getServiceReferences(java.lang.String clazz,
java.lang.String filter)
Get all accessible service reference for the given query. |
private void |
importFactory(org.osgi.framework.ServiceReference ref)
Import a factory form the parent to the internal registry. |
org.osgi.framework.Bundle |
installBundle(java.lang.String location)
Install a bundle. |
org.osgi.framework.Bundle |
installBundle(java.lang.String location,
java.io.InputStream input)
Install a bundle. |
void |
modifiedService(org.osgi.framework.ServiceReference reference,
java.lang.Object service)
An imported factory is modified. |
org.osgi.framework.ServiceRegistration |
registerService(java.lang.String[] arg0,
java.lang.Object arg1,
java.util.Dictionary arg2)
Register a service inside the composite context. |
org.osgi.framework.ServiceRegistration |
registerService(java.lang.String arg0,
java.lang.Object arg1,
java.util.Dictionary arg2)
Register a service inside the composite context. |
void |
removeBundleListener(org.osgi.framework.BundleListener listener)
Remove a bundle listener. |
void |
removedService(org.osgi.framework.ServiceReference reference,
java.lang.Object service)
An imported factory disappears. |
private void |
removeFactory(org.osgi.framework.ServiceReference ref)
Remove a factory of the available factory list. |
void |
removeFrameworkListener(org.osgi.framework.FrameworkListener listener)
Remove a framework listener. |
void |
removeServiceListener(org.osgi.framework.ServiceListener arg0)
Remove a service listener. |
void |
start()
Start the registry management. |
void |
stop()
Stop the registry management. |
boolean |
ungetService(org.osgi.framework.ServiceReference arg0)
Unget a service. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
private java.util.List m_factories
private ServiceRegistry m_registry
private ComponentInstance m_instance
private org.osgi.framework.BundleContext m_global
private Tracker m_tracker
| Constructor Detail |
|---|
public CompositeServiceContext(org.osgi.framework.BundleContext context)
context - : the bundle context
public CompositeServiceContext(org.osgi.framework.BundleContext context,
ComponentInstance instance)
context - : the bundle contextinstance - : the component instance owning this context| Method Detail |
|---|
public void addServiceListener(org.osgi.framework.ServiceListener arg0)
addServiceListener in interface ServiceContextaddServiceListener in interface org.osgi.framework.BundleContextarg0 - : The service listener to addServiceContext.addServiceListener(org.osgi.framework.ServiceListener)
public void addServiceListener(org.osgi.framework.ServiceListener arg0,
java.lang.String arg1)
throws org.osgi.framework.InvalidSyntaxException
addServiceListener in interface ServiceContextaddServiceListener in interface org.osgi.framework.BundleContextarg0 - : the service listener object to addarg1 - : the LDAP filter for this listener
org.osgi.framework.InvalidSyntaxException - : occurs if the LDAP filter is malformedServiceContext.addServiceListener(org.osgi.framework.ServiceListener,
java.lang.String)
public org.osgi.framework.ServiceReference[] getAllServiceReferences(java.lang.String arg0,
java.lang.String arg1)
throws org.osgi.framework.InvalidSyntaxException
getAllServiceReferences in interface ServiceContextgetAllServiceReferences in interface org.osgi.framework.BundleContextarg0 - : The required service interface.arg1 - : LDAP filter
org.osgi.framework.InvalidSyntaxException - : occurs when the given filter is malformedServiceContext.getAllServiceReferences(java.lang.String,
java.lang.String)public java.lang.Object getService(org.osgi.framework.ServiceReference arg0)
getService in interface ServiceContextgetService in interface org.osgi.framework.BundleContextarg0 - : the service reference
ServiceContext.getService(org.osgi.framework.ServiceReference)public org.osgi.framework.ServiceReference getServiceReference(java.lang.String arg0)
getServiceReference in interface ServiceContextgetServiceReference in interface org.osgi.framework.BundleContextarg0 - : the required interface name
ServiceContext.getServiceReference(java.lang.String)
public org.osgi.framework.ServiceReference[] getServiceReferences(java.lang.String clazz,
java.lang.String filter)
throws org.osgi.framework.InvalidSyntaxException
getServiceReferences in interface ServiceContextgetServiceReferences in interface org.osgi.framework.BundleContextclazz - : required interfacefilter - : LDAP filter
org.osgi.framework.InvalidSyntaxException - : occurs when the LDAP filter is malformedServiceContext.getServiceReferences(java.lang.String, java.lang.String)
public org.osgi.framework.ServiceRegistration registerService(java.lang.String[] arg0,
java.lang.Object arg1,
java.util.Dictionary arg2)
registerService in interface ServiceContextregisterService in interface org.osgi.framework.BundleContextarg0 - : list of interfaces to register.arg1 - : service objectarg2 - : properties list
ServiceContext.registerService(java.lang.String[], java.lang.Object, java.util.Dictionary)
public org.osgi.framework.ServiceRegistration registerService(java.lang.String arg0,
java.lang.Object arg1,
java.util.Dictionary arg2)
registerService in interface ServiceContextregisterService in interface org.osgi.framework.BundleContextarg0 - : interface to register.arg1 - : service objectarg2 - : properties list
ServiceContext.registerService(java.lang.String, java.lang.Object, java.util.Dictionary)public void removeServiceListener(org.osgi.framework.ServiceListener arg0)
removeServiceListener in interface ServiceContextremoveServiceListener in interface org.osgi.framework.BundleContextarg0 - : the service listener to removeServiceContext.removeServiceListener(org.osgi.framework.ServiceListener)public boolean ungetService(org.osgi.framework.ServiceReference arg0)
ungetService in interface ServiceContextungetService in interface org.osgi.framework.BundleContextarg0 - the service reference to unget
ServiceContext.ungetService(org.osgi.framework.ServiceReference)private void importFactory(org.osgi.framework.ServiceReference ref)
ref - : the reference of the factory to import.private void removeFactory(org.osgi.framework.ServiceReference ref)
ref - : the reference on the factory to remove.public void start()
public void stop()
private boolean containsRef(org.osgi.framework.ServiceReference ref)
ref - : the reference to find.
public void addBundleListener(org.osgi.framework.BundleListener arg0)
addBundleListener in interface org.osgi.framework.BundleContextarg0 - : bundle listener to addBundleContext.addBundleListener(org.osgi.framework.BundleListener)public void addFrameworkListener(org.osgi.framework.FrameworkListener arg0)
addFrameworkListener in interface org.osgi.framework.BundleContextarg0 - : framework listener to add.BundleContext.addFrameworkListener(org.osgi.framework.FrameworkListener)
public org.osgi.framework.Filter createFilter(java.lang.String arg0)
throws org.osgi.framework.InvalidSyntaxException
createFilter in interface org.osgi.framework.BundleContextarg0 - : String-form of the filter
org.osgi.framework.InvalidSyntaxException - : if the given argument is not a valid against the LDAP grammar.BundleContext.createFilter(java.lang.String)public org.osgi.framework.Bundle getBundle()
getBundle in interface org.osgi.framework.BundleContextBundleContext.getBundle()public org.osgi.framework.Bundle getBundle(long bundleId)
getBundle in interface org.osgi.framework.BundleContextbundleId - : bundle id
BundleContext.getBundle(long)public org.osgi.framework.Bundle[] getBundles()
getBundles in interface org.osgi.framework.BundleContextBundleContext.getBundles()public java.io.File getDataFile(java.lang.String filename)
getDataFile in interface org.osgi.framework.BundleContextfilename - : File name.
BundleContext.getDataFile(java.lang.String)public java.lang.String getProperty(java.lang.String key)
getProperty in interface org.osgi.framework.BundleContextkey - : key of the asked property
BundleContext.getProperty(java.lang.String)
public org.osgi.framework.Bundle installBundle(java.lang.String location)
throws org.osgi.framework.BundleException
installBundle in interface org.osgi.framework.BundleContextlocation - : URL of the bundle to install
org.osgi.framework.BundleException - : if the bundle cannot be installed correctlyBundleContext.installBundle(java.lang.String)
public org.osgi.framework.Bundle installBundle(java.lang.String location,
java.io.InputStream input)
throws org.osgi.framework.BundleException
installBundle in interface org.osgi.framework.BundleContextlocation - : URL of the bundle to installinput - :
org.osgi.framework.BundleException - : if the bundle cannot be installed correctlyBundleContext.installBundle(java.lang.String, java.io.InputStream)public void removeBundleListener(org.osgi.framework.BundleListener listener)
removeBundleListener in interface org.osgi.framework.BundleContextlistener - : the listener to removeBundleContext.removeBundleListener(org.osgi.framework.BundleListener)public void removeFrameworkListener(org.osgi.framework.FrameworkListener listener)
removeFrameworkListener in interface org.osgi.framework.BundleContextlistener - : the listener to removeBundleContext.removeFrameworkListener(org.osgi.framework.FrameworkListener)public boolean addingService(org.osgi.framework.ServiceReference reference)
addingService in interface TrackerCustomizerreference - : service reference
TrackerCustomizer.addingService(org.osgi.framework.ServiceReference)public void addedService(org.osgi.framework.ServiceReference reference)
addedService in interface TrackerCustomizerreference - : the added reference.TrackerCustomizer.addedService(org.osgi.framework.ServiceReference)
public void modifiedService(org.osgi.framework.ServiceReference reference,
java.lang.Object service)
modifiedService in interface TrackerCustomizerreference - : modified referenceservice - : factory object.TrackerCustomizer.modifiedService(org.osgi.framework.ServiceReference, java.lang.Object)
public void removedService(org.osgi.framework.ServiceReference reference,
java.lang.Object service)
removedService in interface TrackerCustomizerreference - : referenceservice - : factory object.TrackerCustomizer.removedService(org.osgi.framework.ServiceReference, java.lang.Object)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||