| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 | /*=============================================================================  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 CTKCONFIGURATIONEVENT_H#define CTKCONFIGURATIONEVENT_H#include <QSharedDataPointer>#include <QDebug>#include "ctkServiceReference.h"class ctkConfigurationEventData;/** * \ingroup ConfigAdmin * A Configuration Event. * * <p> * <code>ctkConfigurationEvent</code> objects are delivered to all registered * <code>ctkConfigurationListener</code> service objects. ctkConfigurationEvents * must be asynchronously delivered in chronological order with respect to each * listener. * * <p> * An enum type is used to identify the type of event. The following event types * are defined: * <ul> * <li>{@link #CM_UPDATED} * <li>{@link #CM_DELETED} * </ul> * Additional event types may be defined in the future. * * <p> * Security Considerations. <code>ctkConfigurationEvent</code> objects do not * provide <code>ctkConfiguration</code> objects, so no sensitive configuration * information is available from the event. If the listener wants to locate the * <code>ctkConfiguration</code> object for the specified pid, it must use * <code>ctkConfigurationAdmin</code>. * * @see ctkConfigurationListener */class CTK_PLUGINFW_EXPORT ctkConfigurationEvent{  QSharedDataPointer<ctkConfigurationEventData> d;public:  enum Type {    /**     * A <code>ctkConfiguration</code> has been updated.     *     * <p>     * This <code>ctkConfigurationEvent</code> type indicates that a      <code>ctkConfiguration</code> object has been updated with new properties.     *     * An event is fired when a call to {@link ctkConfiguration#update(const ctkDictionary&)}     * successfully changes a configuration.     *     * <p>     * The value of <code>CM_UPDATED</code> is 1.     */    CM_UPDATED  = 0x00000001,    /**     * A <code>ctkConfiguration</code> has been deleted.     *     * <p>     * This <code>ctkConfigurationEvent</code> type indicates that a     * <code>ctkConfiguration</code> object has been deleted.     *     * An event is fired when a call to {@link ctkConfiguration#remove()}     * successfully deletes a configuration.     *     * <p>     * The value of <code>CM_DELETED</code> is 2.     */    CM_DELETED  = 0x00000002  };  /**   * Default constructor for use with the Qt meta object system.   */  ctkConfigurationEvent();  ~ctkConfigurationEvent();  /**   * Can be used to check if this ctkConfigurationEvent instance is valid,   * or if it has been constructed using the default constructor.   *   * @return <code>true</code> if this event object is valid,   *         <code>false</code> otherwise.   */  bool isNull() const;  /**   * Constructs a <code>ConfigurationEvent</code> object from the given   * <code>ServiceReference</code> object, event type, and pids.   *   * @param reference The <code>ServiceReference</code> object of the   *        Configuration Admin service that created this event.   * @param type The event type. See {@link #getType}.   * @param factoryPid The factory pid of the associated configuration if the   *        target of the configuration is a ManagedServiceFactory. Otherwise   *        <code>null</code> if the target of the configuration is a   *        ManagedService.   * @param pid The pid of the associated configuration.   */  ctkConfigurationEvent(const ctkServiceReference& reference,                        Type type, const QString& factoryPid,                        const QString& pid);  ctkConfigurationEvent(const ctkConfigurationEvent& other);  ctkConfigurationEvent& operator=(const ctkConfigurationEvent& other);  /**   * Returns the factory pid of the associated configuration.   *   * @return Returns the factory pid of the associated configuration if the   *         target of the configuration is a ctkManagedServiceFactory. Otherwise   *         an invalid string if the target of the configuration is a   *         ctkManagedService.   */  QString getFactoryPid() const;  /**   * Returns the pid of the associated configuration.   *   * @return Returns the pid of the associated configuration.   */  QString getPid() const;  /**   * Return the type of this event.   * <p>   * The type values are:   * <ul>   * <li>{@link #CM_UPDATED}   * <li>{@link #CM_DELETED}   * </ul>   *   * @return The type of this event.   */  int getType() const;  /**   * Return the <code>ctkServiceReference</code> object of the Configuration   * Admin service that created this event.   *   * @return The <code>ctkServiceReference</code> object for the Configuration   *         Admin service that created this event.   */  ctkServiceReference getReference() const;};/** * \ingroup ConfigAdmin */CTK_PLUGINFW_EXPORT QDebug operator<<(QDebug dbg, ctkConfigurationEvent::Type type);CTK_PLUGINFW_EXPORT QDebug operator<<(QDebug dbg, const ctkConfigurationEvent& event);/** @}*/#endif // CTKCONFIGURATIONEVENT_H
 |