mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 10:01:13 +09:00

LibLocale was split off from LibUnicode a couple years ago to reduce the number of applications on SerenityOS that depend on CLDR data. Now that we use ICU, both LibUnicode and LibLocale are actually linking in this data. And since vcpkg gives us static libraries, both libraries are over 30MB in size. This patch reverts the separation and merges LibLocale into LibUnicode again. We now have just one library that includes the ICU data. Further, this will let LibUnicode share the locale cache that previously would only exist in LibLocale.
58 lines
2.2 KiB
C++
58 lines
2.2 KiB
C++
/*
|
||
* Copyright (c) 2022-2024, Tim Flynn <trflynn89@serenityos.org>
|
||
*
|
||
* SPDX-License-Identifier: BSD-2-Clause
|
||
*/
|
||
|
||
#include <LibJS/Runtime/Intl/PluralRules.h>
|
||
|
||
namespace JS::Intl {
|
||
|
||
JS_DEFINE_ALLOCATOR(PluralRules);
|
||
|
||
// 16 PluralRules Objects, https://tc39.es/ecma402/#pluralrules-objects
|
||
PluralRules::PluralRules(Object& prototype)
|
||
: NumberFormatBase(prototype)
|
||
{
|
||
}
|
||
|
||
// 16.5.4 ResolvePlural ( pluralRules, n ), https://tc39.es/ecma402/#sec-resolveplural
|
||
Unicode::PluralCategory resolve_plural(PluralRules const& plural_rules, Value number)
|
||
{
|
||
// 1. If n is not a finite Number, then
|
||
if (!number.is_finite_number()) {
|
||
// a. Let s be ! ToString(n).
|
||
// b. Return the Record { [[PluralCategory]]: "other", [[FormattedString]]: s }.
|
||
return Unicode::PluralCategory::Other;
|
||
}
|
||
|
||
// 2. Let locale be pluralRules.[[Locale]].
|
||
// 3. Let type be pluralRules.[[Type]].
|
||
// 4. Let res be FormatNumericToString(pluralRules, ℝ(n)).
|
||
// 5. Let s be res.[[FormattedString]].
|
||
// 6. Let operands be GetOperands(s).
|
||
// 7. Let p be PluralRuleSelect(locale, type, n, operands).
|
||
// 8. Return the Record { [[PluralCategory]]: p, [[FormattedString]]: s }.
|
||
return plural_rules.formatter().select_plural(number.as_double());
|
||
}
|
||
|
||
// 16.5.6 ResolvePluralRange ( pluralRules, x, y ), https://tc39.es/ecma402/#sec-resolveplural
|
||
ThrowCompletionOr<Unicode::PluralCategory> resolve_plural_range(VM& vm, PluralRules const& plural_rules, Value start, Value end)
|
||
{
|
||
// 1. If x is NaN or y is NaN, throw a RangeError exception.
|
||
if (start.is_nan())
|
||
return vm.throw_completion<RangeError>(ErrorType::NumberIsNaN, "start"sv);
|
||
if (end.is_nan())
|
||
return vm.throw_completion<RangeError>(ErrorType::NumberIsNaN, "end"sv);
|
||
|
||
// 2. Let xp be ResolvePlural(pluralRules, x).
|
||
// 3. Let yp be ResolvePlural(pluralRules, y).
|
||
// 4. If xp.[[FormattedString]] is yp.[[FormattedString]], then
|
||
// a. Return xp.[[PluralCategory]].
|
||
// 5. Let locale be pluralRules.[[Locale]].
|
||
// 6. Let type be pluralRules.[[Type]].
|
||
// 7. Return PluralRuleSelectRange(locale, type, xp.[[PluralCategory]], yp.[[PluralCategory]]).
|
||
return plural_rules.formatter().select_plural_range(start.as_double(), end.as_double());
|
||
}
|
||
|
||
}
|