/*============================================================================= Library: CppMicroServices Copyright (c) The CppMicroServices developers. See the COPYRIGHT file at the top-level directory of this distribution and at https://github.com/CppMicroServices/CppMicroServices/COPYRIGHT . 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 CPPMICROSERVICES_BUNDLEEVENT_H #define CPPMICROSERVICES_BUNDLEEVENT_H #include "cppmicroservices/FrameworkExport.h" #include #include #include // 'identifier' : class 'type' needs to have dll-interface to be used by clients of class 'type2' US_MSVC_PUSH_DISABLE_WARNING(4251) namespace cppmicroservices { class Bundle; class BundleEventData; /** \defgroup gr_bundleevent BundleEvent \brief Groups BundleEvent class related symbols. */ /** * \ingroup MicroServices * \ingroup gr_bundleevent * * An event from the Micro Services framework describing a bundle lifecycle change. *

* BundleEvent objects are delivered to listeners connected * via BundleContext::AddBundleListener() when a change * occurs in a bundles's lifecycle. A type code is used to identify * the event type for future extendability. * * @see BundleContext#AddBundleListener */ class US_Framework_EXPORT BundleEvent { std::shared_ptr d; public: /** * The bundle event type. */ enum Type : uint32_t { /** * The bundle has been installed. *

* The bundle has been installed by the Framework. * * @see BundleContext::InstallBundles(const std::string&) */ BUNDLE_INSTALLED = 0x00000001, /** * The bundle has been started. *

* The bundle's * \link BundleActivator::Start(BundleContext) BundleActivator Start\endlink method * has been executed if the bundle has a bundle activator class. * * @see Bundle::Start() */ BUNDLE_STARTED = 0x00000002, /** * The bundle has been stopped. *

* The bundle's * \link BundleActivator::Stop(BundleContext) BundleActivator Stop\endlink method * has been executed if the bundle has a bundle activator class. * * @see Bundle::Stop() */ BUNDLE_STOPPED = 0x00000004, /** * The bundle has been updated. * * @note This identifier is reserved for future use and not supported yet. */ BUNDLE_UPDATED = 0x00000008, /** * The bundle has been uninstalled. * * @see Bundle::Uninstall() */ BUNDLE_UNINSTALLED = 0x00000010, /** * The bundle has been resolved. * * @see Bundle#STATE_RESOLVED */ BUNDLE_RESOLVED = 0x00000020, /** * The bundle has been unresolved. * * @see Bundle#BUNDLE_INSTALLED */ BUNDLE_UNRESOLVED = 0x00000040, /** * The bundle is about to be activated. * * The bundle's \link BundleActivator::Start(BundleContext) BundleActivator * start\endlink method is about to be called if the bundle has a bundle activator * class. * * @see Bundle::Start() */ BUNDLE_STARTING = 0x00000080, /** * The bundle is about to deactivated. * * The bundle's \link BundleActivator::Stop(BundleContext) BundleActivator * stop\endlink method is about to be called if the bundle has a bundle activator * class. * * @see Bundle::Stop() */ BUNDLE_STOPPING = 0x00000100, /** * The bundle will be lazily activated. *

* The bundle has a \link Constants#ACTIVATION_LAZY lazy activation policy\endlink * and is waiting to be activated. It is now in the \link Bundle::STATE_STARTING * BUNDLE_STARTING\endlink state and has a valid \c BundleContext. * * @note This identifier is reserved for future use and not supported yet. */ BUNDLE_LAZY_ACTIVATION = 0x00000200 }; /** * Creates an invalid instance. */ BundleEvent(); /** * Can be used to check if this BundleEvent instance is valid, * or if it has been constructed using the default constructor. * * @return true if this event object is valid, * false otherwise. */ explicit operator bool() const; /** * Creates a bundle event of the specified type. * * @param type The event type. * @param bundle The bundle which had a lifecycle change. This bundle is * used as the origin of the event. */ BundleEvent(Type type, const Bundle& bundle); /** * Creates a bundle event of the specified type. * * @param type The event type. * @param bundle The bundle which had a lifecycle change. * @param origin The bundle which is the origin of the event. For the event * type {@link #BUNDLE_INSTALLED}, this is the bundle whose context was used * to install the bundle. Otherwise it is the bundle itself. */ BundleEvent(Type type, const Bundle& bundle, const Bundle& origin); /** * Returns the bundle which had a lifecycle change. * * @return The bundle that had a change occur in its lifecycle. */ Bundle GetBundle() const; /** * Returns the type of lifecyle event. The type values are: *

    *
  • {@link #BUNDLE_INSTALLED} *
  • {@link #BUNDLE_RESOLVED} *
  • {@link #BUNDLE_LAZY_ACTIVATION} *
  • {@link #BUNDLE_STARTING} *
  • {@link #BUNDLE_STARTED} *
  • {@link #BUNDLE_STOPPING} *
  • {@link #BUNDLE_STOPPED} *
  • {@link #BUNDLE_UNRESOLVED} *
  • {@link #BUNDLE_UNINSTALLED} *
* * @return The type of lifecycle event. */ Type GetType() const; /** * Returns the bundle that was the origin of the event. * *

* For the event type {@link #BUNDLE_INSTALLED}, this is the bundle whose context * was used to install the bundle. Otherwise it is the bundle itself. * * @return The bundle that was the origin of the event. */ Bundle GetOrigin() const; /** * Compares two bundle events for equality. * * @param evt The bundle event to compare this event with. * @return \c true if both events originate from the same bundle, describe * a life-cycle change for the same bundle, and are of the same type. * \c false otherwise. Two invalid bundle events are considered to * be equal. */ bool operator==(const BundleEvent& evt) const; }; /** * \ingroup MicroServices * \ingroup gr_bundleevent * * Writes a string representation of \c eventType to the stream \c os. */ US_Framework_EXPORT std::ostream& operator<<(std::ostream& os, BundleEvent::Type eventType); /** * \ingroup MicroServices * \ingroup gr_bundleevent * * Writes a string representation of \c event to the stream \c os. */ US_Framework_EXPORT std::ostream& operator<<(std::ostream& os, const BundleEvent& event); } US_MSVC_POP_WARNING #endif // CPPMICROSERVICES_BUNDLEEVENT_H