1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Added methods for opening dynamic libraries to OS

This commit is contained in:
Karroffel
2017-03-08 02:50:13 +01:00
parent 92b6c8095a
commit 2281942fb3
5 changed files with 68 additions and 0 deletions

View File

@@ -54,6 +54,7 @@
#endif
#include "global_config.h"
#include <assert.h>
#include <dlfcn.h>
#include <errno.h>
#include <poll.h>
#include <signal.h>
@@ -435,6 +436,35 @@ String OS_Unix::get_locale() const {
return locale;
}
Error OS_Unix::open_dynamic_library(const String p_path, void* &p_library_handle) {
p_library_handle = dlopen(p_path.utf8().get_data(), RTLD_NOW);
if(!p_library_handle) {
ERR_EXPLAIN("Can't open dynamic library: " + p_path + ". Error: " + dlerror());
ERR_FAIL_V(ERR_CANT_OPEN);
}
return OK;
}
Error OS_Unix::close_dynamic_library(void* p_library_handle) {
if(dlclose(p_library_handle)) {
return FAILED;
}
return OK;
}
Error OS_Unix::get_dynamic_library_symbol_handle(void* p_library_handle, const String p_name, void* &p_symbol_handle) {
char* error;
dlerror(); // Clear existing errors
p_symbol_handle = dlsym(p_library_handle, p_name.utf8().get_data());
if ((error = dlerror()) != NULL) {
ERR_EXPLAIN("Can't resolve symbol " + p_name + ". Error: " + dlerror());
ERR_FAIL_V(ERR_CANT_RESOLVE);
}
return OK;
}
Error OS_Unix::set_cwd(const String &p_cwd) {
if (chdir(p_cwd.utf8().get_data()) != 0)