| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 | /*=============================================================================  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"#include "ctkServiceRegistrationPrivate.h"#include "ctkPluginFrameworkContext_p.h"#include "ctkPluginPrivate_p.h"#include "ctkPluginConstants.h"#include "ctkServiceFactory.h"#include "ctkServiceSlotEntry_p.h"#include <QMutex>#include <stdexcept>ctkServiceRegistration::ctkServiceRegistration(ctkPluginPrivate* plugin, QObject* service,                    const ServiceProperties& props)  : d_ptr(new ctkServiceRegistrationPrivate(this, plugin, service, props)){}ctkServiceRegistration::ctkServiceRegistration(ctkServiceRegistrationPrivate& dd)  : d_ptr(&dd){}ctkServiceReference ctkServiceRegistration::getReference() const{  Q_D(const ctkServiceRegistration);  if (!d->available) throw std::logic_error("Service is unregistered");  return d->reference;}void ctkServiceRegistration::setProperties(const ServiceProperties& props){  Q_D(ctkServiceRegistration);  QMutexLocker lock(&d->eventLock);  QSet<ctkServiceSlotEntry> before;  // TBD, optimize the locking of services  {    QMutexLocker lock2(&d->plugin->fwCtx->globalFwLock);    QMutexLocker lock3(&d->propsLock);    if (d->available)    {      // NYI! Optimize the MODIFIED_ENDMATCH code      int old_rank = d->properties.value(ctkPluginConstants::SERVICE_RANKING).toInt();      before = d->plugin->fwCtx->listeners.getMatchingServiceSlots(d->reference);      QStringList classes = d->properties.value(ctkPluginConstants::OBJECTCLASS).toStringList();      qlonglong sid = d->properties.value(ctkPluginConstants::SERVICE_ID).toLongLong();      d->properties = ctkServices::createServiceProperties(props, classes, sid);      int new_rank = d->properties.value(ctkPluginConstants::SERVICE_RANKING).toInt();      if (old_rank != new_rank)      {        d->plugin->fwCtx->services.updateServiceRegistrationOrder(this, classes);      }    }    else    {      throw std::logic_error("Service is unregistered");    }  }  d->plugin->fwCtx->listeners.serviceChanged(      d->plugin->fwCtx->listeners.getMatchingServiceSlots(d->reference),      ctkServiceEvent(ctkServiceEvent::MODIFIED, d->reference), before);  d->plugin->fwCtx->listeners.serviceChanged(      before,      ctkServiceEvent(ctkServiceEvent::MODIFIED_ENDMATCH, d->reference));}void ctkServiceRegistration::unregister(){  Q_D(ctkServiceRegistration);  if (d->unregistering) return; // Silently ignore redundant unregistration.  {    QMutexLocker lock(&d->eventLock);    if (d->unregistering) return;    d->unregistering = true;    if (d->available)    {      if (d->plugin)      {        d->plugin->fwCtx->services.removeServiceRegistration(this);      }    }    else    {      throw std::logic_error("Service is unregistered");    }  }  if (d->plugin)  {     d->plugin->fwCtx->listeners.serviceChanged(         d->plugin->fwCtx->listeners.getMatchingServiceSlots(d->reference),         ctkServiceEvent(ctkServiceEvent::UNREGISTERING, d->reference));  }  {    QMutexLocker lock(&d->eventLock);    {      QMutexLocker lock2(&d->propsLock);      d->available = false;      if (d->plugin)      {        for (QHashIterator<ctkPlugin*, QObject*> i(d->serviceInstances); i.hasNext();)        {          QObject* obj = i.next().value();          try          {            // NYI, don't call inside lock            qobject_cast<ctkServiceFactory*>(d->service)->ungetService(i.key(),                                                       this,                                                       obj);          }          catch (const std::exception& ue)          {            ctkPluginFrameworkEvent pfwEvent(ctkPluginFrameworkEvent::ERROR, d->plugin->q_func(), ue);            d->plugin->fwCtx->listeners                .emitFrameworkEvent(pfwEvent);          }        }      }      d->plugin = 0;      d->dependents.clear();      d->service = 0;      d->serviceInstances.clear();;      d->unregistering = false;    }  }}bool ctkServiceRegistration::operator<(const ctkServiceRegistration& o) const{  Q_D(const ctkServiceRegistration);  return d->reference <(o.d_func()->reference);}
 |