ReactOS 0.4.15-dev-7958-gcd0bb1a
debughlp.cpp
Go to the documentation of this file.
1/*
2 * Helper functions for debugging
3 *
4 * Copyright 1998, 2002 Juergen Schmied
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21#include "precomp.h"
22
24
25static
27{
28 WORD len;
29
30 if(pidl)
31 {
32 len = pidl->mkid.cb;
33 if (len)
34 {
35 return (LPITEMIDLIST) (((LPBYTE)pidl)+len);
36 }
37 }
38 return NULL;
39}
40
41static
43{
44 return ( !pidl || (pidl && pidl->mkid.cb == 0x00) );
45}
46
47static
49{
50 if(pidl && pidl->mkid.cb != 0x00)
51 return (LPPIDLDATA) &(pidl->mkid.abID);
52 return NULL;
53}
54
55static
57{
59
60 if (pdata)
61 {
62 switch (pdata->type)
63 {
64 case PT_GUID:
65 case PT_SHELLEXT:
66 case PT_YAGUID:
67 return NULL;
68
69 case PT_DRIVE:
70 case PT_DRIVE1:
71 case PT_DRIVE2:
72 case PT_DRIVE3:
73 return (LPSTR)&(pdata->u.drive.szDriveName);
74
75 case PT_FOLDER:
76 case PT_FOLDER1:
77 case PT_VALUE:
78 case PT_IESPECIAL1:
79 case PT_IESPECIAL2:
80 return (LPSTR)&(pdata->u.file.szNames);
81
82 case PT_WORKGRP:
83 case PT_COMP:
84 case PT_NETWORK:
85 case PT_NETPROVIDER:
86 case PT_SHARE:
87 return (LPSTR)&(pdata->u.network.szNames);
88 }
89 }
90 return NULL;
91}
92
93static
95{
97
98 if (pdata)
99 {
100 switch (pdata->type)
101 {
102 case PT_GUID:
103 case PT_SHELLEXT:
104 case PT_YAGUID:
105 return NULL;
106
107 case PT_DRIVE:
108 case PT_DRIVE1:
109 case PT_DRIVE2:
110 case PT_DRIVE3:
111 /* return (LPSTR)&(pdata->u.drive.szDriveName);*/
112 return NULL;
113
114 case PT_FOLDER:
115 case PT_FOLDER1:
116 case PT_VALUE:
117 case PT_IESPECIAL1:
118 case PT_IESPECIAL2:
119 /* return (LPSTR)&(pdata->u.file.szNames); */
120 return NULL;
121
122 case PT_WORKGRP:
123 case PT_COMP:
124 case PT_NETWORK:
125 case PT_NETPROVIDER:
126 case PT_SHARE:
127 /* return (LPSTR)&(pdata->u.network.szNames); */
128 return NULL;
129
130 case PT_VALUEW:
131 return (LPWSTR)&(pdata->u.file.szNames);
132 }
133 }
134 return NULL;
135}
136
137
138static
140{
142
143 if (pdata)
144 {
145 switch (pdata->type)
146 {
147 case PT_FOLDER:
148 case PT_VALUE:
149 case PT_IESPECIAL1:
150 case PT_IESPECIAL2:
151 return (LPSTR)(pdata->u.file.szNames + strlen (pdata->u.file.szNames) + 1);
152
153 case PT_WORKGRP:
154 return (LPSTR)(pdata->u.network.szNames + strlen (pdata->u.network.szNames) + 1);
155 }
156 }
157 return NULL;
158}
159
160static
162{
164
165 if (pdata)
166 {
167 switch (pdata->type)
168 {
169 case PT_FOLDER:
170 case PT_VALUE:
171 case PT_IESPECIAL1:
172 case PT_IESPECIAL2:
173 /*return (LPSTR)(pdata->u.file.szNames + strlen (pdata->u.file.szNames) + 1); */
174 return NULL;
175
176 case PT_WORKGRP:
177 /* return (LPSTR)(pdata->u.network.szNames + strlen (pdata->u.network.szNames) + 1); */
178 return NULL;
179
180 case PT_VALUEW:
181 return (LPWSTR)(pdata->u.file.szNames + wcslen ((LPWSTR)pdata->u.file.szNames) + 1);
182 }
183 }
184 return NULL;
185}
186
187
188static
190{
192
193 if (pdata)
194 {
195 switch (pdata->type)
196 {
197 case PT_SHELLEXT:
198 case PT_GUID:
199 case PT_YAGUID:
200 return &(pdata->u.guid.guid);
201 }
202 }
203 return NULL;
204}
205
206static
207void _dbg_ILSimpleGetText (LPCITEMIDLIST pidl, LPSTR szOut, UINT uOutSize)
208{
209 LPSTR szSrc;
210 LPWSTR szSrcW;
211 GUID const * riid;
212
213 if (!pidl) return;
214
215 if (szOut)
216 *szOut = 0;
217
218 if (_dbg_ILIsDesktop(pidl))
219 {
220 /* desktop */
221 if (szOut) lstrcpynA(szOut, "Desktop", uOutSize);
222 }
223 else if (( szSrc = _dbg_ILGetTextPointer(pidl) ))
224 {
225 /* filesystem */
226 if (szOut) lstrcpynA(szOut, szSrc, uOutSize);
227 }
228 else if (( szSrcW = _dbg_ILGetTextPointerW(pidl) ))
229 {
230 CHAR tmp[MAX_PATH];
231 /* unicode filesystem */
232 WideCharToMultiByte(CP_ACP,0,szSrcW, -1, tmp, MAX_PATH, NULL, NULL);
233 if (szOut) lstrcpynA(szOut, tmp, uOutSize);
234 }
235 else if (( riid = _dbg_ILGetGUIDPointer(pidl) ))
236 {
237 if (szOut)
238 sprintf( szOut, "{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
239 riid->Data1, riid->Data2, riid->Data3,
240 riid->Data4[0], riid->Data4[1], riid->Data4[2], riid->Data4[3],
241 riid->Data4[4], riid->Data4[5], riid->Data4[6], riid->Data4[7] );
242 }
243}
244
245
246
247
248static void pdump_impl (LPCITEMIDLIST pidl)
249{
250 LPCITEMIDLIST pidltemp = pidl;
251
252
253 if (! pidltemp)
254 {
255 MESSAGE ("-------- pidl=NULL (Desktop)\n");
256 }
257 else
258 {
259 MESSAGE ("-------- pidl=%p\n", pidl);
260 if (pidltemp->mkid.cb)
261 {
262 do
263 {
264 if (_ILIsUnicode(pidltemp))
265 {
266 DWORD dwAttrib = 0;
268 DWORD type = pData ? pData->type : 0;
269 LPWSTR szLongName = _dbg_ILGetTextPointerW(pidltemp);
270 LPWSTR szShortName = _dbg_ILGetSTextPointerW(pidltemp);
271 char szName[MAX_PATH];
272
274 if ( pData && (PT_FOLDER == type || PT_VALUE == type) )
275 dwAttrib = pData->u.file.uFileAttribs;
276
277 MESSAGE ("[%p] size=%04u type=%x attr=0x%08x name=%s (%s,%s)\n",
278 pidltemp, pidltemp->mkid.cb, type, dwAttrib,
279 debugstr_a(szName), debugstr_w(szLongName), debugstr_w(szShortName));
280 }
281 else
282 {
283 DWORD dwAttrib = 0;
285 DWORD type = pData ? pData->type : 0;
286 LPSTR szLongName = _dbg_ILGetTextPointer(pidltemp);
287 LPSTR szShortName = _dbg_ILGetSTextPointer(pidltemp);
288 char szName[MAX_PATH];
289
291 if ( pData && (PT_FOLDER == type || PT_VALUE == type) )
292 dwAttrib = pData->u.file.uFileAttribs;
293
294 MESSAGE ("[%p] size=%04u type=%x attr=0x%08x name=%s (%s,%s)\n",
295 pidltemp, pidltemp->mkid.cb, type, dwAttrib,
296 debugstr_a(szName), debugstr_a(szLongName), debugstr_a(szShortName));
297 }
298
299 pidltemp = _dbg_ILGetNext(pidltemp);
300
301 } while (pidltemp && pidltemp->mkid.cb);
302 }
303 else
304 {
305 MESSAGE ("empty pidl (Desktop)\n");
306 }
307 pcheck(pidl);
308 }
309}
310
312{
313 if (!TRACE_ON(pidl)) return;
314
315 return pdump_impl(pidl);
316}
317
318
320{
321 pdump_impl(pidl);
322}
323
324
325static void dump_pidl_hex( LPCITEMIDLIST pidl )
326{
327 const unsigned char *p = (const unsigned char *)pidl;
328 const int max_bytes = 0x80;
329#define max_line 0x10
330 char szHex[max_line*3+1], szAscii[max_line+1];
331 int i, n;
332
333 n = pidl->mkid.cb;
334 if( n>max_bytes )
335 n = max_bytes;
336 for( i=0; i<n; i++ )
337 {
338 sprintf( &szHex[ (i%max_line)*3 ], "%02X ", p[i] );
339 szAscii[ (i%max_line) ] = isprint( p[i] ) ? p[i] : '.';
340
341 /* print out at the end of each line and when we're finished */
342 if( i!=(n-1) && (i%max_line) != (max_line-1) )
343 continue;
344 szAscii[ (i%max_line)+1 ] = 0;
345 ERR("%-*s %s\n", max_line*3, szHex, szAscii );
346 }
347}
348
350{
351 DWORD type;
352 LPCITEMIDLIST pidltemp = pidl;
353
354 while( pidltemp && pidltemp->mkid.cb )
355 {
356 LPPIDLDATA pidlData = _dbg_ILGetDataPointer(pidltemp);
357
358 if (pidlData)
359 {
360 type = pidlData->type;
361 switch( type )
362 {
363 case PT_CPLAPPLET:
364 case PT_GUID:
365 case PT_SHELLEXT:
366 case PT_DRIVE:
367 case PT_DRIVE1:
368 case PT_DRIVE2:
369 case PT_DRIVE3:
370 case PT_FOLDER:
371 case PT_VALUE:
372 case PT_VALUEW:
373 case PT_FOLDER1:
374 case PT_WORKGRP:
375 case PT_COMP:
376 case PT_NETPROVIDER:
377 case PT_NETWORK:
378 case PT_IESPECIAL1:
379 case PT_YAGUID:
380 case PT_IESPECIAL2:
381 case PT_SHARE:
382 case 0x99: /* Network Connection pidl type */
383 break;
384 default:
385 ERR("unknown IDLIST %p [%p] size=%u type=%x\n",
386 pidl, pidltemp, pidltemp->mkid.cb,type );
387 dump_pidl_hex( pidltemp );
388 return FALSE;
389 }
390 pidltemp = _dbg_ILGetNext(pidltemp);
391 }
392 else
393 {
394 return FALSE;
395 }
396 }
397 return TRUE;
398}
399
400static const struct {
402 const char *name;
403} InterfaceDesc[] = {
404 {IID_IUnknown, "IID_IUnknown"},
405 {IID_IClassFactory, "IID_IClassFactory"},
406 {IID_IShellView, "IID_IShellView"},
407 {IID_IOleCommandTarget, "IID_IOleCommandTarget"},
408 {IID_IDropTarget, "IID_IDropTarget"},
409 {IID_IDropSource, "IID_IDropSource"},
410 {IID_IViewObject, "IID_IViewObject"},
411 {IID_IContextMenu, "IID_IContextMenu"},
412 {IID_IShellExtInit, "IID_IShellExtInit"},
413 {IID_IShellFolder, "IID_IShellFolder"},
414 {IID_IShellFolder2, "IID_IShellFolder2"},
415 {IID_IPersist, "IID_IPersist"},
416 {IID_IPersistFolder, "IID_IPersistFolder"},
417 {IID_IPersistFolder2, "IID_IPersistFolder2"},
418 {IID_IPersistFolder3, "IID_IPersistFolder3"},
419 {IID_IExtractIconA, "IID_IExtractIconA"},
420 {IID_IExtractIconW, "IID_IExtractIconW"},
421 {IID_IDataObject, "IID_IDataObject"},
422 {IID_IAutoComplete, "IID_IAutoComplete"},
423 {IID_IAutoComplete2, "IID_IAutoComplete2"},
424 {IID_IShellLinkA, "IID_IShellLinkA"},
425 {IID_IShellLinkW, "IID_IShellLinkW"},
426 };
427
428const char * shdebugstr_guid( const struct _GUID *id )
429{
430 unsigned int i;
431 const char* name = NULL;
432 char clsidbuf[100];
433
434 if (!id) return "(null)";
435
436 for (i=0; i < sizeof(InterfaceDesc) / sizeof(InterfaceDesc[0]); i++) {
438 }
439 if (!name) {
440 if (HCR_GetClassNameA(*id, clsidbuf, 100))
441 name = clsidbuf;
442 }
443
444 return wine_dbg_sprintf( "\n\t{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x} (%s)",
445 id->Data1, id->Data2, id->Data3,
446 id->Data4[0], id->Data4[1], id->Data4[2], id->Data4[3],
447 id->Data4[4], id->Data4[5], id->Data4[6], id->Data4[7], name ? name : "unknown" );
448}
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
#define isprint(c)
Definition: acclib.h:73
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
const GUID IID_IUnknown
const GUID IID_IClassFactory
#define ERR(fmt,...)
Definition: debug.h:110
static void _dbg_ILSimpleGetText(LPCITEMIDLIST pidl, LPSTR szOut, UINT uOutSize)
Definition: debughlp.cpp:207
void pdump_always(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:319
static LPPIDLDATA _dbg_ILGetDataPointer(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:48
void pdump(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:311
static IID * _dbg_ILGetGUIDPointer(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:189
static LPWSTR _dbg_ILGetTextPointerW(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:94
static LPSTR _dbg_ILGetTextPointer(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:56
static const struct @552 InterfaceDesc[]
static LPWSTR _dbg_ILGetSTextPointerW(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:161
const char * name
Definition: debughlp.cpp:402
static BOOL _dbg_ILIsDesktop(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:42
static void pdump_impl(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:248
static LPSTR _dbg_ILGetSTextPointer(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:139
#define max_line
const char * shdebugstr_guid(const struct _GUID *id)
Definition: debughlp.cpp:428
static LPITEMIDLIST _dbg_ILGetNext(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:26
static void dump_pidl_hex(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:325
REFIID riid
Definition: debughlp.cpp:401
BOOL pcheck(LPCITEMIDLIST pidl)
Definition: debughlp.cpp:349
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
const char * wine_dbg_sprintf(const char *format,...)
Definition: compat.c:296
#define CP_ACP
Definition: compat.h:109
#define lstrcpynA
Definition: compat.h:751
#define TRACE_ON(x)
Definition: compat.h:75
#define MAX_PATH
Definition: compat.h:34
#define WideCharToMultiByte
Definition: compat.h:111
#define PT_GUID
#define PT_YAGUID
#define PT_SHELLEXT
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
unsigned short WORD
Definition: ntddk_ex.h:93
GLuint GLuint GLsizei GLenum type
Definition: gl.h:1545
GLdouble n
Definition: glext.h:7729
GLfloat GLfloat p
Definition: glext.h:8902
GLenum GLsizei len
Definition: glext.h:6722
GLuint id
Definition: glext.h:5910
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
REFIID riid
Definition: atlbase.h:39
#define debugstr_a
Definition: kernel32.h:31
#define debugstr_w
Definition: kernel32.h:32
#define MESSAGE
Definition: options.h:86
#define sprintf(buf, format,...)
Definition: sprintf.c:55
static PROTOCOLDATA * pdata
Definition: protocol.c:158
unsigned int UINT
Definition: ndis.h:50
const GUID IID_IViewObject
const GUID IID_IDataObject
BOOL _ILIsUnicode(LPCITEMIDLIST pidl)
Definition: pidl.c:1926
LPPIDLDATA _ILGetDataPointer(LPCITEMIDLIST pidl)
Definition: pidl.c:2231
#define PT_DRIVE1
Definition: pidl.h:92
#define PT_WORKGRP
Definition: pidl.h:98
#define PT_FOLDER
Definition: pidl.h:94
#define PT_FOLDER1
Definition: pidl.h:93
#define PT_DRIVE3
Definition: pidl.h:90
#define PT_VALUE
Definition: pidl.h:95
#define PT_VALUEW
Definition: pidl.h:96
#define PT_DRIVE
Definition: pidl.h:88
#define PT_IESPECIAL1
Definition: pidl.h:102
#define PT_DRIVE2
Definition: pidl.h:89
#define PT_SHARE
Definition: pidl.h:105
#define PT_COMP
Definition: pidl.h:99
#define PT_NETPROVIDER
Definition: pidl.h:100
#define PT_NETWORK
Definition: pidl.h:101
#define PT_CPLAPPLET
Definition: pidl.h:86
#define PT_IESPECIAL2
Definition: pidl.h:104
static const WCHAR szName[]
Definition: powrprof.c:45
const GUID IID_IPersist
Definition: proxy.cpp:14
#define IsEqualIID(riid1, riid2)
Definition: guiddef.h:95
#define REFIID
Definition: guiddef.h:118
BOOL HCR_GetClassNameA(REFIID riid, LPSTR szDest, DWORD len)
Definition: classes.c:474
ITEMIDLIST UNALIGNED * LPITEMIDLIST
Definition: shtypes.idl:41
const ITEMIDLIST UNALIGNED * LPCITEMIDLIST
Definition: shtypes.idl:42
Definition: scsiwmi.h:51
Definition: name.c:39
TW_UINT32 TW_UINT16 TW_UINT16 TW_MEMREF pData
Definition: twain.h:1830
unsigned char * LPBYTE
Definition: typedefs.h:53
char * LPSTR
Definition: xmlstorage.h:182
WCHAR * LPWSTR
Definition: xmlstorage.h:184
char CHAR
Definition: xmlstorage.h:175