summaryrefslogtreecommitdiffstats
path: root/dom/gamepad/GamepadHandle.h
blob: c13e2b912ecd1f0cd82bfe9f469a8c6bcf9ebdd2 (plain)
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
/* -*- 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/. */

// This file defines a strongly-typed opaque gamepad handle
//
// The handle is designed to be copied around and passed over IPC. It keeps
// track of which "provider" created the handle so it can ensure that
// providers are never mixed. It also allows each provider to have its own
// algorithm for generating gamepad IDs, since the VR and Platform services
// do it differently.

#ifndef mozilla_dom_gamepad_GamepadHandle_h
#define mozilla_dom_gamepad_GamepadHandle_h

#include "PLDHashTable.h"
#include <type_traits>
#include <cinttypes>

namespace IPC {

template <class>
struct ParamTraits;

}  // namespace IPC

namespace mozilla::gfx {

class VRDisplayClient;
class VRManager;

}  // namespace mozilla::gfx

namespace mozilla::dom {

class GamepadPlatformService;
class GamepadServiceTest;
class XRInputSource;

// The "kind" of a gamepad handle is based on which provider created it
enum class GamepadHandleKind : uint8_t {
  GamepadPlatformManager,
  VR,
};

class GamepadHandle {
 public:
  // Allow handle to be passed around as a simple object
  GamepadHandle() = default;
  GamepadHandle(const GamepadHandle&) = default;
  GamepadHandle& operator=(const GamepadHandle&) = default;

  // Helps code know which manager to send requests to
  GamepadHandleKind GetKind() const;

  // Define operators so the handle can compared and stored in maps
  friend bool operator==(const GamepadHandle& a, const GamepadHandle& b);
  friend bool operator!=(const GamepadHandle& a, const GamepadHandle& b);
  friend bool operator<(const GamepadHandle& a, const GamepadHandle& b);

  PLDHashNumber Hash() const;

 private:
  explicit GamepadHandle(uint32_t aValue, GamepadHandleKind aKind);
  uint32_t GetValue() const { return mValue; }

  uint32_t mValue{0};
  GamepadHandleKind mKind{GamepadHandleKind::GamepadPlatformManager};

  // These are the classes that are "gamepad managers". They are allowed to
  // create new handles and inspect their actual value
  friend class mozilla::dom::GamepadPlatformService;
  friend class mozilla::dom::GamepadServiceTest;
  friend class mozilla::dom::XRInputSource;
  friend class mozilla::gfx::VRDisplayClient;
  friend class mozilla::gfx::VRManager;

  // Allow IPDL to serialize us
  friend struct IPC::ParamTraits<mozilla::dom::GamepadHandle>;
};

static_assert(std::is_trivially_copyable<GamepadHandle>::value,
              "GamepadHandle must be trivially copyable");

}  // namespace mozilla::dom

#endif  // mozilla_dom_gamepad_GamepadHandle_h