2
0
mirror of https://github.com/boostorg/dll.git synced 2026-01-19 16:22:09 +00:00
Files
dll/example/tutorial3/tutorial3.cpp
2015-10-27 22:25:58 +03:00

56 lines
1.8 KiB
C++

// Copyright 2014 Renato Tegon Forti, Antony Polukhin.
// Copyright 2015 Antony Polukhin.
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt
// or copy at http://www.boost.org/LICENSE_1_0.txt)
//[callplugcpp_tutorial3
#include <boost/dll/import.hpp> // for import_alias
#include <boost/make_shared.hpp>
#include <iostream>
#include "../tutorial_common/my_plugin_api.hpp"
namespace dll = boost::dll;
std::size_t search_for_symbols(const std::vector<boost::filesystem::path>& plugins) {
std::size_t plugins_found = 0;
boost::shared_ptr<dll::shared_library> lib = boost::make_shared<dll::shared_library>();
for (std::size_t i = 0; i < plugins.size(); ++i) {
std::cout << "Loading plugin: " << plugins[i] << '\n';
lib->load(plugins[i], dll::load_mode::append_decorations);
if (!lib->has("create_plugin")) {
// no such symbol
continue;
}
// library has symbol, importing...
typedef boost::shared_ptr<my_plugin_api> (pluginapi_create_t)();
boost::function<pluginapi_create_t> creator
= dll::import_alias<pluginapi_create_t>(lib, "create_plugin");
std::cout << "Matching plugin name: " << creator()->name() << std::endl;
++ plugins_found;
}
return plugins_found;
}
//]
int main(int argc, char* argv[]) {
BOOST_ASSERT(argc >= 3);
std::vector<boost::filesystem::path> plugins;
plugins.reserve(argc - 1);
for (int i = 1; i < argc; ++i) {
if (std::string(argv[i]).find(".lib") == std::string::npos && std::string(argv[i]).find(".exp") == std::string::npos && std::string(argv[i]).find(".pdb") == std::string::npos) {
plugins.push_back(argv[i]);
}
}
const std::size_t res = search_for_symbols(plugins);
BOOST_ASSERT(res == 1);
(void)res;
}