/*============================================================================= Library: CTK Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =============================================================================*/ #ifndef CTKPLUGINFRAMEWORK_H #define CTKPLUGINFRAMEWORK_H #include #include "ctkPlugin.h" #include "ctkPluginFrameworkEvent.h" class ctkPluginFrameworkContext; class ctkPluginFrameworkPrivate; /** * \ingroup PluginFramework * * A %ctkPluginFramework instance. A %ctkPluginFramework is also known as a System %Plugin. * *

* %ctkPluginFramework instances are created using a ctkPluginFrameworkFactory. The methods * of this class can be used to manage and control the created plugin framework * instance. * * @remarks This class is thread safe. */ class CTK_PLUGINFW_EXPORT ctkPluginFramework : public ctkPlugin { Q_DECLARE_PRIVATE(ctkPluginFramework) Q_DISABLE_COPY(ctkPluginFramework) public: /** * Initialize this %ctkPluginFramework. After calling this method, this %ctkPluginFramework * must: *

* *

* This %ctkPluginFramework will not actually be started until {@link #start() start} * is called. * *

* This method does nothing if called when this %ctkPluginFramework is in the * {@link #STARTING}, {@link #ACTIVE} or {@link #STOPPING} states. * * @throws ctkPluginException If this %ctkPluginFramework could not be initialized. */ void init(); /** * Wait until this %ctkPluginFramework has completely stopped. The stop * and update methods perform an asynchronous * stop of the Framework. This method can be used to wait until the * asynchronous stop of this Framework has completed. This method will only * wait if called when this Framework is in the {@link #STARTING}, * {@link #ACTIVE}, or {@link #STOPPING} states. Otherwise it will return * immediately. *

* A Framework Event is returned to indicate why this Framework has stopped. * * @param timeout Maximum number of milliseconds to wait until this * Framework has completely stopped. A value of zero will wait * indefinitely. * @return A Framework Event indicating the reason this method returned. The * following ctkPluginFrameworkEvent types may be returned by * this method. *

*/ ctkPluginFrameworkEvent waitForStop(unsigned long timeout); /** * Start this %ctkPluginFramework. * *

* The following steps are taken to start this %ctkPluginFramework: *

    *
  1. If this %ctkPluginFramework is not in the {@link #STARTING} state, * {@link #init() initialize} this %ctkPluginFramework.
  2. *
  3. All installed plugins must be started in accordance with each * plugin's persistent autostart setting. This means some plugins * will not be started, some will be started with lazy activation * and some will be started with their declared activation policy. * Any exceptions that occur during plugin starting must be wrapped in a * {@link ctkPluginException} and then published as a plugin framework event of type * {@link ctkPluginFrameworkEvent::PLUGIN_ERROR}
  4. *
  5. This %PluinFramework's state is set to {@link #ACTIVE}.
  6. *
  7. A plugin framework event of type {@link ctkPluginFrameworkEvent::FRAMEWORK_STARTED} is fired
  8. *
* * @param options Ignored. There are no start options for the %ctkPluginFramework. * @throws ctkPluginException If this %ctkPluginFramework could not be started. */ void start(const ctkPlugin::StartOptions& options = 0); /** * Stop this %ctkPluginFramework. * *

* The method returns immediately to the caller after initiating the * following steps to be taken on another thread. *

    *
  1. This Framework's state is set to {@link #STOPPING}.
  2. *
  3. All installed plugins must be stopped without changing each plugin's * persistent autostart setting. If this Framework implements the * optional Start Level Service Specification, then the start level * of this Framework is moved to start level zero (0), as described in the * Start Level Service Specification. Any exceptions that occur * during plugin stopping must be wrapped in a {@link ctkPluginException} and * then published as a framework event of type {@link ctkPluginFrameworkEvent#ERROR}
  4. *
  5. Unregister all services registered by this Framework.
  6. *
  7. Event handling is disabled.
  8. *
  9. This Framework's state is set to {@link #RESOLVED}.
  10. *
  11. All resources held by this Framework are released. This includes * threads, loaded libraries, open files, etc.
  12. *
  13. Notify all threads that are waiting at {@link #waitForStop(long) * waitForStop} that the stop operation has completed.
  14. *
*

* After being stopped, this Framework may be discarded, initialized or * started. * * @param options Ignored. There are no stop options for the Framework. * @throws ctkPluginException If stopping this Framework could not be * initiated. * @see "Start Level Service Specification" */ void stop(const StopOptions& options = 0); /** * The %ctkPluginFramework cannot be uninstalled. * *

* This method always throws a ctkPluginException. * * @throws ctkPluginException This Framework cannot be uninstalled. */ void uninstall(); /** * @see ctkPlugin::getHeaders() */ QHash getHeaders(); /** * @see ctkPlugin::getResourceList() */ QStringList getResourceList(const QString& path) const; /** * @see ctkPlugin::getResource() */ QByteArray getResource(const QString& path) const; protected: friend class ctkPluginFrameworkContext; ctkPluginFramework(); }; #endif // CTKPLUGINFRAMEWORK_H