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
|
// Copyright 2015 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_PROTOCOL_FAKE_CONNECTION_TO_CLIENT_H_
#define REMOTING_PROTOCOL_FAKE_CONNECTION_TO_CLIENT_H_
#include <stdint.h>
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/task/single_thread_task_runner.h"
#include "remoting/protocol/connection_to_client.h"
#include "remoting/protocol/desktop_capturer.h"
#include "remoting/protocol/network_settings.h"
#include "remoting/protocol/video_feedback_stub.h"
#include "remoting/protocol/video_stream.h"
#include "remoting/protocol/video_stub.h"
namespace remoting::protocol {
class FakeVideoStream : public protocol::VideoStream {
public:
FakeVideoStream();
FakeVideoStream(const FakeVideoStream&) = delete;
FakeVideoStream& operator=(const FakeVideoStream&) = delete;
~FakeVideoStream() override;
// protocol::VideoStream interface.
void SetEventTimestampsSource(scoped_refptr<InputEventTimestampsSource>
event_timestamps_source) override;
void Pause(bool pause) override;
void SetObserver(Observer* observer) override;
void SelectSource(webrtc::ScreenId id) override;
void SetComposeEnabled(bool enabled) override;
void SetMouseCursor(
std::unique_ptr<webrtc::MouseCursor> mouse_cursor) override;
void SetMouseCursorPosition(const webrtc::DesktopVector& position) override;
void SetTargetFramerate(int framerate) override;
webrtc::ScreenId selected_source() const;
Observer* observer() { return observer_; }
base::WeakPtr<FakeVideoStream> GetWeakPtr();
private:
raw_ptr<Observer> observer_ = nullptr;
webrtc::ScreenId selected_source_ = -200;
base::WeakPtrFactory<FakeVideoStream> weak_factory_{this};
};
class FakeConnectionToClient : public ConnectionToClient {
public:
explicit FakeConnectionToClient(std::unique_ptr<Session> session);
FakeConnectionToClient(const FakeConnectionToClient&) = delete;
FakeConnectionToClient& operator=(const FakeConnectionToClient&) = delete;
~FakeConnectionToClient() override;
void SetEventHandler(EventHandler* event_handler) override;
void ApplyNetworkSettings(const NetworkSettings& settings) override;
std::unique_ptr<VideoStream> StartVideoStream(
webrtc::ScreenId screen_id,
std::unique_ptr<DesktopCapturer> desktop_capturer) override;
std::unique_ptr<AudioStream> StartAudioStream(
std::unique_ptr<AudioSource> audio_source) override;
ClientStub* client_stub() override;
void Disconnect(ErrorCode error,
std::string_view error_details,
const SourceLocation& error_location) override;
Session* session() override;
void set_clipboard_stub(ClipboardStub* clipboard_stub) override;
void set_host_stub(HostStub* host_stub) override;
void set_input_stub(InputStub* input_stub) override;
PeerConnectionControls* peer_connection_controls() override;
WebrtcEventLogData* rtc_event_log() override;
base::WeakPtr<FakeVideoStream> last_video_stream() {
return last_video_stream_;
}
void set_client_stub(ClientStub* client_stub) { client_stub_ = client_stub; }
void set_video_stub(VideoStub* video_stub) { video_stub_ = video_stub; }
void set_video_encode_task_runner(
scoped_refptr<base::SingleThreadTaskRunner> runner) {
video_encode_task_runner_ = runner;
}
EventHandler* event_handler() { return event_handler_; }
ClipboardStub* clipboard_stub() { return clipboard_stub_; }
HostStub* host_stub() { return host_stub_; }
InputStub* input_stub() { return input_stub_; }
VideoStub* video_stub() { return video_stub_; }
VideoFeedbackStub* video_feedback_stub() { return video_feedback_stub_; }
bool is_connected() { return is_connected_; }
ErrorCode disconnect_error() { return disconnect_error_; }
const NetworkSettings& network_settings() const { return network_settings_; }
private:
// TODO(crbug.com/40115219): Remove the requirement that ConnectionToClient
// retains a pointer to the capturer if the relative pointer experiment is
// a success.
std::unique_ptr<DesktopCapturer> desktop_capturer_;
std::unique_ptr<Session> session_;
raw_ptr<EventHandler> event_handler_ = nullptr;
base::WeakPtr<FakeVideoStream> last_video_stream_;
raw_ptr<ClientStub> client_stub_ = nullptr;
raw_ptr<ClipboardStub> clipboard_stub_ = nullptr;
raw_ptr<HostStub> host_stub_ = nullptr;
raw_ptr<InputStub> input_stub_ = nullptr;
raw_ptr<VideoStub> video_stub_ = nullptr;
raw_ptr<VideoFeedbackStub> video_feedback_stub_ = nullptr;
scoped_refptr<base::SingleThreadTaskRunner> video_encode_task_runner_;
bool is_connected_ = true;
ErrorCode disconnect_error_ = ErrorCode::OK;
NetworkSettings network_settings_;
};
} // namespace remoting::protocol
#endif // REMOTING_PROTOCOL_FAKE_CONNECTION_TO_CLIENT_H_
|