1 | // Copyright (C) 2012-2015 ChaosForge Ltd
|
---|
2 | // http://chaosforge.org/
|
---|
3 | //
|
---|
4 | // This file is part of Nova libraries.
|
---|
5 | // For conditions of distribution and use, see copying.txt file in root folder.
|
---|
6 |
|
---|
7 | #include "nv/core/library.hh"
|
---|
8 |
|
---|
9 | #if NV_PLATFORM == NV_WINDOWS
|
---|
10 | # define WIN32_LEAN_AND_MEAN
|
---|
11 | # include <windows.h>
|
---|
12 | # define NV_LIB_EXT ".dll"
|
---|
13 | # define NV_LIB_OPEN( name ) static_cast<void*>( LoadLibraryEx( name, NULL, LOAD_WITH_ALTERED_SEARCH_PATH ) )
|
---|
14 | # define NV_LIB_GET( handle, name ) reinterpret_cast<void*>( GetProcAddress( static_cast<HMODULE>( handle ), name ) )
|
---|
15 | # define NV_LIB_CLOSE( handle ) ( FreeLibrary( static_cast<HMODULE>( handle ) ) != 0 )
|
---|
16 | #elif NV_PLATFORM == NV_LINUX || NV_PLATFORM == NV_APPLE
|
---|
17 | # include <dlfcn.h>
|
---|
18 | # define NV_LIB_EXT ".so"
|
---|
19 | # define NV_LIB_OPEN( name ) dlopen( name, RTLD_LAZY | RTLD_GLOBAL)
|
---|
20 | # define NV_LIB_GET( handle, name ) dlsym( static_cast<void*>( handle ), name )
|
---|
21 | # define NV_LIB_CLOSE( handle ) ( dlclose( static_cast<void*>( handle ) ) == 0 )
|
---|
22 | #elif NV_PLATFORM == NV_APPLE
|
---|
23 | # include "macUtils.h"
|
---|
24 | # include <dlfcn.h>
|
---|
25 | # define NV_LIB_EXT ".dylib"
|
---|
26 | # define NV_LIB_OPEN( name ) mac_loadExeBundle( name )
|
---|
27 | # define NV_LIB_GET( handle, name ) mac_getBundleSym( handle, name )
|
---|
28 | # define NV_LIB_CLOSE( handle ) ( mac_unloadExeBundle( handle ) == 0 )
|
---|
29 | #endif
|
---|
30 |
|
---|
31 | #include "nv/core/logging.hh"
|
---|
32 |
|
---|
33 | using namespace nv;
|
---|
34 |
|
---|
35 | library::library()
|
---|
36 | : m_handle( nullptr ), m_name()
|
---|
37 | {
|
---|
38 | }
|
---|
39 |
|
---|
40 | void library::open( string_view name )
|
---|
41 | {
|
---|
42 | m_name = name;
|
---|
43 | if ( !open() )
|
---|
44 | {
|
---|
45 | m_handle = nullptr;
|
---|
46 | NV_LOG_CRITICAL( "library \"", name, "\" : failed to load!" );
|
---|
47 | NV_ABORT( "Can't load library!" );
|
---|
48 | }
|
---|
49 | }
|
---|
50 |
|
---|
51 | bool nv::library::try_open( string_view name )
|
---|
52 | {
|
---|
53 | m_name = name;
|
---|
54 | if ( !open() )
|
---|
55 | {
|
---|
56 | m_handle = nullptr;
|
---|
57 | return false;
|
---|
58 | }
|
---|
59 | return true;
|
---|
60 | }
|
---|
61 |
|
---|
62 | string_view library::get_name() const
|
---|
63 | {
|
---|
64 | return m_name;
|
---|
65 | }
|
---|
66 |
|
---|
67 | bool library::open( )
|
---|
68 | {
|
---|
69 | if ( m_handle != NULL )
|
---|
70 | {
|
---|
71 | return true;
|
---|
72 | }
|
---|
73 | NV_LOG_NOTICE( "library \"", m_name, "\" : loading..." );
|
---|
74 |
|
---|
75 | string128 name( m_name );
|
---|
76 | string_view ext( NV_LIB_EXT );
|
---|
77 |
|
---|
78 | if ( name.length() < ext.length() || !name.ends_with( ext ) )
|
---|
79 | {
|
---|
80 | name.append( ext );
|
---|
81 | }
|
---|
82 |
|
---|
83 | m_handle = NV_LIB_OPEN( name.data() );
|
---|
84 |
|
---|
85 | if ( m_handle == NULL )
|
---|
86 | {
|
---|
87 | NV_LOG_NOTICE( "library \"", name, "\" : failed to open!" );
|
---|
88 | return false;
|
---|
89 | }
|
---|
90 | return true;
|
---|
91 | }
|
---|
92 |
|
---|
93 | void* library::get( string_view symbol )
|
---|
94 | {
|
---|
95 | void* result = NV_LIB_GET( m_handle, symbol.data() );
|
---|
96 | if ( !result )
|
---|
97 | {
|
---|
98 | NV_LOG_CRITICAL( "library \"", m_name, "\" : can't find symbol \"", symbol, "\"" );
|
---|
99 | NV_ABORT( "Library symbol load failed!" );
|
---|
100 | }
|
---|
101 | return result;
|
---|
102 | }
|
---|
103 |
|
---|
104 | void* nv::library::try_get( string_view symbol )
|
---|
105 | {
|
---|
106 | return NV_LIB_GET( m_handle, symbol.data() );
|
---|
107 | }
|
---|
108 |
|
---|
109 | bool library::is_open() const
|
---|
110 | {
|
---|
111 | return m_handle != nullptr;
|
---|
112 | }
|
---|
113 |
|
---|
114 | void library::close()
|
---|
115 | {
|
---|
116 | if ( ! NV_LIB_CLOSE( m_handle ) )
|
---|
117 | {
|
---|
118 | NV_LOG_ERROR( "library \"", m_name, "\" : can't close library!" );
|
---|
119 | }
|
---|
120 | m_handle = nullptr;
|
---|
121 | }
|
---|
122 |
|
---|
123 | library::~library()
|
---|
124 | {
|
---|
125 | if ( m_handle != nullptr )
|
---|
126 | {
|
---|
127 | close();
|
---|
128 | }
|
---|
129 | }
|
---|
130 |
|
---|
131 | nv::string_view library::get_error()
|
---|
132 | {
|
---|
133 | #if NV_PLATFORM == NV_WINDOWS
|
---|
134 | // We do hate WinAPI for code like this, don't we?
|
---|
135 | static TCHAR buffer[256];
|
---|
136 | FormatMessage( FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
|
---|
137 | NULL, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), reinterpret_cast<LPTSTR>( &buffer ), 256, NULL );
|
---|
138 | return string_view( reinterpret_cast<char*>( buffer ) );
|
---|
139 | #elif NV_PLATFORM == NV_LINUX || NV_PLATFORM == NV_APPLE
|
---|
140 | return nv::string_view( dlerror() );
|
---|
141 | #else
|
---|
142 | return nv::string_view();
|
---|
143 | #endif
|
---|
144 | }
|
---|