1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/**
*
* This file is part of Tulip (https://tulip.labri.fr)
*
* Authors: David Auber and the Tulip development Team
* from LaBRI, University of Bordeaux
*
* Tulip is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Tulip is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
*/
#include <iostream>
#include <cstdlib>
#include <cstring>
#ifndef TULIP_BUILD_CORE_ONLY
#include <QApplication>
#endif
#include <tulip/TlpTools.h>
#include <tulip/PluginLoaderTxt.h>
#include <tulip/PluginLibraryLoader.h>
#include <tulip/PluginLister.h>
// Custom loader to catch if there was some issues
// when loading plugins
class PluginLoaderTest : public tlp::PluginLoaderTxt {
public:
PluginLoaderTest() : allPluginsLoaded(true) {}
void aborted(const std::string &filename, const std::string &errormsg) override {
const std::string &libName = tlp::PluginLibraryLoader::getCurrentPluginFileName();
// plugins may be loaded twice because it may exist an other version
// of the plugins in a CMakeFiles sub dir (/CMakeRelink.dir)
// So set the failure flag only if the plugin was not found
// under the CMakeFiles dir
if (libName.find("CMakeFiles") == std::string::npos)
allPluginsLoaded = false;
tlp::PluginLoaderTxt::aborted(filename, errormsg);
}
bool allPluginsLoaded;
};
// Simple test that will try to load all compiled plugins from the Tulip trunk
// in order to detect possible issues.
// The test will then try to create and destroy an instance of each plugin.
// This can be helpful to catch possible segfaults or memory leaks.
int main(int argc, char **argv) {
#ifndef TULIP_BUILD_CORE_ONLY
// we need to create a QApplication as some plugins (view, perspective, interactor)
// need one to load correctly
QApplication app(argc, argv);
#endif
std::string tulipPluginsDir = TULIP_PLUGINS_DIR;
if (tulipPluginsDir.empty() && argc > 1) {
tulipPluginsDir = argv[1];
}
tlp::initTulipLib();
// load all plugins from the Tulip build folder
PluginLoaderTest pLoader;
if (argc > 2 && strcmp(argv[2], "build_test"))
tlp::PluginLibraryLoader::loadPlugins(&pLoader, tulipPluginsDir);
else
tlp::PluginLibraryLoader::loadPluginsFromDir(tulipPluginsDir, &pLoader);
// create an instance of each of them, then destroy it
std::list<std::string> pluginNames = tlp::PluginLister::availablePlugins();
std::list<std::string>::const_iterator it = pluginNames.begin();
for (; it != pluginNames.end(); ++it) {
tlp::Plugin *plugin = tlp::PluginLister::getPluginObject(*it);
delete plugin;
}
// test is successful if there was no plugin loading issue
if (pLoader.allPluginsLoaded) {
return EXIT_SUCCESS;
} else {
return EXIT_FAILURE;
}
}
|