/*========================================================================= 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. =========================================================================*/ // Qt includes #include // CTK includes #include "ctkAbstractLibraryFactory.h" #include "ctkDummyPlugin.h" // STD includes #include #include //----------------------------------------------------------------------------- class ctkDummyLibrary { }; //----------------------------------------------------------------------------- class ctkDummyLibraryItem: public ctkFactoryLibraryItem { protected: virtual ctkDummyLibrary* instanciator() { // Using a scoped pointer ensures the memory will be cleaned if instanciator // fails before returning the module. See QScopedPointer::take() QScopedPointer module(new ctkDummyLibrary()); foreach(QString symbol, this->Symbols) { SymbolAddressType res = this->symbolAddress(symbol); if (!res) { } } return module.take(); } }; //----------------------------------------------------------------------------- class ctkDummyLibraryFactoryItem: public ctkAbstractLibraryFactory { protected: //----------------------------------------------------------------------------- ctkAbstractFactoryItem* createFactoryFileBasedItem() { return new ctkDummyLibraryItem(); } }; //----------------------------------------------------------------------------- int ctkAbstractLibraryFactoryTest1(int argc, char * argv []) { QCoreApplication app(argc, argv); if (argc <= 1) { std::cerr << "Missing argument" << std::endl; return EXIT_FAILURE; } QString filePath(argv[1]); QFileInfo file(filePath); while (filePath.contains("$(OutDir)")) { QString debugFilePath = filePath; debugFilePath.replace("$(OutDir)","Debug"); if (QFile::exists(QString(debugFilePath))) { file = QFileInfo(debugFilePath); break; } QString releaseFilePath = filePath; releaseFilePath.replace("$(OutDir)","Release"); if (QFile::exists(QString(releaseFilePath))) { file = QFileInfo(releaseFilePath); break; } return EXIT_FAILURE; } ctkDummyLibraryFactoryItem libraryFactory; libraryFactory.setVerbose(true); QString itemKey = libraryFactory.registerFileItem(QFileInfo("foo/bar.txt")); if (!itemKey.isEmpty()) { std::cerr << "ctkAbstractLibraryFactory::registerLibrary() registered bad file" << std::endl; return EXIT_FAILURE; } itemKey = libraryFactory.registerFileItem(file); if (itemKey.isEmpty() || libraryFactory.itemKeys().count() != 1) { std::cerr << "ctkAbstractLibraryFactory::registerLibrary() failed" << libraryFactory.itemKeys().count() << std::endl; return EXIT_FAILURE; } // register twice must be a no-op itemKey = libraryFactory.registerFileItem(file); if (itemKey.isEmpty() || libraryFactory.itemKeys().count() != 1) { std::cerr << "ctkAbstractLibraryFactory::registerLibrary() failed" << libraryFactory.itemKeys().count() << std::endl; return EXIT_FAILURE; } if (QFileInfo(libraryFactory.path(itemKey)) != file) { std::cerr << "ctkAbstractLibraryFactory::registerLibrary() failed" << libraryFactory.path(itemKey).toStdString() << std::endl; return EXIT_FAILURE; } ctkDummyLibrary* library = libraryFactory.instantiate(itemKey); if (library == 0) { std::cerr << "ctkAbstractLibraryFactory::instantiate() failed" << std::endl; return EXIT_FAILURE; } libraryFactory.uninstantiate(itemKey); return EXIT_SUCCESS; }