/*============================================================================= 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 CTKSERVICES_P_H #define CTKSERVICES_P_H #include #include #include #include #include "ctkPlugin_p.h" #include "ctkServiceRegistration.h" /** * \ingroup PluginFramework * * Here we handle all the services that are registered in the framework. */ class ctkServices { public: mutable QMutex mutex; /** * Creates a new ctkDictionary object containing in * with the keys converted to lower case. * * @param classes A list of class names which will be added to the * created ctkDictionary object under the key * PluginConstants::OBJECTCLASS. * @param sid A service id which will be used instead of a default one. */ static ctkDictionary createServiceProperties(const ctkDictionary& in, const QStringList& classes = QStringList(), long sid = -1); /** * All registered services in the current framework. * Mapping of registered service to class names under which * the service is registerd. */ QHash services; /** * Mapping of classname to registered service. * The List of registered services are ordered with the highest * ranked service first. */ QHash > classServices; ctkPluginFrameworkContext* framework; ctkServices(ctkPluginFrameworkContext* fwCtx); ~ctkServices(); void clear(); /** * Register a service in the framework wide register. * * @param plugin The plugin registering the service. * @param classes The class names under which the service can be located. * @param service The service object. * @param properties The properties for this service. * @return A ctkServiceRegistration object. * @exception ctkInvalidArgumentException If one of the following is true: *
    *
  • The service object is 0.
  • *
  • The service parameter is not a ctkServiceFactory or an * instance of all the named classes in the classes parameter.
  • *
*/ ctkServiceRegistration registerService(ctkPluginPrivate* plugin, const QStringList& classes, QObject* service, const ctkDictionary& properties); /** * Service ranking changed, reorder registered services * according to ranking. * * @param serviceRegistration The ctkServiceRegistrationPrivate object. * @param rank New rank of object. */ void updateServiceRegistrationOrder(const ctkServiceRegistration& sr, const QStringList& classes); /** * Checks that a given service object is an instance of the given * class name. * * @param service The service object to check. * @param cls The class name to check for. */ bool checkServiceClass(QObject* service, const QString& cls) const; /** * Get all services implementing a certain class. * Only used internally by the framework. * * @param clazz The class name of the requested service. * @return A sorted list of {@link ctkServiceRegistrationPrivate} objects. */ QList get(const QString& clazz) const; /** * Get a service implementing a certain class. * * @param plugin The plugin requesting reference * @param clazz The class name of the requested service. * @return A {@link ctkServiceReference} object. */ ctkServiceReference get(ctkPluginPrivate* plugin, const QString& clazz) const; /** * Get all services implementing a certain class and then * filter these with a property filter. * * @param clazz The class name of requested service. * @param filter The property filter. * @param plugin The plugin requesting reference. * @return A list of {@link ctkServiceReference} object. */ QList get(const QString& clazz, const QString& filter, ctkPluginPrivate* plugin) const; /** * Remove a registered service. * * @param sr The ctkServiceRegistration object that is registered. */ void removeServiceRegistration(const ctkServiceRegistration& sr) ; /** * Get all services that a plugin has registered. * * @param p The plugin * @return A set of {@link ctkServiceRegistration} objects */ QList getRegisteredByPlugin(ctkPluginPrivate* p) const; /** * Get all services that a plugin uses. * * @param p The plugin * @return A set of {@link ctkServiceRegistration} objects */ QList getUsedByPlugin(QSharedPointer p) const; private: QList get_unlocked(const QString& clazz, const QString& filter, ctkPluginPrivate* plugin) const; }; #endif // CTKSERVICES_P_H