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
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_
#define REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_
#include <string>
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/task.h"
#include "remoting/jingle_glue/signal_strategy.h"
#include "remoting/proto/internal.pb.h"
#include "remoting/protocol/connection_to_host.h"
#include "remoting/protocol/message_reader.h"
#include "remoting/protocol/session.h"
#include "remoting/protocol/session_manager.h"
namespace base {
class MessageLoopProxy;
} // namespace base
namespace pp {
class Instance;
} // namespace pp
namespace remoting {
class JingleThread;
class XmppProxy;
class VideoPacket;
namespace protocol {
class ClientMessageDispatcher;
class ClientControlSender;
class ClientStub;
class HostControlSender;
class HostStub;
class InputSender;
class InputStub;
class SessionConfig;
class VideoReader;
class VideoStub;
class ConnectionToHost : public SignalStrategy::StatusObserver,
public SessionManager::Listener {
public:
enum State {
CONNECTING,
CONNECTED,
AUTHENTICATED,
FAILED,
CLOSED,
};
enum Error {
OK,
HOST_IS_OFFLINE,
SESSION_REJECTED,
INCOMPATIBLE_PROTOCOL,
NETWORK_FAILURE,
};
class HostEventCallback {
public:
virtual ~HostEventCallback() {}
// Called when state of the connection changes.
virtual void OnConnectionState(State state, Error error) = 0;
};
ConnectionToHost(base::MessageLoopProxy* message_loop,
pp::Instance* pp_instance,
bool allow_nat_traversal);
virtual ~ConnectionToHost();
virtual void Connect(scoped_refptr<XmppProxy> xmpp_proxy,
const std::string& your_jid,
const std::string& host_jid,
const std::string& host_public_key,
const std::string& access_code,
HostEventCallback* event_callback,
ClientStub* client_stub,
VideoStub* video_stub);
virtual void Disconnect(const base::Closure& shutdown_task);
virtual const SessionConfig& config();
virtual InputStub* input_stub();
virtual HostStub* host_stub();
// SignalStrategy::StatusObserver interface.
virtual void OnStateChange(
SignalStrategy::StatusObserver::State state) OVERRIDE;
virtual void OnJidChange(const std::string& full_jid) OVERRIDE;
// SessionManager::Listener interface.
virtual void OnSessionManagerInitialized() OVERRIDE;
virtual void OnIncomingSession(
Session* session,
SessionManager::IncomingSessionResponse* response) OVERRIDE;
// Called when the host accepts the client authentication.
void OnClientAuthenticated();
// Return the current state of ConnectionToHost.
State state() const;
private:
// Called on the jingle thread after we've successfully to XMPP server. Starts
// P2P connection to the host.
void InitSession();
// Callback for |session_|.
void OnSessionStateChange(Session::State state);
// Callback for VideoReader::Init().
void OnVideoChannelInitialized(bool successful);
void NotifyIfChannelsReady();
// Callback for |video_reader_|.
void OnVideoPacket(VideoPacket* packet);
void CloseOnError(Error error);
// Stops writing in the channels.
void CloseChannels();
void SetState(State state, Error error);
scoped_refptr<base::MessageLoopProxy> message_loop_;
pp::Instance* pp_instance_;
bool allow_nat_traversal_;
std::string host_jid_;
std::string host_public_key_;
std::string access_code_;
HostEventCallback* event_callback_;
// Stub for incoming messages.
ClientStub* client_stub_;
VideoStub* video_stub_;
scoped_ptr<SignalStrategy> signal_strategy_;
std::string local_jid_;
scoped_ptr<SessionManager> session_manager_;
scoped_ptr<Session> session_;
// Handlers for incoming messages.
scoped_ptr<VideoReader> video_reader_;
scoped_ptr<ClientMessageDispatcher> dispatcher_;
// Senders for outgoing messages.
scoped_ptr<InputSender> input_sender_;
scoped_ptr<HostControlSender> host_control_sender_;
// Internal state of the connection.
State state_;
Error error_;
// State of the channels.
bool control_connected_;
bool input_connected_;
bool video_connected_;
private:
DISALLOW_COPY_AND_ASSIGN(ConnectionToHost);
};
} // namespace protocol
} // namespace remoting
DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::protocol::ConnectionToHost);
#endif // REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_
|