blob: 502071cbe944b0fb00ab250d9dbd925224b43988 [file]
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_INTL_SUPPORT
#error Internationalization is expected to be enabled.
#endif // V8_INTL_SUPPORT
#include "src/objects/js-break-iterator.h"
#include <stdint.h>
#include <memory>
#include <utility>
#include "src/objects/intl-objects.h"
#include "src/objects/js-break-iterator-inl.h"
#include "src/objects/managed-inl.h"
#include "src/objects/option-utils.h"
#include "unicode/brkiter.h"
#include "unicode/unistr.h"
namespace v8 {
namespace internal {
MaybeDirectHandle<JSV8BreakIterator> JSV8BreakIterator::New(
Isolate* isolate, DirectHandle<Map> map, DirectHandle<Object> locales,
DirectHandle<Object> options_obj, const char* service) {
Factory* factory = isolate->factory();
// 1. Let requestedLocales be ? CanonicalizeLocaleList(locales).
Maybe<std::vector<std::string>> maybe_requested_locales =
Intl::CanonicalizeLocaleList(isolate, locales);
MAYBE_RETURN(maybe_requested_locales, MaybeDirectHandle<JSV8BreakIterator>());
std::vector<std::string> requested_locales =
maybe_requested_locales.FromJust();
DirectHandle<JSReceiver> options;
if (IsUndefined(*options_obj)) {
options = factory->NewJSObjectWithNullProto();
} else {
ASSIGN_RETURN_ON_EXCEPTION(isolate, options,
Object::ToObject(isolate, options_obj, service));
}
// Extract locale string
Maybe<Intl::MatcherOption> maybe_locale_matcher =
Intl::GetLocaleMatcher(isolate, options, service);
MAYBE_RETURN(maybe_locale_matcher, MaybeDirectHandle<JSV8BreakIterator>());
Intl::MatcherOption matcher = maybe_locale_matcher.FromJust();
Intl::ResolvedLocale r;
if (!Intl::ResolveLocale(isolate, JSV8BreakIterator::GetAvailableLocales(),
requested_locales, matcher, {})
.To(&r)) {
THROW_NEW_ERROR(isolate, NewRangeError(MessageTemplate::kIcuError));
}
// Extract type from options
enum class Type { CHARACTER, WORD, SENTENCE, LINE };
Maybe<Type> maybe_type = GetStringOption<Type>(
isolate, options, isolate->factory()->type_string(), service,
std::to_array<const std::string_view>(
{"word", "character", "sentence", "line"}),
std::array{Type::WORD, Type::CHARACTER, Type::SENTENCE, Type::LINE},
Type::WORD);
MAYBE_RETURN(maybe_type, MaybeDirectHandle<JSV8BreakIterator>());
Type type_enum = maybe_type.FromJust();
icu::Locale icu_locale = r.icu_locale;
DCHECK(!icu_locale.isBogus());
// Construct break_iterator using icu_locale and type
UErrorCode status = U_ZERO_ERROR;
std::unique_ptr<icu::BreakIterator> break_iterator = nullptr;
switch (type_enum) {
case Type::CHARACTER:
break_iterator.reset(
icu::BreakIterator::createCharacterInstance(icu_locale, status));
break;
case Type::SENTENCE:
break_iterator.reset(
icu::BreakIterator::createSentenceInstance(icu_locale, status));
break;
case Type::LINE:
isolate->CountUsage(
v8::Isolate::UseCounterFeature::kBreakIteratorTypeLine);
break_iterator.reset(
icu::BreakIterator::createLineInstance(icu_locale, status));
break;
default:
isolate->CountUsage(
v8::Isolate::UseCounterFeature::kBreakIteratorTypeWord);
break_iterator.reset(
icu::BreakIterator::createWordInstance(icu_locale, status));
break;
}
// Error handling for break_iterator
if (U_FAILURE(status) || break_iterator == nullptr) {
THROW_NEW_ERROR(isolate, NewRangeError(MessageTemplate::kIcuError));
}
isolate->CountUsage(v8::Isolate::UseCounterFeature::kBreakIterator);
// Construct the managed holder; initially the string is null
auto iterator_with_text =
std::make_shared<IcuBreakIteratorWithText>(std::move(break_iterator));
DirectHandle<CppGCManaged<IcuBreakIteratorWithText>> managed =
CppGCManaged<IcuBreakIteratorWithText>::Create(
isolate, 0, std::move(iterator_with_text));
DirectHandle<String> locale_str =
isolate->factory()->NewStringFromAsciiChecked(r.locale.c_str());
// Now all properties are ready, so we can allocate the result object.
DirectHandle<JSV8BreakIterator> break_iterator_holder =
Cast<JSV8BreakIterator>(
isolate->factory()->NewFastOrSlowJSObjectFromMap(map));
DisallowGarbageCollection no_gc;
break_iterator_holder->set_locale(*locale_str);
break_iterator_holder->set_icu_iterator_with_text(*managed);
return break_iterator_holder;
}
DirectHandle<JSObject> JSV8BreakIterator::ResolvedOptions(
Isolate* isolate, DirectHandle<JSV8BreakIterator> break_iterator) {
Factory* factory = isolate->factory();
const auto as_string = [isolate](icu::BreakIterator* break_iterator) {
// Since the developer calling the Intl.v8BreakIterator already know the
// type, we usually do not need to know the type unless the
// resolvedOptions() is called, we use the following trick to figure out the
// type instead of storing it with the JSV8BreakIterator object to save
// memory. This routine is not fast but should be seldom used only.
// We need to clone a copy of break iterator because we need to setText to
// it.
std::unique_ptr<icu::BreakIterator> cloned_break_iterator(
break_iterator->clone());
// Use a magic string "He is." to call next().
// character type: will return 1 for "H"
// word type: will return 2 for "He"
// line type: will return 3 for "He "
// sentence type: will return 6 for "He is."
icu::UnicodeString data("He is.");
cloned_break_iterator->setText(data);
switch (cloned_break_iterator->next()) {
case 1: // After "H"
return isolate->factory()->character_string();
case 2: // After "He"
return isolate->factory()->word_string();
case 3: // After "He "
return isolate->factory()->line_string();
case 6: // After "He is."
return isolate->factory()->sentence_string();
default:
UNREACHABLE();
}
};
DirectHandle<JSObject> result =
factory->NewJSObject(isolate->object_function());
DirectHandle<String> locale(break_iterator->locale(), isolate);
JSObject::AddProperty(isolate, result, factory->locale_string(), locale,
NONE);
DirectHandle<String> string =
as_string(break_iterator->icu_iterator_with_text()->ptr()->iterator());
JSObject::AddProperty(isolate, result, factory->type_string(), string, NONE);
return result;
}
void JSV8BreakIterator::AdoptText(
Isolate* isolate, DirectHandle<JSV8BreakIterator> break_iterator,
DirectHandle<String> text) {
break_iterator->icu_iterator_with_text()->ptr()->SetText(isolate, text);
}
DirectHandle<Object> JSV8BreakIterator::Current(
Isolate* isolate, DirectHandle<JSV8BreakIterator> break_iterator) {
return isolate->factory()->NewNumberFromInt(
break_iterator->icu_iterator_with_text()->ptr()->iterator()->current());
}
DirectHandle<Object> JSV8BreakIterator::First(
Isolate* isolate, DirectHandle<JSV8BreakIterator> break_iterator) {
return isolate->factory()->NewNumberFromInt(
break_iterator->icu_iterator_with_text()->ptr()->iterator()->first());
}
DirectHandle<Object> JSV8BreakIterator::Next(
Isolate* isolate, DirectHandle<JSV8BreakIterator> break_iterator) {
return isolate->factory()->NewNumberFromInt(
break_iterator->icu_iterator_with_text()->ptr()->iterator()->next());
}
Tagged<String> JSV8BreakIterator::BreakType(
Isolate* isolate, DirectHandle<JSV8BreakIterator> break_iterator) {
int32_t status = break_iterator->icu_iterator_with_text()
->ptr()
->iterator()
->getRuleStatus();
// Keep return values in sync with JavaScript BreakType enum.
if (status >= UBRK_WORD_NONE && status < UBRK_WORD_NONE_LIMIT) {
return ReadOnlyRoots(isolate).none_string();
}
if (status >= UBRK_WORD_NUMBER && status < UBRK_WORD_NUMBER_LIMIT) {
return ReadOnlyRoots(isolate).number_string();
}
if (status >= UBRK_WORD_LETTER && status < UBRK_WORD_LETTER_LIMIT) {
return ReadOnlyRoots(isolate).letter_string();
}
if (status >= UBRK_WORD_KANA && status < UBRK_WORD_KANA_LIMIT) {
return ReadOnlyRoots(isolate).kana_string();
}
if (status >= UBRK_WORD_IDEO && status < UBRK_WORD_IDEO_LIMIT) {
return ReadOnlyRoots(isolate).ideo_string();
}
return ReadOnlyRoots(isolate).unknown_string();
}
const std::set<std::string>& JSV8BreakIterator::GetAvailableLocales() {
return Intl::GetAvailableLocales();
}
} // namespace internal
} // namespace v8