/*============================================================================= 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. =============================================================================*/ #include "ctkServiceRegistration.h" /** * \ingroup PluginFramework * * Allows services to provide customized service objects in the plugin * environment. * *

* When registering a service, a ctkServiceFactory object can be * used instead of a service object, so that the plugin developer can gain * control of the specific service object granted to a plugin that is using the * service. * *

* When this happens, the * ctkPluginContext::getService(const ctkServiceReference&) method calls the * ctkServiceFactory::getService method to create a service object * specifically for the requesting plugin. The service object returned by the * ctkServiceFactory is cached by the Framework until the plugin * releases its use of the service. * *

* When the plugin's use count for the service equals zero (including the plugin * stopping or the service being unregistered), the * ctkServiceFactory::ungetService method is called. * *

* ctkServiceFactory objects are only used by the Framework and are * not made available to other plugins in the plugin environment. The Framework * may concurrently call a ctkServiceFactory. * * @see ctkPluginContext#getService * @remarks This class is thread safe. */ class ctkServiceFactory { public: /** * Creates a new service object. * *

* The Framework invokes this method the first time the specified * plugin requests a service object using the * ctkPluginContext::getService(const ctkServiceReference&) method. The * service factory can then return a specific service object for each * plugin. * *

* The Framework caches the value returned (unless it is 0), * and will return the same service object on any future call to * ctkPluginContext::getService for the same plugins. This means the * Framework must not allow this method to be concurrently called for the * same plugin. * *

* The Framework will check if the returned service object is an instance of * all the classes named when the service was registered. If not, then * 0 is returned to the plugin. * * @param plugin The plugin using the service. * @param registration The ctkServiceRegistration object for the * service. * @return A service object that must be an instance of all * the classes named when the service was registered. * @see ctkPluginContext#getService */ virtual QObject* getService(QSharedPointer plugin, ctkServiceRegistration registration) = 0; /** * Releases a service object. * *

* The Framework invokes this method when a service has been released by a * plugin. The service object may then be destroyed. * * @param plugin The ctkPlugin releasing the service. * @param registration The ctkServiceRegistration object for the * service. * @param service The service object returned by a previous call to the * ctkServiceFactory::getService method. * @see ctkPluginContext#ungetService */ virtual void ungetService(QSharedPointer plugin, ctkServiceRegistration registration, QObject* service) = 0; }; Q_DECLARE_INTERFACE(ctkServiceFactory, "org.commontk.services.ctkServiceFactory")