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 // This is an application of a minimal host process in a Chromoting | 5 // This is an application of a minimal host process in a Chromoting |
6 // system. It serves the purpose of gluing different pieces together | 6 // system. It serves the purpose of gluing different pieces together |
7 // to make a functional host process for testing. | 7 // to make a functional host process for testing. |
8 // | 8 // |
9 // It peforms the following functionality: | 9 // It peforms the following functionality: |
10 // 1. Connect to the GTalk network and register the machine as a host. | 10 // 1. Connect to the GTalk network and register the machine as a host. |
11 // 2. Accepts connection through libjingle. | 11 // 2. Accepts connection through libjingle. |
12 // 3. Receive mouse / keyboard events through libjingle. | 12 // 3. Receive mouse / keyboard events through libjingle. |
13 // 4. Sends screen capture through libjingle. | 13 // 4. Sends screen capture through libjingle. |
14 | 14 |
15 #include <iostream> | 15 #include <iostream> |
16 #include <string> | 16 #include <string> |
17 | 17 |
18 #include "build/build_config.h" | 18 #include "build/build_config.h" |
19 | 19 |
20 #if defined(OS_POSIX) | 20 #if defined(OS_POSIX) |
21 #include <termios.h> | 21 #include <termios.h> |
22 #endif // defined (OS_POSIX) | 22 #endif // defined (OS_POSIX) |
23 | 23 |
24 #include "base/at_exit.h" | 24 #include "base/at_exit.h" |
25 #include "base/waitable_event.h" | 25 #include "base/waitable_event.h" |
26 #include "remoting/host/capturer_fake.h" | 26 #include "remoting/host/capturer_fake.h" |
27 #include "remoting/host/encoder_verbatim.h" | 27 #include "remoting/host/encoder_verbatim.h" |
| 28 #include "remoting/host/host_config.h" |
28 #include "remoting/host/chromoting_host.h" | 29 #include "remoting/host/chromoting_host.h" |
29 | 30 |
30 #if defined(OS_WIN) | 31 #if defined(OS_WIN) |
31 #include "remoting/host/capturer_gdi.h" | 32 #include "remoting/host/capturer_gdi.h" |
32 #include "remoting/host/event_executor_win.h" | 33 #include "remoting/host/event_executor_win.h" |
33 #elif defined(OS_LINUX) | 34 #elif defined(OS_LINUX) |
34 #include "remoting/host/capturer_linux.h" | 35 #include "remoting/host/capturer_linux.h" |
35 #include "remoting/host/event_executor_linux.h" | 36 #include "remoting/host/event_executor_linux.h" |
36 #elif defined(OS_MACOSX) | 37 #elif defined(OS_MACOSX) |
37 #include "remoting/host/capturer_mac.h" | 38 #include "remoting/host/capturer_mac.h" |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 capturer.reset(new remoting::CapturerMac()); | 96 capturer.reset(new remoting::CapturerMac()); |
96 executor.reset(new remoting::EventExecutorMac()); | 97 executor.reset(new remoting::EventExecutorMac()); |
97 #endif | 98 #endif |
98 encoder.reset(new remoting::EncoderVerbatim()); | 99 encoder.reset(new remoting::EncoderVerbatim()); |
99 | 100 |
100 if (fake) { | 101 if (fake) { |
101 // Inject a fake capturer. | 102 // Inject a fake capturer. |
102 capturer.reset(new remoting::CapturerFake()); | 103 capturer.reset(new remoting::CapturerFake()); |
103 } | 104 } |
104 | 105 |
| 106 // TODO(sergeyu): Implement HostConfigStorage and use it here to load |
| 107 // settings. |
| 108 scoped_refptr<remoting::HostConfig> config(new remoting::HostConfig()); |
| 109 config->set_xmpp_login(username); |
| 110 config->set_xmpp_auth_token(auth_token); |
| 111 config->set_host_id("foo"); |
| 112 |
105 // Construct a chromoting host with username and auth_token. | 113 // Construct a chromoting host with username and auth_token. |
106 // TODO(hclam): Allow the host to load saved credentials. | |
107 base::WaitableEvent host_done(false, false); | 114 base::WaitableEvent host_done(false, false); |
108 scoped_refptr<remoting::ChromotingHost> host | 115 scoped_refptr<remoting::ChromotingHost> host = |
109 = new remoting::ChromotingHost(username, auth_token, | 116 new remoting::ChromotingHost(config, |
110 capturer.release(), | 117 capturer.release(), |
111 encoder.release(), | 118 encoder.release(), |
112 executor.release(), | 119 executor.release(), |
113 &host_done); | 120 &host_done); |
114 host->Run(); | 121 host->Run(); |
115 host_done.Wait(); | 122 host_done.Wait(); |
116 return 0; | 123 return 0; |
117 } | 124 } |
OLD | NEW |