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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
|
// 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 "chrome/browser/extensions/extension_input_ime_api.h"
#include "base/json/json_writer.h"
#include "base/string_number_conversions.h"
#include "base/values.h"
#include "chrome/browser/chromeos/input_method/input_method_engine.h"
#include "chrome/browser/extensions/extension_event_router.h"
#include "chrome/browser/extensions/extension_input_module_constants.h"
#include "chrome/browser/profiles/profile.h"
namespace keys = extension_input_module_constants;
namespace events {
const char kOnActivate[] = "experimental.input.onActivate";
const char kOnDeactivated[] = "experimental.input.onDeactivated";
const char kOnFocus[] = "experimental.input.onFocus";
const char kOnBlur[] = "experimental.input.onBlur";
const char kOnInputContextUpdate[] = "experimental.input.onInputContextUpdate";
const char kOnKeyEvent[] = "experimental.input.onKeyEvent";
const char kOnCandidateClicked[] = "experimental.input.onCandidateClicked";
const char kOnMenuItemActivated[] = "experimental.input.onMenuItemActivated";
} // namespace events
namespace chromeos {
class ImeObserver : public chromeos::InputMethodEngine::Observer {
public:
ImeObserver(Profile* profile, const std::string& extension_id,
const std::string& engine_id) :
profile_(profile),
extension_id_(extension_id),
engine_id_(engine_id) {
}
virtual ~ImeObserver() {
}
virtual void OnActivate(const std::string& engine_id) {
if (profile_ == NULL || extension_id_.empty())
return;
ListValue args;
args.Append(Value::CreateStringValue(engine_id));
std::string json_args;
base::JSONWriter::Write(&args, false, &json_args);
profile_->GetExtensionEventRouter()->DispatchEventToExtension(
extension_id_, events::kOnActivate, json_args, profile_, GURL());
}
virtual void OnDeactivated(const std::string& engine_id) {
if (profile_ == NULL || extension_id_.empty())
return;
ListValue args;
args.Append(Value::CreateStringValue(engine_id));
std::string json_args;
base::JSONWriter::Write(&args, false, &json_args);
profile_->GetExtensionEventRouter()->DispatchEventToExtension(
extension_id_, events::kOnDeactivated, json_args, profile_, GURL());
}
virtual void OnFocus(const InputMethodEngine::InputContext& context) {
if (profile_ == NULL || extension_id_.empty())
return;
DictionaryValue* dict = new DictionaryValue();
dict->SetInteger("contextID", context.id);
dict->SetString("type", context.type);
ListValue args;
args.Append(dict);
std::string json_args;
base::JSONWriter::Write(&args, false, &json_args);
profile_->GetExtensionEventRouter()->DispatchEventToExtension(
extension_id_, events::kOnFocus, json_args, profile_, GURL());
}
virtual void OnBlur(int context_id) {
if (profile_ == NULL || extension_id_.empty())
return;
ListValue args;
args.Append(Value::CreateIntegerValue(context_id));
std::string json_args;
base::JSONWriter::Write(&args, false, &json_args);
profile_->GetExtensionEventRouter()->DispatchEventToExtension(
extension_id_, events::kOnBlur, json_args, profile_, GURL());
}
virtual void OnInputContextUpdate(
const InputMethodEngine::InputContext& context) {
if (profile_ == NULL || extension_id_.empty())
return;
DictionaryValue* dict = new DictionaryValue();
dict->SetInteger("contextID", context.id);
dict->SetString("type", context.type);
ListValue args;
args.Append(dict);
std::string json_args;
base::JSONWriter::Write(&args, false, &json_args);
profile_->GetExtensionEventRouter()->DispatchEventToExtension(
extension_id_, events::kOnInputContextUpdate, json_args, profile_,
GURL());
}
virtual void OnKeyEvent(const std::string& engine_id,
const InputMethodEngine::KeyboardEvent& event,
chromeos::input_method::KeyEventHandle* key_data) {
if (profile_ == NULL || extension_id_.empty())
return;
std::string request_id =
ExtensionInputImeEventRouter::GetInstance()->AddRequest(engine_id,
key_data);
DictionaryValue* dict = new DictionaryValue();
dict->SetString("type", event.type);
dict->SetString("requestId", request_id);
dict->SetString("key", event.key);
dict->SetString("keyCode", event.key_code);
dict->SetBoolean("altKey", event.alt_key);
dict->SetBoolean("ctrlKey", event.ctrl_key);
dict->SetBoolean("shiftKey", event.shift_key);
ListValue args;
args.Append(Value::CreateStringValue(engine_id));
args.Append(dict);
std::string json_args;
base::JSONWriter::Write(&args, false, &json_args);
profile_->GetExtensionEventRouter()->DispatchEventToExtension(
extension_id_, events::kOnKeyEvent, json_args, profile_, GURL());
}
virtual void OnCandidateClicked(const std::string& engine_id,
int candidate_id,
int button) {
if (profile_ == NULL || extension_id_.empty())
return;
ListValue args;
args.Append(Value::CreateStringValue(engine_id));
args.Append(Value::CreateIntegerValue(candidate_id));
switch (button) {
case chromeos::InputMethodEngine::MOUSE_BUTTON_MIDDLE:
args.Append(Value::CreateStringValue("middle"));
break;
case chromeos::InputMethodEngine::MOUSE_BUTTON_RIGHT:
args.Append(Value::CreateStringValue("right"));
break;
case chromeos::InputMethodEngine::MOUSE_BUTTON_LEFT:
// Default to left.
default:
args.Append(Value::CreateStringValue("left"));
break;
}
std::string json_args;
base::JSONWriter::Write(&args, false, &json_args);
profile_->GetExtensionEventRouter()->DispatchEventToExtension(
extension_id_, events::kOnCandidateClicked, json_args, profile_,
GURL());
}
virtual void OnMenuItemActivated(const std::string& engine_id,
const std::string& menu_id) {
if (profile_ == NULL || extension_id_.empty())
return;
ListValue args;
args.Append(Value::CreateStringValue(engine_id));
args.Append(Value::CreateStringValue(menu_id));
std::string json_args;
base::JSONWriter::Write(&args, false, &json_args);
profile_->GetExtensionEventRouter()->DispatchEventToExtension(
extension_id_, events::kOnMenuItemActivated, json_args, profile_,
GURL());
}
private:
Profile* profile_;
std::string extension_id_;
std::string engine_id_;
DISALLOW_COPY_AND_ASSIGN(ImeObserver);
};
} // namespace chromeos
ExtensionInputImeEventRouter*
ExtensionInputImeEventRouter::GetInstance() {
return Singleton<ExtensionInputImeEventRouter>::get();
}
ExtensionInputImeEventRouter::ExtensionInputImeEventRouter()
: next_request_id_(1) {
}
ExtensionInputImeEventRouter::~ExtensionInputImeEventRouter() {
}
void ExtensionInputImeEventRouter::Init() {
}
#if defined(OS_CHROMEOS)
bool ExtensionInputImeEventRouter::RegisterIme(
Profile* profile,
const std::string& extension_id,
const Extension::InputComponentInfo& component) {
VLOG(1) << "RegisterIme: " << extension_id << " id: " << component.id;
std::map<std::string, chromeos::InputMethodEngine*>& engine_map =
engines_[extension_id];
std::map<std::string, chromeos::InputMethodEngine*>::iterator engine_ix =
engine_map.find(component.id);
if (engine_ix != engine_map.end()) {
return false;
}
std::string error;
chromeos::ImeObserver* observer = new chromeos::ImeObserver(profile,
extension_id,
component.id);
chromeos::InputMethodEngine::KeyboardEvent shortcut_key;
shortcut_key.key = component.shortcut_keycode;
shortcut_key.key_code = component.shortcut_keycode;
shortcut_key.alt_key = component.shortcut_alt;
shortcut_key.ctrl_key = component.shortcut_ctrl;
shortcut_key.shift_key = component.shortcut_shift;
std::vector<std::string> layouts;
layouts.assign(component.layouts.begin(), component.layouts.end());
chromeos::InputMethodEngine* engine =
chromeos::InputMethodEngine::CreateEngine(
observer, component.name.c_str(), extension_id.c_str(),
component.id.c_str(), component.description.c_str(),
component.language.c_str(), layouts,
shortcut_key, &error);
if (!engine) {
delete observer;
LOG(ERROR) << "RegisterIme: " << error;
return false;
}
engine_map[component.id] = engine;
std::map<std::string, chromeos::ImeObserver*>& observer_list =
observers_[extension_id];
observer_list[component.id] = observer;
return true;
}
#endif
chromeos::InputMethodEngine* ExtensionInputImeEventRouter::GetEngine(
const std::string& extension_id, const std::string& engine_id) {
std::map<std::string,
std::map<std::string, chromeos::InputMethodEngine*> >::const_iterator
engine_list = engines_.find(extension_id);
if (engine_list != engines_.end()) {
std::map<std::string, chromeos::InputMethodEngine*>::const_iterator
engine_ix = engine_list->second.find(engine_id);
if (engine_ix != engine_list->second.end()) {
return engine_ix->second;
}
}
return NULL;
}
chromeos::InputMethodEngine* ExtensionInputImeEventRouter::GetActiveEngine(
const std::string& extension_id) {
std::map<std::string,
std::map<std::string, chromeos::InputMethodEngine*> >::const_iterator
engine_list = engines_.find(extension_id);
if (engine_list != engines_.end()) {
std::map<std::string, chromeos::InputMethodEngine*>::const_iterator
engine_ix;
for (engine_ix = engine_list->second.begin();
engine_ix != engine_list->second.end();
++engine_ix) {
if (engine_ix->second->IsActive()) {
return engine_ix->second;
}
}
}
return NULL;
}
void ExtensionInputImeEventRouter::OnEventHandled(
const std::string& extension_id,
const std::string& request_id,
bool handled) {
RequestMap::iterator request = request_map_.find(request_id);
if (request == request_map_.end()) {
LOG(ERROR) << "Request ID not found: " << request_id;
return;
}
std::string engine_id = request->second.first;
chromeos::input_method::KeyEventHandle* key_data = request->second.second;
request_map_.erase(request);
chromeos::InputMethodEngine* engine = GetEngine(extension_id, engine_id);
if (!engine) {
LOG(ERROR) << "Engine does not exist: " << engine_id;
return;
}
engine->KeyEventDone(key_data, handled);
}
std::string ExtensionInputImeEventRouter::AddRequest(
const std::string& engine_id,
chromeos::input_method::KeyEventHandle* key_data) {
std::string request_id = base::IntToString(next_request_id_);
++next_request_id_;
request_map_[request_id] = std::make_pair(engine_id, key_data);
return request_id;
}
bool SetCompositionFunction::RunImpl() {
chromeos::InputMethodEngine* engine =
ExtensionInputImeEventRouter::GetInstance()->
GetActiveEngine(extension_id());
if (!engine) {
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(false));
}
return true;
}
DictionaryValue* args;
EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &args));
int context_id;
std::string text;
int selection_start;
int selection_end;
std::vector<chromeos::InputMethodEngine::SegmentInfo> segments;
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kContextIdKey,
&context_id));
EXTENSION_FUNCTION_VALIDATE(args->GetString(keys::kTextKey, &text));
if (args->HasKey(keys::kSelectionStartKey)) {
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kSelectionStartKey,
&selection_start));
} else {
selection_start = 0;
}
if (args->HasKey(keys::kSelectionEndKey)) {
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kSelectionEndKey,
&selection_end));
} else {
selection_end = 0;
}
if (args->HasKey(keys::kSegmentsKey)) {
ListValue* segment_list;
EXTENSION_FUNCTION_VALIDATE(args->GetList(keys::kSegmentsKey,
&segment_list));
int start;
int end;
std::string style;
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kStartKey,
&start));
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kEndKey, &end));
EXTENSION_FUNCTION_VALIDATE(args->GetString(keys::kStyleKey, &style));
segments.push_back(chromeos::InputMethodEngine::SegmentInfo());
segments.back().start = start;
segments.back().end = end;
if (style == keys::kStyleUnderline) {
segments.back().style =
chromeos::InputMethodEngine::SEGMENT_STYLE_UNDERLINE;
} else if (style == keys::kStyleDoubleUnderline) {
segments.back().style =
chromeos::InputMethodEngine::SEGMENT_STYLE_DOUBLE_UNDERLINE;
}
}
std::string error;
if (engine->SetComposition(context_id, text.c_str(), selection_start,
selection_end, segments, &error)) {
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(true));
}
return true;
} else {
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(false));
}
return false;
}
}
bool ClearCompositionFunction::RunImpl() {
chromeos::InputMethodEngine* engine =
ExtensionInputImeEventRouter::GetInstance()->
GetActiveEngine(extension_id());
if (!engine) {
return false;
}
DictionaryValue* args;
EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &args));
int context_id;
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kContextIdKey,
&context_id));
std::string error;
if (engine->ClearComposition(context_id, &error)) {
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(true));
}
return true;
} else {
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(false));
}
return false;
}
}
bool CommitTextFunction::RunImpl() {
// TODO(zork): Support committing when not active.
chromeos::InputMethodEngine* engine =
ExtensionInputImeEventRouter::GetInstance()->
GetActiveEngine(extension_id());
if (!engine) {
return false;
}
DictionaryValue* args;
EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &args));
int context_id;
std::string text;
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kContextIdKey,
&context_id));
EXTENSION_FUNCTION_VALIDATE(args->GetString(keys::kTextKey, &text));
std::string error;
if (engine->CommitText(context_id, text.c_str(), &error)) {
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(true));
}
return true;
} else {
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(false));
}
return false;
}
}
bool SetCandidateWindowPropertiesFunction::RunImpl() {
DictionaryValue* args;
EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &args));
std::string engine_id;
EXTENSION_FUNCTION_VALIDATE(args->GetString(keys::kEngineIdKey, &engine_id));
chromeos::InputMethodEngine* engine =
ExtensionInputImeEventRouter::GetInstance()->GetEngine(extension_id(),
engine_id);
if (!engine) {
return false;
}
DictionaryValue* properties;
EXTENSION_FUNCTION_VALIDATE(args->GetDictionary(keys::kPropertiesKey,
&properties));
std::string error;
if (properties->HasKey(keys::kVisibleKey)) {
bool visible;
EXTENSION_FUNCTION_VALIDATE(properties->GetBoolean(keys::kVisibleKey,
&visible));
if (!engine->SetCandidateWindowVisible(visible, &error)) {
return false;
}
}
if (properties->HasKey(keys::kCursorVisibleKey)) {
bool visible;
EXTENSION_FUNCTION_VALIDATE(properties->GetBoolean(keys::kCursorVisibleKey,
&visible));
engine->SetCandidateWindowCursorVisible(visible);
}
if (properties->HasKey(keys::kVerticalKey)) {
bool vertical;
EXTENSION_FUNCTION_VALIDATE(properties->GetBoolean(keys::kVerticalKey,
&vertical));
engine->SetCandidateWindowVertical(vertical);
}
if (properties->HasKey(keys::kPageSizeKey)) {
int page_size;
EXTENSION_FUNCTION_VALIDATE(properties->GetInteger(keys::kPageSizeKey,
&page_size));
engine->SetCandidateWindowPageSize(page_size);
}
if (properties->HasKey(keys::kAuxiliaryTextKey)) {
std::string aux_text;
EXTENSION_FUNCTION_VALIDATE(properties->GetString(keys::kAuxiliaryTextKey,
&aux_text));
engine->SetCandidateWindowAuxText(aux_text.c_str());
}
if (properties->HasKey(keys::kAuxiliaryTextVisibleKey)) {
bool visible;
EXTENSION_FUNCTION_VALIDATE(properties->GetBoolean(
keys::kAuxiliaryTextVisibleKey,
&visible));
engine->SetCandidateWindowAuxTextVisible(visible);
}
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(true));
}
return true;
}
#if defined(OS_CHROMEOS)
bool SetCandidatesFunction::ReadCandidates(
ListValue* candidates,
std::vector<chromeos::InputMethodEngine::Candidate>* output) {
for (size_t i = 0; i < candidates->GetSize(); ++i) {
DictionaryValue* candidate_dict;
EXTENSION_FUNCTION_VALIDATE(candidates->GetDictionary(i, &candidate_dict));
std::string candidate;
int id;
std::string label;
std::string annotation;
EXTENSION_FUNCTION_VALIDATE(candidate_dict->GetString(keys::kCandidateKey,
&candidate));
EXTENSION_FUNCTION_VALIDATE(candidate_dict->GetInteger(keys::kIdKey, &id));
if (candidate_dict->HasKey(keys::kLabelKey)) {
EXTENSION_FUNCTION_VALIDATE(candidate_dict->GetString(keys::kLabelKey,
&label));
}
if (candidate_dict->HasKey(keys::kAnnotationKey)) {
EXTENSION_FUNCTION_VALIDATE(candidate_dict->GetString(
keys::kAnnotationKey,
&annotation));
}
output->push_back(chromeos::InputMethodEngine::Candidate());
output->back().value = candidate;
output->back().id = id;
output->back().label = label;
output->back().annotation = annotation;
if (candidate_dict->HasKey(keys::kCandidatesKey)) {
ListValue* sub_list;
EXTENSION_FUNCTION_VALIDATE(candidate_dict->GetList(keys::kCandidatesKey,
&sub_list));
if (!ReadCandidates(sub_list, &(output->back().candidates))) {
return false;
}
}
}
return true;
}
bool SetCandidatesFunction::RunImpl() {
chromeos::InputMethodEngine* engine =
ExtensionInputImeEventRouter::GetInstance()->
GetActiveEngine(extension_id());
if (!engine) {
return false;
}
DictionaryValue* args;
EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &args));
int context_id;
std::vector<chromeos::InputMethodEngine::Candidate> candidates;
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kContextIdKey,
&context_id));
ListValue* candidate_list;
EXTENSION_FUNCTION_VALIDATE(args->GetList(keys::kCandidatesKey,
&candidate_list));
if (!ReadCandidates(candidate_list, &candidates)) {
return false;
}
std::string error;
if (engine->SetCandidates(context_id, candidates, &error)) {
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(true));
}
return true;
} else {
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(false));
}
return false;
}
}
bool SetCursorPositionFunction::RunImpl() {
chromeos::InputMethodEngine* engine =
ExtensionInputImeEventRouter::GetInstance()->
GetActiveEngine(extension_id());
if (!engine) {
return false;
}
DictionaryValue* args;
EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &args));
int context_id;
int candidate_id;
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kContextIdKey,
&context_id));
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kCandidateIdKey,
&candidate_id));
std::string error;
if (engine->SetCursorPosition(context_id, candidate_id, &error)) {
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(true));
}
return true;
} else {
if (has_callback()) {
result_.reset(Value::CreateBooleanValue(false));
}
return false;
}
return true;
}
bool SetMenuItemsFunction::RunImpl() {
// TODO
return true;
}
bool UpdateMenuItemsFunction::RunImpl() {
// TODO
return true;
}
bool InputEventHandled::RunImpl() {
std::string request_id_str;
EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &request_id_str));
bool handled = false;
EXTENSION_FUNCTION_VALIDATE(args_->GetBoolean(1, &handled));
ExtensionInputImeEventRouter::GetInstance()->OnEventHandled(
extension_id(), request_id_str, handled);
return true;
}
#endif
|