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
|
// 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 "components/spellcheck/renderer/spellcheck_provider.h"
#include "base/command_line.h"
#include "base/metrics/histogram_macros.h"
#include "components/spellcheck/common/spellcheck_marker.h"
#include "components/spellcheck/common/spellcheck_messages.h"
#include "components/spellcheck/common/spellcheck_result.h"
#include "components/spellcheck/renderer/spellcheck.h"
#include "components/spellcheck/renderer/spellcheck_language.h"
#include "components/spellcheck/spellcheck_build_features.h"
#include "content/public/renderer/render_view.h"
#include "third_party/WebKit/public/platform/WebVector.h"
#include "third_party/WebKit/public/web/WebDocument.h"
#include "third_party/WebKit/public/web/WebElement.h"
#include "third_party/WebKit/public/web/WebLocalFrame.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::WebElement;
using blink::WebLocalFrame;
using blink::WebString;
using blink::WebTextCheckingCompletion;
using blink::WebTextCheckingResult;
using blink::WebTextDecorationType;
using blink::WebVector;
static_assert(int(blink::WebTextDecorationTypeSpelling) ==
int(SpellCheckResult::SPELLING), "mismatching enums");
static_assert(int(blink::WebTextDecorationTypeGrammar) ==
int(SpellCheckResult::GRAMMAR), "mismatching enums");
static_assert(int(blink::WebTextDecorationTypeInvisibleSpellcheck) ==
int(SpellCheckResult::INVISIBLE), "mismatching enums");
SpellCheckProvider::SpellCheckProvider(
content::RenderView* render_view,
SpellCheck* spellcheck)
: content::RenderViewObserver(render_view),
content::RenderViewObserverTracker<SpellCheckProvider>(render_view),
spelling_panel_visible_(false),
spellcheck_(spellcheck) {
DCHECK(spellcheck_);
if (render_view) { // NULL in unit tests.
render_view->GetWebView()->setSpellCheckClient(this);
EnableSpellcheck(spellcheck_->IsSpellcheckEnabled());
}
}
SpellCheckProvider::~SpellCheckProvider() {
}
void SpellCheckProvider::RequestTextChecking(
const base::string16& text,
WebTextCheckingCompletion* completion,
const std::vector<SpellCheckMarker>& markers) {
// Ignore invalid requests.
if (text.empty() || !HasWordCharacters(text, 0)) {
completion->didCancelCheckingText();
return;
}
// Try to satisfy check from cache.
if (SatisfyRequestFromCache(text, completion))
return;
// Send this text to a browser. A browser checks the user profile and send
// this text to the Spelling service only if a user enables this feature.
last_request_.clear();
last_results_.assign(blink::WebVector<blink::WebTextCheckingResult>());
#if BUILDFLAG(USE_BROWSER_SPELLCHECKER)
// Text check (unified request for grammar and spell check) is only
// available for browser process, so we ask the system spellchecker
// over IPC or return an empty result if the checker is not
// available.
Send(new SpellCheckHostMsg_RequestTextCheck(
routing_id(),
text_check_completions_.Add(completion),
text,
markers));
#else
Send(new SpellCheckHostMsg_CallSpellingService(
routing_id(),
text_check_completions_.Add(completion),
base::string16(text),
markers));
#endif // !USE_BROWSER_SPELLCHECKER
}
bool SpellCheckProvider::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(SpellCheckProvider, message)
#if !BUILDFLAG(USE_BROWSER_SPELLCHECKER)
IPC_MESSAGE_HANDLER(SpellCheckMsg_RespondSpellingService,
OnRespondSpellingService)
#endif
#if BUILDFLAG(USE_BROWSER_SPELLCHECKER)
IPC_MESSAGE_HANDLER(SpellCheckMsg_AdvanceToNextMisspelling,
OnAdvanceToNextMisspelling)
IPC_MESSAGE_HANDLER(SpellCheckMsg_RespondTextCheck, OnRespondTextCheck)
IPC_MESSAGE_HANDLER(SpellCheckMsg_ToggleSpellPanel, OnToggleSpellPanel)
#endif
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void SpellCheckProvider::FocusedNodeChanged(const blink::WebNode& unused) {
#if BUILDFLAG(USE_BROWSER_SPELLCHECKER)
WebLocalFrame* frame = render_view()->GetWebView()->focusedFrame();
WebElement element = frame->document().isNull() ? WebElement() :
frame->document().focusedElement();
bool enabled = !element.isNull() && element.isEditable();
bool checked = enabled && frame->isSpellCheckingEnabled();
Send(new SpellCheckHostMsg_ToggleSpellCheck(routing_id(), enabled, checked));
#endif // USE_BROWSER_SPELLCHECKER
}
void SpellCheckProvider::checkSpelling(
const WebString& text,
int& offset,
int& length,
WebVector<WebString>* optional_suggestions) {
base::string16 word(text);
std::vector<base::string16> suggestions;
const int kWordStart = 0;
spellcheck_->SpellCheckWord(
word.c_str(), kWordStart, word.size(), routing_id(),
&offset, &length, optional_suggestions ? & suggestions : NULL);
if (optional_suggestions) {
*optional_suggestions = suggestions;
UMA_HISTOGRAM_COUNTS("SpellCheck.api.check.suggestions", word.size());
} else {
UMA_HISTOGRAM_COUNTS("SpellCheck.api.check", word.size());
// If optional_suggestions is not requested, the API is called
// for marking. So we use this for counting markable words.
Send(new SpellCheckHostMsg_NotifyChecked(routing_id(), word, 0 < length));
}
}
void SpellCheckProvider::requestCheckingOfText(
const WebString& text,
const WebVector<uint32_t>& markers,
const WebVector<unsigned>& marker_offsets,
WebTextCheckingCompletion* completion) {
std::vector<SpellCheckMarker> spellcheck_markers;
for (size_t i = 0; i < markers.size(); ++i) {
spellcheck_markers.push_back(
SpellCheckMarker(markers[i], marker_offsets[i]));
}
RequestTextChecking(text, completion, spellcheck_markers);
UMA_HISTOGRAM_COUNTS("SpellCheck.api.async", text.length());
}
void SpellCheckProvider::cancelAllPendingRequests() {
for (WebTextCheckCompletions::iterator iter(&text_check_completions_);
!iter.IsAtEnd(); iter.Advance()) {
iter.GetCurrentValue()->didCancelCheckingText();
}
text_check_completions_.Clear();
}
void SpellCheckProvider::showSpellingUI(bool show) {
#if BUILDFLAG(USE_BROWSER_SPELLCHECKER)
UMA_HISTOGRAM_BOOLEAN("SpellCheck.api.showUI", show);
Send(new SpellCheckHostMsg_ShowSpellingPanel(routing_id(), show));
#endif
}
bool SpellCheckProvider::isShowingSpellingUI() {
return spelling_panel_visible_;
}
void SpellCheckProvider::updateSpellingUIWithMisspelledWord(
const WebString& word) {
#if BUILDFLAG(USE_BROWSER_SPELLCHECKER)
Send(new SpellCheckHostMsg_UpdateSpellingPanelWithMisspelledWord(routing_id(),
word));
#endif
}
#if !BUILDFLAG(USE_BROWSER_SPELLCHECKER)
void SpellCheckProvider::OnRespondSpellingService(
int identifier,
bool succeeded,
const base::string16& line,
const std::vector<SpellCheckResult>& results) {
WebTextCheckingCompletion* completion =
text_check_completions_.Lookup(identifier);
if (!completion)
return;
text_check_completions_.Remove(identifier);
// If |succeeded| is false, we use local spellcheck as a fallback.
if (!succeeded) {
spellcheck_->RequestTextChecking(line, completion);
return;
}
// Double-check the returned spellchecking results with our spellchecker to
// visualize the differences between ours and the on-line spellchecker.
blink::WebVector<blink::WebTextCheckingResult> textcheck_results;
spellcheck_->CreateTextCheckingResults(SpellCheck::USE_NATIVE_CHECKER,
0,
line,
results,
&textcheck_results);
completion->didFinishCheckingText(textcheck_results);
// Cache the request and the converted results.
last_request_ = line;
last_results_.swap(textcheck_results);
}
#endif
bool SpellCheckProvider::HasWordCharacters(
const base::string16& text,
int index) const {
const base::char16* data = text.data();
int length = text.length();
while (index < length) {
uint32_t code = 0;
U16_NEXT(data, index, length, code);
UErrorCode error = U_ZERO_ERROR;
if (uscript_getScript(code, &error) != USCRIPT_COMMON)
return true;
}
return false;
}
#if BUILDFLAG(USE_BROWSER_SPELLCHECKER)
void SpellCheckProvider::OnAdvanceToNextMisspelling() {
if (!render_view()->GetWebView())
return;
render_view()->GetWebView()->focusedFrame()->executeCommand(
WebString::fromUTF8("AdvanceToNextMisspelling"));
}
void SpellCheckProvider::OnRespondTextCheck(
int identifier,
const base::string16& line,
const std::vector<SpellCheckResult>& results) {
// TODO(groby): Unify with SpellCheckProvider::OnRespondSpellingService
DCHECK(spellcheck_);
WebTextCheckingCompletion* completion =
text_check_completions_.Lookup(identifier);
if (!completion)
return;
text_check_completions_.Remove(identifier);
blink::WebVector<blink::WebTextCheckingResult> textcheck_results;
spellcheck_->CreateTextCheckingResults(SpellCheck::DO_NOT_MODIFY,
0,
line,
results,
&textcheck_results);
completion->didFinishCheckingText(textcheck_results);
// Cache the request and the converted results.
last_request_ = line;
last_results_.swap(textcheck_results);
}
void SpellCheckProvider::OnToggleSpellPanel(bool is_currently_visible) {
if (!render_view()->GetWebView())
return;
// We need to tell the webView whether the spelling panel is visible or not so
// that it won't need to make ipc calls later.
spelling_panel_visible_ = is_currently_visible;
render_view()->GetWebView()->focusedFrame()->executeCommand(
WebString::fromUTF8("ToggleSpellPanel"));
}
#endif
void SpellCheckProvider::EnableSpellcheck(bool enable) {
if (!render_view()->GetWebView())
return;
WebLocalFrame* frame = render_view()->GetWebView()->focusedFrame();
// TODO(yabinh): The null check should be unnecessary.
// See crbug.com/625068
if (!frame)
return;
frame->enableSpellChecking(enable);
if (!enable)
frame->removeSpellingMarkers();
}
bool SpellCheckProvider::SatisfyRequestFromCache(
const base::string16& text,
WebTextCheckingCompletion* completion) {
size_t last_length = last_request_.length();
// Send back the |last_results_| if the |last_request_| is a substring of
// |text| and |text| does not have more words to check. Provider cannot cancel
// the spellcheck request here, because WebKit might have discarded the
// previous spellcheck results and erased the spelling markers in response to
// the user editing the text.
base::string16 request(text);
size_t text_length = request.length();
if (text_length >= last_length &&
!request.compare(0, last_length, last_request_)) {
if (text_length == last_length || !HasWordCharacters(text, last_length)) {
completion->didFinishCheckingText(last_results_);
return true;
}
int code = 0;
int length = static_cast<int>(text_length);
U16_PREV(text.data(), 0, length, code);
UErrorCode error = U_ZERO_ERROR;
if (uscript_getScript(code, &error) != USCRIPT_COMMON) {
completion->didCancelCheckingText();
return true;
}
}
// Create a subset of the cached results and return it if the given text is a
// substring of the cached text.
if (text_length < last_length &&
!last_request_.compare(0, text_length, request)) {
size_t result_size = 0;
for (size_t i = 0; i < last_results_.size(); ++i) {
size_t start = last_results_[i].location;
size_t end = start + last_results_[i].length;
if (start <= text_length && end <= text_length)
++result_size;
}
blink::WebVector<blink::WebTextCheckingResult> results(last_results_.data(),
result_size);
completion->didFinishCheckingText(results);
return true;
}
return false;
}
void SpellCheckProvider::OnDestruct() {
delete this;
}
|