123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /*=============================================================================
- Library: CTK
- Copyright (c) 2010 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 "ctkServiceReference.h"
- #include "ctkServiceReferencePrivate.h"
- #include "ctkServiceRegistrationPrivate.h"
- #include "ctkPluginPrivate_p.h"
- #include "ctkPluginConstants.h"
- #include <QStringList>
- #include <QMutexLocker>
- ctkServiceReference::ctkServiceReference(ctkServiceRegistrationPrivate* reg)
- : d_ptr(new ctkServiceReferencePrivate(reg))
- {
- }
- ctkServiceReference::~ctkServiceReference()
- {
- delete d_ptr;
- }
- QVariant ctkServiceReference::getProperty(const QString& key) const
- {
- Q_D(const ctkServiceReference);
- QMutexLocker lock(&d->registration->propsLock);
- return d->registration->properties.value(key);
- }
- QStringList ctkServiceReference::getPropertyKeys() const
- {
- Q_D(const ctkServiceReference);
- QMutexLocker lock(&d->registration->propsLock);
- return d->registration->properties.keys();
- }
- ctkPlugin* ctkServiceReference::getPlugin() const
- {
- return d_func()->registration->plugin->q_func();
- }
- QList<ctkPlugin*> ctkServiceReference::getUsingPlugins() const
- {
- Q_D(const ctkServiceReference);
- QMutexLocker lock(&d->registration->propsLock);
- if (d->registration->reference != 0)
- {
- return d->registration->dependents.keys();
- }
- else
- {
- return QList<ctkPlugin*>();
- }
- }
- bool ctkServiceReference::operator<(const ctkServiceReference& reference) const
- {
- bool sameFw = d_func()->registration->plugin->fwCtx == reference.d_func()->registration->plugin->fwCtx;
- if (!sameFw)
- {
- throw std::invalid_argument("Can not compare service references "
- "belonging to different framework "
- "instances.");
- }
- int r1 = getProperty(PluginConstants::SERVICE_RANKING).toInt();
- int r2 = reference.getProperty(PluginConstants::SERVICE_RANKING).toInt();
- if (r1 != r2)
- {
- // use ranking if ranking differs
- return r1 < r2 ? false : true;
- }
- else
- {
- qlonglong id1 = getProperty(PluginConstants::SERVICE_ID).toLongLong();
- qlonglong id2 = reference.getProperty(PluginConstants::SERVICE_ID).toLongLong();
- // otherwise compare using IDs,
- // is less than if it has a higher ID.
- return id2< id1;
- }
- }
- bool ctkServiceReference::operator==(const ctkServiceReference& reference) const
- {
- return d_func()->registration == reference.d_func()->registration;
- }
|