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
|
/************************************************************************************
Filename : OVR_DeviceHandle.cpp
Content : Implementation of device handle class
Created : February 5, 2013
Authors : Lee Cooper
Copyright : Copyright 2013 Oculus VR, Inc. All Rights reserved.
Use of this software is subject to the terms of the Oculus license
agreement provided at the time of installation or download, or which
otherwise accompanies this software in either electronic or hard copy form.
*************************************************************************************/
#include "OVR_DeviceHandle.h"
#include "OVR_DeviceImpl.h"
namespace OVR {
//-------------------------------------------------------------------------------------
// ***** DeviceHandle
DeviceHandle::DeviceHandle(DeviceCreateDesc* impl) : pImpl(impl)
{
if (pImpl)
pImpl->AddRef();
}
DeviceHandle::DeviceHandle(const DeviceHandle& src) : pImpl(src.pImpl)
{
if (pImpl)
pImpl->AddRef();
}
DeviceHandle::~DeviceHandle()
{
if (pImpl)
pImpl->Release();
}
void DeviceHandle::operator = (const DeviceHandle& src)
{
if (src.pImpl)
src.pImpl->AddRef();
if (pImpl)
pImpl->Release();
pImpl = src.pImpl;
}
DeviceBase* DeviceHandle::GetDevice_AddRef() const
{
if (pImpl && pImpl->pDevice)
{
pImpl->pDevice->AddRef();
return pImpl->pDevice;
}
return NULL;
}
// Returns true, if the handle contains the same device ptr
// as specified in the parameter.
bool DeviceHandle::IsDevice(DeviceBase* pdev) const
{
return (pdev && pImpl && pImpl->pDevice) ?
pImpl->pDevice == pdev : false;
}
DeviceType DeviceHandle::GetType() const
{
return pImpl ? pImpl->Type : Device_None;
}
bool DeviceHandle::GetDeviceInfo(DeviceInfo* info) const
{
return pImpl ? pImpl->GetDeviceInfo(info) : false;
}
bool DeviceHandle::IsAvailable() const
{
// This isn't "atomically safe", but the function only returns the
// recent state that may change.
return pImpl ? (pImpl->Enumerated && pImpl->pLock->pManager) : false;
}
bool DeviceHandle::IsCreated() const
{
return pImpl ? (pImpl->pDevice != 0) : false;
}
DeviceBase* DeviceHandle::CreateDevice()
{
if (!pImpl)
return 0;
DeviceBase* device = 0;
Ptr<DeviceManagerImpl> manager= 0;
// Since both manager and device pointers can only be destroyed during a lock,
// hold it while checking for availability.
// AddRef to manager so that it doesn't get released on us.
{
Lock::Locker deviceLockScope(pImpl->GetLock());
if (pImpl->pDevice)
{
pImpl->pDevice->AddRef();
return pImpl->pDevice;
}
manager = pImpl->GetManagerImpl();
}
if (manager)
{
if (manager->GetThreadId() != OVR::GetCurrentThreadId())
{
// Queue up a CreateDevice request. This fills in '&device' with AddRefed value,
// or keep it at null.
manager->GetThreadQueue()->PushCallAndWaitResult(
manager.GetPtr(), &DeviceManagerImpl::CreateDevice_MgrThread,
&device, pImpl, (DeviceBase*)0);
}
else
device = manager->CreateDevice_MgrThread(pImpl, (DeviceBase*)0);
}
return device;
}
void DeviceHandle::Clear()
{
if (pImpl)
{
pImpl->Release();
pImpl = 0;
}
}
bool DeviceHandle::enumerateNext(const DeviceEnumerationArgs& args)
{
if (GetType() == Device_None)
return false;
Ptr<DeviceManagerImpl> managerKeepAlive;
Lock::Locker lockScope(pImpl->GetLock());
DeviceCreateDesc* next = pImpl;
// If manager was destroyed, we get removed from the list.
if (!pImpl->pNext)
return false;
managerKeepAlive = next->GetManagerImpl();
OVR_ASSERT(managerKeepAlive);
do {
next = next->pNext;
if (managerKeepAlive->Devices.IsNull(next))
{
pImpl->Release();
pImpl = 0;
return false;
}
} while(!args.MatchRule(next->Type, next->Enumerated));
next->AddRef();
pImpl->Release();
pImpl = next;
return true;
}
} // namespace OVR
|