/*========================================================================= 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.apache.org/licenses/LICENSE-2.0.txt 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" #include "ctkScopedCurrentDir.h" // QT includes #include #include //---------------------------------------------------------------------------- // ctkFactoryPluginItem methods /* //---------------------------------------------------------------------------- template ctkFactoryPluginItem::ctkFactoryPluginItem(const QString& _path) :ctkAbstractFactoryFileBasedItem(_path) { } */ //---------------------------------------------------------------------------- template bool ctkFactoryPluginItem::load() { ctkScopedCurrentDir scopedCurrentDir(QFileInfo(this->path()).path()); this->Loader.setFileName(this->path()); bool loaded = this->Loader.load(); if (!loaded) { this->appendLoadErrorString(this->loadErrorString()); } return loaded; } //---------------------------------------------------------------------------- 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()) { this->appendLoadErrorString(QString("Failed to instantiate plugin: %1").arg(this->path())); } return 0; } BaseClassType* castedObject = qobject_cast(object); if (!castedObject) { if (this->verbose()) { this->appendLoadErrorString( QString("Plugin %1 - Failed to access expected interface [%2] - Instead got object of type [%3]") .arg(this->path()) .arg(BaseClassType::staticMetaObject.className()) .arg(object->metaObject()->className())); } delete object; // Clean memory return 0; } return castedObject; } //---------------------------------------------------------------------------- // ctkAbstractPluginFactory methods //----------------------------------------------------------------------------- template ctkAbstractFactoryItem* ctkAbstractPluginFactory ::createFactoryFileBasedItem() { return new ctkFactoryPluginItem(); } //----------------------------------------------------------------------------- template bool ctkAbstractPluginFactory ::isValidFile(const QFileInfo& fileInfo)const { return this->ctkAbstractFileBasedFactory::isValidFile(fileInfo) && QLibrary::isLibrary(fileInfo.fileName()); } #endif