1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Dynamic library management
4 // Author: Guilhem Lavaux
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 # pragma implementation "dynlib.h"
24 #include "wx/wxprec.h"
30 #if wxUSE_DYNLIB_CLASS && !wxUSE_DYNAMIC_LOADER
32 #if defined(__WINDOWS__)
33 #include "wx/msw/private.h"
36 #include "wx/dynlib.h"
37 #include "wx/filefn.h"
41 #if defined(__WXMAC__)
42 #include "wx/mac/private.h"
45 // ----------------------------------------------------------------------------
46 // conditional compilation
47 // ----------------------------------------------------------------------------
49 #if defined(__WXPM__) || defined(__EMX__)
52 # define wxDllOpen(error, lib, handle) DosLoadModule(error, sizeof(error), lib, &handle)
53 # define wxDllGetSymbol(handle, modaddr) DosQueryProcAddr(handle, 1L, NULL, (PFN*)modaddr)
54 # define wxDllClose(handle) DosFreeModule(handle)
55 #elif defined(HAVE_DLOPEN)
56 // note about dlopen() flags: we use RTLD_NOW to have more Windows-like
57 // behaviour (Win won't let you load a library with missing symbols) and
58 // RTLD_GLOBAL because it is needed sometimes and probably doesn't hurt
59 // otherwise. On True64-Unix RTLD_GLOBAL is not allowed and on VMS the
60 // second argument on dlopen is ignored.
62 # define wxDllOpen(lib) dlopen(lib.fn_str(), 0 )
63 #elif defined( __osf__ )
64 # define wxDllOpen(lib) dlopen(lib.fn_str(), RTLD_LAZY )
66 # define wxDllOpen(lib) dlopen(lib.fn_str(), RTLD_LAZY | RTLD_GLOBAL)
68 #define wxDllGetSymbol(handle, name) dlsym(handle, name)
69 # define wxDllClose dlclose
70 #elif defined(HAVE_SHL_LOAD)
71 # define wxDllOpen(lib) shl_load(lib.fn_str(), BIND_DEFERRED, 0)
72 # define wxDllClose shl_unload
74 static inline void *wxDllGetSymbol(shl_t handle
, const wxString
& name
)
77 if ( shl_findsym(&handle
, name
.mb_str(), TYPE_UNDEFINED
, &sym
) == 0 )
83 #elif defined(__DARWIN__)
85 * The dlopen port is a port from dl_next.xs by Anno Siegel.
86 * dl_next.xs is itself a port from dl_dlopen.xs by Paul Marquess.
87 * The method used here is just to supply the sun style dlopen etc.
88 * functions in terms of Darwin NS*.
90 void *dlopen(const char *path
, int mode
/* mode is ignored */);
91 void *dlsym(void *handle
, const char *symbol
);
92 int dlclose(void *handle
);
93 const char *dlerror(void);
95 # define wxDllOpen(lib) dlopen(lib.fn_str(), 0)
96 # define wxDllGetSymbol(handle, name) dlsym(handle, name)
97 # define wxDllClose dlclose
98 #elif defined(__WINDOWS__)
99 // using LoadLibraryEx under Win32 to avoid name clash with LoadLibrary
102 # define wxDllOpen(lib) ::LoadLibraryExW(lib, 0, 0)
104 # define wxDllOpen(lib) ::LoadLibraryExA(lib, 0, 0)
107 # define wxDllOpen(lib) ::LoadLibrary(lib)
109 # define wxDllGetSymbol(handle, name) ::GetProcAddress(handle, name)
110 # define wxDllClose ::FreeLibrary
111 #elif defined(__WXMAC__)
112 # define wxDllClose(handle) CloseConnection(&((CFragConnectionID)handle))
114 # error "Don't know how to load shared libraries on this platform."
117 // ---------------------------------------------------------------------------
119 // ---------------------------------------------------------------------------
121 wxLibraries wxTheLibraries
;
123 // ============================================================================
125 // ============================================================================
127 // construct the full name from the base shared object name: adds a .dll
128 // suffix under Windows or .so under Unix
129 static wxString
ConstructLibraryName(const wxString
& basename
)
132 fullname
<< basename
<< wxDllLoader::GetDllExt();
137 // ---------------------------------------------------------------------------
138 // wxLibrary (one instance per dynamic library)
139 // ---------------------------------------------------------------------------
141 wxLibrary::wxLibrary(wxDllType handle
)
143 typedef wxClassInfo
*(*t_get_first
)(void);
144 t_get_first get_first
;
148 // Some system may use a local heap for library.
149 get_first
= (t_get_first
)GetSymbol("wxGetClassFirst");
150 // It is a wxWindows DLL.
152 PrepareClasses(get_first());
155 wxLibrary::~wxLibrary()
159 wxDllClose(m_handle
);
163 wxObject
*wxLibrary::CreateObject(const wxString
& name
)
165 wxClassInfo
*info
= (wxClassInfo
*)classTable
.Get(name
);
170 return info
->CreateObject();
173 void wxLibrary::PrepareClasses(wxClassInfo
*first
)
175 // Index all class infos by their class name
176 wxClassInfo
*info
= first
;
179 if (info
->m_className
)
180 classTable
.Put(info
->m_className
, (wxObject
*)info
);
184 // Set base pointers for each wxClassInfo
188 if (info
->GetBaseClassName1())
189 info
->m_baseInfo1
= (wxClassInfo
*)classTable
.Get(info
->GetBaseClassName1());
190 if (info
->GetBaseClassName2())
191 info
->m_baseInfo2
= (wxClassInfo
*)classTable
.Get(info
->GetBaseClassName2());
196 void *wxLibrary::GetSymbol(const wxString
& symbname
)
198 return wxDllLoader::GetSymbol(m_handle
, symbname
);
201 // ---------------------------------------------------------------------------
203 // ---------------------------------------------------------------------------
206 #if defined(__WINDOWS__) || defined(__WXPM__) || defined(__EMX__)
207 const wxString
wxDllLoader::ms_dllext( _T(".dll") );
208 #elif defined(__UNIX__)
209 #if defined(__HPUX__)
210 const wxString
wxDllLoader::ms_dllext( _T(".sl") );
212 const wxString
wxDllLoader::ms_dllext( _T(".so") );
217 wxDllType
wxDllLoader::GetProgramHandle()
219 #if defined( HAVE_DLOPEN ) && !defined(__EMX__)
220 // optain handle for main program
221 return dlopen(NULL
, RTLD_NOW
/*RTLD_LAZY*/);
222 #elif defined (HAVE_SHL_LOAD)
223 // shl_findsymbol with NULL handle looks up in main program
226 wxFAIL_MSG( wxT("This method is not implemented under Windows or OS/2"));
232 wxDllType
wxDllLoader::LoadLibrary(const wxString
& libname
, bool *success
)
237 #if defined(__WXMAC__) && !defined(__UNIX__)
242 wxMacFilename2FSSpec( libname
, &myFSSpec
);
244 if( GetDiskFragment( &myFSSpec
,
249 &((CFragConnectionID
)handle
),
251 myErrName
) != noErr
)
254 wxLogSysError( _("Failed to load shared library '%s' Error '%s'"),
261 #elif defined(__WXPM__) || defined(__EMX__)
262 char zError
[256] = "";
263 wxDllOpen(zError
, libname
, handle
);
266 handle
= wxDllOpen(libname
);
272 wxString
msg(_("Failed to load shared library '%s'"));
275 const wxChar
*err
= dlerror();
279 wxLogError( msg
, err
);
283 wxLogSysError( msg
, libname
.c_str() );
295 void wxDllLoader::UnloadLibrary(wxDllType handle
)
301 void *wxDllLoader::GetSymbol(wxDllType dllHandle
, const wxString
&name
, bool *success
)
306 #if defined(__WXMAC__) && !defined(__UNIX__)
308 CFragSymbolClass symClass
;
312 c2pstrcpy( (StringPtr
) symName
, name
);
314 strcpy( (char *) symName
, name
);
315 c2pstr( (char *) symName
);
317 if( FindSymbol( ((CFragConnectionID
)dllHandle
), symName
, &symAddress
, &symClass
) == noErr
)
318 symbol
= (void *)symAddress
;
320 #elif defined(__WXPM__) || defined(__EMX__)
321 wxDllGetSymbol(dllHandle
, symbol
);
324 // mb_str() is necessary in Unicode build
325 symbol
= wxDllGetSymbol(dllHandle
, name
.mb_str());
331 wxString
msg(_("wxDllLoader failed to GetSymbol '%s'"));
334 const wxChar
*err
= dlerror();
338 wxLogError( msg
, err
);
342 wxLogSysError(_("Couldn't find symbol '%s' in a dynamic library"),
353 // ---------------------------------------------------------------------------
354 // wxLibraries (only one instance should normally exist)
355 // ---------------------------------------------------------------------------
357 wxLibraries::wxLibraries():m_loaded(wxKEY_STRING
)
361 wxLibraries::~wxLibraries()
363 wxNode
*node
= m_loaded
.First();
366 wxLibrary
*lib
= (wxLibrary
*)node
->Data();
373 wxLibrary
*wxLibraries::LoadLibrary(const wxString
& name
)
376 wxClassInfo
*old_sm_first
;
377 wxNode
*node
= m_loaded
.Find(name
.GetData());
380 return ((wxLibrary
*)node
->Data());
382 // If DLL shares data, this is necessary.
383 old_sm_first
= wxClassInfo::sm_first
;
384 wxClassInfo::sm_first
= NULL
;
386 wxString libname
= ConstructLibraryName(name
);
388 bool success
= FALSE
;
389 wxDllType handle
= wxDllLoader::LoadLibrary(libname
, &success
);
392 lib
= new wxLibrary(handle
);
393 wxClassInfo::sm_first
= old_sm_first
;
395 m_loaded
.Append(name
.GetData(), lib
);
402 wxObject
*wxLibraries::CreateObject(const wxString
& path
)
404 wxNode
*node
= m_loaded
.First();
408 obj
= ((wxLibrary
*)node
->Data())->CreateObject(path
);
418 // ---------------------------------------------------------------------------
419 // For Darwin/Mac OS X
420 // supply the sun style dlopen functions in terms of Darwin NS*
421 // ---------------------------------------------------------------------------
424 #import <mach-o/dyld.h>
432 static char dl_last_error
[1024];
435 void TranslateError(const char *path
, enum dyldErrorSource type
, int number
)
438 static char *OFIErrorStrings
[] =
440 "%s(%d): Object Image Load Failure\n",
441 "%s(%d): Object Image Load Success\n",
442 "%s(%d): Not an recognisable object file\n",
443 "%s(%d): No valid architecture\n",
444 "%s(%d): Object image has an invalid format\n",
445 "%s(%d): Invalid access (permissions?)\n",
446 "%s(%d): Unknown error code from NSCreateObjectFileImageFromFile\n",
448 #define NUM_OFI_ERRORS (sizeof(OFIErrorStrings) / sizeof(OFIErrorStrings[0]))
454 if (index
> NUM_OFI_ERRORS
- 1) {
455 index
= NUM_OFI_ERRORS
- 1;
457 sprintf(dl_last_error
, OFIErrorStrings
[index
], path
, number
);
461 sprintf(dl_last_error
, "%s(%d): Totally unknown error type %d\n",
467 const char *dlerror()
469 return dl_last_error
;
472 void *dlopen(const char *path
, int mode
/* mode is ignored */)
475 NSObjectFileImage ofile
;
476 NSModule handle
= NULL
;
478 dyld_result
= NSCreateObjectFileImageFromFile(path
, &ofile
);
479 if (dyld_result
!= NSObjectFileImageSuccess
)
481 TranslateError(path
, OFImage
, dyld_result
);
485 // NSLinkModule will cause the run to abort on any link error's
486 // not very friendly but the error recovery functionality is limited.
487 handle
= NSLinkModule(ofile
, path
, TRUE
);
493 int dlclose(void *handle
) /* stub only */
498 void *dlsym(void *handle
, const char *symbol
)
502 if (NSIsSymbolNameDefined(symbol
)) {
503 addr
= NSAddressOfSymbol(NSLookupAndBindSymbol(symbol
));
513 #endif // wxUSE_DYNLIB_CLASS