2 #define GDYNAMICLIB_H 1
17 static dlhandle load_lib(
const std::string &path);
19 static void close_lib(
dlhandle handle);
21 #define PLUGINITEM " ⎆"
24 #define EC__DLNOTFOUND 1001
25 #define EC__FACTORYNOTFOUND 1002
26 #define EC__DLHANDLENOTFOUND 1003
36 std::string dlFileName;
38 bool doesFileExists(
const std::string &name) {
40 return (stat(name.c_str(), &buffer) == 0);
50 DynamicLib( GLogger
const *logger, std::string path) : dlFileName(path), log(logger),
handle(nullptr) {
52 log->debug(CONSTRUCTOR,
"Instantiating ", path);
53 log->debug(NORMAL,
"Trying ", dlFileName);
56 if (!doesFileExists(dlFileName)) {
57 log->debug(NORMAL, dlFileName,
"Not found...");
58 dlFileName = std::string(getenv(
"GEMC")) +
"/lib/" + path;
59 log->debug(NORMAL,
"Trying ", dlFileName);
63 if (!doesFileExists(dlFileName)) {
64 log->debug(NORMAL, dlFileName,
"Not found...");
65 dlFileName = std::string(getenv(
"GEMC")) +
"/lib64/" + path;
66 log->debug(NORMAL,
"Trying ", dlFileName);
69 if (doesFileExists(dlFileName)) {
70 handle = load_lib(dlFileName);
71 log->info(0,
"Loaded ", dlFileName);
73 char const *
const dlopen_error = dlerror();
74 log->error(
EC__DLHANDLENOTFOUND,
"File ", dlFileName,
" found, but handle is null. Error: ", dlopen_error);
86 log->debug(DESTRUCTOR,
"Destroying ", dlFileName);
94 static dlhandle load_lib(
const std::string &path) {
96 return dlopen(path.data(), RTLD_NOW);
102 static void close_lib(
dlhandle handle) {
#define EC__DLHANDLENOTFOUND
Structure to load dynamically symbols from a shared library.
DynamicLib(GLogger const *logger, std::string path)