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
|
/*
* Copyright (C) 2011,2012 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "third_party/blink/renderer/platform/text/locale_icu.h"
#include <unicode/udatpg.h>
#include <unicode/udisplaycontext.h>
#include <unicode/uloc.h>
#include <algorithm>
#include <iterator>
#include <limits>
#include <memory>
#include "base/memory/ptr_util.h"
#include "third_party/blink/renderer/platform/wtf/date_math.h"
#include "third_party/blink/renderer/platform/wtf/text/string_buffer.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"
#include "ui/base/ui_base_features.h"
namespace blink {
std::unique_ptr<Locale> Locale::Create(const String& locale) {
return std::make_unique<LocaleICU>(locale.Utf8());
}
LocaleICU::LocaleICU(const std::string& locale)
: locale_(locale),
number_format_(nullptr),
short_date_format_(nullptr),
did_create_decimal_format_(false),
did_create_short_date_format_(false),
medium_time_format_(nullptr),
short_time_format_(nullptr),
did_create_time_format_(false) {}
LocaleICU::~LocaleICU() {
unum_close(number_format_);
udat_close(short_date_format_);
udat_close(medium_time_format_);
udat_close(short_time_format_);
}
String LocaleICU::DecimalSymbol(UNumberFormatSymbol symbol) {
UErrorCode status = U_ZERO_ERROR;
int32_t buffer_length =
unum_getSymbol(number_format_, symbol, nullptr, 0, &status);
DCHECK(U_SUCCESS(status) || status == U_BUFFER_OVERFLOW_ERROR);
if (U_FAILURE(status) && status != U_BUFFER_OVERFLOW_ERROR)
return String();
StringBuffer<UChar> buffer(buffer_length);
status = U_ZERO_ERROR;
unum_getSymbol(number_format_, symbol, buffer.Characters(), buffer_length,
&status);
if (U_FAILURE(status))
return String();
return String::Adopt(buffer);
}
String LocaleICU::DecimalTextAttribute(UNumberFormatTextAttribute tag) {
UErrorCode status = U_ZERO_ERROR;
int32_t buffer_length =
unum_getTextAttribute(number_format_, tag, nullptr, 0, &status);
DCHECK(U_SUCCESS(status) || status == U_BUFFER_OVERFLOW_ERROR);
if (U_FAILURE(status) && status != U_BUFFER_OVERFLOW_ERROR)
return String();
StringBuffer<UChar> buffer(buffer_length);
status = U_ZERO_ERROR;
unum_getTextAttribute(number_format_, tag, buffer.Characters(), buffer_length,
&status);
DCHECK(U_SUCCESS(status));
if (U_FAILURE(status))
return String();
return String::Adopt(buffer);
}
void LocaleICU::InitializeLocaleData() {
if (did_create_decimal_format_)
return;
did_create_decimal_format_ = true;
UErrorCode status = U_ZERO_ERROR;
number_format_ =
unum_open(UNUM_DECIMAL, nullptr, 0, locale_.c_str(), nullptr, &status);
if (!U_SUCCESS(status))
return;
Vector<String, kDecimalSymbolsSize> symbols;
symbols.push_back(DecimalSymbol(UNUM_ZERO_DIGIT_SYMBOL));
symbols.push_back(DecimalSymbol(UNUM_ONE_DIGIT_SYMBOL));
symbols.push_back(DecimalSymbol(UNUM_TWO_DIGIT_SYMBOL));
symbols.push_back(DecimalSymbol(UNUM_THREE_DIGIT_SYMBOL));
symbols.push_back(DecimalSymbol(UNUM_FOUR_DIGIT_SYMBOL));
symbols.push_back(DecimalSymbol(UNUM_FIVE_DIGIT_SYMBOL));
symbols.push_back(DecimalSymbol(UNUM_SIX_DIGIT_SYMBOL));
symbols.push_back(DecimalSymbol(UNUM_SEVEN_DIGIT_SYMBOL));
symbols.push_back(DecimalSymbol(UNUM_EIGHT_DIGIT_SYMBOL));
symbols.push_back(DecimalSymbol(UNUM_NINE_DIGIT_SYMBOL));
symbols.push_back(DecimalSymbol(UNUM_DECIMAL_SEPARATOR_SYMBOL));
symbols.push_back(DecimalSymbol(UNUM_GROUPING_SEPARATOR_SYMBOL));
DCHECK_EQ(symbols.size(), kDecimalSymbolsSize);
SetLocaleData(symbols, DecimalTextAttribute(UNUM_POSITIVE_PREFIX),
DecimalTextAttribute(UNUM_POSITIVE_SUFFIX),
DecimalTextAttribute(UNUM_NEGATIVE_PREFIX),
DecimalTextAttribute(UNUM_NEGATIVE_SUFFIX));
}
bool LocaleICU::InitializeShortDateFormat() {
if (did_create_short_date_format_)
return short_date_format_;
short_date_format_ = OpenDateFormat(UDAT_NONE, UDAT_SHORT);
did_create_short_date_format_ = true;
return short_date_format_;
}
UDateFormat* LocaleICU::OpenDateFormat(UDateFormatStyle time_style,
UDateFormatStyle date_style) const {
const UChar kGmtTimezone[3] = {'G', 'M', 'T'};
UErrorCode status = U_ZERO_ERROR;
return udat_open(time_style, date_style, locale_.c_str(), kGmtTimezone,
std::size(kGmtTimezone), nullptr, -1, &status);
}
// We cannot use udat_*Symbols API to get standalone month names to use in
// calendar headers for Russian and potentially other languages. Instead,
// we have to format dates with patterns "LLLL" or "LLL" and set the
// display context to 'standalone'. See
// http://bugs.icu-project.org/trac/ticket/11552
UDateFormat* LocaleICU::OpenDateFormatForStandAloneMonthLabels(
bool is_short) const {
const UChar kMonthPattern[4] = {'L', 'L', 'L', 'L'};
UErrorCode status = U_ZERO_ERROR;
UDateFormat* formatter =
udat_open(UDAT_PATTERN, UDAT_PATTERN, locale_.c_str(), nullptr, -1,
kMonthPattern, is_short ? 3 : 4, &status);
udat_setContext(formatter, UDISPCTX_CAPITALIZATION_FOR_STANDALONE, &status);
DCHECK(U_SUCCESS(status));
return formatter;
}
static String GetDateFormatPattern(const UDateFormat* date_format) {
if (!date_format)
return g_empty_string;
UErrorCode status = U_ZERO_ERROR;
int32_t length = udat_toPattern(date_format, true, nullptr, 0, &status);
if (status != U_BUFFER_OVERFLOW_ERROR || !length)
return g_empty_string;
StringBuffer<UChar> buffer(length);
status = U_ZERO_ERROR;
udat_toPattern(date_format, true, buffer.Characters(), length, &status);
if (U_FAILURE(status))
return g_empty_string;
return String::Adopt(buffer);
}
Vector<String> LocaleICU::CreateLabelVector(const UDateFormat* date_format,
UDateFormatSymbolType type,
int32_t start_index,
int32_t size) {
if (!date_format) {
return {};
}
if (udat_countSymbols(date_format, type) != start_index + size) {
return {};
}
Vector<String> labels;
labels.reserve(size);
bool is_stand_alone_month = (type == UDAT_STANDALONE_MONTHS) ||
(type == UDAT_STANDALONE_SHORT_MONTHS);
for (int32_t i = 0; i < size; ++i) {
UErrorCode status = U_ZERO_ERROR;
int32_t length;
static const UDate kEpoch = U_MILLIS_PER_DAY * 15u; // 1970-01-15
static const UDate kMonth = U_MILLIS_PER_DAY * 30u; // 30 days in ms
if (is_stand_alone_month) {
length = udat_format(date_format, kEpoch + i * kMonth, nullptr, 0,
nullptr, &status);
} else {
length = udat_getSymbols(date_format, type, start_index + i, nullptr, 0,
&status);
}
if (status != U_BUFFER_OVERFLOW_ERROR) {
return {};
}
StringBuffer<UChar> buffer(length);
status = U_ZERO_ERROR;
if (is_stand_alone_month) {
udat_format(date_format, kEpoch + i * kMonth, buffer.Characters(), length,
nullptr, &status);
} else {
udat_getSymbols(date_format, type, start_index + i, buffer.Characters(),
length, &status);
}
if (U_FAILURE(status)) {
return {};
}
labels.push_back(String::Adopt(buffer));
}
return labels;
}
const Vector<String>& LocaleICU::MonthLabels() {
if (month_labels_.empty()) {
if (InitializeShortDateFormat()) {
month_labels_ =
CreateLabelVector(short_date_format_, UDAT_MONTHS, UCAL_JANUARY, 12);
}
if (month_labels_.empty()) {
month_labels_.reserve(std::size(kFallbackMonthNames));
std::ranges::copy(kFallbackMonthNames, std::back_inserter(month_labels_));
}
}
return month_labels_;
}
const Vector<String>& LocaleICU::WeekDayShortLabels() {
if (week_day_short_labels_.empty()) {
if (InitializeShortDateFormat()) {
week_day_short_labels_ = CreateLabelVector(
short_date_format_, UDAT_NARROW_WEEKDAYS, UCAL_SUNDAY, 7);
}
if (week_day_short_labels_.empty()) {
week_day_short_labels_.reserve(std::size(kFallbackWeekdayShortNames));
std::ranges::copy(kFallbackWeekdayShortNames,
std::back_inserter(week_day_short_labels_));
}
}
return week_day_short_labels_;
}
unsigned LocaleICU::FirstDayOfWeek() {
if (!first_day_of_week_.has_value()) {
first_day_of_week_ =
InitializeShortDateFormat()
? ucal_getAttribute(udat_getCalendar(short_date_format_),
UCAL_FIRST_DAY_OF_WEEK) -
UCAL_SUNDAY
: 0;
}
return first_day_of_week_.value();
}
bool LocaleICU::IsRTL() {
UErrorCode status = U_ZERO_ERROR;
return uloc_getCharacterOrientation(locale_.c_str(), &status) ==
ULOC_LAYOUT_RTL;
}
void LocaleICU::InitializeDateTimeFormat() {
if (did_create_time_format_)
return;
// We assume ICU medium time pattern and short time pattern are compatible
// with LDML, because ICU specific pattern character "V" doesn't appear
// in both medium and short time pattern.
medium_time_format_ = OpenDateFormat(UDAT_MEDIUM, UDAT_NONE);
time_format_with_seconds_ = GetDateFormatPattern(medium_time_format_);
short_time_format_ = OpenDateFormat(UDAT_SHORT, UDAT_NONE);
time_format_without_seconds_ = GetDateFormatPattern(short_time_format_);
UDateFormat* date_time_format_with_seconds =
OpenDateFormat(UDAT_MEDIUM, UDAT_SHORT);
date_time_format_with_seconds_ =
GetDateFormatPattern(date_time_format_with_seconds);
udat_close(date_time_format_with_seconds);
UDateFormat* date_time_format_without_seconds =
OpenDateFormat(UDAT_SHORT, UDAT_SHORT);
date_time_format_without_seconds_ =
GetDateFormatPattern(date_time_format_without_seconds);
udat_close(date_time_format_without_seconds);
time_ampm_labels_ =
CreateLabelVector(medium_time_format_, UDAT_AM_PMS, UCAL_AM, 2);
if (time_ampm_labels_.empty()) {
time_ampm_labels_ = {"AM", "PM"};
}
did_create_time_format_ = true;
}
String LocaleICU::DateFormat() {
if (!date_format_.IsNull())
return date_format_;
if (!InitializeShortDateFormat())
return "yyyy-MM-dd";
date_format_ = GetDateFormatPattern(short_date_format_);
return date_format_;
}
static String GetFormatForSkeleton(const char* locale, const String& skeleton) {
String format = "yyyy-MM";
UErrorCode status = U_ZERO_ERROR;
UDateTimePatternGenerator* pattern_generator = udatpg_open(locale, &status);
if (!pattern_generator)
return format;
status = U_ZERO_ERROR;
Vector<UChar> skeleton_characters;
skeleton.AppendTo(skeleton_characters);
int32_t length =
udatpg_getBestPattern(pattern_generator, skeleton_characters.data(),
skeleton_characters.size(), nullptr, 0, &status);
if (status == U_BUFFER_OVERFLOW_ERROR && length) {
StringBuffer<UChar> buffer(length);
status = U_ZERO_ERROR;
udatpg_getBestPattern(pattern_generator, skeleton_characters.data(),
skeleton_characters.size(), buffer.Characters(),
length, &status);
if (U_SUCCESS(status))
format = String::Adopt(buffer);
}
udatpg_close(pattern_generator);
return format;
}
String LocaleICU::MonthFormat() {
if (!month_format_.IsNull())
return month_format_;
// Gets a format for "MMMM" because Windows API always provides formats for
// "MMMM" in some locales.
month_format_ = GetFormatForSkeleton(locale_.c_str(), "yyyyMMMM");
return month_format_;
}
String LocaleICU::ShortMonthFormat() {
if (!short_month_format_.IsNull())
return short_month_format_;
short_month_format_ = GetFormatForSkeleton(locale_.c_str(), "yyyyMMM");
return short_month_format_;
}
String LocaleICU::TimeFormat() {
InitializeDateTimeFormat();
return time_format_with_seconds_;
}
String LocaleICU::ShortTimeFormat() {
InitializeDateTimeFormat();
return time_format_without_seconds_;
}
String LocaleICU::DateTimeFormatWithSeconds() {
InitializeDateTimeFormat();
return date_time_format_with_seconds_;
}
String LocaleICU::DateTimeFormatWithoutSeconds() {
InitializeDateTimeFormat();
return date_time_format_without_seconds_;
}
const Vector<String>& LocaleICU::ShortMonthLabels() {
if (short_month_labels_.empty()) {
if (InitializeShortDateFormat()) {
short_month_labels_ = CreateLabelVector(
short_date_format_, UDAT_SHORT_MONTHS, UCAL_JANUARY, 12);
}
if (short_month_labels_.empty()) {
short_month_labels_.reserve(std::size(kFallbackMonthShortNames));
std::ranges::copy(kFallbackMonthShortNames,
std::back_inserter(short_month_labels_));
}
}
return short_month_labels_;
}
const Vector<String>& LocaleICU::StandAloneMonthLabels() {
if (stand_alone_month_labels_.empty()) {
UDateFormat* month_formatter =
OpenDateFormatForStandAloneMonthLabels(false);
if (month_formatter) {
stand_alone_month_labels_ = CreateLabelVector(
month_formatter, UDAT_STANDALONE_MONTHS, UCAL_JANUARY, 12);
udat_close(month_formatter);
}
if (stand_alone_month_labels_.empty()) {
stand_alone_month_labels_ = MonthLabels();
}
}
return stand_alone_month_labels_;
}
const Vector<String>& LocaleICU::ShortStandAloneMonthLabels() {
if (short_stand_alone_month_labels_.empty()) {
UDateFormat* month_formatter = OpenDateFormatForStandAloneMonthLabels(true);
if (month_formatter) {
short_stand_alone_month_labels_ = CreateLabelVector(
month_formatter, UDAT_STANDALONE_SHORT_MONTHS, UCAL_JANUARY, 12);
udat_close(month_formatter);
}
if (short_stand_alone_month_labels_.empty()) {
short_stand_alone_month_labels_ = ShortMonthLabels();
}
}
return short_stand_alone_month_labels_;
}
const Vector<String>& LocaleICU::TimeAMPMLabels() {
InitializeDateTimeFormat();
return time_ampm_labels_;
}
} // namespace blink
|