/*========================================================================= Library: CTK Copyright (c) Kitware Inc. 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.commontk.org/LICENSE 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. =========================================================================*/ #ifndef __ctkAbstractPluginFactory_tpp #define __ctkAbstractPluginFactory_tpp // CTK includes #include "ctkAbstractPluginFactory.h" // QT includes #include #include //---------------------------------------------------------------------------- // ctkFactoryPluginItem methods //---------------------------------------------------------------------------- template ctkFactoryPluginItem::ctkFactoryPluginItem(const QString& _path) :Path(_path) { } //---------------------------------------------------------------------------- template bool ctkFactoryPluginItem::load() { this->Loader.setFileName(this->path()); return this->Loader.load(); } //---------------------------------------------------------------------------- template QString ctkFactoryPluginItem::path()const { return this->Path; } //---------------------------------------------------------------------------- template QString ctkFactoryPluginItem::loadErrorString()const { return this->Loader.errorString(); } //---------------------------------------------------------------------------- template BaseClassType* ctkFactoryPluginItem::instanciator() { //qDebug() << "PluginItem::instantiate - name:" << this->path(); QObject * object = this->Loader.instance(); if (!object) { if (this->verbose()) { qWarning() << "Failed to instantiate plugin:" << this->path(); } return 0; } BaseClassType* castedObject = qobject_cast(object); if (!castedObject) { if (this->verbose()) { qWarning() << "Failed to access interface [" << BaseClassType::staticMetaObject.className() << "] in plugin:" << this->path() << "\n instead, got object of type:" << object->metaObject()->className(); } delete object; // Clean memory return 0; } return castedObject; } //---------------------------------------------------------------------------- // ctkAbstractPluginFactory methods //---------------------------------------------------------------------------- template ctkAbstractPluginFactory::ctkAbstractPluginFactory() :ctkAbstractFactory() { } //---------------------------------------------------------------------------- template bool ctkAbstractPluginFactory::registerLibrary(const QString& key, const QFileInfo& file) { // Check if already registered if (this->item(key)) { return false; } QSharedPointer > _item = QSharedPointer >( this->createFactoryPluginItem(file)); if (_item.isNull()) { return false; } _item->setVerbose(this->verbose()); return this->registerItem(key, _item); } //---------------------------------------------------------------------------- template QString ctkAbstractPluginFactory::path(const QString& key) { ctkFactoryPluginItem* _item = dynamic_cast*>(this->item(key)); Q_ASSERT(_item); return _item->path(); } //---------------------------------------------------------------------------- template ctkAbstractFactoryItem* ctkAbstractPluginFactory::createFactoryPluginItem(const QFileInfo& file) { return new ctkFactoryPluginItem(file.filePath()); } #endif