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) 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 "chrome/renderer/spellchecker/spellcheck.h"
#include <algorithm>
#include "base/basictypes.h"
#include "base/bind.h"
#include "base/location.h"
#include "base/logging.h"
#include "chrome/common/spellcheck_common.h"
#include "chrome/common/spellcheck_messages.h"
#include "chrome/common/spellcheck_result.h"
#include "chrome/renderer/spellchecker/spellcheck_provider.h"
#include "content/public/renderer/render_thread.h"
#include "content/public/renderer/render_view.h"
#include "content/public/renderer/render_view_visitor.h"
#include "third_party/WebKit/public/platform/WebString.h"
#include "third_party/WebKit/public/platform/WebVector.h"
#include "third_party/WebKit/public/web/WebTextCheckingCompletion.h"
#include "third_party/WebKit/public/web/WebTextCheckingResult.h"
#include "third_party/WebKit/public/web/WebTextDecorationType.h"
#include "third_party/WebKit/public/web/WebView.h"
using blink::WebVector;
using blink::WebString;
using blink::WebTextCheckingResult;
using blink::WebTextDecorationType;
namespace {
class UpdateSpellcheckEnabled : public content::RenderViewVisitor {
public:
explicit UpdateSpellcheckEnabled(bool enabled) : enabled_(enabled) {}
bool Visit(content::RenderView* render_view) override;
private:
bool enabled_; // New spellcheck-enabled state.
DISALLOW_COPY_AND_ASSIGN(UpdateSpellcheckEnabled);
};
bool UpdateSpellcheckEnabled::Visit(content::RenderView* render_view) {
SpellCheckProvider* provider = SpellCheckProvider::Get(render_view);
DCHECK(provider);
provider->EnableSpellcheck(enabled_);
return true;
}
class DocumentMarkersCollector : public content::RenderViewVisitor {
public:
DocumentMarkersCollector() {}
~DocumentMarkersCollector() override {}
const std::vector<uint32>& markers() const { return markers_; }
bool Visit(content::RenderView* render_view) override;
private:
std::vector<uint32> markers_;
DISALLOW_COPY_AND_ASSIGN(DocumentMarkersCollector);
};
bool DocumentMarkersCollector::Visit(content::RenderView* render_view) {
if (!render_view || !render_view->GetWebView())
return true;
WebVector<uint32> markers;
render_view->GetWebView()->spellingMarkers(&markers);
for (size_t i = 0; i < markers.size(); ++i)
markers_.push_back(markers[i]);
// Visit all render views.
return true;
}
class DocumentMarkersRemover : public content::RenderViewVisitor {
public:
explicit DocumentMarkersRemover(const std::set<std::string>& words);
~DocumentMarkersRemover() override {}
bool Visit(content::RenderView* render_view) override;
private:
WebVector<WebString> words_;
DISALLOW_COPY_AND_ASSIGN(DocumentMarkersRemover);
};
DocumentMarkersRemover::DocumentMarkersRemover(
const std::set<std::string>& words)
: words_(words.size()) {
std::transform(words.begin(), words.end(), words_.begin(),
[](const std::string& w) { return WebString::fromUTF8(w); });
}
bool DocumentMarkersRemover::Visit(content::RenderView* render_view) {
if (render_view && render_view->GetWebView())
render_view->GetWebView()->removeSpellingMarkersUnderWords(words_);
return true;
}
} // namespace
class SpellCheck::SpellcheckRequest {
public:
SpellcheckRequest(const base::string16& text,
blink::WebTextCheckingCompletion* completion)
: text_(text), completion_(completion) {
DCHECK(completion);
}
~SpellcheckRequest() {}
base::string16 text() { return text_; }
blink::WebTextCheckingCompletion* completion() { return completion_; }
private:
base::string16 text_; // Text to be checked in this task.
// The interface to send the misspelled ranges to WebKit.
blink::WebTextCheckingCompletion* completion_;
DISALLOW_COPY_AND_ASSIGN(SpellcheckRequest);
};
// Initializes SpellCheck object.
// spellcheck_enabled_ currently MUST be set to true, due to peculiarities of
// the initialization sequence.
// Since it defaults to true, newly created SpellCheckProviders will enable
// spellchecking. After the first word is typed, the provider requests a check,
// which in turn triggers the delayed initialization sequence in SpellCheck.
// This does send a message to the browser side, which triggers the creation
// of the SpellcheckService. That does create the observer for the preference
// responsible for enabling/disabling checking, which allows subsequent changes
// to that preference to be sent to all SpellCheckProviders.
// Setting |spellcheck_enabled_| to false by default prevents that mechanism,
// and as such the SpellCheckProviders will never be notified of different
// values.
// TODO(groby): Simplify this.
SpellCheck::SpellCheck()
: auto_spell_correct_turned_on_(false),
spellcheck_enabled_(true) {
}
SpellCheck::~SpellCheck() {
}
bool SpellCheck::OnControlMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(SpellCheck, message)
IPC_MESSAGE_HANDLER(SpellCheckMsg_Init, OnInit)
IPC_MESSAGE_HANDLER(SpellCheckMsg_CustomDictionaryChanged,
OnCustomDictionaryChanged)
IPC_MESSAGE_HANDLER(SpellCheckMsg_EnableAutoSpellCorrect,
OnEnableAutoSpellCorrect)
IPC_MESSAGE_HANDLER(SpellCheckMsg_EnableSpellCheck, OnEnableSpellCheck)
IPC_MESSAGE_HANDLER(SpellCheckMsg_RequestDocumentMarkers,
OnRequestDocumentMarkers)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void SpellCheck::OnInit(IPC::PlatformFileForTransit bdict_file,
const std::set<std::string>& custom_words,
const std::string& language,
bool auto_spell_correct) {
Init(IPC::PlatformFileForTransitToFile(bdict_file), custom_words, language);
auto_spell_correct_turned_on_ = auto_spell_correct;
#if !defined(OS_MACOSX)
PostDelayedSpellCheckTask(pending_request_param_.release());
#endif
}
void SpellCheck::OnCustomDictionaryChanged(
const std::set<std::string>& words_added,
const std::set<std::string>& words_removed) {
custom_dictionary_.OnCustomDictionaryChanged(words_added, words_removed);
if (words_added.empty())
return;
DocumentMarkersRemover markersRemover(words_added);
content::RenderView::ForEach(&markersRemover);
}
void SpellCheck::OnEnableAutoSpellCorrect(bool enable) {
auto_spell_correct_turned_on_ = enable;
}
void SpellCheck::OnEnableSpellCheck(bool enable) {
spellcheck_enabled_ = enable;
UpdateSpellcheckEnabled updater(enable);
content::RenderView::ForEach(&updater);
}
void SpellCheck::OnRequestDocumentMarkers() {
DocumentMarkersCollector collector;
content::RenderView::ForEach(&collector);
content::RenderThread::Get()->Send(
new SpellCheckHostMsg_RespondDocumentMarkers(collector.markers()));
}
// TODO(groby): Make sure we always have a spelling engine, even before Init()
// is called.
void SpellCheck::Init(base::File file,
const std::set<std::string>& custom_words,
const std::string& language) {
spellcheck_.Init(file.Pass(), language);
custom_dictionary_.Init(custom_words);
}
bool SpellCheck::SpellCheckWord(
const base::char16* in_word,
int in_word_len,
int tag,
int* misspelling_start,
int* misspelling_len,
std::vector<base::string16>* optional_suggestions) {
DCHECK(in_word_len >= 0);
DCHECK(misspelling_start && misspelling_len) << "Out vars must be given.";
// Do nothing if we need to delay initialization. (Rather than blocking,
// report the word as correctly spelled.)
if (InitializeIfNeeded())
return true;
return spellcheck_.SpellCheckWord(in_word, in_word_len,
tag,
misspelling_start, misspelling_len,
optional_suggestions);
}
bool SpellCheck::SpellCheckParagraph(
const base::string16& text,
WebVector<WebTextCheckingResult>* results) {
#if !defined(OS_MACOSX)
// Mac has its own spell checker, so this method will not be used.
DCHECK(results);
std::vector<WebTextCheckingResult> textcheck_results;
size_t length = text.length();
size_t offset = 0;
// Spellcheck::SpellCheckWord() automatically breaks text into words and
// checks the spellings of the extracted words. This function sets the
// position and length of the first misspelled word and returns false when
// the text includes misspelled words. Therefore, we just repeat calling the
// function until it returns true to check the whole text.
int misspelling_start = 0;
int misspelling_length = 0;
while (offset <= length) {
if (SpellCheckWord(&text[offset],
length - offset,
0,
&misspelling_start,
&misspelling_length,
NULL)) {
results->assign(textcheck_results);
return true;
}
if (!custom_dictionary_.SpellCheckWord(
text, misspelling_start + offset, misspelling_length)) {
base::string16 replacement;
textcheck_results.push_back(WebTextCheckingResult(
blink::WebTextDecorationTypeSpelling,
misspelling_start + offset,
misspelling_length,
replacement));
}
offset += misspelling_start + misspelling_length;
}
results->assign(textcheck_results);
return false;
#else
// This function is only invoked for spell checker functionality that runs
// on the render thread. OSX builds don't have that.
NOTREACHED();
return true;
#endif
}
base::string16 SpellCheck::GetAutoCorrectionWord(const base::string16& word,
int tag) {
base::string16 autocorrect_word;
if (!auto_spell_correct_turned_on_)
return autocorrect_word; // Return the empty string.
int word_length = static_cast<int>(word.size());
if (word_length < 2 ||
word_length > chrome::spellcheck_common::kMaxAutoCorrectWordSize)
return autocorrect_word;
if (InitializeIfNeeded())
return autocorrect_word;
base::char16 misspelled_word[
chrome::spellcheck_common::kMaxAutoCorrectWordSize + 1];
const base::char16* word_char = word.c_str();
for (int i = 0; i <= chrome::spellcheck_common::kMaxAutoCorrectWordSize;
++i) {
if (i >= word_length)
misspelled_word[i] = 0;
else
misspelled_word[i] = word_char[i];
}
// Swap adjacent characters and spellcheck.
int misspelling_start, misspelling_len;
for (int i = 0; i < word_length - 1; i++) {
// Swap.
std::swap(misspelled_word[i], misspelled_word[i + 1]);
// Check spelling.
misspelling_start = misspelling_len = 0;
SpellCheckWord(misspelled_word, word_length, tag, &misspelling_start,
&misspelling_len, NULL);
// Make decision: if only one swap produced a valid word, then we want to
// return it. If we found two or more, we don't do autocorrection.
if (misspelling_len == 0) {
if (autocorrect_word.empty()) {
autocorrect_word.assign(misspelled_word);
} else {
autocorrect_word.clear();
break;
}
}
// Restore the swapped characters.
std::swap(misspelled_word[i], misspelled_word[i + 1]);
}
return autocorrect_word;
}
#if !defined(OS_MACOSX) // OSX uses its own spell checker
void SpellCheck::RequestTextChecking(
const base::string16& text,
blink::WebTextCheckingCompletion* completion) {
// Clean up the previous request before starting a new request.
if (pending_request_param_.get())
pending_request_param_->completion()->didCancelCheckingText();
pending_request_param_.reset(new SpellcheckRequest(
text, completion));
// We will check this text after we finish loading the hunspell dictionary.
if (InitializeIfNeeded())
return;
PostDelayedSpellCheckTask(pending_request_param_.release());
}
#endif
bool SpellCheck::InitializeIfNeeded() {
return spellcheck_.InitializeIfNeeded();
}
#if !defined(OS_MACOSX) // OSX doesn't have |pending_request_param_|
void SpellCheck::PostDelayedSpellCheckTask(SpellcheckRequest* request) {
if (!request)
return;
base::MessageLoopProxy::current()->PostTask(FROM_HERE,
base::Bind(&SpellCheck::PerformSpellCheck,
AsWeakPtr(),
base::Owned(request)));
}
#endif
#if !defined(OS_MACOSX) // Mac uses its native engine instead.
void SpellCheck::PerformSpellCheck(SpellcheckRequest* param) {
DCHECK(param);
if (!spellcheck_.IsEnabled()) {
param->completion()->didCancelCheckingText();
} else {
WebVector<blink::WebTextCheckingResult> results;
SpellCheckParagraph(param->text(), &results);
param->completion()->didFinishCheckingText(results);
}
}
#endif
void SpellCheck::CreateTextCheckingResults(
ResultFilter filter,
int line_offset,
const base::string16& line_text,
const std::vector<SpellCheckResult>& spellcheck_results,
WebVector<WebTextCheckingResult>* textcheck_results) {
// Double-check misspelled words with our spellchecker and attach grammar
// markers to them if our spellchecker tells they are correct words, i.e. they
// are probably contextually-misspelled words.
const base::char16* text = line_text.c_str();
std::vector<WebTextCheckingResult> list;
for (size_t i = 0; i < spellcheck_results.size(); ++i) {
SpellCheckResult::Decoration decoration = spellcheck_results[i].decoration;
int word_location = spellcheck_results[i].location;
int word_length = spellcheck_results[i].length;
int misspelling_start = 0;
int misspelling_length = 0;
if (decoration == SpellCheckResult::SPELLING &&
filter == USE_NATIVE_CHECKER) {
if (SpellCheckWord(text + word_location, word_length, 0,
&misspelling_start, &misspelling_length, NULL)) {
decoration = SpellCheckResult::GRAMMAR;
}
}
if (!custom_dictionary_.SpellCheckWord(
line_text, word_location, word_length)) {
list.push_back(WebTextCheckingResult(
static_cast<WebTextDecorationType>(decoration),
word_location + line_offset,
word_length,
spellcheck_results[i].replacement,
spellcheck_results[i].hash));
}
}
textcheck_results->assign(list);
}
|