gfactory
gdl.h
Go to the documentation of this file.
1 #ifndef GDYNAMICLIB_H
2 #define GDYNAMICLIB_H 1
3 
4 #include "glogger.h"
5 
6 // c++ plugin loading functions
7 // documentation: http://www.faqs.org/docs/Linux-mini/C++-dlopen.html
8 #include <dlfcn.h>
9 
10 // c++
11 #include <sys/stat.h> // to check if file exists
12 #include <string>
13 #include <iostream>
14 
15 typedef void *dlhandle;
16 
17 static dlhandle load_lib(const std::string &path);
18 
19 static void close_lib(dlhandle handle);
20 
21 #define PLUGINITEM " ⎆"
22 
23 // exit codes: 1000s
24 #define EC__DLNOTFOUND 1001
25 #define EC__FACTORYNOTFOUND 1002
26 #define EC__DLHANDLENOTFOUND 1003
27 
28 
33 struct DynamicLib {
34 
35 private:
36  std::string dlFileName; // dynamic library file
37 
38  bool doesFileExists(const std::string &name) {
39  struct stat buffer;
40  return (stat(name.c_str(), &buffer) == 0);
41  }
42 
43  GLogger const *log;
44 
45 public:
46  // default constructor
47  DynamicLib() = default;
48 
49  // path here is the filename
50  DynamicLib( GLogger const *logger, std::string path) : dlFileName(path), log(logger), handle(nullptr) {
51 
52  log->debug(CONSTRUCTOR, "Instantiating ", path);
53  log->debug(NORMAL, "Trying ", dlFileName);
54 
55  // trying $GEMC/lib/ + path if not found
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);
60  }
61 
62  // trying $GEMC/lib64/ + path if not found
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);
67  }
68 
69  if (doesFileExists(dlFileName)) {
70  handle = load_lib(dlFileName);
71  log->info(0, "Loaded ", dlFileName);
72  if (handle == nullptr) {
73  char const *const dlopen_error = dlerror();
74  log->error(EC__DLHANDLENOTFOUND, "File ", dlFileName, " found, but handle is null. Error: ", dlopen_error);
75  }
76  } else {
77  log->error(EC__DLNOTFOUND, "could not find ", dlFileName);
78  }
79  }
80 
81  dlhandle handle = nullptr; // posix handle of the dynamic library
82 
84  if (handle != nullptr) {
85  close_lib(handle);
86  log->debug(DESTRUCTOR, "Destroying ", dlFileName);
87  }
88  }
89 
90 
91 };
92 
93 
94 static dlhandle load_lib(const std::string &path) {
95 
96  return dlopen(path.data(), RTLD_NOW);
97  // get a handle to the lib, may be nullptr.
98  // RTLD_NOW ensures that all the symbols are resolved immediately:
99  // if a symbol cannot be found, the program will crash now instead of later.
100 }
101 
102 static void close_lib(dlhandle handle) {
103  dlclose(handle);
104 }
105 
106 #endif
void * dlhandle
Definition: gdl.h:15
#define EC__DLHANDLENOTFOUND
Definition: gdl.h:26
#define EC__DLNOTFOUND
Definition: gdl.h:24
Structure to load dynamically symbols from a shared library.
Definition: gdl.h:33
dlhandle handle
Definition: gdl.h:81
DynamicLib(GLogger const *logger, std::string path)
Definition: gdl.h:50
~DynamicLib()
Definition: gdl.h:83
DynamicLib()=default