summaryrefslogtreecommitdiff
path: root/src/cppunit/UnixDynamicLibraryManager.cpp
blob: 4de32cf2f0ed30b7871132dfe87f04de2d8c3ec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include <cppunit/Portability.h>

#if defined(CPPUNIT_HAVE_UNIX_DLL_LOADER)
#include <cppunit/plugin/DynamicLibraryManager.h>

#include <dlfcn.h>
#include <unistd.h>


CPPUNIT_NS_BEGIN


DynamicLibraryManager::LibraryHandle 
DynamicLibraryManager::doLoadLibrary( const std::string &libraryName )
{
  return ::dlopen( libraryName.c_str(), RTLD_NOW | RTLD_GLOBAL );
}


void 
DynamicLibraryManager::doReleaseLibrary()
{
  ::dlclose( m_libraryHandle);
}


DynamicLibraryManager::Symbol 
DynamicLibraryManager::doFindSymbol( const std::string &symbol )
{
  return ::dlsym ( m_libraryHandle, symbol.c_str() );
}


std::string 
DynamicLibraryManager::getLastErrorDetail() const
{
    const char* last_error = ::dlerror();
    if(last_error)
        return last_error;
    else
        return "";
}


CPPUNIT_NS_END


#endif // defined(CPPUNIT_HAVE_UNIX_DLL_LOADER)