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 "ctkConfigAdminTestActivator_p.h"
- #include <ctkPluginContext.h>
- #include <ctkPluginConstants.h>
- #include <QtPlugin>
- #include <QStringList>
- #include "ctkConfigurationAdminTestSuite_p.h"
- #include "ctkManagedServiceTestSuite_p.h"
- #include "ctkManagedServiceFactoryTestSuite_p.h"
- #include "ctkConfigurationPluginTestSuite_p.h"
- #include "ctkConfigurationListenerTestSuite_p.h"
- //----------------------------------------------------------------------------
- void ctkConfigAdminTestActivator::start(ctkPluginContext* context)
- {
- QString symbolicName = context->getProperty("cm.impl").toString();
- if (symbolicName.isEmpty())
- {
- throw ctkRuntimeException("Framework property 'cm.impl' containing the symbolic "
- "name of the ConfigAdmin implementation not found!");
- }
- long cmPluginId = -1;
- foreach(QSharedPointer<ctkPlugin> p, context->getPlugins())
- {
- if (p->getSymbolicName() == symbolicName)
- {
- cmPluginId = p->getPluginId();
- break;
- }
- }
- if (cmPluginId < 0)
- {
- QString msg = QString("The ConfigAdmin implementation '%1' is not installed.")
- .arg(symbolicName);
- throw ctkRuntimeException(msg);
- }
- ctkDictionary props;
- configAdminTestSuite = new ctkConfigurationAdminTestSuite(context, cmPluginId);
- props.clear();
- props.insert(ctkPluginConstants::SERVICE_PID, configAdminTestSuite->metaObject()->className());
- context->registerService<ctkTestSuiteInterface>(configAdminTestSuite, props);
- managedServiceTestSuite = new ctkManagedServiceTestSuite(context, cmPluginId);
- props.clear();
- props.insert(ctkPluginConstants::SERVICE_PID, managedServiceTestSuite->metaObject()->className());
- context->registerService<ctkTestSuiteInterface>(managedServiceTestSuite, props);
- managedServiceFactoryTestSuite = new ctkManagedServiceFactoryTestSuite(context, cmPluginId);
- props.clear();
- props.insert(ctkPluginConstants::SERVICE_PID, managedServiceFactoryTestSuite->metaObject()->className());
- context->registerService<ctkTestSuiteInterface>(managedServiceFactoryTestSuite, props);
- configPluginTestSuite = new ctkConfigurationPluginTestSuite(context, cmPluginId);
- props.clear();
- props.insert(ctkPluginConstants::SERVICE_PID, configPluginTestSuite->metaObject()->className());
- context->registerService<ctkTestSuiteInterface>(configPluginTestSuite, props);
- configListenerTestSuite = new ctkConfigurationListenerTestSuite(context, cmPluginId);
- props.clear();
- props.insert(ctkPluginConstants::SERVICE_PID, configListenerTestSuite->metaObject()->className());
- context->registerService<ctkTestSuiteInterface>(configListenerTestSuite, props);
- }
- //----------------------------------------------------------------------------
- void ctkConfigAdminTestActivator::stop(ctkPluginContext* context)
- {
- Q_UNUSED(context);
- delete configAdminTestSuite;
- delete managedServiceTestSuite;
- delete managedServiceFactoryTestSuite;
- delete configPluginTestSuite;
- delete configListenerTestSuite;
- configAdminTestSuite = 0;
- managedServiceTestSuite = 0;
- managedServiceFactoryTestSuite = 0;
- configPluginTestSuite = 0;
- configListenerTestSuite = 0;
- }
- #if QT_VERSION < QT_VERSION_CHECK(5,0,0)
- Q_EXPORT_PLUGIN2(org_commontk_configadmintest, ctkConfigAdminTestActivator)
- #endif
|