]> git.saurik.com Git - wxWidgets.git/blame - src/msw/dlmsw.cpp
Several corrections to wxDocManager fields documentation.
[wxWidgets.git] / src / msw / dlmsw.cpp
CommitLineData
defbed48 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: src/msw/dlmsw.cpp
defbed48
VZ
3// Purpose: Win32-specific part of wxDynamicLibrary and related classes
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 2005-01-10 (partly extracted from common/dynlib.cpp)
7// RCS-ID: $Id$
8// Copyright: (c) 1998-2005 Vadim Zeitlin <vadim@wxwindows.org>
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#include "wx/wxprec.h"
21
22#ifdef __BORLANDC__
23 #pragma hdrstop
24#endif
25
26#if wxUSE_DYNLIB_CLASS
27
28#include "wx/msw/private.h"
29#include "wx/msw/debughlp.h"
30
9a83f860 31const wxString wxDynamicLibrary::ms_dllext(wxT(".dll"));
defbed48
VZ
32
33// ----------------------------------------------------------------------------
34// private classes
35// ----------------------------------------------------------------------------
36
37// wrap some functions from version.dll: load them dynamically and provide a
38// clean interface
39class wxVersionDLL
40{
41public:
42 // load version.dll and bind to its functions
43 wxVersionDLL();
44
45 // return the file version as string, e.g. "x.y.z.w"
46 wxString GetFileVersion(const wxString& filename) const;
47
48private:
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);
52
53 #define DO_FOR_ALL_VER_FUNCS(what) \
54 what(GetFileVersionInfoSize); \
55 what(GetFileVersionInfo); \
56 what(VerQueryValue)
57
58 #define DECLARE_VER_FUNCTION(func) func ## _t m_pfn ## func
59
60 DO_FOR_ALL_VER_FUNCS(DECLARE_VER_FUNCTION);
61
62 #undef DECLARE_VER_FUNCTION
63
64
65 wxDynamicLibrary m_dll;
66
67
c0c133e1 68 wxDECLARE_NO_COPY_CLASS(wxVersionDLL);
defbed48
VZ
69};
70
71// class used to create wxDynamicLibraryDetails objects
72class WXDLLIMPEXP_BASE wxDynamicLibraryDetailsCreator
73{
74public:
75 // type of parameters being passed to EnumModulesProc
76 struct EnumModulesProcParams
77 {
78 wxDynamicLibraryDetailsArray *dlls;
79 wxVersionDLL *verDLL;
80 };
81
e7f28a58
VZ
82 // TODO: fix EnumerateLoadedModules() to use EnumerateLoadedModules64()
83 #ifdef __WIN64__
84 typedef DWORD64 DWORD_32_64;
85 #else
86 typedef DWORD DWORD_32_64;
87 #endif
88
defbed48 89 static BOOL CALLBACK
ba97f6f8 90 EnumModulesProc(PCSTR name, DWORD_32_64 base, ULONG size, void *data);
defbed48
VZ
91};
92
defbed48
VZ
93// ============================================================================
94// wxVersionDLL implementation
95// ============================================================================
96
97// ----------------------------------------------------------------------------
98// loading
99// ----------------------------------------------------------------------------
100
101wxVersionDLL::wxVersionDLL()
102{
103 // don't give errors if DLL can't be loaded or used, we're prepared to
104 // handle it
105 wxLogNull noLog;
106
9a83f860 107 if ( m_dll.Load(wxT("version.dll"), wxDL_VERBATIM) )
defbed48
VZ
108 {
109 // the functions we load have either 'A' or 'W' suffix depending on
110 // whether we're in ANSI or Unicode build
111 #ifdef UNICODE
112 #define SUFFIX L"W"
113 #else // ANSI
114 #define SUFFIX "A"
115 #endif // UNICODE/ANSI
116
117 #define LOAD_VER_FUNCTION(name) \
9a83f860 118 m_pfn ## name = (name ## _t)m_dll.GetSymbol(wxT(#name SUFFIX)); \
defbed48
VZ
119 if ( !m_pfn ## name ) \
120 { \
121 m_dll.Unload(); \
122 return; \
123 }
124
125 DO_FOR_ALL_VER_FUNCS(LOAD_VER_FUNCTION);
126
127 #undef LOAD_VER_FUNCTION
128 }
129}
130
131// ----------------------------------------------------------------------------
132// wxVersionDLL operations
133// ----------------------------------------------------------------------------
134
135wxString wxVersionDLL::GetFileVersion(const wxString& filename) const
136{
137 wxString ver;
138 if ( m_dll.IsLoaded() )
139 {
5c33522f 140 wxChar *pc = const_cast<wxChar *>((const wxChar*) filename.t_str());
defbed48
VZ
141
142 DWORD dummy;
143 DWORD sizeVerInfo = m_pfnGetFileVersionInfoSize(pc, &dummy);
144 if ( sizeVerInfo )
145 {
146 wxCharBuffer buf(sizeVerInfo);
147 if ( m_pfnGetFileVersionInfo(pc, 0, sizeVerInfo, buf.data()) )
148 {
149 void *pVer;
150 UINT sizeInfo;
83a42976 151 if ( m_pfnVerQueryValue(buf.data(),
9a83f860 152 const_cast<wxChar *>(wxT("\\")),
83a42976
VZ
153 &pVer,
154 &sizeInfo) )
defbed48
VZ
155 {
156 VS_FIXEDFILEINFO *info = (VS_FIXEDFILEINFO *)pVer;
9a83f860 157 ver.Printf(wxT("%d.%d.%d.%d"),
defbed48
VZ
158 HIWORD(info->dwFileVersionMS),
159 LOWORD(info->dwFileVersionMS),
160 HIWORD(info->dwFileVersionLS),
161 LOWORD(info->dwFileVersionLS));
162 }
163 }
164 }
165 }
166 //else: we failed to load DLL, can't retrieve version info
167
168 return ver;
169}
170
171// ============================================================================
172// wxDynamicLibraryDetailsCreator implementation
173// ============================================================================
174
175/* static */
176BOOL CALLBACK
ba97f6f8 177wxDynamicLibraryDetailsCreator::EnumModulesProc(PCSTR name,
e7f28a58 178 DWORD_32_64 base,
defbed48
VZ
179 ULONG size,
180 void *data)
181{
182 EnumModulesProcParams *params = (EnumModulesProcParams *)data;
183
184 wxDynamicLibraryDetails *details = new wxDynamicLibraryDetails;
185
186 // fill in simple properties
187 details->m_name = wxString::FromAscii(name);
3f49efdb 188 details->m_address = wxUIntToPtr(base);
defbed48
VZ
189 details->m_length = size;
190
191 // to get the version, we first need the full path
c118a476
VZ
192 const HMODULE
193 hmod = wxDynamicLibrary::MSWGetModuleHandle(name, details->m_address);
defbed48
VZ
194 if ( hmod )
195 {
196 wxString fullname = wxGetFullModuleName(hmod);
197 if ( !fullname.empty() )
198 {
199 details->m_path = fullname;
200 details->m_version = params->verDLL->GetFileVersion(fullname);
201 }
202 }
203
204 params->dlls->Add(details);
205
206 // continue enumeration (returning FALSE would have stopped it)
207 return TRUE;
208}
209
210// ============================================================================
211// wxDynamicLibrary implementation
212// ============================================================================
213
6d94009f
VZ
214// ----------------------------------------------------------------------------
215// misc functions
216// ----------------------------------------------------------------------------
217
218wxDllType wxDynamicLibrary::GetProgramHandle()
219{
220 return (wxDllType)::GetModuleHandle(NULL);
221}
222
defbed48
VZ
223// ----------------------------------------------------------------------------
224// loading/unloading DLLs
225// ----------------------------------------------------------------------------
226
227/* static */
da55d064 228wxDllType
e2d4ce7d 229wxDynamicLibrary::RawLoad(const wxString& libname, int flags)
defbed48 230{
e2d4ce7d
VZ
231 return flags & wxDL_GET_LOADED
232 ? ::GetModuleHandle(libname.t_str())
233 : ::LoadLibrary(libname.t_str());
defbed48
VZ
234}
235
236/* static */
237void wxDynamicLibrary::Unload(wxDllType handle)
238{
239 ::FreeLibrary(handle);
240}
241
242/* static */
243void *wxDynamicLibrary::RawGetSymbol(wxDllType handle, const wxString& name)
244{
23ee4b48
WS
245 return (void *)::GetProcAddress(handle,
246#ifdef __WXWINCE__
247 name.c_str()
248#else
249 name.ToAscii()
250#endif // __WXWINCE__
251 );
defbed48
VZ
252}
253
254// ----------------------------------------------------------------------------
255// enumerating loaded DLLs
256// ----------------------------------------------------------------------------
257
258/* static */
259wxDynamicLibraryDetailsArray wxDynamicLibrary::ListLoaded()
260{
261 wxDynamicLibraryDetailsArray dlls;
262
94534bf8 263#if wxUSE_DBGHELP
defbed48
VZ
264 if ( wxDbgHelpDLL::Init() )
265 {
266 // prepare to use functions for version info extraction
267 wxVersionDLL verDLL;
268
269 wxDynamicLibraryDetailsCreator::EnumModulesProcParams params;
270 params.dlls = &dlls;
271 params.verDLL = &verDLL;
272
ba97f6f8
VZ
273 // Note that the cast of EnumModulesProc is needed because the type of
274 // PENUMLOADED_MODULES_CALLBACK changed: in old SDK versions its first
275 // argument was non-const PSTR while now it's PCSTR. By explicitly
276 // casting to whatever the currently used headers require we ensure
277 // that the code compilers in any case.
defbed48
VZ
278 if ( !wxDbgHelpDLL::EnumerateLoadedModules
279 (
280 ::GetCurrentProcess(),
ba97f6f8 281 (PENUMLOADED_MODULES_CALLBACK)
defbed48
VZ
282 wxDynamicLibraryDetailsCreator::EnumModulesProc,
283 &params
284 ) )
285 {
9a83f860 286 wxLogLastError(wxT("EnumerateLoadedModules"));
defbed48
VZ
287 }
288 }
94534bf8 289#endif // wxUSE_DBGHELP
defbed48
VZ
290
291 return dlls;
292}
293
c118a476 294/* static */
142ae7b3 295WXHMODULE wxDynamicLibrary::MSWGetModuleHandle(const char *name, void *addr)
c118a476
VZ
296{
297 // we want to use GetModuleHandleEx() instead of usual GetModuleHandle()
298 // because the former works correctly for comctl32.dll while the latter
299 // returns NULL when comctl32.dll version 6 is used under XP (note that
300 // GetModuleHandleEx() is only available under XP and later, coincidence?)
301
302 // check if we can use GetModuleHandleEx
303 typedef BOOL (WINAPI *GetModuleHandleEx_t)(DWORD, LPCSTR, HMODULE *);
304
305 static const GetModuleHandleEx_t INVALID_FUNC_PTR = (GetModuleHandleEx_t)-1;
306
307 static GetModuleHandleEx_t s_pfnGetModuleHandleEx = INVALID_FUNC_PTR;
308 if ( s_pfnGetModuleHandleEx == INVALID_FUNC_PTR )
309 {
310 wxDynamicLibrary dll(wxT("kernel32.dll"), wxDL_VERBATIM);
311 s_pfnGetModuleHandleEx =
312 (GetModuleHandleEx_t)dll.RawGetSymbol(wxT("GetModuleHandleExA"));
313
314 // dll object can be destroyed, kernel32.dll won't be unloaded anyhow
315 }
316
317 // get module handle from its address
318 if ( s_pfnGetModuleHandleEx )
319 {
320 // flags are GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT |
321 // GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS
322 HMODULE hmod;
323 if ( s_pfnGetModuleHandleEx(6, (char *)addr, &hmod) && hmod )
324 return hmod;
325 }
326
327 // Windows CE only has Unicode API, so even we have an ANSI string here, we
328 // still need to use GetModuleHandleW() there
329#ifdef __WXWINCE__
330 return ::GetModuleHandleW(wxConvLibc.cMB2WC(name).data());
331#else
332 return ::GetModuleHandleA((char *)name);
333#endif
334}
335
defbed48
VZ
336#endif // wxUSE_DYNLIB_CLASS
337