-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscoped_com_initializer.h
More file actions
74 lines (60 loc) · 2.09 KB
/
scoped_com_initializer.h
File metadata and controls
74 lines (60 loc) · 2.09 KB
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
///////////////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2018 The Authors of ANT(http:://ant.sh) . All Rights Reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
///////////////////////////////////////////////////////////////////////////////////////////
#ifndef TEST_UTIL_SCOPED_COM_INITIALIZER_H_
#define TEST_UTIL_SCOPED_COM_INITIALIZER_H_
#include <objbase.h>
// Initializes COM in the constructor (STA or MTA), and uninitializes COM in the
// destructor.
class ScopedCOMInitializer {
public:
// Enum value provided to initialize the thread as an MTA instead of STA.
enum SelectMTA { kMTA };
// Constructor for STA initialization.
ScopedCOMInitializer() {
Initialize(COINIT_APARTMENTTHREADED);
}
// Constructor for MTA initialization.
explicit ScopedCOMInitializer(SelectMTA mta) {
Initialize(COINIT_MULTITHREADED);
}
explicit ScopedCOMInitializer(COINIT init) {
Initialize(init);
}
~ScopedCOMInitializer() {
#ifndef NDEBUG
// Using the windows API directly to avoid dependency on platform_thread.
// DCHECK_EQ(GetCurrentThreadId(), thread_id_);
#endif
if (succeeded())
CoUninitialize();
}
bool succeeded() const { return SUCCEEDED(hr_); }
private:
void Initialize(COINIT init) {
#ifndef NDEBUG
thread_id_ = GetCurrentThreadId();
#endif
hr_ = CoInitializeEx(NULL, init);
#ifndef NDEBUG
//if (hr_ == S_FALSE)
// LOG(ERROR) << "Multiple CoInitialize() calls for thread " << thread_id_;
//else
// DCHECK_NE(RPC_E_CHANGED_MODE, hr_) << "Invalid COM thread model change";
#endif
}
HRESULT hr_;
#ifndef NDEBUG
// In debug builds we use this variable to catch a potential bug where a
// ScopedCOMInitializer instance is deleted on a different thread than it
// was initially created on. If that ever happens it can have bad
// consequences and the cause can be tricky to track down.
DWORD thread_id_;
#endif
DISALLOW_COPY_AND_ASSIGN(ScopedCOMInitializer);
};
#endif // TEST_UTIL_SCOPED_COM_INITIALIZER_H_