blob: dfb2696c679dfa9f5283987d482d3e2e16d81241 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/webxr/android/openxr_device_provider.h"
#include <utility>
#include "base/android/jni_android.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/no_destructor.h"
#include "base/system/sys_info.h"
#include "base/task/single_thread_task_runner.h"
#include "components/viz/common/gpu/context_provider.h"
#include "components/webxr/android/openxr_platform_helper_android.h"
#include "components/webxr/android/xr_session_coordinator.h"
#include "components/webxr/mailbox_to_surface_bridge_impl.h"
#include "components/webxr/xr_test_hook_wrapper.h"
#include "content/public/browser/android/compositor.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "device/vr/android/xr_image_transport_base.h"
#include "device/vr/openxr/context_provider_callbacks.h"
#include "device/vr/openxr/openxr_api_wrapper.h"
#include "device/vr/openxr/openxr_device.h"
#include "device/vr/openxr/openxr_platform.h"
#include "gpu/command_buffer/client/shared_memory_limits.h"
#include "gpu/command_buffer/common/context_creation_attribs.h"
#include "third_party/openxr/src/include/openxr/openxr.h"
namespace webxr {
// static
void OpenXrDeviceProvider::SetTestHook(
mojo::PendingRemote<device_test::mojom::XRTestHook> hook_info) {
static base::NoDestructor<std::unique_ptr<XRTestHookWrapper>> wrapper;
if (wrapper->get() != nullptr) {
device::OpenXrApiWrapper::SetTestHook(nullptr);
}
*wrapper = hook_info
? std::make_unique<XRTestHookWrapper>(std::move(hook_info))
: nullptr;
device::OpenXrApiWrapper::SetTestHook(wrapper->get());
}
OpenXrDeviceProvider::OpenXrDeviceProvider() = default;
OpenXrDeviceProvider::~OpenXrDeviceProvider() {
// Must make sure that the OpenXrPlatformHelper outlives the OpenXrDevice.
openxr_device_.reset();
openxr_platform_helper_.reset();
}
void OpenXrDeviceProvider::Initialize(
device::VRDeviceProviderClient* client,
content::WebContents* initializing_web_contents) {
CHECK(!initialized_);
openxr_platform_helper_ = std::make_unique<OpenXrPlatformHelperAndroid>();
if (openxr_platform_helper_->EnsureInitialized() &&
openxr_platform_helper_->CheckHardwareSupport(
initializing_web_contents)) {
DVLOG(2) << __func__ << ": OpenXr is supported, creating device";
// Unretained is safe since we own the device this callback is being
// passed to and we ensure that it does not outlive us. The device is
// expected to wind down any threads that it spins up as well (for e.g.
// rendering), so this destruction is also safe. The OpenXrDevice passes
// this off to different render loops as it creates them, so we can't just
// use a WeakPtr of ourselves here, since it would technically end up
// dereferenced on different threads (albeit all children).
openxr_device_ = std::make_unique<device::OpenXrDevice>(
base::BindRepeating(&OpenXrDeviceProvider::CreateContextProviderAsync,
base::Unretained(this)),
openxr_platform_helper_.get());
client->AddRuntime(openxr_device_->GetId(), openxr_device_->GetDeviceData(),
openxr_device_->BindXRRuntime());
}
initialized_ = true;
client->OnProviderInitialized();
}
bool OpenXrDeviceProvider::Initialized() {
return initialized_;
}
void OpenXrDeviceProvider::CreateContextProviderAsync(
VizContextProviderCallback viz_context_provider_callback) {
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE, base::BindOnce(
[](content::Compositor::ContextProviderCallback callback) {
content::Compositor::CreateContextProvider(
gpu::SharedMemoryLimits::ForMailboxContext(),
std::move(callback));
},
std::move(viz_context_provider_callback)));
}
} // namespace webxr