-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathx_common.h
80 lines (65 loc) · 2.24 KB
/
x_common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#pragma once
static const wchar_t* rgCallConv[] =
{
L"", // CV_CALL_NEAR_C (__cdecl)
L"__fastcall", // CV_CALL_NEAR_FAST
L"__stdcall" // CV_CALL_NEAR_STD
L"__syscall", // CV_CALL_NEAR_SYS
L"__thoscall", // CV_CALL_THISCALL
L"__clrcall" // CV_CALL_CLRCALL
};
class Bstr
{
public:
BSTR _str;
inline Bstr() : _str(NULL) {}
inline Bstr(BSTR str) : _str(str) {}
inline BSTR* operator &() { Release(); return &_str; }
inline BSTR operator *() { return _str; }
inline void Release() { if (_str) { SysFreeString(_str); _str = NULL; } }
inline ~Bstr() { Release(); }
};
template<typename T>
class ComRef
{
public:
T* _ptr;
inline ComRef() : _ptr(NULL) {}
inline ComRef(T* ptr) : _ptr(ptr) {}
inline ComRef(const ComRef& other) { _ptr = other._ptr; if (_ptr) { _ptr->AddRef(); } }
inline ComRef& operator=(const ComRef& other) { Release(); _ptr = other._ptr; if (_ptr) { _ptr->AddRef(); } return *this; }
inline T** operator &() { Release(); return &_ptr; }
inline T* operator *() { return _ptr; }
inline T* operator ->() { return _ptr; }
inline void Release() { if (_ptr) { _ptr->Release(); _ptr = NULL; } }
inline ~ComRef() { Release(); }
};
class SymbolEnumerator
{
public:
ComRef<IDiaEnumSymbols> _enumerator;
ComRef<IDiaSymbol> _sym;
inline SymbolEnumerator() {}
inline bool Find(IDiaSymbol* parent, enum SymTagEnum tagType, const wchar_t* filter = NULL, NameSearchOptions opt = nsNone) {
return (SUCCEEDED(parent->findChildren(tagType, filter, opt, &_enumerator)));
}
inline bool Next() {
ULONG celt = 0;
return (SUCCEEDED(_enumerator->Next(1, &_sym, &celt)) && (celt == 1));
}
inline IDiaSymbol* operator *() { return _sym._ptr; }
inline IDiaSymbol* operator ->() { return _sym._ptr; }
inline ComRef<IDiaSymbol>& ref() { return _sym; }
};
static ComRef<IDiaSymbol> FindSymbol(IDiaSymbol* parent, enum SymTagEnum tagType, const wchar_t* filter = NULL)
{
ComRef<IDiaEnumSymbols> enumerator;
if (SUCCEEDED(parent->findChildren(tagType, filter, nsNone, &enumerator))) {
IDiaSymbol* child = NULL;
ULONG celt = 0;
if (SUCCEEDED(enumerator->Next(1, &child, &celt)) && (celt == 1)) {
return ComRef<IDiaSymbol>(child);
}
}
return ComRef<IDiaSymbol>();
}