1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Dynamic library management
4 // Author: Guilhem Lavaux
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 # pragma implementation "dynlib.h"
24 #include "wx/wxprec.h"
30 #if wxUSE_DYNLIB_CLASS
32 #if defined(__WINDOWS__)
33 #include "wx/msw/wrapwin.h"
36 #include "wx/dynlib.h"
37 #include "wx/filefn.h"
41 #include "wx/filename.h" // for SplitPath()
43 #include "wx/apptrait.h"
45 #if defined(__WXMAC__)
46 #include "wx/mac/private.h"
50 // ============================================================================
52 // ============================================================================
54 #if defined(__DARWIN__)
55 // ---------------------------------------------------------------------------
56 // For Darwin/Mac OS X
57 // supply the sun style dlopen functions in terms of Darwin NS*
58 // ---------------------------------------------------------------------------
61 * The dlopen port is a port from dl_next.xs by Anno Siegel.
62 * dl_next.xs is itself a port from dl_dlopen.xs by Paul Marquess.
63 * The method used here is just to supply the sun style dlopen etc.
64 * functions in terms of Darwin NS*.
68 #include <mach-o/dyld.h>
70 static char dl_last_error
[1024];
73 void TranslateError(const char *path
, int number
)
76 static char *OFIErrorStrings
[] =
78 "%s(%d): Object Image Load Failure\n",
79 "%s(%d): Object Image Load Success\n",
80 "%s(%d): Not an recognisable object file\n",
81 "%s(%d): No valid architecture\n",
82 "%s(%d): Object image has an invalid format\n",
83 "%s(%d): Invalid access (permissions?)\n",
84 "%s(%d): Unknown error code from NSCreateObjectFileImageFromFile\n",
86 #define NUM_OFI_ERRORS (sizeof(OFIErrorStrings) / sizeof(OFIErrorStrings[0]))
89 if (index
> NUM_OFI_ERRORS
- 1) {
90 index
= NUM_OFI_ERRORS
- 1;
92 sprintf(dl_last_error
, OFIErrorStrings
[index
], path
, number
);
100 void *dlopen(const char *path
, int WXUNUSED(mode
) /* mode is ignored */)
103 NSObjectFileImage ofile
;
104 NSModule handle
= NULL
;
106 dyld_result
= NSCreateObjectFileImageFromFile(path
, &ofile
);
107 if (dyld_result
!= NSObjectFileImageSuccess
)
109 TranslateError(path
, dyld_result
);
113 // NSLinkModule will cause the run to abort on any link error's
114 // not very friendly but the error recovery functionality is limited.
115 handle
= NSLinkModule(ofile
, path
, NSLINKMODULE_OPTION_BINDNOW
);
121 int dlclose(void *handle
)
123 NSUnLinkModule( handle
, NSUNLINKMODULE_OPTION_NONE
);
127 void *dlsym(void *handle
, const char *symbol
)
129 // as on many other systems, C symbols have prepended underscores under
130 // Darwin but unlike the normal dlopen(), NSLookupSymbolInModule() is not
132 wxCharBuffer
buf(strlen(symbol
) + 1);
133 char *p
= buf
.data();
135 strcpy(p
+ 1, symbol
);
137 NSSymbol nsSymbol
= NSLookupSymbolInModule( handle
, p
);
138 return nsSymbol
? NSAddressOfSymbol(nsSymbol
) : NULL
;
141 #endif // defined(__DARWIN__)
144 // ---------------------------------------------------------------------------
146 // ---------------------------------------------------------------------------
148 //FIXME: This class isn't really common at all, it should be moved into
149 // platform dependent files.
151 #if defined(__WINDOWS__) || defined(__WXPM__) || defined(__EMX__)
152 const wxChar
*wxDynamicLibrary::ms_dllext
= _T(".dll");
153 #elif defined(__WXMAC__) && !defined(__DARWIN__)
154 const wxChar
*wxDynamicLibrary::ms_dllext
= _T("");
155 #elif defined(__UNIX__)
156 #if defined(__HPUX__)
157 const wxChar
*wxDynamicLibrary::ms_dllext
= _T(".sl");
158 #elif defined(__DARWIN__)
159 const wxChar
*wxDynamicLibrary::ms_dllext
= _T(".bundle");
161 const wxChar
*wxDynamicLibrary::ms_dllext
= _T(".so");
165 wxDllType
wxDynamicLibrary::GetProgramHandle()
167 #if defined( HAVE_DLOPEN ) && !defined(__EMX__)
168 return dlopen(0, RTLD_LAZY
);
169 #elif defined (HAVE_SHL_LOAD)
172 wxFAIL_MSG( wxT("This method is not implemented under Windows or OS/2"));
177 bool wxDynamicLibrary::Load(wxString libname
, int flags
)
179 wxASSERT_MSG(m_handle
== 0, _T("Library already loaded."));
181 // add the proper extension for the DLL ourselves unless told not to
182 if ( !(flags
& wxDL_VERBATIM
) )
184 // and also check that the libname doesn't already have it
186 wxFileName::SplitPath(libname
, NULL
, NULL
, &ext
);
189 libname
+= GetDllExt();
193 // different ways to load a shared library
195 // FIXME: should go to the platform-specific files!
196 #if defined(__WXMAC__) && !defined(__DARWIN__)
201 wxMacFilename2FSSpec( libname
, &myFSSpec
);
203 if( GetDiskFragment( &myFSSpec
,
210 myErrName
) != noErr
)
212 wxLogSysError( _("Failed to load shared library '%s' Error '%s'"),
214 wxMacMakeStringFromPascal( myErrName
).c_str() );
218 #elif defined(__WXPM__) || defined(__EMX__)
220 DosLoadModule(err
, sizeof(err
), libname
.c_str(), &m_handle
);
222 #elif defined(HAVE_DLOPEN) || defined(__DARWIN__)
224 #if defined(__VMS) || defined(__DARWIN__)
225 m_handle
= dlopen(libname
.fn_str(), 0); // The second parameter is ignored
226 #else // !__VMS && !__DARWIN__
229 if ( flags
& wxDL_LAZY
)
231 wxASSERT_MSG( (flags
& wxDL_NOW
) == 0,
232 _T("wxDL_LAZY and wxDL_NOW are mutually exclusive.") );
234 rtldFlags
|= RTLD_LAZY
;
236 wxLogDebug(_T("wxDL_LAZY is not supported on this platform"));
239 else if ( flags
& wxDL_NOW
)
242 rtldFlags
|= RTLD_NOW
;
244 wxLogDebug(_T("wxDL_NOW is not supported on this platform"));
248 if ( flags
& wxDL_GLOBAL
)
251 rtldFlags
|= RTLD_GLOBAL
;
253 wxLogDebug(_T("RTLD_GLOBAL is not supported on this platform."));
257 m_handle
= dlopen(libname
.fn_str(), rtldFlags
);
258 #endif // __VMS || __DARWIN__ ?
260 #elif defined(HAVE_SHL_LOAD)
263 if( flags
& wxDL_LAZY
)
265 wxASSERT_MSG( (flags
& wxDL_NOW
) == 0,
266 _T("wxDL_LAZY and wxDL_NOW are mutually exclusive.") );
267 shlFlags
|= BIND_DEFERRED
;
269 else if( flags
& wxDL_NOW
)
271 shlFlags
|= BIND_IMMEDIATE
;
273 m_handle
= shl_load(libname
.fn_str(), BIND_DEFERRED
, 0);
275 #elif defined(__WINDOWS__)
276 m_handle
= ::LoadLibrary(libname
.c_str());
278 #error "runtime shared lib support not implemented on this platform"
283 wxString
msg(_("Failed to load shared library '%s'"));
284 #if defined(HAVE_DLERROR) && !defined(__EMX__)
287 wxWCharBuffer buffer
= wxConvLocal
.cMB2WC( dlerror() );
288 const wxChar
*err
= buffer
;
290 const wxChar
*err
= dlerror();
294 wxLogError( msg
, err
);
296 wxLogSysError( msg
, libname
.c_str() );
304 void wxDynamicLibrary::Unload(wxDllType handle
)
306 #if defined(__WXPM__) || defined(__EMX__)
307 DosFreeModule( handle
);
308 #elif defined(HAVE_DLOPEN) || defined(__DARWIN__)
310 #elif defined(HAVE_SHL_LOAD)
311 shl_unload( handle
);
312 #elif defined(__WINDOWS__)
313 ::FreeLibrary( handle
);
314 #elif defined(__WXMAC__) && !defined(__DARWIN__)
315 CloseConnection( (CFragConnectionID
*) &handle
);
317 #error "runtime shared lib support not implemented"
321 void *wxDynamicLibrary::DoGetSymbol(const wxString
&name
, bool *success
) const
323 wxCHECK_MSG( IsLoaded(), NULL
,
324 _T("Can't load symbol from unloaded library") );
329 #if defined(__WXMAC__) && !defined(__DARWIN__)
331 CFragSymbolClass symClass
;
334 c2pstrcpy( (StringPtr
) symName
, name
.fn_str() );
336 strcpy( (char *)symName
, name
.fn_str() );
337 c2pstr( (char *)symName
);
339 if( FindSymbol( m_handle
, symName
, &symAddress
, &symClass
) == noErr
)
340 symbol
= (void *)symAddress
;
342 #elif defined(__WXPM__) || defined(__EMX__)
343 DosQueryProcAddr( m_handle
, 1L, name
.c_str(), (PFN
*)symbol
);
345 #elif defined(HAVE_DLOPEN) || defined(__DARWIN__)
346 symbol
= dlsym( m_handle
, name
.fn_str() );
348 #elif defined(HAVE_SHL_LOAD)
349 // use local variable since shl_findsym modifies the handle argument
350 // to indicate where the symbol was found (GD)
351 wxDllType the_handle
= m_handle
;
352 if( shl_findsym( &the_handle
, name
.fn_str(), TYPE_UNDEFINED
, &symbol
) != 0 )
355 #elif defined(__WINDOWS__)
357 symbol
= (void*) ::GetProcAddress( m_handle
, name
);
359 symbol
= (void*) ::GetProcAddress( m_handle
, name
.mb_str() );
363 #error "runtime shared lib support not implemented"
367 *success
= symbol
!= NULL
;
372 void *wxDynamicLibrary::GetSymbol(const wxString
& name
, bool *success
) const
374 void *symbol
= DoGetSymbol(name
, success
);
377 #if defined(HAVE_DLERROR) && !defined(__EMX__)
380 wxWCharBuffer buffer
= wxConvLocal
.cMB2WC( dlerror() );
381 const wxChar
*err
= buffer
;
383 const wxChar
*err
= dlerror();
388 wxLogError(wxT("%s"), err
);
391 wxLogSysError(_("Couldn't find symbol '%s' in a dynamic library"),
401 wxDynamicLibrary::CanonicalizeName(const wxString
& name
,
402 wxDynamicLibraryCategory
407 #endif // __UNIX__/!__UNIX__
410 wxString nameCanonic
;
412 // under Unix the library names usually start with "lib" prefix, add it
417 wxFAIL_MSG( _T("unknown wxDynamicLibraryCategory value") );
421 // don't do anything for modules, their names are arbitrary
425 // library names should start with "lib" under Unix
426 nameCanonic
= _T("lib");
431 nameCanonic
<< name
<< GetDllExt();
436 wxString
wxDynamicLibrary::CanonicalizePluginName(const wxString
& name
,
437 wxPluginCategory cat
)
440 if ( cat
== wxDL_PLUGIN_GUI
)
442 wxAppTraits
*traits
= wxAppConsole::GetInstance() ?
443 wxAppConsole::GetInstance()->GetTraits() : NULL
;
444 wxASSERT_MSG( traits
,
445 _("can't query for GUI plugins name in console applications") );
446 suffix
= traits
->GetToolkitInfo().shortName
;
455 if ( !suffix
.empty() )
456 suffix
= wxString(_T("_")) + suffix
;
458 #define WXSTRINGIZE(x) #x
460 #if (wxMINOR_VERSION % 2) == 0
461 #define wxDLLVER(x,y,z) "-" WXSTRINGIZE(x) "." WXSTRINGIZE(y)
463 #define wxDLLVER(x,y,z) "-" WXSTRINGIZE(x) "." WXSTRINGIZE(y) "." WXSTRINGIZE(z)
466 #if (wxMINOR_VERSION % 2) == 0
467 #define wxDLLVER(x,y,z) WXSTRINGIZE(x) WXSTRINGIZE(y)
469 #define wxDLLVER(x,y,z) WXSTRINGIZE(x) WXSTRINGIZE(y) WXSTRINGIZE(z)
473 suffix
<< wxString::FromAscii(wxDLLVER(wxMAJOR_VERSION
, wxMINOR_VERSION
,
479 // Add compiler identification:
480 #if defined(__GNUG__)
481 suffix
<< _T("_gcc");
482 #elif defined(__VISUALC__)
484 #elif defined(__WATCOMC__)
485 suffix
<< _T("_wat");
486 #elif defined(__BORLANDC__)
487 suffix
<< _T("_bcc");
491 return CanonicalizeName(name
+ suffix
, wxDL_MODULE
);
495 wxString
wxDynamicLibrary::GetPluginsDirectory()
498 wxString format
= wxGetInstallPrefix();
500 format
<< wxFILE_SEP_PATH
501 << wxT("lib") << wxFILE_SEP_PATH
502 << wxT("wx") << wxFILE_SEP_PATH
503 #if (wxMINOR_VERSION % 2) == 0
505 dir
.Printf(format
.c_str(), wxMAJOR_VERSION
, wxMINOR_VERSION
);
508 dir
.Printf(format
.c_str(),
509 wxMAJOR_VERSION
, wxMINOR_VERSION
, wxRELEASE_NUMBER
);
514 return wxEmptyString
;
519 #endif // wxUSE_DYNLIB_CLASS