Change LoadLibraryPermanently to not throw an exception.

llvm-svn: 29048
This commit is contained in:
Chris Lattner 2006-07-07 17:12:36 +00:00
parent 15956a15b0
commit 8c8858a6c4
3 changed files with 21 additions and 12 deletions

View File

@ -65,10 +65,11 @@ namespace sys {
public: public:
/// This function allows a library to be loaded without instantiating a /// This function allows a library to be loaded without instantiating a
/// DynamicLibrary object. Consequently, it is marked as being permanent /// DynamicLibrary object. Consequently, it is marked as being permanent
/// and will only be unloaded when the program terminates. /// and will only be unloaded when the program terminates. This returns
/// @throws std::string on error. /// false on success or returns true and fills in *ErrMsg on failure.
/// @brief Open a dynamic library permanently. /// @brief Open a dynamic library permanently.
static void LoadLibraryPermanently(const char* filename); static bool LoadLibraryPermanently(const char* filename,
std::string *ErrMsg = 0);
/// This function will search through all previously loaded dynamic /// This function will search through all previously loaded dynamic
/// libraries for the symbol \p symbolName. If it is found, the addressof /// libraries for the symbol \p symbolName. If it is found, the addressof

View File

@ -18,7 +18,8 @@
// Collection of symbol name/value pairs to be searched prior to any libraries. // Collection of symbol name/value pairs to be searched prior to any libraries.
static std::map<std::string, void *> g_symbols; static std::map<std::string, void *> g_symbols;
void llvm::sys::DynamicLibrary::AddSymbol(const char* symbolName, void *symbolValue) { void llvm::sys::DynamicLibrary::AddSymbol(const char* symbolName,
void *symbolValue) {
g_symbols[symbolName] = symbolValue; g_symbols[symbolName] = symbolValue;
} }
@ -99,20 +100,25 @@ DynamicLibrary::~DynamicLibrary() {
} }
} }
void DynamicLibrary::LoadLibraryPermanently(const char* filename) { bool DynamicLibrary::LoadLibraryPermanently(const char *Filename,
std::string *ErrMsg) {
check_ltdl_initialization(); check_ltdl_initialization();
lt_dlhandle a_handle = lt_dlopen(filename); lt_dlhandle a_handle = lt_dlopen(Filename);
if (a_handle == 0) if (a_handle == 0)
a_handle = lt_dlopenext(filename); a_handle = lt_dlopenext(Filename);
if (a_handle == 0) if (a_handle == 0) {
throw std::string("Can't open :") + if (ErrMsg)
(filename ? filename : "<current process>") + ": " + lt_dlerror(); *ErrMsg = std::string("Can't open :") +
(Filename ? Filename : "<current process>") + ": " + lt_dlerror();
return true;
}
lt_dlmakeresident(a_handle); lt_dlmakeresident(a_handle);
OpenedHandles.push_back(a_handle); OpenedHandles.push_back(a_handle);
return false;
} }
void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) { void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {

View File

@ -94,12 +94,13 @@ DynamicLibrary::~DynamicLibrary() {
} }
} }
void DynamicLibrary::LoadLibraryPermanently(const char* filename) { bool DynamicLibrary::LoadLibraryPermanently(const char *filename,
std::string *ErrMsg) {
if (filename) { if (filename) {
HMODULE a_handle = LoadLibrary(filename); HMODULE a_handle = LoadLibrary(filename);
if (a_handle == 0) if (a_handle == 0)
ThrowError(std::string(filename) + ": Can't open : "); return GetError(std::string(filename) + ": Can't open : ", ErrMsg);
OpenedHandles.push_back(a_handle); OpenedHandles.push_back(a_handle);
} else { } else {
@ -110,6 +111,7 @@ void DynamicLibrary::LoadLibraryPermanently(const char* filename) {
// Because we don't remember the handle, we will never free it; hence, // Because we don't remember the handle, we will never free it; hence,
// it is loaded permanently. // it is loaded permanently.
return false;
} }
void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) { void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {