-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathSmartHandle.h
246 lines (213 loc) · 5.76 KB
/
SmartHandle.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
// sktoolslib - common files for SK tools
// Copyright (C) 2012, 2015, 2017, 2020-2021 - Stefan Kueng
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software Foundation,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
#pragma once
#include <Uxtheme.h>
template <typename Type>
struct CDefaultHandleNull
{
static constexpr Type DefaultHandle()
{
return nullptr;
}
};
struct CDefaultHandleInvalid
{
static constexpr HANDLE DefaultHandle()
{
return INVALID_HANDLE_VALUE;
}
};
/**
* \ingroup Utils
* Helper classes for handles.
*/
template <typename HandleType,
template <class> class CloseFunction,
typename NullType = CDefaultHandleNull<HandleType>>
class CSmartHandle
{
public:
CSmartHandle()
: m_handle(NullType::DefaultHandle())
{
}
// disable any copies of handles.
// Handles must be copied only using DuplicateHandle(). But we leave
// that to an explicit call.
// See compiler tests at the bottom
CSmartHandle(const HandleType& h) = delete;
CSmartHandle(const CSmartHandle& h) = delete;
HandleType& operator=(const HandleType& h) = delete;
CSmartHandle& operator=(const CSmartHandle& h) = delete;
CSmartHandle(HandleType&& h)
{
m_handle = h;
}
CSmartHandle(CSmartHandle&& h) noexcept
{
m_handle = h.Detach();
}
CSmartHandle& operator=(CSmartHandle&& h) noexcept
{
*this = h.Detach();
return *this;
}
HandleType& operator=(HandleType&& h)
{
if (m_handle != h)
{
CleanUp();
m_handle = h;
}
return m_handle;
}
bool CloseHandle()
{
return CleanUp();
}
HandleType Detach()
{
HandleType p = m_handle;
m_handle = NullType::DefaultHandle();
return p;
}
operator HandleType() const
{
return m_handle;
}
HandleType* GetPointer()
{
return &m_handle;
}
operator bool() const
{
return IsValid();
}
bool IsValid() const
{
return m_handle != NullType::DefaultHandle();
}
HandleType Duplicate() const
{
HandleType hDup = NullType::DefaultHandle();
if (DuplicateHandle(GetCurrentProcess(),
static_cast<HANDLE>(m_handle),
GetCurrentProcess(),
&hDup,
0,
FALSE,
DUPLICATE_SAME_ACCESS))
{
return hDup;
}
return NullType::DefaultHandle();
}
~CSmartHandle()
{
CleanUp();
}
protected:
bool CleanUp()
{
if (m_handle != NullType::DefaultHandle())
{
const bool b = CloseFunction<HandleType>::Close(m_handle);
m_handle = NullType::DefaultHandle();
return b;
}
return false;
}
HandleType m_handle;
};
template <typename T>
struct CCloseHandle
{
static bool Close(T handle)
{
return !!::CloseHandle(handle);
}
};
template <typename T>
struct CCloseRegKey
{
static bool Close(T handle)
{
return RegCloseKey(handle) == ERROR_SUCCESS;
}
};
template <typename T>
struct CCloseLibrary
{
static bool Close(T handle)
{
return !!::FreeLibrary(handle);
}
};
template <typename T>
struct CCloseViewOfFile
{
static bool Close(T handle)
{
return !!::UnmapViewOfFile(handle);
}
};
template <typename T>
struct CCloseFindFile
{
static bool Close(T handle)
{
return !!::FindClose(handle);
}
};
template <typename T>
struct CCloseThemeData
{
static bool Close(T hTheme)
{
return SUCCEEDED(::CloseThemeData(hTheme));
}
};
template <typename T>
struct CCloseIcon
{
static bool Close(T handle)
{
return !!DestroyIcon(handle);
}
};
// Client code (definitions of standard Windows handles).
using CAutoGeneralHandle = CSmartHandle<HANDLE, CCloseHandle>;
using CAutoRegKey = CSmartHandle<HKEY, CCloseRegKey>;
using CAutoViewOfFile = CSmartHandle<PVOID, CCloseViewOfFile>;
using CAutoLibrary = CSmartHandle<HMODULE, CCloseLibrary>;
using CAutoFile = CSmartHandle<HANDLE, CCloseHandle, CDefaultHandleInvalid>;
using CAutoFindFile = CSmartHandle<HANDLE, CCloseFindFile, CDefaultHandleInvalid>;
using CAutoThemeData = CSmartHandle<HTHEME, CCloseThemeData>;
using CAutoIcon = CSmartHandle<HICON, CCloseIcon>;
/*
void CompilerTests()
{
// compiler tests
{
HANDLE h = (HANDLE)1;
CAutoFile hFile = h; // C2280
CAutoFile hFile2 = std::move(h); // OK
// OK, uses move semantics
CAutoFile hFile3 = CreateFile(L"c:\\test.txt", GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
CAutoFile hFile4 = hFile3; // C2280
CAutoFile hFile5 = std::move(hFile3); // OK
}
}
*/