123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- /*=============================================================================
- Library: CTK
- Copyright (c) 2010 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 CTKPLUGINFRAMEWORKEVENT_H
- #define CTKPLUGINFRAMEWORKEVENT_H
- #include <QObject>
- #include <QSharedDataPointer>
- #include "CTKPluginFrameworkExport.h"
- class ctkPlugin;
- class ctkPluginFrameworkEventData;
- /**
- * A general event from the Framework.
- *
- * <p>
- * <code>ctkPluginFrameworkEvent</code> objects are delivered to slots connected
- * <code>FrameworkListener</code>s when a general event occurs within the plugin
- * environment. A type code is used to identify the event type for future
- * extendability.
- *
- * @see ctkPluginContext#connectFrameworkListener
- * @see ctkEventBus
- */
- class CTK_PLUGINFW_EXPORT ctkPluginFrameworkEvent : public QObject
- {
- Q_OBJECT
- Q_PROPERTY(Type type READ getType CONSTANT)
- Q_PROPERTY(ctkPlugin* plugin READ getPlugin CONSTANT)
- Q_PROPERTY(QString errorString READ getErrorString CONSTANT)
- Q_ENUMS(Type)
- QSharedDataPointer<ctkPluginFrameworkEventData> d;
- public:
- enum Type {
- /**
- * The Framework has started.
- *
- * <p>
- * This event is fired when the Framework has started after all installed
- * plugins that are marked to be started have been started and the Framework
- * has reached the initial start level. The source of this event is the
- * System Plugin.
- */
- STARTED,
- /**
- * An error has occurred.
- *
- * <p>
- * There was an error associated with a plugin.
- */
- ERROR,
- /**
- * A warning has occurred.
- *
- * <p>
- * There was a warning associated with a plugin.
- */
- WARNING,
- /**
- * An informational event has occurred.
- *
- * <p>
- * There was an informational event associated with a plugin.
- */
- INFO,
- /**
- * The Framework has stopped.
- *
- * <p>
- * This event is fired when the Framework has been stopped because of a stop
- * operation on the system plugin. The source of this event is the System
- * Plugin.
- */
- STOPPED,
- /**
- * The Framework has stopped during update.
- *
- * <p>
- * This event is fired when the Framework has been stopped because of an
- * update operation on the system plugin. The Framework will be restarted
- * after this event is fired. The source of this event is the System Plugin.
- */
- STOPPED_UPDATE,
- /**
- * The Framework did not stop before the wait timeout expired.
- *
- * <p>
- * This event is fired when the Framework did not stop before the wait
- * timeout expired. The source of this event is the System Plugin.
- */
- WAIT_TIMEDOUT
- };
- /**
- * Default constructor for use with the Qt meta object system.
- */
- ctkPluginFrameworkEvent();
- /**
- * Creates a Framework event regarding the specified plugin and exception.
- *
- * @param type The event type.
- * @param plugin The event source.
- * @param fwException The related exception.
- */
- ctkPluginFrameworkEvent(Type type, ctkPlugin* plugin, const std::exception& fwException);
- /**
- * Creates a Framework event regarding the specified plugin.
- *
- * @param type The event type.
- * @param plugin The event source.
- */
- ctkPluginFrameworkEvent(Type type, ctkPlugin* plugin);
- ctkPluginFrameworkEvent(const ctkPluginFrameworkEvent& other);
- /**
- * Returns the exception error string related to this event.
- *
- * @return The related error string.
- */
- QString getErrorString() const;
- /**
- * Returns the plugin associated with the event. This plugin is also the
- * source of the event.
- *
- * @return The plugin associated with the event.
- */
- ctkPlugin* getPlugin() const;
- /**
- * Returns the type of framework event.
- * <p>
- * The type values are:
- * <ul>
- * <li>{@link #STARTED}
- * <li>{@link #ERROR}
- * <li>{@link #WARNING}
- * <li>{@link #INFO}
- * <li>{@link #STARTLEVEL_CHANGED}
- * <li>{@link #STOPPED}
- * <li>{@link #STOPPED_UPDATE}
- * <li>{@link #WAIT_TIMEDOUT}
- * </ul>
- *
- * @return The type of state change.
- */
- Type getType() const;
- };
- class ctkPluginFrameworkEventData : public QSharedData
- {
- public:
- ctkPluginFrameworkEventData(ctkPluginFrameworkEvent::Type type, ctkPlugin* plugin, const QString& exc)
- : plugin(plugin), errorString(exc), type(type)
- {
- }
- ctkPluginFrameworkEventData(const ctkPluginFrameworkEventData& other)
- : QSharedData(other), plugin(other.plugin), errorString(other.errorString),
- type(other.type)
- {
- }
- /**
- * Plugin related to the event.
- */
- ctkPlugin* const plugin;
- /**
- * Exception related to the event.
- */
- const QString errorString;
- /**
- * Type of event.
- */
- const ctkPluginFrameworkEvent::Type type;
- };
- #endif // CTKPLUGINFRAMEWORKEVENT_H
|