OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "remoting/host/chromoting_host.h" | 5 #include "remoting/host/chromoting_host.h" |
6 | 6 |
7 #include "base/stl_util-inl.h" | 7 #include "base/stl_util-inl.h" |
8 #include "base/waitable_event.h" | 8 #include "base/waitable_event.h" |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 #include "remoting/base/constants.h" | 10 #include "remoting/base/constants.h" |
11 #include "remoting/base/protocol_decoder.h" | 11 #include "remoting/base/protocol_decoder.h" |
| 12 #include "remoting/host/host_config.h" |
12 #include "remoting/host/session_manager.h" | 13 #include "remoting/host/session_manager.h" |
13 #include "remoting/jingle_glue/jingle_channel.h" | 14 #include "remoting/jingle_glue/jingle_channel.h" |
14 | 15 |
15 namespace remoting { | 16 namespace remoting { |
16 | 17 |
17 ChromotingHost::ChromotingHost(const std::string& username, | 18 ChromotingHost::ChromotingHost(HostConfig* config, |
18 const std::string& auth_token, | 19 Capturer* capturer, |
19 Capturer* capturer, | 20 Encoder* encoder, |
20 Encoder* encoder, | 21 EventExecutor* executor, |
21 EventExecutor* executor, | 22 base::WaitableEvent* host_done) |
22 base::WaitableEvent* host_done) | |
23 : main_thread_("MainThread"), | 23 : main_thread_("MainThread"), |
24 capture_thread_("CaptureThread"), | 24 capture_thread_("CaptureThread"), |
25 encode_thread_("EncodeThread"), | 25 encode_thread_("EncodeThread"), |
26 username_(username), | 26 config_(config), |
27 auth_token_(auth_token), | |
28 capturer_(capturer), | 27 capturer_(capturer), |
29 encoder_(encoder), | 28 encoder_(encoder), |
30 executor_(executor), | 29 executor_(executor), |
31 host_done_(host_done) { | 30 host_done_(host_done) { |
32 // TODO(ajwong): The thread injection and object ownership is odd here. | 31 // TODO(ajwong): The thread injection and object ownership is odd here. |
33 // Fix so we do not start this thread in the constructor, so we only | 32 // Fix so we do not start this thread in the constructor, so we only |
34 // take in a session manager, don't let session manager own the | 33 // take in a session manager, don't let session manager own the |
35 // capturer/encoder, and then associate the capturer and encoder threads with | 34 // capturer/encoder, and then associate the capturer and encoder threads with |
36 // the capturer and encoder objects directly. This will require a | 35 // the capturer and encoder objects directly. This will require a |
37 // non-refcounted NewRunnableMethod. | 36 // non-refcounted NewRunnableMethod. |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 } | 75 } |
77 | 76 |
78 // This method talks to the cloud to register the host process. If | 77 // This method talks to the cloud to register the host process. If |
79 // successful we will start listening to network requests. | 78 // successful we will start listening to network requests. |
80 void ChromotingHost::RegisterHost() { | 79 void ChromotingHost::RegisterHost() { |
81 DCHECK_EQ(message_loop(), MessageLoop::current()); | 80 DCHECK_EQ(message_loop(), MessageLoop::current()); |
82 DCHECK(!jingle_client_); | 81 DCHECK(!jingle_client_); |
83 | 82 |
84 // Connect to the talk network with a JingleClient. | 83 // Connect to the talk network with a JingleClient. |
85 jingle_client_ = new JingleClient(&network_thread_); | 84 jingle_client_ = new JingleClient(&network_thread_); |
86 jingle_client_->Init(username_, auth_token_, | 85 jingle_client_->Init(config_->xmpp_login(), config_->xmpp_auth_token(), |
87 kChromotingTokenServiceName, this); | 86 kChromotingTokenServiceName, this); |
88 } | 87 } |
89 | 88 |
90 // This method is called if a client is connected to this object. | 89 // This method is called if a client is connected to this object. |
91 void ChromotingHost::OnClientConnected(ClientConnection* client) { | 90 void ChromotingHost::OnClientConnected(ClientConnection* client) { |
92 DCHECK_EQ(message_loop(), MessageLoop::current()); | 91 DCHECK_EQ(message_loop(), MessageLoop::current()); |
93 | 92 |
94 // Create a new RecordSession if there was none. | 93 // Create a new RecordSession if there was none. |
95 if (!session_.get()) { | 94 if (!session_.get()) { |
96 // The first we need to make sure capture and encode thread are | 95 // The first we need to make sure capture and encode thread are |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 JingleClient::State state) { | 178 JingleClient::State state) { |
180 DCHECK_EQ(jingle_client_.get(), jingle_client); | 179 DCHECK_EQ(jingle_client_.get(), jingle_client); |
181 | 180 |
182 if (state == JingleClient::CONNECTED) { | 181 if (state == JingleClient::CONNECTED) { |
183 LOG(INFO) << "Host connected as " | 182 LOG(INFO) << "Host connected as " |
184 << jingle_client->GetFullJid() << "." << std::endl; | 183 << jingle_client->GetFullJid() << "." << std::endl; |
185 | 184 |
186 // Start heartbeating after we connected | 185 // Start heartbeating after we connected |
187 heartbeat_sender_ = new HeartbeatSender(); | 186 heartbeat_sender_ = new HeartbeatSender(); |
188 // TODO(sergeyu): where do we get host id? | 187 // TODO(sergeyu): where do we get host id? |
189 heartbeat_sender_->Start(jingle_client_.get(), "HostID"); | 188 heartbeat_sender_->Start(config_, jingle_client_.get()); |
190 } else if (state == JingleClient::CLOSED) { | 189 } else if (state == JingleClient::CLOSED) { |
191 LOG(INFO) << "Host disconnected from talk network." << std::endl; | 190 LOG(INFO) << "Host disconnected from talk network." << std::endl; |
192 heartbeat_sender_ = NULL; | 191 heartbeat_sender_ = NULL; |
193 | 192 |
194 // Quit the message loop if disconected. | 193 // Quit the message loop if disconected. |
195 message_loop()->PostTask(FROM_HERE, new MessageLoop::QuitTask()); | 194 message_loop()->PostTask(FROM_HERE, new MessageLoop::QuitTask()); |
196 host_done_->Signal(); | 195 host_done_->Signal(); |
197 } | 196 } |
198 } | 197 } |
199 | 198 |
(...skipping 23 matching lines...) Expand all Loading... |
223 // the client directly. Note that we give the ownership of the channel | 222 // the client directly. Note that we give the ownership of the channel |
224 // to the client. | 223 // to the client. |
225 client_->set_jingle_channel(channel); | 224 client_->set_jingle_channel(channel); |
226 } | 225 } |
227 | 226 |
228 MessageLoop* ChromotingHost::message_loop() { | 227 MessageLoop* ChromotingHost::message_loop() { |
229 return main_thread_.message_loop(); | 228 return main_thread_.message_loop(); |
230 } | 229 } |
231 | 230 |
232 } // namespace remoting | 231 } // namespace remoting |
OLD | NEW |