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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
|
// 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_WEBCAM_PRIVATE_WEBCAM_PRIVATE_API_H_
#define EXTENSIONS_BROWSER_API_WEBCAM_PRIVATE_WEBCAM_PRIVATE_API_H_
#include <map>
#include <memory>
#include "base/memory/raw_ptr.h"
#include "extensions/browser/api/api_resource_manager.h"
#include "extensions/browser/api/webcam_private/webcam.h"
#include "extensions/browser/browser_context_keyed_api_factory.h"
#include "extensions/browser/extension_function.h"
#include "extensions/browser/process_manager_observer.h"
#include "extensions/common/api/webcam_private.h"
#include "extensions/common/extension_id.h"
#include "url/origin.h"
namespace extensions {
class WebcamPrivateAPI : public BrowserContextKeyedAPI {
public:
static BrowserContextKeyedAPIFactory<WebcamPrivateAPI>* GetFactoryInstance();
// Convenience method to get the WebcamPrivateAPI for a BrowserContext.
static WebcamPrivateAPI* Get(content::BrowserContext* context);
explicit WebcamPrivateAPI(content::BrowserContext* context);
WebcamPrivateAPI(const WebcamPrivateAPI&) = delete;
WebcamPrivateAPI& operator=(const WebcamPrivateAPI&) = delete;
~WebcamPrivateAPI() override;
void GetWebcam(const ExtensionId& extension_id,
const std::string& webcam_id,
base::OnceCallback<void(Webcam*)> callback);
enum class OpenSerialWebcamResult { kSuccess, kInUse, kError };
void OpenSerialWebcam(
const ExtensionId& extension_id,
const std::string& device_path,
const base::RepeatingCallback<void(const std::string&,
OpenSerialWebcamResult)>& callback);
bool CloseWebcam(const ExtensionId& extension_id,
const std::string& device_id);
private:
friend class BrowserContextKeyedAPIFactory<WebcamPrivateAPI>;
void OnGotDeviceIdOnUIThread(const ExtensionId& extension_id,
const std::string& webcam_id,
base::OnceCallback<void(Webcam*)> callback,
const std::optional<std::string>& device_id);
static void GetDeviceIdOnIOThread(
std::string salt,
url::Origin security_origin,
std::string hmac_device_id,
base::OnceCallback<void(const std::optional<std::string>&)> callback);
void GetDeviceIdOnUIThread(const url::Origin& security_origin,
const ExtensionId& extension_id,
const std::string& webcam_id,
base::OnceCallback<void(Webcam*)> webcam_callback,
const std::string& salt);
void OnOpenSerialWebcam(
const std::string& webcam_id,
const ExtensionId& extension_id,
const std::string& device_path,
scoped_refptr<Webcam> webcam,
const base::RepeatingCallback<void(const std::string&,
OpenSerialWebcamResult)>& callback,
bool success);
void GotWebcamId(const ExtensionId& extension_id,
const std::string& device_path,
const base::RepeatingCallback<void(const std::string&,
OpenSerialWebcamResult)>&
open_serial_webcam_callback,
const std::string& webcam_id);
void GetWebcamId(const ExtensionId& extension_id,
const std::string& device_id,
base::OnceCallback<void(const std::string&)> callback);
void FinalizeGetWebcamId(
const url::Origin& security_origin,
const std::string& device_id,
base::OnceCallback<void(const std::string&)> webcam_id_callback,
const std::string& device_id_salt);
WebcamResource* FindWebcamResource(const ExtensionId& extension_id,
const std::string& webcam_id) const;
bool RemoveWebcamResource(const ExtensionId& extension_id,
const std::string& webcam_id);
// BrowserContextKeyedAPI:
static const char* service_name() {
return "WebcamPrivateAPI";
}
static const bool kServiceIsNULLWhileTesting = true;
static const bool kServiceRedirectedInIncognito = true;
const raw_ptr<content::BrowserContext> browser_context_;
std::unique_ptr<ApiResourceManager<WebcamResource>> webcam_resource_manager_;
base::WeakPtrFactory<WebcamPrivateAPI> weak_ptr_factory_{this};
};
template <>
void BrowserContextKeyedAPIFactory<WebcamPrivateAPI>
::DeclareFactoryDependencies();
class WebcamPrivateOpenSerialWebcamFunction : public ExtensionFunction {
public:
WebcamPrivateOpenSerialWebcamFunction();
WebcamPrivateOpenSerialWebcamFunction(
const WebcamPrivateOpenSerialWebcamFunction&) = delete;
WebcamPrivateOpenSerialWebcamFunction& operator=(
const WebcamPrivateOpenSerialWebcamFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("webcamPrivate.openSerialWebcam",
WEBCAMPRIVATE_OPENSERIALWEBCAM)
protected:
~WebcamPrivateOpenSerialWebcamFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
private:
void OnOpenWebcam(const std::string& webcam_id,
WebcamPrivateAPI::OpenSerialWebcamResult result);
};
class WebcamPrivateCloseWebcamFunction : public ExtensionFunction {
public:
WebcamPrivateCloseWebcamFunction();
WebcamPrivateCloseWebcamFunction(const WebcamPrivateCloseWebcamFunction&) =
delete;
WebcamPrivateCloseWebcamFunction& operator=(
const WebcamPrivateCloseWebcamFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("webcamPrivate.closeWebcam",
WEBCAMPRIVATE_CLOSEWEBCAM)
protected:
~WebcamPrivateCloseWebcamFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
};
class WebcamPrivateSetFunction : public ExtensionFunction {
public:
WebcamPrivateSetFunction();
WebcamPrivateSetFunction(const WebcamPrivateSetFunction&) = delete;
WebcamPrivateSetFunction& operator=(const WebcamPrivateSetFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("webcamPrivate.set", WEBCAMPRIVATE_SET)
protected:
~WebcamPrivateSetFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
private:
void OnWebcam(
std::optional<extensions::api::webcam_private::Set::Params> params,
Webcam* webcam);
void OnSetWebcamParameters(bool success);
int pending_num_set_webcam_param_requests_ = 0;
bool failed_ = false;
};
class WebcamPrivateGetFunction : public ExtensionFunction {
public:
WebcamPrivateGetFunction();
WebcamPrivateGetFunction(const WebcamPrivateGetFunction&) = delete;
WebcamPrivateGetFunction& operator=(const WebcamPrivateGetFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("webcamPrivate.get", WEBCAMPRIVATE_GET)
protected:
~WebcamPrivateGetFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
private:
enum InquiryType {
INQUIRY_PAN,
INQUIRY_TILT,
INQUIRY_ZOOM,
INQUIRY_FOCUS,
};
enum AutofocusState {
AUTOFOCUSSTATE_ON,
AUTOFOCUSSTATE_OFF,
};
void OnWebcam(Webcam* webcam);
void OnGetWebcamParameters(InquiryType type,
bool success,
int value,
int min_value,
int max_value);
int min_pan_;
int max_pan_;
int pan_;
int min_tilt_;
int max_tilt_;
int tilt_;
int min_zoom_;
int max_zoom_;
int zoom_;
int min_focus_;
int max_focus_;
int focus_;
bool got_pan_;
bool got_tilt_;
bool got_zoom_;
bool got_focus_;
bool success_;
};
class WebcamPrivateResetFunction : public ExtensionFunction {
public:
WebcamPrivateResetFunction();
WebcamPrivateResetFunction(const WebcamPrivateResetFunction&) = delete;
WebcamPrivateResetFunction& operator=(const WebcamPrivateResetFunction&) =
delete;
DECLARE_EXTENSION_FUNCTION("webcamPrivate.reset", WEBCAMPRIVATE_RESET)
protected:
~WebcamPrivateResetFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
private:
void OnWebcam(
std::optional<extensions::api::webcam_private::Reset::Params> params,
Webcam* webcam);
void OnResetWebcam(bool success);
};
class WebcamPrivateSetHomeFunction : public ExtensionFunction {
public:
WebcamPrivateSetHomeFunction();
WebcamPrivateSetHomeFunction(const WebcamPrivateSetHomeFunction&) = delete;
WebcamPrivateSetHomeFunction& operator=(const WebcamPrivateSetHomeFunction&) =
delete;
DECLARE_EXTENSION_FUNCTION("webcamPrivate.setHome", WEBCAMPRIVATE_SET_HOME)
protected:
~WebcamPrivateSetHomeFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
private:
void OnWebcam(Webcam* webcam);
void OnSetHomeWebcam(bool success);
};
class WebcamPrivateRestoreCameraPresetFunction : public ExtensionFunction {
public:
WebcamPrivateRestoreCameraPresetFunction();
WebcamPrivateRestoreCameraPresetFunction(
const WebcamPrivateRestoreCameraPresetFunction&) = delete;
WebcamPrivateRestoreCameraPresetFunction& operator=(
const WebcamPrivateRestoreCameraPresetFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("webcamPrivate.restoreCameraPreset",
WEBCAMPRIVATE_RESTORE_CAMERA_PRESET)
protected:
~WebcamPrivateRestoreCameraPresetFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
private:
void OnWebcam(int preset_number, Webcam* webcam);
void OnRestoreCameraPresetWebcam(bool success);
};
class WebcamPrivateSetCameraPresetFunction : public ExtensionFunction {
public:
WebcamPrivateSetCameraPresetFunction();
WebcamPrivateSetCameraPresetFunction(
const WebcamPrivateSetCameraPresetFunction&) = delete;
WebcamPrivateSetCameraPresetFunction& operator=(
const WebcamPrivateSetCameraPresetFunction&) = delete;
DECLARE_EXTENSION_FUNCTION("webcamPrivate.setCameraPreset",
WEBCAMPRIVATE_SET_CAMERA_PRESET)
protected:
~WebcamPrivateSetCameraPresetFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
private:
void OnWebcam(int preset_number, Webcam* webcam);
void OnSetCameraPresetWebcam(bool success);
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_API_WEBCAM_PRIVATE_WEBCAM_PRIVATE_API_H_
|