| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 | 
							- /*=============================================================================
 
-   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"
 
- /**
 
-  * Allows services to provide customized service objects in the plugin
 
-  * environment.
 
-  *
 
-  * <p>
 
-  * When registering a service, a <code>ctkServiceFactory</code> 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.
 
-  *
 
-  * <p>
 
-  * When this happens, the
 
-  * <code>ctkPluginContext::getService(const ctkServiceReference&)</code> method calls the
 
-  * <code>ctkServiceFactory::getService</code> method to create a service object
 
-  * specifically for the requesting plugin. The service object returned by the
 
-  * <code>ctkServiceFactory</code> is cached by the Framework until the plugin
 
-  * releases its use of the service.
 
-  *
 
-  * <p>
 
-  * When the plugin's use count for the service equals zero (including the plugin
 
-  * stopping or the service being unregistered), the
 
-  * <code>ctkServiceFactory::ungetService</code> method is called.
 
-  *
 
-  * <p>
 
-  * <code>ctkServiceFactory</code> 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 <code>ctkServiceFactory</code>.
 
-  *
 
-  * @see ctkPluginContext#getService
 
-  * @threadsafe
 
-  */
 
- class ctkServiceFactory
 
- {
 
- public:
 
-   /**
 
-    * Creates a new service object.
 
-    *
 
-    * <p>
 
-    * The Framework invokes this method the first time the specified
 
-    * <code>plugin</code> requests a service object using the
 
-    * <code>ctkPluginContext::getService(const ctkServiceReference&)</code> method. The
 
-    * service factory can then return a specific service object for each
 
-    * plugin.
 
-    *
 
-    * <p>
 
-    * The Framework caches the value returned (unless it is 0),
 
-    * and will return the same service object on any future call to
 
-    * <code>ctkPluginContext::getService</code> for the same plugins. This means the
 
-    * Framework must not allow this method to be concurrently called for the
 
-    * same plugin.
 
-    *
 
-    * <p>
 
-    * 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
 
-    * <code>0</code> is returned to the plugin.
 
-    *
 
-    * @param plugin The plugin using the service.
 
-    * @param registration The <code>ctkServiceRegistration</code> object for the
 
-    *        service.
 
-    * @return A service object that <strong>must</strong> be an instance of all
 
-    *         the classes named when the service was registered.
 
-    * @see ctkPluginContext#getService
 
-    */
 
-   virtual QObject* getService(QSharedPointer<ctkPlugin> plugin, ctkServiceRegistration registration) = 0;
 
-   /**
 
-    * Releases a service object.
 
-    *
 
-    * <p>
 
-    * 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 <code>ctkServiceRegistration</code> object for the
 
-    *        service.
 
-    * @param service The service object returned by a previous call to the
 
-    *        <code>ctkServiceFactory::getService</code> method.
 
-    * @see ctkPluginContext#ungetService
 
-    */
 
-   virtual void ungetService(QSharedPointer<ctkPlugin> plugin, ctkServiceRegistration registration,
 
-                             QObject* service) = 0;
 
- };
 
- Q_DECLARE_INTERFACE(ctkServiceFactory, "org.commontk.services.ctkServiceFactory")
 
 
  |