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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_BROWSER_API_HID_HID_API_H_
#define EXTENSIONS_BROWSER_API_HID_HID_API_H_
#include <stddef.h>
#include <string>
#include "base/memory/raw_ptr.h"
#include "extensions/browser/api/api_resource_manager.h"
#include "extensions/browser/api/hid/hid_connection_resource.h"
#include "extensions/browser/api/hid/hid_device_manager.h"
#include "extensions/browser/extension_function.h"
#include "extensions/common/api/hid.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "services/device/public/mojom/hid.mojom.h"
namespace extensions {
class HidGetDevicesFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("hid.getDevices", HID_GETDEVICES)
HidGetDevicesFunction();
HidGetDevicesFunction(const HidGetDevicesFunction&) = delete;
HidGetDevicesFunction& operator=(const HidGetDevicesFunction&) = delete;
private:
~HidGetDevicesFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
void OnEnumerationComplete(base::Value::List devices);
};
class HidConnectFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("hid.connect", HID_CONNECT)
HidConnectFunction();
HidConnectFunction(const HidConnectFunction&) = delete;
HidConnectFunction& operator=(const HidConnectFunction&) = delete;
private:
~HidConnectFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
void OnConnectComplete(
mojo::PendingRemote<device::mojom::HidConnection> connection);
raw_ptr<ApiResourceManager<HidConnectionResource>> connection_manager_;
};
class HidDisconnectFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("hid.disconnect", HID_DISCONNECT)
HidDisconnectFunction();
HidDisconnectFunction(const HidDisconnectFunction&) = delete;
HidDisconnectFunction& operator=(const HidDisconnectFunction&) = delete;
private:
~HidDisconnectFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
};
// Base class for extension functions that start some asynchronous work after
// looking up a HidConnection.
class HidConnectionIoFunction : public ExtensionFunction {
public:
HidConnectionIoFunction();
protected:
~HidConnectionIoFunction() override;
// Returns true if params were successfully read from |args()|.
virtual bool ReadParameters() = 0;
virtual void StartWork(device::mojom::HidConnection* connection) = 0;
void set_connection_id(int connection_id) { connection_id_ = connection_id; }
private:
// ExtensionFunction:
ResponseAction Run() override;
int connection_id_;
};
class HidReceiveFunction : public HidConnectionIoFunction {
public:
DECLARE_EXTENSION_FUNCTION("hid.receive", HID_RECEIVE)
HidReceiveFunction();
HidReceiveFunction(const HidReceiveFunction&) = delete;
HidReceiveFunction& operator=(const HidReceiveFunction&) = delete;
private:
~HidReceiveFunction() override;
// HidConnectionIoFunction:
bool ReadParameters() override;
void StartWork(device::mojom::HidConnection* connection) override;
void OnFinished(bool success,
uint8_t report_id,
const std::optional<std::vector<uint8_t>>& buffer);
std::optional<api::hid::Receive::Params> parameters_;
};
class HidSendFunction : public HidConnectionIoFunction {
public:
DECLARE_EXTENSION_FUNCTION("hid.send", HID_SEND)
HidSendFunction();
HidSendFunction(const HidSendFunction&) = delete;
HidSendFunction& operator=(const HidSendFunction&) = delete;
private:
~HidSendFunction() override;
// HidConnectionIoFunction:
bool ReadParameters() override;
void StartWork(device::mojom::HidConnection* connection) override;
void OnFinished(bool success);
std::optional<api::hid::Send::Params> parameters_;
};
class HidReceiveFeatureReportFunction : public HidConnectionIoFunction {
public:
DECLARE_EXTENSION_FUNCTION("hid.receiveFeatureReport",
HID_RECEIVEFEATUREREPORT)
HidReceiveFeatureReportFunction();
HidReceiveFeatureReportFunction(const HidReceiveFeatureReportFunction&) =
delete;
HidReceiveFeatureReportFunction& operator=(
const HidReceiveFeatureReportFunction&) = delete;
private:
~HidReceiveFeatureReportFunction() override;
// HidConnectionIoFunction:
bool ReadParameters() override;
void StartWork(device::mojom::HidConnection* connection) override;
void OnFinished(bool success,
const std::optional<std::vector<uint8_t>>& buffer);
std::optional<api::hid::ReceiveFeatureReport::Params> parameters_;
};
class HidSendFeatureReportFunction : public HidConnectionIoFunction {
public:
DECLARE_EXTENSION_FUNCTION("hid.sendFeatureReport", HID_SENDFEATUREREPORT)
HidSendFeatureReportFunction();
HidSendFeatureReportFunction(const HidSendFeatureReportFunction&) = delete;
HidSendFeatureReportFunction& operator=(const HidSendFeatureReportFunction&) =
delete;
private:
~HidSendFeatureReportFunction() override;
// HidConnectionIoFunction:
bool ReadParameters() override;
void StartWork(device::mojom::HidConnection* connection) override;
void OnFinished(bool success);
std::optional<api::hid::SendFeatureReport::Params> parameters_;
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_API_HID_HID_API_H_
|