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
|
// Copyright (c) 2010 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.
// JingleConnectionToHost implements the ConnectionToHost interface using
// libjingle as the transport protocol.
//
// Much of this class focuses on translating JingleClient and
// ChromotingConnection callbacks into ConnectionToHost::HostEventCallback
// messages.
//
// The public API of this class is designed to be asynchronous, and thread
// safe for invocation from other threads.
//
// Internally though, all work delegeated to the |network_thread| given
// during construction. Any event handlers running on the |network_thread|
// should not block.
#ifndef REMOTING_PROTOCOL_JINGLE_CONNECTION_TO_HOST_H_
#define REMOTING_PROTOCOL_JINGLE_CONNECTION_TO_HOST_H_
#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
#include "base/task.h"
#include "remoting/jingle_glue/jingle_client.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"
#include "remoting/protocol/stream_writer.h"
class MessageLoop;
namespace remoting {
class JingleThread;
class VideoPacket;
namespace protocol {
class VideoReader;
class VideoStub;
class JingleConnectionToHost : public ConnectionToHost,
public JingleClient::Callback {
public:
// TODO(sergeyu): Constructor shouldn't need thread here.
explicit JingleConnectionToHost(JingleThread* thread);
virtual ~JingleConnectionToHost();
virtual void Connect(const std::string& username,
const std::string& auth_token,
const std::string& host_jid,
HostEventCallback* event_callback,
ClientStub* client_stub,
VideoStub* video_stub);
virtual void Disconnect();
virtual const SessionConfig* config();
// JingleClient::Callback interface.
virtual void OnStateChange(JingleClient* client, JingleClient::State state);
// Callback for chromotocol SessionManager.
void OnNewSession(
protocol::Session* connection,
protocol::SessionManager::IncomingSessionResponse* response);
// Callback for chromotocol Session.
void OnSessionStateChange(protocol::Session::State state);
private:
// The message loop for the jingle thread this object works on.
MessageLoop* message_loop();
// Called on the jingle thread after we've successfully to XMPP server. Starts
// P2P connection to the host.
void InitSession();
// Callback for |control_reader_|.
void OnControlMessage(ControlMessage* msg);
// Callback for |video_reader_|.
void OnVideoPacket(VideoPacket* packet);
// Used by Disconnect() to disconnect chromoting connection, stop chromoting
// server, and then disconnect XMPP connection.
void OnDisconnected();
void OnServerClosed();
JingleThread* thread_;
scoped_refptr<JingleClient> jingle_client_;
scoped_refptr<protocol::SessionManager> session_manager_;
scoped_refptr<protocol::Session> session_;
MessageReader control_reader_;
scoped_ptr<VideoReader> video_reader_;
HostEventCallback* event_callback_;
VideoStub* video_stub_;
std::string host_jid_;
DISALLOW_COPY_AND_ASSIGN(JingleConnectionToHost);
};
} // namespace protocol
} // namespace remoting
DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::protocol::JingleConnectionToHost);
#endif // REMOTING_PROTOCOL_JINGLE_CONNECTION_TO_HOST_H_
|