| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 | /*=============================================================================    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 "ctkCmdLineModuleManager.h"#include "ctkCmdLineModuleBackend.h"#include "ctkCmdLineModuleFrontend.h"#include "ctkCmdLineModuleCache_p.h"#include "ctkCmdLineModuleFuture.h"#include "ctkCmdLineModuleXmlValidator.h"#include "ctkCmdLineModuleReference.h"#include "ctkCmdLineModuleReference_p.h"#include <ctkException.h>#include <QFileInfo>#include <QDir>#include <QStringList>#include <QBuffer>#include <QUrl>#include <QHash>#include <QList>#include <QMutex>#include <QFuture>//----------------------------------------------------------------------------struct ctkCmdLineModuleManagerPrivate{  ctkCmdLineModuleManagerPrivate(ctkCmdLineModuleManager::ValidationMode mode, const QString& cacheDir)    : ValidationMode(mode)  {    QFileInfo fileInfo(cacheDir);    if (!fileInfo.exists())    {      if (!QDir().mkpath(cacheDir))      {        qWarning() << "Command line module cache disabled. Directory" << cacheDir << "could not be created.";        return;      }    }    if (fileInfo.isWritable())    {      ModuleCache.reset(new ctkCmdLineModuleCache(cacheDir));    }    else    {      qWarning() << "Command line module cache disabled. Directory" << cacheDir << "is not writable.";    }  }  void checkBackends_unlocked(const QUrl& location)  {    if (!this->SchemeToBackend.contains(location.scheme()))    {      throw ctkInvalidArgumentException(QString("No suitable backend registered for module at ") + location.toString());    }  }  QMutex Mutex;  QHash<QString, ctkCmdLineModuleBackend*> SchemeToBackend;  QHash<QUrl, ctkCmdLineModuleReference> LocationToRef;  QScopedPointer<ctkCmdLineModuleCache> ModuleCache;  const ctkCmdLineModuleManager::ValidationMode ValidationMode;};//----------------------------------------------------------------------------ctkCmdLineModuleManager::ctkCmdLineModuleManager(ValidationMode validationMode, const QString& cacheDir)  : d(new ctkCmdLineModuleManagerPrivate(validationMode, cacheDir)){}//----------------------------------------------------------------------------ctkCmdLineModuleManager::~ctkCmdLineModuleManager(){}//----------------------------------------------------------------------------void ctkCmdLineModuleManager::registerBackend(ctkCmdLineModuleBackend *backend){  QMutexLocker lock(&d->Mutex);  QList<QString> supportedSchemes = backend->schemes();  // Check if there is already a backend registerd for any of the  // supported schemes. We only supported one backend per scheme.  foreach (QString scheme, supportedSchemes)  {    if (d->SchemeToBackend.contains(scheme))    {      throw ctkInvalidArgumentException(QString("A backend for scheme %1 is already registered.").arg(scheme));    }  }  // All good  foreach (QString scheme, supportedSchemes)  {    d->SchemeToBackend[scheme] = backend;  }}//----------------------------------------------------------------------------ctkCmdLineModuleReferencectkCmdLineModuleManager::registerModule(const QUrl &location){  QByteArray xml;  ctkCmdLineModuleBackend* backend = NULL;  {    QMutexLocker lock(&d->Mutex);    d->checkBackends_unlocked(location);    // If the module is already registered, just return the reference    if (d->LocationToRef.contains(location))    {      return d->LocationToRef[location];    }    backend = d->SchemeToBackend[location.scheme()];  }  bool fromCache = false;  qint64 newTimeStamp = 0;  if (d->ModuleCache)  {    newTimeStamp = backend->timeStamp(location);    if (d->ModuleCache->timeStamp(location) < newTimeStamp)    {      // newly fetch the XML description      try      {        xml = backend->rawXmlDescription(location);      }      catch (...)      {        // cache the failed attempt        d->ModuleCache->cacheXmlDescription(location, newTimeStamp, QByteArray());        throw;      }    }    else    {      // use the cached XML description      xml = d->ModuleCache->rawXmlDescription(location);      fromCache = true;    }  }  else  {    xml = backend->rawXmlDescription(location);  }  if (xml.isEmpty())  {    if (!fromCache && d->ModuleCache)    {      d->ModuleCache->cacheXmlDescription(location, newTimeStamp, QByteArray());    }    throw ctkInvalidArgumentException(QString("No XML output available from ") + location.toString());  }  ctkCmdLineModuleReference ref;  ref.d->Location = location;  ref.d->RawXmlDescription = xml;  ref.d->Backend = backend;  if (d->ValidationMode != SKIP_VALIDATION)  {    // validate the outputted xml description    QBuffer input(&xml);    input.open(QIODevice::ReadOnly);    ctkCmdLineModuleXmlValidator validator(&input);    if (!validator.validateInput())    {      if (d->ModuleCache)      {        // validation failed, cache an empty description        d->ModuleCache->cacheXmlDescription(location, newTimeStamp, QByteArray());      }      if (d->ValidationMode == STRICT_VALIDATION)      {        throw ctkInvalidArgumentException(QString("Validating module at %1 failed: %2")                                          .arg(location.toString()).arg(validator.errorString()));      }      else      {        ref.d->XmlValidationErrorString = validator.errorString();      }    }    else    {      if (d->ModuleCache && newTimeStamp > 0)      {        // successfully validated the xml, cache it        d->ModuleCache->cacheXmlDescription(location, newTimeStamp, xml);      }    }  }  else  {    if (!fromCache && d->ModuleCache)    {      // cache it      d->ModuleCache->cacheXmlDescription(location, newTimeStamp, xml);    }  }  {    QMutexLocker lock(&d->Mutex);    // Check that we don't have a race condition    if (d->LocationToRef.contains(location))    {      // Another thread registered a module with the same location      return d->LocationToRef[location];    }    d->LocationToRef[location] = ref;  }  emit moduleRegistered(ref);  return ref;}//----------------------------------------------------------------------------void ctkCmdLineModuleManager::unregisterModule(const ctkCmdLineModuleReference& ref){  if (!ref) return;  {    QMutexLocker lock(&d->Mutex);    if (!d->LocationToRef.contains(ref.location()))    {      return;    }    d->LocationToRef.remove(ref.location());    if (d->ModuleCache)    {      d->ModuleCache->removeCacheEntry(ref.location());    }  }  emit moduleUnregistered(ref);}//----------------------------------------------------------------------------ctkCmdLineModuleReference ctkCmdLineModuleManager::moduleReference(const QUrl &location) const{  QMutexLocker lock(&d->Mutex);  return d->LocationToRef[location];}//----------------------------------------------------------------------------QList<ctkCmdLineModuleReference> ctkCmdLineModuleManager::moduleReferences() const{  QMutexLocker lock(&d->Mutex);  return d->LocationToRef.values();}//----------------------------------------------------------------------------ctkCmdLineModuleFuture ctkCmdLineModuleManager::run(ctkCmdLineModuleFrontend *frontend){  QMutexLocker lock(&d->Mutex);  d->checkBackends_unlocked(frontend->location());  ctkCmdLineModuleFuture future = d->SchemeToBackend[frontend->location().scheme()]->run(frontend);  frontend->setFuture(future);  emit frontend->started();  return future;}
 |