Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: remoting/client/x11_client.cc

Issue 2745006: Implement a chromoting client using X11 (Closed)
Patch Set: removed all.gyp Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/client/simple_client.cc ('k') | remoting/client/x11_view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4 //
5 // This file implements a X11 chromoting client.
6
7 #include <iostream>
8
9 #include "base/at_exit.h"
10 #include "base/message_loop.h"
11 #include "base/stl_util-inl.h"
12 #include "remoting/client/host_connection.h"
13 #include "remoting/client/client_util.h"
14
15 // Include Xlib at the end because it clashes with ClientMessage defined in
16 // the protocol buffer.
17 // x11_view.h also includes Xlib.h so put it behind all other headers but
18 // before Xlib.h
19 #include "remoting/client/x11_view.h"
20 #include <X11/Xlib.h>
21
22 namespace remoting {
23
24 class X11Client : public base::RefCountedThreadSafe<X11Client>,
25 public HostConnection::EventHandler {
26 public:
27 X11Client(std::string host_jid, std::string username, std::string auth_token)
28 : display_(NULL),
29 window_(0),
30 width_(0),
31 height_(0),
32 host_jid_(host_jid),
33 username_(username),
34 auth_token_(auth_token) {
35 }
36
37 virtual ~X11Client() {
38 DCHECK(!display_);
39 DCHECK(!window_);
40 }
41
42 // Starts the remoting client and the message loop. Returns only after
43 // the message loop has terminated.
44 void Run() {
45 message_loop_.PostTask(FROM_HERE,
46 NewRunnableMethod(this, &X11Client::DoInitX11));
47 message_loop_.PostTask(FROM_HERE,
48 NewRunnableMethod(this, &X11Client::DoInitConnection));
49 message_loop_.Run();
50 }
51
52 ////////////////////////////////////////////////////////////////////////////
53 // HostConnection::EventHandler implementations.
54 virtual void HandleMessages(HostConnection* conn,
55 remoting::HostMessageList* messages) {
56 for (size_t i = 0; i < messages->size(); ++i) {
57 HostMessage* msg = (*messages)[i];
58 if (msg->has_init_client()) {
59 message_loop_.PostTask(
60 FROM_HERE, NewRunnableMethod(this, &X11Client::DoInitClient, msg));
61 } else if (msg->has_begin_update_stream()) {
62 message_loop_.PostTask(
63 FROM_HERE,
64 NewRunnableMethod(this, &X11Client::DoBeginUpdate, msg));
65 } else if (msg->has_update_stream_packet()) {
66 message_loop_.PostTask(
67 FROM_HERE,
68 NewRunnableMethod(this, &X11Client::DoHandleUpdate, msg));
69 } else if (msg->has_end_update_stream()) {
70 message_loop_.PostTask(
71 FROM_HERE, NewRunnableMethod(this, &X11Client::DoEndUpdate, msg));
72 } else {
73 NOTREACHED() << "Unknown message received";
74 }
75 }
76 // Assume we have processed all the messages.
77 messages->clear();
78 }
79
80 virtual void OnConnectionOpened(HostConnection* conn) {
81 std::cout << "Connection establised." << std::endl;
82 }
83
84 virtual void OnConnectionClosed(HostConnection* conn) {
85 std::cout << "Connection closed." << std::endl;
86 Exit();
87 }
88
89 virtual void OnConnectionFailed(HostConnection* conn) {
90 std::cout << "Conection failed." << std::endl;
91 Exit();
92 }
93
94 private:
95 void DoInitX11() {
96 display_ = XOpenDisplay(NULL);
97 if (!display_) {
98 std::cout << "Error - cannot open display" << std::endl;
99 Exit();
100 }
101
102 // Get properties of the screen.
103 int screen = DefaultScreen(display_);
104 int root_window = RootWindow(display_, screen);
105
106 // Creates the window.
107 window_ = XCreateSimpleWindow(display_, root_window, 1, 1, 640, 480, 0,
108 BlackPixel(display_, screen),
109 BlackPixel(display_, screen));
110 DCHECK(window_);
111 XStoreName(display_, window_, "X11 Remoting");
112
113 // Specifies what kind of messages we want to receive.
114 XSelectInput(display_, window_, ExposureMask | ButtonPressMask);
115 XMapWindow(display_, window_);
116 }
117
118 void DoInitConnection() {
119 // If the initialization of X11 has failed then return directly.
120 if (!display_)
121 return;
122
123 // Creates a HostConnection object and connection to the host.
124 LOG(INFO) << "Connecting...";
125 connection_.reset(new HostConnection(new ProtocolDecoder(), this));
126 connection_->Connect(username_, auth_token_, host_jid_);
127 }
128
129 void DoDestroyX11() {
130 if (display_ && window_) {
131 // Shutdown the window system.
132 XDestroyWindow(display_, window_);
133 XCloseDisplay(display_);
134 display_ = NULL;
135 window_ = 0;
136 }
137 }
138
139 void DoDisconnect() {
140 if (connection_.get())
141 connection_->Disconnect();
142 }
143
144 void Exit() {
145 // Disconnect the jingle channel and client.
146 message_loop_.PostTask(FROM_HERE,
147 NewRunnableMethod(this, &X11Client::DoDisconnect));
148
149 // Post a task to shutdown X11.
150 message_loop_.PostTask(FROM_HERE,
151 NewRunnableMethod(this, &X11Client::DoDestroyX11));
152
153 // Quit the current message loop.
154 message_loop_.PostTask(FROM_HERE, new MessageLoop::QuitTask());
155 }
156
157 // This method is executed on the main loop.
158 void DoInitClient(HostMessage* msg) {
159 DCHECK_EQ(&message_loop_, MessageLoop::current());
160 DCHECK(msg->has_init_client());
161 scoped_ptr<HostMessage> deleter(msg);
162
163 // Saves the dimension and resize the window.
164 width_ = msg->init_client().width();
165 height_ = msg->init_client().height();
166 LOG(INFO) << "Init client receievd: " << width_ << "x" << height_;
167 XResizeWindow(display_, window_, width_, height_);
168
169 // Now construct the X11View that renders the remote desktop.
170 view_ = new X11View(display_, window_, width_, height_);
171
172 // Schedule the event handler to process the event queue of X11.
173 ScheduleX11EventHandler();
174 }
175
176 // The following methods are executed on the same thread as libjingle.
177 void DoBeginUpdate(HostMessage* msg) {
178 DCHECK_EQ(&message_loop_, MessageLoop::current());
179 DCHECK(msg->has_begin_update_stream());
180
181 view_->HandleBeginUpdateStream(msg);
182 }
183
184 void DoHandleUpdate(HostMessage* msg) {
185 DCHECK_EQ(&message_loop_, MessageLoop::current());
186 DCHECK(msg->has_update_stream_packet());
187
188 view_->HandleUpdateStreamPacket(msg);
189 }
190
191 void DoEndUpdate(HostMessage* msg) {
192 DCHECK_EQ(&message_loop_, MessageLoop::current());
193 DCHECK(msg->has_end_update_stream());
194
195 view_->HandleEndUpdateStream(msg);
196 }
197
198 void DoProcessX11Events() {
199 DCHECK_EQ(&message_loop_, MessageLoop::current());
200 if (XPending(display_)) {
201 XEvent e;
202 XNextEvent(display_, &e);
203 if (e.type == Expose) {
204 // Tell the ChromotingView to paint again.
205 view_->Paint();
206 } else if (e.type == ButtonPress) {
207 // TODO(hclam): Implement.
208 NOTIMPLEMENTED();
209 } else {
210 // TODO(hclam): Implement.
211 NOTIMPLEMENTED();
212 }
213 }
214
215 // Schedule the next event handler.
216 ScheduleX11EventHandler();
217 }
218
219 void ScheduleX11EventHandler() {
220 // Schedule a delayed task to process X11 events in 10ms.
221 static const int kProcessEventsInterval = 10;
222 message_loop_.PostDelayedTask(
223 FROM_HERE,
224 NewRunnableMethod(this, &X11Client::DoProcessX11Events),
225 kProcessEventsInterval);
226 }
227
228 // Members used for display.
229 Display* display_;
230 Window window_;
231
232 // Dimension of the window. They are initialized when InitClient message is
233 // received.
234 int width_;
235 int height_;
236
237 std::string host_jid_;
238 std::string username_;
239 std::string auth_token_;
240 scoped_ptr<HostConnection> connection_;
241 scoped_refptr<ChromotingView> view_;
242
243 MessageLoop message_loop_;
244
245 DISALLOW_COPY_AND_ASSIGN(X11Client);
246 };
247
248 } // namespace remoting
249
250 int main() {
251 base::AtExitManager at_exit;
252 std::string host_jid, username, auth_token;
253
254 if (!remoting::GetLoginInfo(host_jid, username, auth_token)) {
255 std::cout << "Cannot obtain login info" << std::endl;
256 return 1;
257 }
258
259 scoped_refptr<remoting::X11Client> client =
260 new remoting::X11Client(host_jid, username, auth_token);
261 client->Run();
262 }
OLDNEW
« no previous file with comments | « remoting/client/simple_client.cc ('k') | remoting/client/x11_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698