File: desktop_interaction_strategy.h

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (97 lines) | stat: -rw-r--r-- 4,297 bytes parent folder | download | duplicates (6)
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
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_HOST_DESKTOP_INTERACTION_STRATEGY_H_
#define REMOTING_HOST_DESKTOP_INTERACTION_STRATEGY_H_

#include <memory>

#include "base/functional/callback_forward.h"
#include "remoting/host/action_executor.h"
#include "remoting/host/active_display_monitor.h"
#include "remoting/host/audio_capturer.h"
#include "remoting/host/base/desktop_environment_options.h"
#include "remoting/host/desktop_resizer.h"
#include "remoting/host/input_injector.h"
#include "remoting/host/keyboard_layout_monitor.h"
#include "remoting/proto/control.pb.h"
#include "remoting/protocol/desktop_capturer.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_capture_types.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h"
#include "third_party/webrtc/modules/desktop_capture/mouse_cursor_monitor.h"

namespace remoting {

class DesktopDisplayInfoMonitor;
class LocalInputMonitor;

// Interface that encapulates interacting with a desktop environment via a
// relevant set of APIs. This enables state to be shared between implementations
// of the various individual capture, injection, et cetera interfaces. E.g., if
// a video capture API returns both the video frame and cursor shape, the
// implementation of this class would facilitate a shared capturer used by both
// the DesktopCapturer and MouseCursorMonitor implementations.
class DesktopInteractionStrategy {
 public:
  virtual ~DesktopInteractionStrategy() = default;

  // The implementations returned by the various factory methods should not
  // crash if used after the DesktopInteractionStrategy implementation is
  // destroyed, but otherwise need not do anything useful in that case. E.g.,
  // it's fine if no frames are captured and all input events are discarded once
  // the DesktopInteractionStrategy is destroyed.

  // Factory methods used to create capture, injector, and monitor objects used
  // to interact with the session. Correspond to the equivalent methods on
  // DesktopEnvironment.
  virtual std::unique_ptr<ActionExecutor> CreateActionExecutor() = 0;
  virtual std::unique_ptr<AudioCapturer> CreateAudioCapturer() = 0;
  virtual std::unique_ptr<InputInjector> CreateInputInjector() = 0;
  virtual std::unique_ptr<DesktopResizer> CreateDesktopResizer() = 0;
  virtual std::unique_ptr<DesktopCapturer> CreateVideoCapturer(
      webrtc::ScreenId id) = 0;
  virtual std::unique_ptr<webrtc::MouseCursorMonitor>
  CreateMouseCursorMonitor() = 0;
  virtual std::unique_ptr<KeyboardLayoutMonitor> CreateKeyboardLayoutMonitor(
      base::RepeatingCallback<void(const protocol::KeyboardLayout&)>
          callback) = 0;
  virtual std::unique_ptr<ActiveDisplayMonitor> CreateActiveDisplayMonitor(
      base::RepeatingCallback<void(webrtc::ScreenId)> callback) = 0;

  // Factory methods used by DesktopEnvironment that aren't exposed directly.
  virtual std::unique_ptr<DesktopDisplayInfoMonitor>
  CreateDisplayInfoMonitor() = 0;
  virtual std::unique_ptr<LocalInputMonitor> CreateLocalInputMonitor() = 0;

 protected:
  // Wraps raw capturer in a differ wrapper if appropriate, and calls
  // SelectSource.
  static std::unique_ptr<webrtc::DesktopCapturer> CreateCapturerFromRaw(
      std::unique_ptr<webrtc::DesktopCapturer> raw_capturer,
      const webrtc::DesktopCaptureOptions&,
      webrtc::ScreenId id);
};

// Factory to create DesktopInteractionStrategy instances as needed (e.g., upon
// connection).
class DesktopInteractionStrategyFactory {
 public:
  using CreateCallback =
      base::OnceCallback<void(std::unique_ptr<DesktopInteractionStrategy>)>;

  virtual ~DesktopInteractionStrategyFactory() = default;

  // Asynchronously creates a DesktopInteractionStrategy instance.
  //
  // This may involve negotiating a remote desktop session with the desktop
  // environment or otherwise setting up shared resources. The resulting session
  // object will be posted back on the same sequence, or nullptr if an error
  // occurs.
  virtual void Create(const DesktopEnvironmentOptions& options,
                      CreateCallback callback) = 0;
};

}  // namespace remoting

#endif  // REMOTING_HOST_DESKTOP_INTERACTION_STRATEGY_H_