/*========================================================================= 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 __ctkAbstractLibraryFactory_tpp #define __ctkAbstractLibraryFactory_tpp // CTK includes #include "ctkAbstractLibraryFactory.h" //---------------------------------------------------------------------------- // ctkFactoryLibraryItem methods /* //---------------------------------------------------------------------------- template ctkFactoryLibraryItem::ctkFactoryLibraryItem(const QString& _path) :ctkAbstractFactoryFileBasedItem(_path) { }*/ //---------------------------------------------------------------------------- template bool ctkFactoryLibraryItem::load() { this->Library.setFileName(this->path()); bool loaded = this->Library.load(); if (loaded) { if (!this->resolve()) { this->appendLoadErrorString(this->Library.errorString()); return false; } return true; } else { this->appendLoadErrorString(this->Library.errorString()); } return false; } //---------------------------------------------------------------------------- template void ctkFactoryLibraryItem::setSymbols(const QStringList& symbols) { this->Symbols = symbols; } //----------------------------------------------------------------------------- template bool ctkFactoryLibraryItem::resolve() { foreach(const QString& symbol, this->Symbols) { // Sanity checks if (symbol.isEmpty()) { this->appendLoadErrorString(QLatin1String("Failed to resolve empty symbol !")); continue; } // Skip if the symbols has already been resolved if (this->ResolvedSymbols.contains(symbol)) { this->appendLoadWarningString(QString("Symbol '%1' already resolved").arg(symbol)); continue; } SymbolAddressType resolvedSymbol = this->Library.resolve(symbol.toLatin1()); if (!resolvedSymbol) { this->appendLoadErrorString(QString("Failed to resolve mandatory symbol '%1'").arg(symbol)); return false; } this->ResolvedSymbols[symbol] = resolvedSymbol; } return true; } //----------------------------------------------------------------------------- template typename ctkFactoryLibraryItem::SymbolAddressType ctkFactoryLibraryItem::symbolAddress(const QString& symbol)const { ConstIterator iter = this->ResolvedSymbols.find(symbol); if ( iter == this->ResolvedSymbols.constEnd()) { return this->Library.resolve(symbol.toLatin1()); } return iter.value(); } //---------------------------------------------------------------------------- // ctkAbstractLibraryFactory methods //----------------------------------------------------------------------------- template void ctkAbstractLibraryFactory::setSymbols( const QStringList& symbols) { this->Symbols = symbols; } //----------------------------------------------------------------------------- template bool ctkAbstractLibraryFactory ::isValidFile(const QFileInfo& file)const { return this->ctkAbstractFileBasedFactory::isValidFile(file) && QLibrary::isLibrary(file.fileName()); } //----------------------------------------------------------------------------- template void ctkAbstractLibraryFactory:: initItem(ctkAbstractFactoryItem* item) { this->ctkAbstractFileBasedFactory::initItem(item); dynamic_cast*>(item)->setSymbols(this->Symbols); } #endif