1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Win32-specific part of wxDynamicLibrary and related classes
4 // Author: Vadim Zeitlin
6 // Created: 2005-01-10 (partly extracted from common/dynlib.cpp)
8 // Copyright: (c) 1998-2005 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/wxprec.h"
26 #if wxUSE_DYNLIB_CLASS
28 #include "wx/msw/private.h"
29 #include "wx/msw/debughlp.h"
31 const wxString
wxDynamicLibrary::ms_dllext(_T(".dll"));
33 // ----------------------------------------------------------------------------
35 // ----------------------------------------------------------------------------
37 // wrap some functions from version.dll: load them dynamically and provide a
42 // load version.dll and bind to its functions
45 // return the file version as string, e.g. "x.y.z.w"
46 wxString
GetFileVersion(const wxString
& filename
) const;
49 typedef DWORD (APIENTRY
*GetFileVersionInfoSize_t
)(PTSTR
, PDWORD
);
50 typedef BOOL (APIENTRY
*GetFileVersionInfo_t
)(PTSTR
, DWORD
, DWORD
, PVOID
);
51 typedef BOOL (APIENTRY
*VerQueryValue_t
)(const PVOID
, PTSTR
, PVOID
*, PUINT
);
53 #define DO_FOR_ALL_VER_FUNCS(what) \
54 what(GetFileVersionInfoSize); \
55 what(GetFileVersionInfo); \
58 #define DECLARE_VER_FUNCTION(func) func ## _t m_pfn ## func
60 DO_FOR_ALL_VER_FUNCS(DECLARE_VER_FUNCTION
);
62 #undef DECLARE_VER_FUNCTION
65 wxDynamicLibrary m_dll
;
68 DECLARE_NO_COPY_CLASS(wxVersionDLL
)
71 // class used to create wxDynamicLibraryDetails objects
72 class WXDLLIMPEXP_BASE wxDynamicLibraryDetailsCreator
75 // type of parameters being passed to EnumModulesProc
76 struct EnumModulesProcParams
78 wxDynamicLibraryDetailsArray
*dlls
;
82 // the declared type of the first EnumModulesProc() parameter changed in
83 // recent SDK versions and is no PCSTR instead of old PSTR, we know that
84 // it's const in version 11 and non-const in version 8 included with VC8
85 // (and earlier), suppose that it's only changed in version 11
86 #if defined(API_VERSION_NUMBER) && API_VERSION_NUMBER >= 11
87 typedef PCSTR NameStr_t
;
89 typedef PSTR NameStr_t
;
92 // TODO: fix EnumerateLoadedModules() to use EnumerateLoadedModules64()
94 typedef DWORD64 DWORD_32_64
;
96 typedef DWORD DWORD_32_64
;
100 EnumModulesProc(NameStr_t name
, DWORD_32_64 base
, ULONG size
, void *data
);
103 // ----------------------------------------------------------------------------
105 // ----------------------------------------------------------------------------
107 // return the module handle for the given base name
109 HMODULE
wxGetModuleHandle(const char *name
, void *addr
)
111 // we want to use GetModuleHandleEx() instead of usual GetModuleHandle()
112 // because the former works correctly for comctl32.dll while the latter
113 // returns NULL when comctl32.dll version 6 is used under XP (note that
114 // GetModuleHandleEx() is only available under XP and later, coincidence?)
116 // check if we can use GetModuleHandleEx
117 typedef BOOL (WINAPI
*GetModuleHandleEx_t
)(DWORD
, LPCSTR
, HMODULE
*);
119 static const GetModuleHandleEx_t INVALID_FUNC_PTR
= (GetModuleHandleEx_t
)-1;
121 static GetModuleHandleEx_t s_pfnGetModuleHandleEx
= INVALID_FUNC_PTR
;
122 if ( s_pfnGetModuleHandleEx
== INVALID_FUNC_PTR
)
124 wxDynamicLibrary
dll(_T("kernel32.dll"), wxDL_VERBATIM
);
125 s_pfnGetModuleHandleEx
=
126 (GetModuleHandleEx_t
)dll
.RawGetSymbol(_T("GetModuleHandleExA"));
128 // dll object can be destroyed, kernel32.dll won't be unloaded anyhow
131 // get module handle from its address
132 if ( s_pfnGetModuleHandleEx
)
134 // flags are GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT |
135 // GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS
137 if ( s_pfnGetModuleHandleEx(6, (char *)addr
, &hmod
) && hmod
)
141 // Windows CE only has Unicode API, so even we have an ANSI string here, we
142 // still need to use GetModuleHandleW() there
144 return ::GetModuleHandleW(wxConvLibc
.cMB2WC(name
).data());
146 return ::GetModuleHandleA((char *)name
);
150 // ============================================================================
151 // wxVersionDLL implementation
152 // ============================================================================
154 // ----------------------------------------------------------------------------
156 // ----------------------------------------------------------------------------
158 wxVersionDLL::wxVersionDLL()
160 // don't give errors if DLL can't be loaded or used, we're prepared to
164 if ( m_dll
.Load(_T("version.dll"), wxDL_VERBATIM
) )
166 // the functions we load have either 'A' or 'W' suffix depending on
167 // whether we're in ANSI or Unicode build
172 #endif // UNICODE/ANSI
174 #define LOAD_VER_FUNCTION(name) \
175 m_pfn ## name = (name ## _t)m_dll.GetSymbol(_T(#name SUFFIX)); \
176 if ( !m_pfn ## name ) \
182 DO_FOR_ALL_VER_FUNCS(LOAD_VER_FUNCTION
);
184 #undef LOAD_VER_FUNCTION
188 // ----------------------------------------------------------------------------
189 // wxVersionDLL operations
190 // ----------------------------------------------------------------------------
192 wxString
wxVersionDLL::GetFileVersion(const wxString
& filename
) const
195 if ( m_dll
.IsLoaded() )
197 wxChar
*pc
= const_cast<wxChar
*>((const wxChar
*) filename
.t_str());
200 DWORD sizeVerInfo
= m_pfnGetFileVersionInfoSize(pc
, &dummy
);
203 wxCharBuffer
buf(sizeVerInfo
);
204 if ( m_pfnGetFileVersionInfo(pc
, 0, sizeVerInfo
, buf
.data()) )
208 if ( m_pfnVerQueryValue(buf
.data(),
209 const_cast<wxChar
*>(_T("\\")),
213 VS_FIXEDFILEINFO
*info
= (VS_FIXEDFILEINFO
*)pVer
;
214 ver
.Printf(_T("%d.%d.%d.%d"),
215 HIWORD(info
->dwFileVersionMS
),
216 LOWORD(info
->dwFileVersionMS
),
217 HIWORD(info
->dwFileVersionLS
),
218 LOWORD(info
->dwFileVersionLS
));
223 //else: we failed to load DLL, can't retrieve version info
228 // ============================================================================
229 // wxDynamicLibraryDetailsCreator implementation
230 // ============================================================================
234 wxDynamicLibraryDetailsCreator::EnumModulesProc(NameStr_t name
,
239 EnumModulesProcParams
*params
= (EnumModulesProcParams
*)data
;
241 wxDynamicLibraryDetails
*details
= new wxDynamicLibraryDetails
;
243 // fill in simple properties
244 details
->m_name
= wxString::FromAscii(name
);
245 details
->m_address
= wxUIntToPtr(base
);
246 details
->m_length
= size
;
248 // to get the version, we first need the full path
249 HMODULE hmod
= wxGetModuleHandle(name
, details
->m_address
);
252 wxString fullname
= wxGetFullModuleName(hmod
);
253 if ( !fullname
.empty() )
255 details
->m_path
= fullname
;
256 details
->m_version
= params
->verDLL
->GetFileVersion(fullname
);
260 params
->dlls
->Add(details
);
262 // continue enumeration (returning FALSE would have stopped it)
266 // ============================================================================
267 // wxDynamicLibrary implementation
268 // ============================================================================
270 // ----------------------------------------------------------------------------
272 // ----------------------------------------------------------------------------
274 wxDllType
wxDynamicLibrary::GetProgramHandle()
276 return (wxDllType
)::GetModuleHandle(NULL
);
279 // ----------------------------------------------------------------------------
280 // loading/unloading DLLs
281 // ----------------------------------------------------------------------------
285 wxDynamicLibrary::RawLoad(const wxString
& libname
, int flags
)
287 return flags
& wxDL_GET_LOADED
288 ? ::GetModuleHandle(libname
.t_str())
289 : ::LoadLibrary(libname
.t_str());
293 void wxDynamicLibrary::Unload(wxDllType handle
)
295 ::FreeLibrary(handle
);
299 void *wxDynamicLibrary::RawGetSymbol(wxDllType handle
, const wxString
& name
)
301 return (void *)::GetProcAddress(handle
,
306 #endif // __WXWINCE__
310 // ----------------------------------------------------------------------------
311 // enumerating loaded DLLs
312 // ----------------------------------------------------------------------------
315 wxDynamicLibraryDetailsArray
wxDynamicLibrary::ListLoaded()
317 wxDynamicLibraryDetailsArray dlls
;
320 if ( wxDbgHelpDLL::Init() )
322 // prepare to use functions for version info extraction
325 wxDynamicLibraryDetailsCreator::EnumModulesProcParams params
;
327 params
.verDLL
= &verDLL
;
329 if ( !wxDbgHelpDLL::EnumerateLoadedModules
331 ::GetCurrentProcess(),
332 wxDynamicLibraryDetailsCreator::EnumModulesProc
,
336 wxLogLastError(_T("EnumerateLoadedModules"));
339 #endif // wxUSE_DBGHELP
344 #endif // wxUSE_DYNLIB_CLASS