public abstract class AbstractRuntimeService extends Object implements RuntimeService
Implementors are encouraged to extend this class instead of directly implementing the RuntimeService
interface.
| Modifier and Type | Field and Description |
|---|---|
protected RuntimeContext |
context |
protected List<RuntimeExtension> |
extensions |
protected boolean |
isShuttingDown |
protected boolean |
isStarted |
protected ComponentManager |
manager |
protected CryptoProperties |
properties |
static String |
REDIRECT_JUL
Property that controls whether or not to redirect JUL to JCL.
|
static String |
REDIRECT_JUL_THRESHOLD |
protected List<String> |
warnings |
protected File |
workingDir |
| Modifier | Constructor and Description |
|---|---|
protected |
AbstractRuntimeService(DefaultRuntimeContext context) |
protected |
AbstractRuntimeService(DefaultRuntimeContext context,
Map<String,String> properties) |
| Modifier and Type | Method and Description |
|---|---|
protected ComponentManager |
createComponentManager() |
protected void |
doStart() |
protected void |
doStop() |
String |
expandVars(String expression)
Replaces any substring in the form
${property.name} with the corresponding runtime property value if
any, otherwise leaves the substring unchanged. |
protected static URL |
getBuiltinFeatureURL() |
org.osgi.framework.Bundle |
getBundle(String symbolicName)
Get an installed bundle given its symbolic name.
|
File |
getBundleFile(org.osgi.framework.Bundle bundle)
OSGi frameworks are using a string
Bundle.getLocation() to identify bundle locations. |
Object |
getComponent(ComponentName name)
Gets a component given its name.
|
Object |
getComponent(String name)
Gets a component given its name as a string.
|
ComponentInstance |
getComponentInstance(ComponentName name)
Gets a component implementation instance given its name.
|
ComponentInstance |
getComponentInstance(String name)
Gets a component implementation instance given its name as a string.
|
ComponentManager |
getComponentManager()
Gets the component manager.
|
RuntimeContext |
getContext()
Gets the context of the runtime bundle.
|
String |
getDescription()
Gets the description of this runtime service.
|
File |
getHome()
Gets the home directory of the runtime.
|
CryptoProperties |
getProperties()
Gets runtime service properties.
|
String |
getProperty(String name)
Gets a runtime service property given its name.
|
String |
getProperty(String name,
String defValue)
Gets a property value using a default value if the property was not set.
|
<T> T |
getService(Class<T> serviceClass)
Gets the service of type serviceClass if such a service was declared by a resolved runtime component.
|
boolean |
getStatusMessage(StringBuilder msg)
Computes the runtime status, adds it to the given string builder, and return true if some problems have been
detected.
|
List<String> |
getWarnings()
Gets a list of startup warnings.
|
boolean |
isShuttingDown()
Returns true if the runtime is shutting down.
|
boolean |
isStarted()
Returns true if the runtime is started.
|
void |
setHome(File home) |
void |
setProperty(String name,
Object value) |
void |
start()
Starts the runtime.
|
protected void |
startExtensions() |
void |
stop()
Stops the runtime.
|
protected void |
stopExtensions() |
String |
toString() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetName, getVersion, reloadPropertiespublic static final String REDIRECT_JUL
public static final String REDIRECT_JUL_THRESHOLD
protected boolean isStarted
protected boolean isShuttingDown
protected File workingDir
protected CryptoProperties properties
protected ComponentManager manager
protected final RuntimeContext context
protected final List<RuntimeExtension> extensions
protected AbstractRuntimeService(DefaultRuntimeContext context)
protected AbstractRuntimeService(DefaultRuntimeContext context, Map<String,String> properties)
public List<String> getWarnings()
RuntimeServicegetWarnings in interface RuntimeServiceprotected ComponentManager createComponentManager()
protected static URL getBuiltinFeatureURL()
public void start()
RuntimeServicestart in interface RuntimeServicepublic void stop()
RuntimeServicestop in interface RuntimeServicepublic boolean isStarted()
RuntimeServiceisStarted in interface RuntimeServicepublic boolean isShuttingDown()
RuntimeServiceisShuttingDown in interface RuntimeServiceprotected void doStart()
protected void doStop()
public File getHome()
RuntimeServicegetHome in interface RuntimeServicepublic String getDescription()
RuntimeServicegetDescription in interface RuntimeServicepublic CryptoProperties getProperties()
RuntimeServicegetProperties in interface RuntimeServicepublic String getProperty(String name)
RuntimeServicegetProperty in interface RuntimeServicename - the property namepublic String getProperty(String name, String defValue)
RuntimeServicegetProperty in interface RuntimeServicename - the property namedefValue - the default value to use when the property doesn't existspublic void setProperty(String name, Object value)
setProperty in interface RuntimeServicepublic Object getComponent(String name)
RuntimeServicegetComponent in interface RuntimeServicename - the component name as a stringpublic Object getComponent(ComponentName name)
RuntimeServicegetComponent in interface RuntimeServicename - the component namepublic ComponentInstance getComponentInstance(String name)
RuntimeServicegetComponentInstance in interface RuntimeServicename - the component name as a stringpublic ComponentInstance getComponentInstance(ComponentName name)
RuntimeServicegetComponentInstance in interface RuntimeServicename - the component namepublic ComponentManager getComponentManager()
RuntimeServicegetComponentManager in interface RuntimeServicepublic RuntimeContext getContext()
RuntimeServicegetContext in interface RuntimeServiceprotected void startExtensions()
protected void stopExtensions()
public <T> T getService(Class<T> serviceClass)
RuntimeServiceIf the component is not yet activated, it will be prior to return the service.
getService in interface RuntimeServiceT - the service typeserviceClass - the service classpublic String expandVars(String expression)
RuntimeService${property.name} with the corresponding runtime property value if
any, otherwise leaves the substring unchanged.expandVars in interface RuntimeServiceexpression - the expression to processpublic File getBundleFile(org.osgi.framework.Bundle bundle)
RuntimeServiceBundle.getLocation() to identify bundle locations.
This method try to convert the bundle location to real file if possible. If this bundle location cannot be converted to a file (e.g. it may be a remote URL), null is returned.
This method works only for bundles that are installed as files on the host file system.
getBundleFile in interface RuntimeServicepublic org.osgi.framework.Bundle getBundle(String symbolicName)
RuntimeServicegetBundle in interface RuntimeServicepublic boolean getStatusMessage(StringBuilder msg)
RuntimeServicegetStatusMessage in interface RuntimeServicemsg - summary message about all components loading statusCopyright © 2016 Nuxeo SA. All rights reserved.