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
|
/* -*- 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 "VRChild.h"
#include "VRProcessManager.h"
#include "VRProcessParent.h"
#include "gfxConfig.h"
#include "mozilla/gfx/gfxVars.h"
#include "mozilla/ClearOnShutdown.h"
#include "mozilla/glean/IpcMetrics.h"
#include "mozilla/VsyncDispatcher.h"
#include "mozilla/dom/MemoryReportRequest.h"
namespace mozilla {
namespace gfx {
class OpenVRControllerManifestManager {
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(OpenVRControllerManifestManager)
public:
explicit OpenVRControllerManifestManager() = default;
void SetOpenVRControllerActionPath(const nsCString& aPath) {
mAction = aPath;
}
void SetOpenVRControllerManifestPath(VRControllerType aType,
const nsCString& aPath) {
mManifest.InsertOrUpdate(static_cast<uint32_t>(aType), aPath);
}
bool GetActionPath(nsCString* aPath) {
if (!mAction.IsEmpty()) {
*aPath = mAction;
return true;
}
return false;
}
bool GetManifestPath(VRControllerType aType, nsCString* aPath) {
return mManifest.Get(static_cast<uint32_t>(aType), aPath);
}
private:
~OpenVRControllerManifestManager() {
if (!mAction.IsEmpty() && remove(mAction.BeginReading()) != 0) {
MOZ_ASSERT(false, "Delete controller action file failed.");
}
mAction = "";
for (const auto& path : mManifest.Values()) {
if (!path.IsEmpty() && remove(path.BeginReading()) != 0) {
MOZ_ASSERT(false, "Delete controller manifest file failed.");
}
}
mManifest.Clear();
}
nsCString mAction;
nsTHashMap<nsUint32HashKey, nsCString> mManifest;
OpenVRControllerManifestManager(const OpenVRControllerManifestManager&) =
delete;
const OpenVRControllerManifestManager& operator=(
const OpenVRControllerManifestManager&) = delete;
};
StaticRefPtr<OpenVRControllerManifestManager> sOpenVRControllerManifestManager;
VRChild::VRChild(VRProcessParent* aHost) : mHost(aHost), mVRReady(false) {
MOZ_ASSERT(XRE_IsParentProcess());
}
VRChild::~VRChild() = default;
mozilla::ipc::IPCResult VRChild::RecvAddMemoryReport(
const MemoryReport& aReport) {
if (mMemoryReportRequest) {
mMemoryReportRequest->RecvReport(aReport);
}
return IPC_OK();
}
void VRChild::ActorDestroy(ActorDestroyReason aWhy) {
if (aWhy == AbnormalShutdown) {
GenerateCrashReport();
glean::subprocess::abnormal_abort
.Get(nsDependentCString(
XRE_GeckoProcessTypeToString(GeckoProcessType_VR)))
.Add(1);
}
gfxVars::RemoveReceiver(this);
mHost->OnChannelClosed();
}
void VRChild::Init() {
nsTArray<GfxVarUpdate> updates = gfxVars::FetchNonDefaultVars();
DevicePrefs devicePrefs;
devicePrefs.hwCompositing() = gfxConfig::GetValue(Feature::HW_COMPOSITING);
devicePrefs.d3d11Compositing() =
gfxConfig::GetValue(Feature::D3D11_COMPOSITING);
devicePrefs.oglCompositing() =
gfxConfig::GetValue(Feature::OPENGL_COMPOSITING);
SendInit(updates, devicePrefs);
if (!sOpenVRControllerManifestManager) {
sOpenVRControllerManifestManager = new OpenVRControllerManifestManager();
NS_DispatchToMainThread(NS_NewRunnableFunction(
"ClearOnShutdown OpenVRControllerManifestManager",
[]() { ClearOnShutdown(&sOpenVRControllerManifestManager); }));
}
nsCString output;
if (sOpenVRControllerManifestManager->GetActionPath(&output)) {
SendOpenVRControllerActionPathToVR(output);
}
if (sOpenVRControllerManifestManager->GetManifestPath(
VRControllerType::HTCVive, &output)) {
SendOpenVRControllerManifestPathToVR(VRControllerType::HTCVive, output);
}
if (sOpenVRControllerManifestManager->GetManifestPath(VRControllerType::MSMR,
&output)) {
SendOpenVRControllerManifestPathToVR(VRControllerType::MSMR, output);
}
if (sOpenVRControllerManifestManager->GetManifestPath(
VRControllerType::ValveIndex, &output)) {
SendOpenVRControllerManifestPathToVR(VRControllerType::ValveIndex, output);
}
gfxVars::AddReceiver(this);
}
bool VRChild::EnsureVRReady() {
if (!mVRReady) {
return false;
}
return true;
}
mozilla::ipc::IPCResult VRChild::RecvOpenVRControllerActionPathToParent(
const nsCString& aPath) {
sOpenVRControllerManifestManager->SetOpenVRControllerActionPath(aPath);
return IPC_OK();
}
mozilla::ipc::IPCResult VRChild::RecvOpenVRControllerManifestPathToParent(
const VRControllerType& aType, const nsCString& aPath) {
sOpenVRControllerManifestManager->SetOpenVRControllerManifestPath(aType,
aPath);
return IPC_OK();
}
mozilla::ipc::IPCResult VRChild::RecvInitComplete() {
// We synchronously requested VR parameters before this arrived.
mVRReady = true;
return IPC_OK();
}
bool VRChild::SendRequestMemoryReport(const uint32_t& aGeneration,
const bool& aAnonymize,
const bool& aMinimizeMemoryUsage,
const Maybe<FileDescriptor>& aDMDFile) {
mMemoryReportRequest = MakeUnique<MemoryReportRequestHost>(aGeneration);
PVRChild::SendRequestMemoryReport(
aGeneration, aAnonymize, aMinimizeMemoryUsage, aDMDFile,
[&](const uint32_t& aGeneration2) {
if (VRProcessManager* vpm = VRProcessManager::Get()) {
if (VRChild* child = vpm->GetVRChild()) {
if (child->mMemoryReportRequest) {
child->mMemoryReportRequest->Finish(aGeneration2);
child->mMemoryReportRequest = nullptr;
}
}
}
},
[&](mozilla::ipc::ResponseRejectReason) {
if (VRProcessManager* vpm = VRProcessManager::Get()) {
if (VRChild* child = vpm->GetVRChild()) {
child->mMemoryReportRequest = nullptr;
}
}
});
return true;
}
void VRChild::OnVarChanged(const nsTArray<GfxVarUpdate>& aVar) {
SendUpdateVar(aVar);
}
class DeferredDeleteVRChild : public Runnable {
public:
explicit DeferredDeleteVRChild(RefPtr<VRChild>&& aChild)
: Runnable("gfx::DeferredDeleteVRChild"), mChild(std::move(aChild)) {}
NS_IMETHODIMP Run() override { return NS_OK; }
private:
RefPtr<VRChild> mChild;
};
/* static */
void VRChild::Destroy(RefPtr<VRChild>&& aChild) {
NS_DispatchToMainThread(new DeferredDeleteVRChild(std::move(aChild)));
}
} // namespace gfx
} // namespace mozilla
|