ICU-21397 Allow null to unset options in Java NumberRangeFormatter

This commit is contained in:
Shane F. Carr 2021-03-09 01:33:30 -06:00
parent 09149bc795
commit 74eb9e621b
2 changed files with 34 additions and 18 deletions

View file

@ -149,41 +149,37 @@ public abstract class NumberRangeFormatterSettings<T extends NumberRangeFormatte
// of a MacroProps object at each step.
// TODO: Remove the reference to the parent after the macros are resolved?
RangeMacroProps macros = new RangeMacroProps();
// Bitmap: 1 if seen; 0 if unseen
long seen = 0;
NumberRangeFormatterSettings<?> current = this;
while (current != null) {
long keyBitmask = (1L << current.key);
if (0 != (seen & keyBitmask)) {
current = current.parent;
continue;
}
seen |= keyBitmask;
switch (current.key) {
case KEY_MACROS:
// ignored for now
break;
case KEY_LOCALE:
if (macros.loc == null) {
macros.loc = (ULocale) current.value;
}
macros.loc = (ULocale) current.value;
break;
case KEY_FORMATTER_1:
if (macros.formatter1 == null) {
macros.formatter1 = (UnlocalizedNumberFormatter) current.value;
}
macros.formatter1 = (UnlocalizedNumberFormatter) current.value;
break;
case KEY_FORMATTER_2:
if (macros.formatter2 == null) {
macros.formatter2 = (UnlocalizedNumberFormatter) current.value;
}
macros.formatter2 = (UnlocalizedNumberFormatter) current.value;
break;
case KEY_SAME_FORMATTERS:
if (macros.sameFormatters == -1) {
macros.sameFormatters = (boolean) current.value ? 1 : 0;
}
macros.sameFormatters = (boolean) current.value ? 1 : 0;
break;
case KEY_COLLAPSE:
if (macros.collapse == null) {
macros.collapse = (RangeCollapse) current.value;
}
macros.collapse = (RangeCollapse) current.value;
break;
case KEY_IDENTITY_FALLBACK:
if (macros.identityFallback == null) {
macros.identityFallback = (RangeIdentityFallback) current.value;
}
macros.identityFallback = (RangeIdentityFallback) current.value;
break;
default:
throw new AssertionError("Unknown key: " + current.key);

View file

@ -664,6 +664,26 @@ public class NumberRangeFormatterTest extends TestFmwk {
"5,0005,000,000");
}
@Test
public void test21397_UnsetNull() {
assertFormatRange(
"Unset identity fallback",
NumberRangeFormatter.with()
.identityFallback(RangeIdentityFallback.RANGE)
.identityFallback(null),
new ULocale("en-us"),
"15",
"~5",
"~5",
"03",
"~0",
"33,000",
"3,0005,000",
"4,9995,001",
"~5,000",
"5,0005,000,000");
}
@Test
public void testPlurals() {
// Locale sl has interesting plural forms: