1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/dynlib.cpp
3 // Purpose: Dynamic library management
4 // Author: Guilhem Lavaux
8 // Copyright: (c) 1998 Guilhem Lavaux
9 // 2000-2005 Vadim Zeitlin
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 //FIXME: This class isn't really common at all, it should be moved into
14 // platform dependent files (already done for Windows and Unix)
16 // ============================================================================
18 // ============================================================================
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
24 #include "wx/wxprec.h"
30 #if wxUSE_DYNLIB_CLASS
32 #include "wx/dynlib.h"
41 #include "wx/filefn.h"
42 #include "wx/filename.h" // for SplitPath()
43 #include "wx/platinfo.h"
45 #include "wx/arrimpl.cpp"
47 #if defined(__WXMAC__)
48 #include "wx/mac/private.h"
51 WX_DEFINE_USER_EXPORTED_OBJARRAY(wxDynamicLibraryDetailsArray
)
53 // ============================================================================
55 // ============================================================================
57 // ---------------------------------------------------------------------------
59 // ---------------------------------------------------------------------------
61 #if defined(__WXPM__) || defined(__EMX__)
62 const wxChar
*wxDynamicLibrary::ms_dllext
= _T(".dll");
63 #elif defined(__WXMAC__) && !defined(__DARWIN__)
64 const wxChar
*wxDynamicLibrary::ms_dllext
= wxEmptyString
;
67 // for MSW/Unix it is defined in platform-specific file
68 #if !(defined(__WXMSW__) || defined(__UNIX__)) || defined(__EMX__)
70 wxDllType
wxDynamicLibrary::GetProgramHandle()
72 wxFAIL_MSG( wxT("GetProgramHandle() is not implemented under this platform"));
76 #endif // __WXMSW__ || __UNIX__
79 bool wxDynamicLibrary::Load(const wxString
& libnameOrig
, int flags
)
81 wxASSERT_MSG(m_handle
== 0, _T("Library already loaded."));
83 // add the proper extension for the DLL ourselves unless told not to
84 wxString libname
= libnameOrig
;
85 if ( !(flags
& wxDL_VERBATIM
) )
87 // and also check that the libname doesn't already have it
89 wxFileName::SplitPath(libname
, NULL
, NULL
, &ext
);
92 libname
+= GetDllExt();
96 // different ways to load a shared library
98 // FIXME: should go to the platform-specific files!
99 #if defined(__WXMAC__) && !defined(__DARWIN__)
104 wxMacFilename2FSSpec( libname
, &myFSSpec
);
106 if( GetDiskFragment( &myFSSpec
,
113 myErrName
) != noErr
)
115 wxLogSysError( _("Failed to load shared library '%s' Error '%s'"),
117 wxMacMakeStringFromPascal( myErrName
).c_str() );
121 #elif defined(__WXPM__) || defined(__EMX__)
123 DosLoadModule(err
, sizeof(err
), (PSZ
)libname
.c_str(), &m_handle
);
124 #else // this should be the only remaining branch eventually
125 m_handle
= RawLoad(libname
, flags
);
130 #ifdef wxHAVE_DYNLIB_ERROR
133 wxLogSysError(_("Failed to load shared library '%s'"), libname
.c_str());
140 // for MSW and Unix this is implemented in the platform-specific file
142 // TODO: move the rest to os2/dlpm.cpp and mac/dlmac.cpp!
143 #if (!defined(__WXMSW__) && !defined(__UNIX__)) || defined(__EMX__)
146 void wxDynamicLibrary::Unload(wxDllType handle
)
148 #if defined(__OS2__) || defined(__EMX__)
149 DosFreeModule( handle
);
150 #elif defined(__WXMAC__) && !defined(__DARWIN__)
151 CloseConnection( (CFragConnectionID
*) &handle
);
153 #error "runtime shared lib support not implemented"
157 #endif // !(__WXMSW__ || __UNIX__)
159 void *wxDynamicLibrary::DoGetSymbol(const wxString
&name
, bool *success
) const
161 wxCHECK_MSG( IsLoaded(), NULL
,
162 _T("Can't load symbol from unloaded library") );
167 #if defined(__WXMAC__) && !defined(__DARWIN__)
169 CFragSymbolClass symClass
;
172 c2pstrcpy( (StringPtr
) symName
, name
.fn_str() );
174 strcpy( (char *)symName
, name
.fn_str() );
175 c2pstr( (char *)symName
);
177 if( FindSymbol( m_handle
, symName
, &symAddress
, &symClass
) == noErr
)
178 symbol
= (void *)symAddress
;
179 #elif defined(__WXPM__) || defined(__EMX__)
180 DosQueryProcAddr( m_handle
, 1L, (PSZ
)name
.c_str(), (PFN
*)symbol
);
182 symbol
= RawGetSymbol(m_handle
, name
);
186 *success
= symbol
!= NULL
;
191 void *wxDynamicLibrary::GetSymbol(const wxString
& name
, bool *success
) const
193 void *symbol
= DoGetSymbol(name
, success
);
196 #ifdef wxHAVE_DYNLIB_ERROR
199 wxLogSysError(_("Couldn't find symbol '%s' in a dynamic library"),
207 // ----------------------------------------------------------------------------
208 // informational methods
209 // ----------------------------------------------------------------------------
213 wxDynamicLibrary::CanonicalizeName(const wxString
& name
,
214 wxDynamicLibraryCategory cat
)
216 wxString nameCanonic
;
218 // under Unix the library names usually start with "lib" prefix, add it
219 #if defined(__UNIX__) && !defined(__EMX__)
223 wxFAIL_MSG( _T("unknown wxDynamicLibraryCategory value") );
227 // don't do anything for modules, their names are arbitrary
231 // library names should start with "lib" under Unix
232 nameCanonic
= _T("lib");
237 #endif // __UNIX__/!__UNIX__
239 nameCanonic
<< name
<< GetDllExt();
244 wxString
wxDynamicLibrary::CanonicalizePluginName(const wxString
& name
,
245 wxPluginCategory cat
)
248 if ( cat
== wxDL_PLUGIN_GUI
)
250 suffix
= wxPlatformInfo().GetPortIdShortName();
259 if ( !suffix
.empty() )
260 suffix
= wxString(_T("_")) + suffix
;
262 #define WXSTRINGIZE(x) #x
263 #if defined(__UNIX__) && !defined(__EMX__)
264 #if (wxMINOR_VERSION % 2) == 0
265 #define wxDLLVER(x,y,z) "-" WXSTRINGIZE(x) "." WXSTRINGIZE(y)
267 #define wxDLLVER(x,y,z) "-" WXSTRINGIZE(x) "." WXSTRINGIZE(y) "." WXSTRINGIZE(z)
270 #if (wxMINOR_VERSION % 2) == 0
271 #define wxDLLVER(x,y,z) WXSTRINGIZE(x) WXSTRINGIZE(y)
273 #define wxDLLVER(x,y,z) WXSTRINGIZE(x) WXSTRINGIZE(y) WXSTRINGIZE(z)
277 suffix
<< wxString::FromAscii(wxDLLVER(wxMAJOR_VERSION
, wxMINOR_VERSION
,
283 // Add compiler identification:
284 #if defined(__GNUG__)
285 suffix
<< _T("_gcc");
286 #elif defined(__VISUALC__)
288 #elif defined(__WATCOMC__)
289 suffix
<< _T("_wat");
290 #elif defined(__BORLANDC__)
291 suffix
<< _T("_bcc");
295 return CanonicalizeName(name
+ suffix
, wxDL_MODULE
);
299 wxString
wxDynamicLibrary::GetPluginsDirectory()
302 wxString format
= wxGetInstallPrefix();
304 format
<< wxFILE_SEP_PATH
305 << wxT("lib") << wxFILE_SEP_PATH
306 << wxT("wx") << wxFILE_SEP_PATH
307 #if (wxMINOR_VERSION % 2) == 0
309 dir
.Printf(format
.c_str(), wxMAJOR_VERSION
, wxMINOR_VERSION
);
312 dir
.Printf(format
.c_str(),
313 wxMAJOR_VERSION
, wxMINOR_VERSION
, wxRELEASE_NUMBER
);
318 return wxEmptyString
;
323 #endif // wxUSE_DYNLIB_CLASS