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
|
// Copyright 2014 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 "extensions/renderer/i18n_custom_bindings.h"
#include <stddef.h>
#include <stdint.h>
#include <vector>
#include "base/bind.h"
#include "base/logging.h"
#include "base/macros.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram_macros.h"
#include "content/public/child/v8_value_converter.h"
#include "content/public/renderer/render_frame.h"
#include "content/public/renderer/render_thread.h"
#include "extensions/common/extension_messages.h"
#include "extensions/common/message_bundle.h"
#include "extensions/renderer/script_context.h"
#include "extensions/renderer/v8_helpers.h"
#include "third_party/cld/cld_version.h"
#if BUILDFLAG(CLD_VERSION) == 2
#include "third_party/cld_2/src/public/compact_lang_det.h"
#include "third_party/cld_2/src/public/encodings.h"
#elif BUILDFLAG(CLD_VERSION) == 3
#include "third_party/cld_3/src/src/nnet_language_identifier.h"
#else
# error "CLD_VERSION must be 2 or 3"
#endif
namespace extensions {
using namespace v8_helpers;
namespace {
// Max number of languages to detect.
const int kCldNumLangs = 3;
struct DetectedLanguage {
DetectedLanguage(const std::string& language, int percentage)
: language(language), percentage(percentage) {}
~DetectedLanguage() {}
// Returns a new v8::Local<v8::Value> representing the serialized form of
// this DetectedLanguage object.
std::unique_ptr<base::DictionaryValue> ToDictionary() const;
std::string language;
int percentage;
private:
DISALLOW_COPY_AND_ASSIGN(DetectedLanguage);
};
// LanguageDetectionResult object that holds detected langugae reliability and
// array of DetectedLanguage
struct LanguageDetectionResult {
LanguageDetectionResult() {}
explicit LanguageDetectionResult(bool is_reliable)
: is_reliable(is_reliable) {}
~LanguageDetectionResult() {}
// Returns a new v8::Local<v8::Value> representing the serialized form of
// this Result object.
v8::Local<v8::Value> ToValue(ScriptContext* context);
// CLD detected language reliability
bool is_reliable;
// Array of detectedLanguage of size 1-3. The null is returned if
// there were no languages detected
std::vector<std::unique_ptr<DetectedLanguage>> languages;
private:
DISALLOW_COPY_AND_ASSIGN(LanguageDetectionResult);
};
std::unique_ptr<base::DictionaryValue> DetectedLanguage::ToDictionary() const {
std::unique_ptr<base::DictionaryValue> dict_value(
new base::DictionaryValue());
dict_value->SetString("language", language.c_str());
dict_value->SetInteger("percentage", percentage);
return dict_value;
}
v8::Local<v8::Value> LanguageDetectionResult::ToValue(ScriptContext* context) {
base::DictionaryValue dict_value;
dict_value.SetBoolean("isReliable", is_reliable);
std::unique_ptr<base::ListValue> languages_list(new base::ListValue());
for (const auto& language : languages)
languages_list->Append(language->ToDictionary());
dict_value.Set("languages", std::move(languages_list));
v8::Local<v8::Context> v8_context = context->v8_context();
v8::Isolate* isolate = v8_context->GetIsolate();
v8::EscapableHandleScope handle_scope(isolate);
std::unique_ptr<content::V8ValueConverter> converter(
content::V8ValueConverter::create());
v8::Local<v8::Value> result = converter->ToV8Value(&dict_value, v8_context);
return handle_scope.Escape(result);
}
#if BUILDFLAG(CLD_VERSION) == 2
void InitDetectedLanguages(
CLD2::Language* languages,
int* percents,
std::vector<std::unique_ptr<DetectedLanguage>>* detected_languages) {
for (int i = 0; i < kCldNumLangs; i++) {
std::string language_code;
// Convert LanguageCode 'zh' to 'zh-CN' and 'zh-Hant' to 'zh-TW' for
// Translate server usage. see DetermineTextLanguage in
// components/translate/core/language_detection/language_detection_util.cc
if (languages[i] == CLD2::UNKNOWN_LANGUAGE) {
// Break from the loop since there is no need to save
// unknown languages
break;
} else {
language_code =
CLD2::LanguageCode(static_cast<CLD2::Language>(languages[i]));
}
detected_languages->push_back(
base::MakeUnique<DetectedLanguage>(language_code, percents[i]));
}
}
#elif BUILDFLAG(CLD_VERSION) == 3
void InitDetectedLanguages(
const std::vector<chrome_lang_id::NNetLanguageIdentifier::Result>&
lang_results,
LanguageDetectionResult* result) {
std::vector<std::unique_ptr<DetectedLanguage>>* detected_languages =
&result->languages;
DCHECK(detected_languages->empty());
bool* is_reliable = &result->is_reliable;
// is_reliable is set to "true", so that the reliability can be calculated by
// &&'ing the reliability of each predicted language.
*is_reliable = true;
for (size_t i = 0; i < lang_results.size(); ++i) {
const chrome_lang_id::NNetLanguageIdentifier::Result& lang_result =
lang_results.at(i);
const std::string& language_code = lang_result.language;
// If a language is kUnknown, then the remaining ones are also kUnknown.
if (language_code == chrome_lang_id::NNetLanguageIdentifier::kUnknown) {
break;
}
// The list of languages supported by CLD3 is saved in kLanguageNames
// in the following file:
// //src/third_party/cld_3/src/src/task_context_params.cc
// Among the entries in this list are transliterated languages
// (called xx-Latn) which don't belong to the spec ISO639-1 used by
// the previous model, CLD2. Thus, to maintain backwards compatibility,
// xx-Latn predictions are ignored for now.
if (base::EndsWith(language_code, "-Latn",
base::CompareCase::INSENSITIVE_ASCII)) {
continue;
}
*is_reliable = *is_reliable && lang_result.is_reliable;
const int percent = static_cast<int>(100 * lang_result.proportion);
detected_languages->push_back(
base::MakeUnique<DetectedLanguage>(language_code, percent));
}
if (detected_languages->empty()) {
*is_reliable = false;
}
}
#else
# error "CLD_VERSION must be 2 or 3"
#endif
} // namespace
I18NCustomBindings::I18NCustomBindings(ScriptContext* context)
: ObjectBackedNativeHandler(context) {
RouteFunction(
"GetL10nMessage", "i18n",
base::Bind(&I18NCustomBindings::GetL10nMessage, base::Unretained(this)));
RouteFunction("GetL10nUILanguage", "i18n",
base::Bind(&I18NCustomBindings::GetL10nUILanguage,
base::Unretained(this)));
RouteFunction("DetectTextLanguage", "i18n",
base::Bind(&I18NCustomBindings::DetectTextLanguage,
base::Unretained(this)));
}
void I18NCustomBindings::GetL10nMessage(
const v8::FunctionCallbackInfo<v8::Value>& args) {
if (args.Length() != 3 || !args[0]->IsString()) {
NOTREACHED() << "Bad arguments";
return;
}
std::string extension_id;
if (args[2]->IsNull() || !args[2]->IsString()) {
return;
} else {
extension_id = *v8::String::Utf8Value(args[2]);
if (extension_id.empty())
return;
}
L10nMessagesMap* l10n_messages = GetL10nMessagesMap(extension_id);
if (!l10n_messages) {
content::RenderFrame* render_frame = context()->GetRenderFrame();
if (!render_frame)
return;
L10nMessagesMap messages;
// A sync call to load message catalogs for current extension.
{
SCOPED_UMA_HISTOGRAM_TIMER("Extensions.SyncGetMessageBundle");
render_frame->Send(
new ExtensionHostMsg_GetMessageBundle(extension_id, &messages));
}
// Save messages we got.
ExtensionToL10nMessagesMap& l10n_messages_map =
*GetExtensionToL10nMessagesMap();
l10n_messages_map[extension_id] = messages;
l10n_messages = GetL10nMessagesMap(extension_id);
}
std::string message_name = *v8::String::Utf8Value(args[0]);
std::string message =
MessageBundle::GetL10nMessage(message_name, *l10n_messages);
v8::Isolate* isolate = args.GetIsolate();
std::vector<std::string> substitutions;
if (args[1]->IsArray()) {
// chrome.i18n.getMessage("message_name", ["more", "params"]);
v8::Local<v8::Array> placeholders = v8::Local<v8::Array>::Cast(args[1]);
uint32_t count = placeholders->Length();
if (count > 9)
return;
for (uint32_t i = 0; i < count; ++i) {
substitutions.push_back(*v8::String::Utf8Value(placeholders->Get(
v8::Integer::New(isolate, i))));
}
} else if (args[1]->IsString()) {
// chrome.i18n.getMessage("message_name", "one param");
substitutions.push_back(*v8::String::Utf8Value(args[1]));
}
args.GetReturnValue().Set(v8::String::NewFromUtf8(
isolate,
base::ReplaceStringPlaceholders(message, substitutions, NULL).c_str()));
}
void I18NCustomBindings::GetL10nUILanguage(
const v8::FunctionCallbackInfo<v8::Value>& args) {
args.GetReturnValue().Set(v8::String::NewFromUtf8(
args.GetIsolate(), content::RenderThread::Get()->GetLocale().c_str()));
}
void I18NCustomBindings::DetectTextLanguage(
const v8::FunctionCallbackInfo<v8::Value>& args) {
CHECK(args.Length() == 1);
CHECK(args[0]->IsString());
std::string text = *v8::String::Utf8Value(args[0]);
#if BUILDFLAG(CLD_VERSION) == 2
CLD2::CLDHints cldhints = {nullptr, "", CLD2::UNKNOWN_ENCODING,
CLD2::UNKNOWN_LANGUAGE};
bool is_plain_text = true; // assume the text is a plain text
int flags = 0; // no flags, see compact_lang_det.h for details
int text_bytes; // amount of non-tag/letters-only text (assumed 0)
int valid_prefix_bytes; // amount of valid UTF8 character in the string
double normalized_score[kCldNumLangs];
CLD2::Language languages[kCldNumLangs];
int percents[kCldNumLangs];
bool is_reliable = false;
// populating languages and percents
int cld_language = CLD2::ExtDetectLanguageSummaryCheckUTF8(
text.c_str(), static_cast<int>(text.size()), is_plain_text, &cldhints,
flags, languages, percents, normalized_score,
nullptr, // assumed no ResultChunkVector is used
&text_bytes, &is_reliable, &valid_prefix_bytes);
// Check if non-UTF8 character is encountered
// See bug http://crbug.com/444258.
if (valid_prefix_bytes < static_cast<int>(text.size()) &&
cld_language == CLD2::UNKNOWN_LANGUAGE) {
// Detect Language upto before the first non-UTF8 character
CLD2::ExtDetectLanguageSummary(
text.c_str(), valid_prefix_bytes, is_plain_text, &cldhints, flags,
languages, percents, normalized_score,
nullptr, // assumed no ResultChunkVector is used
&text_bytes, &is_reliable);
}
LanguageDetectionResult result(is_reliable);
// populate LanguageDetectionResult with languages and percents
InitDetectedLanguages(languages, percents, &result.languages);
args.GetReturnValue().Set(result.ToValue(context()));
#elif BUILDFLAG(CLD_VERSION) == 3
chrome_lang_id::NNetLanguageIdentifier nnet_lang_id(/*min_num_bytes=*/0,
/*max_num_bytes=*/512);
const std::vector<chrome_lang_id::NNetLanguageIdentifier::Result>
lang_results = nnet_lang_id.FindTopNMostFreqLangs(text, kCldNumLangs);
LanguageDetectionResult result;
// Populate LanguageDetectionResult with prediction reliability, languages,
// and the corresponding percentages.
InitDetectedLanguages(lang_results, &result);
args.GetReturnValue().Set(result.ToValue(context()));
#else
# error "CLD_VERSION must be 2 or 3"
#endif
}
} // namespace extensions
|