forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVRServiceHost.cpp
231 lines (204 loc) · 5.85 KB
/
VRServiceHost.cpp
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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "VRServiceHost.h"
#include "VRGPUChild.h"
#include "VRManager.h"
#include "VRPuppetCommandBuffer.h"
#include "mozilla/ClearOnShutdown.h"
#include "mozilla/gfx/GPUParent.h"
#include "service/VRService.h"
namespace mozilla {
namespace gfx {
static StaticRefPtr<VRServiceHost> sVRServiceHostSingleton;
/* static */
void VRServiceHost::Init(bool aEnableVRProcess) {
MOZ_ASSERT(NS_IsMainThread());
if (sVRServiceHostSingleton == nullptr) {
sVRServiceHostSingleton = new VRServiceHost(aEnableVRProcess);
ClearOnShutdown(&sVRServiceHostSingleton);
}
}
/* static */
VRServiceHost* VRServiceHost::Get() {
MOZ_ASSERT(sVRServiceHostSingleton != nullptr);
return sVRServiceHostSingleton;
}
VRServiceHost::VRServiceHost(bool aEnableVRProcess)
: mPuppetActive(false)
#if !defined(MOZ_WIDGET_ANDROID)
,
mVRService(nullptr),
mVRProcessEnabled(aEnableVRProcess),
mVRProcessStarted(false),
mVRServiceRequested(false)
#endif
{
MOZ_COUNT_CTOR(VRServiceHost);
}
VRServiceHost::~VRServiceHost() {
MOZ_ASSERT(NS_IsMainThread());
MOZ_COUNT_DTOR(VRServiceHost);
}
void VRServiceHost::StartService() {
mVRServiceRequested = true;
if (mVRProcessEnabled) {
// VRService in the VR process
RefreshVRProcess();
} else if (mVRService) {
// VRService in the GPU process if enabled, or
// the parent process if the GPU process is not enabled.
mVRService->Start();
}
}
void VRServiceHost::StopService() {
mVRServiceRequested = false;
if (mVRProcessEnabled) {
// VRService in the VR process
RefreshVRProcess();
} else if (mVRService) {
// VRService in the GPU process if enabled, or
// the parent process if the GPU process is not enabled.
mVRService->Stop();
}
}
void VRServiceHost::Shutdown() {
PuppetReset();
StopService();
mVRService = nullptr;
}
void VRServiceHost::Refresh() {
if (mVRService) {
mVRService->Refresh();
}
}
#if !defined(MOZ_WIDGET_ANDROID)
void VRServiceHost::CreateService(volatile VRExternalShmem* aShmem) {
MOZ_ASSERT(!mVRProcessEnabled);
mVRService = VRService::Create(aShmem);
}
bool VRServiceHost::NeedVRProcess() {
if (!mVRProcessEnabled) {
return false;
}
if (mVRServiceRequested) {
return true;
}
if (mPuppetActive) {
return true;
}
return false;
}
void VRServiceHost::RefreshVRProcess() {
// Start or stop the VR process if needed
if (NeedVRProcess()) {
if (!mVRProcessStarted) {
CreateVRProcess();
}
} else {
if (mVRProcessStarted) {
ShutdownVRProcess();
}
}
}
void VRServiceHost::CreateVRProcess() {
// This is only allowed to run in the main thread of the GPU process
if (!XRE_IsGPUProcess()) {
return;
}
// Forward this to the main thread if not already there
if (!NS_IsMainThread()) {
RefPtr<Runnable> task = NS_NewRunnableFunction(
"VRServiceHost::CreateVRProcess",
[]() -> void { VRServiceHost::Get()->CreateVRProcess(); });
NS_DispatchToMainThread(task.forget());
return;
}
if (mVRProcessStarted) {
return;
}
mVRProcessStarted = true;
// Using PGPU channel to tell the main process
// to create the VR process.
gfx::GPUParent* gpu = GPUParent::GetSingleton();
MOZ_ASSERT(gpu);
Unused << gpu->SendCreateVRProcess();
}
void VRServiceHost::ShutdownVRProcess() {
// This is only allowed to run in the main thread of the GPU process
if (!XRE_IsGPUProcess()) {
return;
}
// Forward this to the main thread if not already there
if (!NS_IsMainThread()) {
RefPtr<Runnable> task = NS_NewRunnableFunction(
"VRServiceHost::ShutdownVRProcess",
[]() -> void { VRServiceHost::Get()->ShutdownVRProcess(); });
NS_DispatchToMainThread(task.forget());
return;
}
if (VRGPUChild::IsCreated()) {
VRGPUChild* vrGPUChild = VRGPUChild::Get();
vrGPUChild->SendStopVRService();
if (!vrGPUChild->IsClosed()) {
vrGPUChild->Close();
}
VRGPUChild::Shutdown();
}
if (!mVRProcessStarted) {
return;
}
// Using PGPU channel to tell the main process
// to shutdown VR process.
gfx::GPUParent* gpu = GPUParent::GetSingleton();
MOZ_ASSERT(gpu);
Unused << gpu->SendShutdownVRProcess();
mVRProcessStarted = false;
}
#endif // !defined(MOZ_WIDGET_ANDROID)
void VRServiceHost::PuppetSubmit(const nsTArray<uint64_t>& aBuffer) {
mPuppetActive = true;
if (mVRProcessEnabled) {
// TODO - Implement VR puppet support for VR process (Bug 1555188)
MOZ_ASSERT(false); // Not implemented
} else {
VRPuppetCommandBuffer::Get().Submit(aBuffer);
}
}
void VRServiceHost::PuppetReset() {
if (mVRProcessEnabled) {
mPuppetActive = false;
if (!mVRProcessStarted) {
// Process is stopped, so puppet state is already clear
return;
}
// TODO - Implement VR puppet support for VR process (Bug 1555188)
MOZ_ASSERT(false); // Not implemented
} else if (mPuppetActive) {
VRPuppetCommandBuffer::Get().Reset();
mPuppetActive = false;
}
}
bool VRServiceHost::PuppetHasEnded() {
if (mVRProcessEnabled) {
if (!mVRProcessStarted) {
// The VR process will be kept alive as long
// as there is a queue in the puppet command
// buffer. If the process is stopped, we can
// infer that the queue has been cleared and
// puppet state is reset.
return true;
}
// TODO - Implement VR puppet support for VR process (Bug 1555188)
MOZ_ASSERT(false); // Not implemented
return false;
}
if (mPuppetActive) {
return VRPuppetCommandBuffer::Get().HasEnded();
}
return true;
}
} // namespace gfx
} // namespace mozilla