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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
|
// 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.
#include "remoting/client/plugin/chromoting_instance.h"
#include <string>
#include <vector>
#include "base/bind.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/message_loop.h"
#include "base/stringprintf.h"
#include "base/synchronization/lock.h"
#include "base/synchronization/waitable_event.h"
#include "base/task.h"
#include "base/threading/thread.h"
#include "media/base/media.h"
#include "ppapi/cpp/completion_callback.h"
#include "ppapi/cpp/input_event.h"
#include "ppapi/cpp/rect.h"
// TODO(wez): Remove this when crbug.com/86353 is complete.
#include "ppapi/cpp/private/var_private.h"
#include "remoting/base/util.h"
#include "remoting/client/client_config.h"
#include "remoting/client/chromoting_client.h"
#include "remoting/client/plugin/chromoting_scriptable_object.h"
#include "remoting/client/plugin/pepper_input_handler.h"
#include "remoting/client/plugin/pepper_view.h"
#include "remoting/client/plugin/pepper_view_proxy.h"
#include "remoting/client/plugin/pepper_xmpp_proxy.h"
#include "remoting/client/rectangle_update_decoder.h"
#include "remoting/protocol/connection_to_host.h"
#include "remoting/protocol/host_stub.h"
namespace remoting {
// This flag blocks LOGs to the UI if we're already in the middle of logging
// to the UI. This prevents a potential infinite loop if we encounter an error
// while sending the log message to the UI.
static bool g_logging_to_plugin = false;
static bool g_has_logging_instance = false;
static ChromotingInstance* g_logging_instance = NULL;
static logging::LogMessageHandlerFunction g_logging_old_handler = NULL;
const char ChromotingInstance::kMimeType[] = "pepper-application/x-chromoting";
static base::LazyInstance<base::Lock,
base::LeakyLazyInstanceTraits<base::Lock> >
g_logging_lock = LAZY_INSTANCE_INITIALIZER;
ChromotingInstance::ChromotingInstance(PP_Instance pp_instance)
: pp::InstancePrivate(pp_instance),
initialized_(false),
plugin_message_loop_(
new PluginMessageLoopProxy(&plugin_thread_delegate_)),
context_(plugin_message_loop_),
scale_to_fit_(false),
thread_proxy_(new ScopedThreadProxy(plugin_message_loop_)) {
RequestInputEvents(PP_INPUTEVENT_CLASS_MOUSE | PP_INPUTEVENT_CLASS_WHEEL);
RequestFilteringInputEvents(PP_INPUTEVENT_CLASS_KEYBOARD);
// Resister this instance to handle debug log messsages.
RegisterLoggingInstance();
}
ChromotingInstance::~ChromotingInstance() {
DCHECK(plugin_message_loop_->BelongsToCurrentThread());
// Detach the log proxy so we don't log anything else to the UI.
// This needs to be done before the instance is unregistered for logging.
thread_proxy_->Detach();
// Unregister this instance so that debug log messages will no longer be sent
// to it. This will stop all logging in all Chromoting instances.
UnregisterLoggingInstance();
if (client_.get()) {
base::WaitableEvent done_event(true, false);
client_->Stop(base::Bind(&base::WaitableEvent::Signal,
base::Unretained(&done_event)));
done_event.Wait();
}
// Stopping the context shutdown all chromoting threads. This is a requirement
// before we can call Detach() on |view_proxy_|.
context_.Stop();
if (view_proxy_.get()) {
view_proxy_->Detach();
}
// Delete |thread_proxy_| before we detach |plugin_message_loop_|,
// otherwise ScopedThreadProxy may DCHECK when destroying.
thread_proxy_.reset();
plugin_message_loop_->Detach();
}
bool ChromotingInstance::Init(uint32_t argc,
const char* argn[],
const char* argv[]) {
CHECK(!initialized_);
initialized_ = true;
VLOG(1) << "Started ChromotingInstance::Init";
// Check to make sure the media library is initialized.
// http://crbug.com/91521.
if (!media::IsMediaLibraryInitialized()) {
LOG(ERROR) << "Media library not initialized.";
return false;
}
// Start all the threads.
context_.Start();
// Create the chromoting objects that don't depend on the network connection.
view_.reset(new PepperView(this, &context_));
view_proxy_ = new PepperViewProxy(this, view_.get(), plugin_message_loop_);
rectangle_decoder_ = new RectangleUpdateDecoder(
context_.decode_message_loop(), view_proxy_);
// Default to a medium grey.
view_->SetSolidFill(0xFFCDCDCD);
return true;
}
void ChromotingInstance::Connect(const ClientConfig& config) {
DCHECK(plugin_message_loop_->BelongsToCurrentThread());
host_connection_.reset(new protocol::ConnectionToHost(
context_.network_message_loop(), this, true));
input_handler_.reset(new PepperInputHandler(&context_,
host_connection_.get(),
view_proxy_));
client_.reset(new ChromotingClient(config, &context_, host_connection_.get(),
view_proxy_, rectangle_decoder_.get(),
input_handler_.get(), base::Closure()));
LOG(INFO) << "Connecting to " << config.host_jid
<< ". Local jid: " << config.local_jid << ".";
// Setup the XMPP Proxy.
ChromotingScriptableObject* scriptable_object = GetScriptableObject();
scoped_refptr<PepperXmppProxy> xmpp_proxy =
new PepperXmppProxy(scriptable_object->AsWeakPtr(),
plugin_message_loop_,
context_.network_message_loop());
scriptable_object->AttachXmppProxy(xmpp_proxy);
// Kick off the connection.
client_->Start(xmpp_proxy);
VLOG(1) << "Connection status: Initializing";
GetScriptableObject()->SetConnectionStatus(
ChromotingScriptableObject::STATUS_INITIALIZING,
ChromotingScriptableObject::ERROR_NONE);
}
void ChromotingInstance::Disconnect() {
DCHECK(plugin_message_loop_->BelongsToCurrentThread());
LOG(INFO) << "Disconnecting from host.";
if (client_.get()) {
// TODO(sergeyu): Should we disconnect asynchronously?
base::WaitableEvent done_event(true, false);
client_->Stop(base::Bind(&base::WaitableEvent::Signal,
base::Unretained(&done_event)));
done_event.Wait();
client_.reset();
}
input_handler_.reset();
host_connection_.reset();
GetScriptableObject()->SetConnectionStatus(
ChromotingScriptableObject::STATUS_CLOSED,
ChromotingScriptableObject::ERROR_NONE);
}
void ChromotingInstance::DidChangeView(const pp::Rect& position,
const pp::Rect& clip) {
DCHECK(plugin_message_loop_->BelongsToCurrentThread());
view_->SetPluginSize(SkISize::Make(position.width(), position.height()));
// TODO(wez): Pass the dimensions of the plugin to the RectangleDecoder
// and let it generate the necessary refresh events.
// If scale-to-fit is enabled then update the scaling ratios.
// We also force a full-frame refresh, in case the ratios changed.
if (scale_to_fit_) {
rectangle_decoder_->SetScaleRatios(view_->GetHorizontalScaleRatio(),
view_->GetVerticalScaleRatio());
rectangle_decoder_->RefreshFullFrame();
}
// Notify the RectangleDecoder of the new clip rect.
rectangle_decoder_->UpdateClipRect(
SkIRect::MakeXYWH(clip.x(), clip.y(), clip.width(), clip.height()));
}
bool ChromotingInstance::HandleInputEvent(const pp::InputEvent& event) {
DCHECK(plugin_message_loop_->BelongsToCurrentThread());
if (!input_handler_.get()) {
return false;
}
PepperInputHandler* pih
= static_cast<PepperInputHandler*>(input_handler_.get());
switch (event.GetType()) {
case PP_INPUTEVENT_TYPE_MOUSEDOWN: {
pih->HandleMouseButtonEvent(true, pp::MouseInputEvent(event));
return true;
}
case PP_INPUTEVENT_TYPE_MOUSEUP: {
pih->HandleMouseButtonEvent(false, pp::MouseInputEvent(event));
return true;
}
case PP_INPUTEVENT_TYPE_MOUSEMOVE:
case PP_INPUTEVENT_TYPE_MOUSEENTER:
case PP_INPUTEVENT_TYPE_MOUSELEAVE: {
pih->HandleMouseMoveEvent(pp::MouseInputEvent(event));
return true;
}
case PP_INPUTEVENT_TYPE_WHEEL: {
pih->HandleMouseWheelEvent(pp::WheelInputEvent(event));
return true;
}
case PP_INPUTEVENT_TYPE_CONTEXTMENU: {
// We need to return true here or else we'll get a local (plugin) context
// menu instead of the mouseup event for the right click.
return true;
}
case PP_INPUTEVENT_TYPE_KEYDOWN: {
pp::KeyboardInputEvent key = pp::KeyboardInputEvent(event);
VLOG(3) << "PP_INPUTEVENT_TYPE_KEYDOWN" << " key=" << key.GetKeyCode();
pih->HandleKeyEvent(true, key);
return true;
}
case PP_INPUTEVENT_TYPE_KEYUP: {
pp::KeyboardInputEvent key = pp::KeyboardInputEvent(event);
VLOG(3) << "PP_INPUTEVENT_TYPE_KEYUP" << " key=" << key.GetKeyCode();
pih->HandleKeyEvent(false, key);
return true;
}
case PP_INPUTEVENT_TYPE_CHAR: {
pih->HandleCharacterEvent(pp::KeyboardInputEvent(event));
return true;
}
default: {
LOG(INFO) << "Unhandled input event: " << event.GetType();
break;
}
}
return false;
}
ChromotingScriptableObject* ChromotingInstance::GetScriptableObject() {
pp::VarPrivate object = GetInstanceObject();
if (!object.is_undefined()) {
pp::deprecated::ScriptableObject* so = object.AsScriptableObject();
DCHECK(so != NULL);
return static_cast<ChromotingScriptableObject*>(so);
}
LOG(ERROR) << "Unable to get ScriptableObject for Chromoting plugin.";
return NULL;
}
void ChromotingInstance::SetScaleToFit(bool scale_to_fit) {
DCHECK(plugin_message_loop_->BelongsToCurrentThread());
if (scale_to_fit == scale_to_fit_)
return;
scale_to_fit_ = scale_to_fit;
if (scale_to_fit) {
rectangle_decoder_->SetScaleRatios(view_->GetHorizontalScaleRatio(),
view_->GetVerticalScaleRatio());
} else {
rectangle_decoder_->SetScaleRatios(1.0, 1.0);
}
// TODO(wez): The RectangleDecoder should generate refresh events
// as necessary in response to any scaling change.
rectangle_decoder_->RefreshFullFrame();
}
// static
void ChromotingInstance::RegisterLogMessageHandler() {
base::AutoLock lock(g_logging_lock.Get());
VLOG(1) << "Registering global log handler";
// Record previous handler so we can call it in a chain.
g_logging_old_handler = logging::GetLogMessageHandler();
// Set up log message handler.
// This is not thread-safe so we need it within our lock.
logging::SetLogMessageHandler(&LogToUI);
}
void ChromotingInstance::RegisterLoggingInstance() {
base::AutoLock lock(g_logging_lock.Get());
// Register this instance as the one that will handle all logging calls
// and display them to the user.
// If multiple plugins are run, then the last one registered will handle all
// logging for all instances.
g_logging_instance = this;
g_has_logging_instance = true;
}
void ChromotingInstance::UnregisterLoggingInstance() {
base::AutoLock lock(g_logging_lock.Get());
// Don't unregister unless we're the currently registered instance.
if (this != g_logging_instance)
return;
// Unregister this instance for logging.
g_has_logging_instance = false;
g_logging_instance = NULL;
VLOG(1) << "Unregistering global log handler";
}
// static
bool ChromotingInstance::LogToUI(int severity, const char* file, int line,
size_t message_start,
const std::string& str) {
// Note that we're reading |g_has_logging_instance| outside of a lock.
// This lockless read is done so that we don't needlessly slow down global
// logging with a lock for each log message.
//
// This lockless read is safe because:
//
// Misreading a false value (when it should be true) means that we'll simply
// skip processing a few log messages.
//
// Misreading a true value (when it should be false) means that we'll take
// the lock and check |g_logging_instance| unnecessarily. This is not
// problematic because we always set |g_logging_instance| inside a lock.
if (g_has_logging_instance) {
base::AutoLock lock(g_logging_lock.Get());
if (g_logging_instance) {
std::string message = remoting::GetTimestampString();
message += (str.c_str() + message_start);
// |thread_proxy_| is safe to use here because we detach it before
// tearing down the |g_logging_instance|.
g_logging_instance->thread_proxy_->PostTask(
FROM_HERE, base::Bind(&ChromotingInstance::ProcessLogToUI,
base::Unretained(g_logging_instance), message));
}
}
if (g_logging_old_handler)
return (g_logging_old_handler)(severity, file, line, message_start, str);
return false;
}
void ChromotingInstance::ProcessLogToUI(const std::string& message) {
if (!g_logging_to_plugin) {
ChromotingScriptableObject* cso = GetScriptableObject();
if (cso) {
g_logging_to_plugin = true;
cso->LogDebugInfo(message);
g_logging_to_plugin = false;
}
}
}
pp::Var ChromotingInstance::GetInstanceObject() {
if (instance_object_.is_undefined()) {
ChromotingScriptableObject* object =
new ChromotingScriptableObject(this, plugin_message_loop_);
object->Init();
// The pp::Var takes ownership of object here.
instance_object_ = pp::VarPrivate(this, object);
}
return instance_object_;
}
ChromotingStats* ChromotingInstance::GetStats() {
if (!client_.get())
return NULL;
return client_->GetStats();
}
void ChromotingInstance::ReleaseAllKeys() {
if (!input_handler_.get()) {
return;
}
input_handler_->ReleaseAllKeys();
}
} // namespace remoting
|