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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
|
// Copyright (c) 2012 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 "chromeos/dbus/ibus/ibus_panel_service.h"
#include <string>
#include "base/bind.h"
#include "base/callback.h"
#include "chromeos/dbus/ibus/ibus_constants.h"
#include "chromeos/dbus/ibus/ibus_input_context_client.h"
#include "chromeos/dbus/ibus/ibus_lookup_table.h"
#include "chromeos/dbus/ibus/ibus_property.h"
#include "chromeos/dbus/ibus/ibus_text.h"
#include "dbus/bus.h"
#include "dbus/exported_object.h"
#include "dbus/message.h"
#include "dbus/object_path.h"
#include "dbus/object_proxy.h"
namespace chromeos {
class IBusPanelServiceImpl : public IBusPanelService {
public:
explicit IBusPanelServiceImpl(dbus::Bus* bus,
IBusInputContextClient* input_context)
: bus_(bus),
candidate_window_handler_(NULL),
property_handler_(NULL),
weak_ptr_factory_(this) {
exported_object_ = bus->GetExportedObject(
dbus::ObjectPath(ibus::panel::kServicePath));
exported_object_->ExportMethod(
ibus::panel::kServiceInterface,
ibus::panel::kUpdateLookupTableMethod,
base::Bind(&IBusPanelServiceImpl::UpdateLookupTable,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&IBusPanelServiceImpl::OnMethodExported,
weak_ptr_factory_.GetWeakPtr()));
exported_object_->ExportMethod(
ibus::panel::kServiceInterface,
ibus::panel::kHideLookupTableMethod,
base::Bind(&IBusPanelServiceImpl::HideLookupTable,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&IBusPanelServiceImpl::OnMethodExported,
weak_ptr_factory_.GetWeakPtr()));
exported_object_->ExportMethod(
ibus::panel::kServiceInterface,
ibus::panel::kUpdateAuxiliaryTextMethod,
base::Bind(&IBusPanelServiceImpl::UpdateAuxiliaryText,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&IBusPanelServiceImpl::OnMethodExported,
weak_ptr_factory_.GetWeakPtr()));
exported_object_->ExportMethod(
ibus::panel::kServiceInterface,
ibus::panel::kHideAuxiliaryTextMethod,
base::Bind(&IBusPanelServiceImpl::HideAuxiliaryText,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&IBusPanelServiceImpl::OnMethodExported,
weak_ptr_factory_.GetWeakPtr()));
exported_object_->ExportMethod(
ibus::panel::kServiceInterface,
ibus::panel::kUpdatePreeditTextMethod,
base::Bind(&IBusPanelServiceImpl::UpdatePreeditText,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&IBusPanelServiceImpl::OnMethodExported,
weak_ptr_factory_.GetWeakPtr()));
exported_object_->ExportMethod(
ibus::panel::kServiceInterface,
ibus::panel::kHidePreeditTextMethod,
base::Bind(&IBusPanelServiceImpl::HidePreeditText,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&IBusPanelServiceImpl::OnMethodExported,
weak_ptr_factory_.GetWeakPtr()));
exported_object_->ExportMethod(
ibus::panel::kServiceInterface,
ibus::panel::kRegisterPropertiesMethod,
base::Bind(&IBusPanelServiceImpl::RegisterProperties,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&IBusPanelServiceImpl::OnMethodExported,
weak_ptr_factory_.GetWeakPtr()));
exported_object_->ExportMethod(
ibus::panel::kServiceInterface,
ibus::panel::kUpdatePropertyMethod,
base::Bind(&IBusPanelServiceImpl::UpdateProperty,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&IBusPanelServiceImpl::OnMethodExported,
weak_ptr_factory_.GetWeakPtr()));
exported_object_->ExportMethod(
ibus::panel::kServiceInterface,
ibus::panel::kFocusInMethod,
base::Bind(&IBusPanelServiceImpl::NoOperation,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&IBusPanelServiceImpl::OnMethodExported,
weak_ptr_factory_.GetWeakPtr()));
exported_object_->ExportMethod(
ibus::panel::kServiceInterface,
ibus::panel::kFocusOutMethod,
base::Bind(&IBusPanelServiceImpl::NoOperation,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&IBusPanelServiceImpl::OnMethodExported,
weak_ptr_factory_.GetWeakPtr()));
exported_object_->ExportMethod(
ibus::panel::kServiceInterface,
ibus::panel::kStateChangedMethod,
base::Bind(&IBusPanelServiceImpl::NoOperation,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&IBusPanelServiceImpl::OnMethodExported,
weak_ptr_factory_.GetWeakPtr()));
// Request well known name to ibus-daemon.
bus->RequestOwnership(
ibus::panel::kServiceName,
base::Bind(&IBusPanelServiceImpl::OnRequestOwnership,
weak_ptr_factory_.GetWeakPtr()));
input_context->SetSetCursorLocationHandler(
base::Bind(&IBusPanelServiceImpl::SetCursorLocation,
weak_ptr_factory_.GetWeakPtr()));
}
virtual ~IBusPanelServiceImpl() {
bus_->UnregisterExportedObject(
dbus::ObjectPath(ibus::panel::kServicePath));
}
// IBusPanelService override.
virtual void SetUpCandidateWindowHandler(
IBusPanelCandidateWindowHandlerInterface* handler) OVERRIDE {
DCHECK(handler);
candidate_window_handler_ = handler;
}
// IBusPanelService override.
virtual void SetUpPropertyHandler(
IBusPanelPropertyHandlerInterface* handler) OVERRIDE {
DCHECK(handler);
property_handler_ = handler;
}
// IBusPanelService override.
virtual void CandidateClicked(uint32 index,
ibus::IBusMouseButton button,
uint32 state) OVERRIDE {
dbus::Signal signal(ibus::panel::kServiceInterface,
ibus::panel::kCandidateClickedSignal);
dbus::MessageWriter writer(&signal);
writer.AppendUint32(index);
writer.AppendUint32(static_cast<uint32>(button));
writer.AppendUint32(state);
exported_object_->SendSignal(&signal);
}
// IBusPanelService override.
virtual void CursorUp() OVERRIDE {
dbus::Signal signal(ibus::panel::kServiceInterface,
ibus::panel::kCursorUpSignal);
exported_object_->SendSignal(&signal);
}
// IBusPanelService override.
virtual void CursorDown() OVERRIDE {
dbus::Signal signal(ibus::panel::kServiceInterface,
ibus::panel::kCursorDownSignal);
exported_object_->SendSignal(&signal);
}
// IBusPanelService override.
virtual void PageUp() OVERRIDE {
dbus::Signal signal(ibus::panel::kServiceInterface,
ibus::panel::kPageUpSignal);
exported_object_->SendSignal(&signal);
}
// IBusPanelService override.
virtual void PageDown() OVERRIDE {
dbus::Signal signal(ibus::panel::kServiceInterface,
ibus::panel::kPageDownSignal);
exported_object_->SendSignal(&signal);
}
private:
// Handles UpdateLookupTable method call from ibus-daemon.
void UpdateLookupTable(dbus::MethodCall* method_call,
dbus::ExportedObject::ResponseSender response_sender) {
if (!candidate_window_handler_)
return;
dbus::MessageReader reader(method_call);
IBusLookupTable table;
if (!PopIBusLookupTable(&reader, &table)) {
LOG(WARNING) << "UpdateLookupTable called with incorrect parameters: "
<< method_call->ToString();
return;
}
bool visible = false;
if (!reader.PopBool(&visible)) {
LOG(WARNING) << "UpdateLookupTable called with incorrect parameters: "
<< method_call->ToString();
return;
}
candidate_window_handler_->UpdateLookupTable(table, visible);
response_sender.Run(dbus::Response::FromMethodCall(method_call));
}
// Handles HideLookupTable method call from ibus-daemon.
void HideLookupTable(dbus::MethodCall* method_call,
dbus::ExportedObject::ResponseSender response_sender) {
if (!candidate_window_handler_)
return;
candidate_window_handler_->HideLookupTable();
response_sender.Run(dbus::Response::FromMethodCall(method_call));
}
// Handles UpdateAuxiliaryText method call from ibus-daemon.
void UpdateAuxiliaryText(
dbus::MethodCall* method_call,
dbus::ExportedObject::ResponseSender response_sender) {
if (!candidate_window_handler_)
return;
dbus::MessageReader reader(method_call);
std::string text;
if (!PopStringFromIBusText(&reader, &text)) {
LOG(WARNING) << "UpdateAuxiliaryText called with incorrect parameters: "
<< method_call->ToString();
return;
}
bool visible = false;
if (!reader.PopBool(&visible)) {
LOG(WARNING) << "UpdateAuxiliaryText called with incorrect parameters: "
<< method_call->ToString();
return;
}
candidate_window_handler_->UpdateAuxiliaryText(text, visible);
response_sender.Run(dbus::Response::FromMethodCall(method_call));
}
// Handles HideAuxiliaryText method call from ibus-daemon.
void HideAuxiliaryText(dbus::MethodCall* method_call,
dbus::ExportedObject::ResponseSender response_sender) {
if (!candidate_window_handler_)
return;
candidate_window_handler_->HideAuxiliaryText();
response_sender.Run(dbus::Response::FromMethodCall(method_call));
}
// Handles UpdatePreeditText method call from ibus-daemon.
void UpdatePreeditText(dbus::MethodCall* method_call,
dbus::ExportedObject::ResponseSender response_sender) {
if (!candidate_window_handler_)
return;
dbus::MessageReader reader(method_call);
std::string text;
if (!PopStringFromIBusText(&reader, &text)) {
LOG(WARNING) << "UpdatePreeditText called with incorrect parameters: "
<< method_call->ToString();
return;
}
uint32 cursor_pos = 0;
if (!reader.PopUint32(&cursor_pos)) {
LOG(WARNING) << "UpdatePreeditText called with incorrect parameters: "
<< method_call->ToString();
return;
}
bool visible = false;
if (!reader.PopBool(&visible)) {
LOG(WARNING) << "UpdatePreeditText called with incorrect parameters: "
<< method_call->ToString();
return;
}
candidate_window_handler_->UpdatePreeditText(text, cursor_pos, visible);
response_sender.Run(dbus::Response::FromMethodCall(method_call));
}
// Handles HidePreeditText method call from ibus-daemon.
void HidePreeditText(dbus::MethodCall* method_call,
dbus::ExportedObject::ResponseSender response_sender) {
if (!candidate_window_handler_)
return;
candidate_window_handler_->HidePreeditText();
response_sender.Run(dbus::Response::FromMethodCall(method_call));
}
// Handles RegisterProperties method call from ibus-daemon.
void RegisterProperties(
dbus::MethodCall* method_call,
dbus::ExportedObject::ResponseSender response_sender) {
if (!property_handler_)
return;
dbus::MessageReader reader(method_call);
IBusPropertyList properties;
if (!PopIBusPropertyList(&reader, &properties)) {
DLOG(WARNING) << "RegisterProperties called with incorrect parameters:"
<< method_call->ToString();
return;
}
property_handler_->RegisterProperties(properties);
response_sender.Run(dbus::Response::FromMethodCall(method_call));
}
// Handles UpdateProperty method call from ibus-daemon.
void UpdateProperty(dbus::MethodCall* method_call,
dbus::ExportedObject::ResponseSender response_sender) {
if (!property_handler_)
return;
dbus::MessageReader reader(method_call);
IBusProperty property;
if (!PopIBusProperty(&reader, &property)) {
DLOG(WARNING) << "RegisterProperties called with incorrect parameters:"
<< method_call->ToString();
return;
}
property_handler_->UpdateProperty(property);
response_sender.Run(dbus::Response::FromMethodCall(method_call));
}
void SetCursorLocation(const ibus::Rect& cursor_location,
const ibus::Rect& composition_head) {
if (candidate_window_handler_)
candidate_window_handler_->SetCursorLocation(cursor_location,
composition_head);
}
// Handles FocusIn, FocusOut, StateChanged method calls from IBus, and ignores
// them.
void NoOperation(dbus::MethodCall* method_call,
dbus::ExportedObject::ResponseSender response_sender) {
if (!property_handler_)
return;
response_sender.Run(dbus::Response::FromMethodCall(method_call));
}
// Called when the method call is exported.
void OnMethodExported(const std::string& interface_name,
const std::string& method_name,
bool success) {
LOG_IF(WARNING, !success) << "Failed to export "
<< interface_name << "." << method_name;
}
// Called when the well knwon name is acquired.
void OnRequestOwnership(const std::string& name, bool obtained) {
LOG_IF(ERROR, !obtained) << "Failed to acquire well known name:"
<< name;
}
// D-Bus bus object used for unregistering exported methods in dtor.
dbus::Bus* bus_;
// All incoming method calls are passed on to the |candidate_window_handler_|
// or |property_handler|. This class does not take ownership of following
// handlers.
IBusPanelCandidateWindowHandlerInterface* candidate_window_handler_;
IBusPanelPropertyHandlerInterface* property_handler_;
scoped_refptr<dbus::ExportedObject> exported_object_;
base::WeakPtrFactory<IBusPanelServiceImpl> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(IBusPanelServiceImpl);
};
// An implementation of IBusPanelService without ibus-daemon interaction.
// Currently this class is used only on linux desktop.
// TODO(nona): Use this on ChromeOS device once crbug.com/171351 is fixed.
class IBusPanelServiceDaemonlessImpl : public IBusPanelService {
public:
IBusPanelServiceDaemonlessImpl() {}
virtual ~IBusPanelServiceDaemonlessImpl() {}
// IBusPanelService override.
virtual void SetUpCandidateWindowHandler(
IBusPanelCandidateWindowHandlerInterface* handler) OVERRIDE {
// TODO(nona): Implement this.
}
// IBusPanelService override.
virtual void SetUpPropertyHandler(
IBusPanelPropertyHandlerInterface* handler) OVERRIDE {
// TODO(nona): Implement this.
}
// IBusPanelService override.
virtual void CandidateClicked(uint32 index,
ibus::IBusMouseButton button,
uint32 state) OVERRIDE {
// TODO(nona): Implement this.
}
// IBusPanelService override.
virtual void CursorUp() OVERRIDE {
// Cursor Up is not supported on Chrome OS.
}
// IBusPanelService override.
virtual void CursorDown() OVERRIDE {
// Cursor Down is not supported on Chrome OS.
}
// IBusPanelService override.
virtual void PageUp() OVERRIDE {
// Page Up is not supported on Chrome OS.
}
// IBusPanelService override.
virtual void PageDown() OVERRIDE {
// Page Down is not supported on Chrome OS.
}
private:
DISALLOW_COPY_AND_ASSIGN(IBusPanelServiceDaemonlessImpl);
};
IBusPanelService::IBusPanelService() {
}
IBusPanelService::~IBusPanelService() {
}
// static
IBusPanelService* IBusPanelService::Create(
DBusClientImplementationType type,
dbus::Bus* bus,
IBusInputContextClient* input_context) {
if (type == REAL_DBUS_CLIENT_IMPLEMENTATION) {
return new IBusPanelServiceImpl(bus, input_context);
} else {
return new IBusPanelServiceDaemonlessImpl();
}
}
} // namespace chromeos
|