NumberFormat.cpp 73 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634
  1. /*
  2. * Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <AK/Array.h>
  7. #include <AK/Utf8View.h>
  8. #include <LibJS/Runtime/Array.h>
  9. #include <LibJS/Runtime/GlobalObject.h>
  10. #include <LibJS/Runtime/Intl/NumberFormat.h>
  11. #include <LibJS/Runtime/Intl/NumberFormatFunction.h>
  12. #include <LibUnicode/CurrencyCode.h>
  13. #include <math.h>
  14. #include <stdlib.h>
  15. namespace JS::Intl {
  16. Vector<StringView> const& NumberFormat::relevant_extension_keys()
  17. {
  18. // 15.3.3 Internal slots, https://tc39.es/ecma402/#sec-intl.numberformat-internal-slots
  19. // The value of the [[RelevantExtensionKeys]] internal slot is « "nu" ».
  20. static Vector<StringView> relevant_extension_keys { "nu"sv };
  21. return relevant_extension_keys;
  22. }
  23. // 15 NumberFormat Objects, https://tc39.es/ecma402/#numberformat-objects
  24. NumberFormat::NumberFormat(Object& prototype)
  25. : Object(prototype)
  26. {
  27. }
  28. void NumberFormat::visit_edges(Cell::Visitor& visitor)
  29. {
  30. Base::visit_edges(visitor);
  31. if (m_bound_format)
  32. visitor.visit(m_bound_format);
  33. }
  34. void NumberFormat::set_style(StringView style)
  35. {
  36. if (style == "decimal"sv)
  37. m_style = Style::Decimal;
  38. else if (style == "percent"sv)
  39. m_style = Style::Percent;
  40. else if (style == "currency"sv)
  41. m_style = Style::Currency;
  42. else if (style == "unit"sv)
  43. m_style = Style::Unit;
  44. else
  45. VERIFY_NOT_REACHED();
  46. }
  47. StringView NumberFormat::style_string() const
  48. {
  49. switch (m_style) {
  50. case Style::Decimal:
  51. return "decimal"sv;
  52. case Style::Percent:
  53. return "percent"sv;
  54. case Style::Currency:
  55. return "currency"sv;
  56. case Style::Unit:
  57. return "unit"sv;
  58. default:
  59. VERIFY_NOT_REACHED();
  60. }
  61. }
  62. void NumberFormat::set_currency_display(StringView currency_display)
  63. {
  64. m_resolved_currency_display.clear();
  65. if (currency_display == "code"sv)
  66. m_currency_display = CurrencyDisplay::Code;
  67. else if (currency_display == "symbol"sv)
  68. m_currency_display = CurrencyDisplay::Symbol;
  69. else if (currency_display == "narrowSymbol"sv)
  70. m_currency_display = CurrencyDisplay::NarrowSymbol;
  71. else if (currency_display == "name"sv)
  72. m_currency_display = CurrencyDisplay::Name;
  73. else
  74. VERIFY_NOT_REACHED();
  75. }
  76. StringView NumberFormat::resolve_currency_display()
  77. {
  78. if (m_resolved_currency_display.has_value())
  79. return *m_resolved_currency_display;
  80. switch (currency_display()) {
  81. case NumberFormat::CurrencyDisplay::Code:
  82. m_resolved_currency_display = currency();
  83. break;
  84. case NumberFormat::CurrencyDisplay::Symbol:
  85. m_resolved_currency_display = Unicode::get_locale_currency_mapping(data_locale(), currency(), Unicode::Style::Short);
  86. break;
  87. case NumberFormat::CurrencyDisplay::NarrowSymbol:
  88. m_resolved_currency_display = Unicode::get_locale_currency_mapping(data_locale(), currency(), Unicode::Style::Narrow);
  89. break;
  90. case NumberFormat::CurrencyDisplay::Name:
  91. m_resolved_currency_display = Unicode::get_locale_currency_mapping(data_locale(), currency(), Unicode::Style::Numeric);
  92. break;
  93. default:
  94. VERIFY_NOT_REACHED();
  95. }
  96. if (!m_resolved_currency_display.has_value())
  97. m_resolved_currency_display = currency();
  98. return *m_resolved_currency_display;
  99. }
  100. StringView NumberFormat::currency_display_string() const
  101. {
  102. VERIFY(m_currency_display.has_value());
  103. switch (*m_currency_display) {
  104. case CurrencyDisplay::Code:
  105. return "code"sv;
  106. case CurrencyDisplay::Symbol:
  107. return "symbol"sv;
  108. case CurrencyDisplay::NarrowSymbol:
  109. return "narrowSymbol"sv;
  110. case CurrencyDisplay::Name:
  111. return "name"sv;
  112. default:
  113. VERIFY_NOT_REACHED();
  114. }
  115. }
  116. void NumberFormat::set_currency_sign(StringView currency_sign)
  117. {
  118. if (currency_sign == "standard"sv)
  119. m_currency_sign = CurrencySign::Standard;
  120. else if (currency_sign == "accounting"sv)
  121. m_currency_sign = CurrencySign::Accounting;
  122. else
  123. VERIFY_NOT_REACHED();
  124. }
  125. StringView NumberFormat::currency_sign_string() const
  126. {
  127. VERIFY(m_currency_sign.has_value());
  128. switch (*m_currency_sign) {
  129. case CurrencySign::Standard:
  130. return "standard"sv;
  131. case CurrencySign::Accounting:
  132. return "accounting"sv;
  133. default:
  134. VERIFY_NOT_REACHED();
  135. }
  136. }
  137. void NumberFormat::set_unit_display(StringView unit_display)
  138. {
  139. if (unit_display == "short"sv)
  140. m_unit_display = UnitDisplay::Short;
  141. else if (unit_display == "narrow"sv)
  142. m_unit_display = UnitDisplay::Narrow;
  143. else if (unit_display == "long"sv)
  144. m_unit_display = UnitDisplay::Long;
  145. else
  146. VERIFY_NOT_REACHED();
  147. }
  148. StringView NumberFormat::unit_display_string() const
  149. {
  150. VERIFY(m_unit_display.has_value());
  151. switch (*m_unit_display) {
  152. case UnitDisplay::Short:
  153. return "short"sv;
  154. case UnitDisplay::Narrow:
  155. return "narrow"sv;
  156. case UnitDisplay::Long:
  157. return "long"sv;
  158. default:
  159. VERIFY_NOT_REACHED();
  160. }
  161. }
  162. StringView NumberFormat::rounding_type_string() const
  163. {
  164. switch (m_rounding_type) {
  165. case RoundingType::SignificantDigits:
  166. return "significantDigits"sv;
  167. case RoundingType::FractionDigits:
  168. return "fractionDigits"sv;
  169. case RoundingType::CompactRounding:
  170. return "compactRounding"sv;
  171. default:
  172. VERIFY_NOT_REACHED();
  173. }
  174. }
  175. void NumberFormat::set_notation(StringView notation)
  176. {
  177. if (notation == "standard"sv)
  178. m_notation = Notation::Standard;
  179. else if (notation == "scientific"sv)
  180. m_notation = Notation::Scientific;
  181. else if (notation == "engineering"sv)
  182. m_notation = Notation::Engineering;
  183. else if (notation == "compact"sv)
  184. m_notation = Notation::Compact;
  185. else
  186. VERIFY_NOT_REACHED();
  187. }
  188. StringView NumberFormat::notation_string() const
  189. {
  190. switch (m_notation) {
  191. case Notation::Standard:
  192. return "standard"sv;
  193. case Notation::Scientific:
  194. return "scientific"sv;
  195. case Notation::Engineering:
  196. return "engineering"sv;
  197. case Notation::Compact:
  198. return "compact"sv;
  199. default:
  200. VERIFY_NOT_REACHED();
  201. }
  202. }
  203. void NumberFormat::set_compact_display(StringView compact_display)
  204. {
  205. if (compact_display == "short"sv)
  206. m_compact_display = CompactDisplay::Short;
  207. else if (compact_display == "long"sv)
  208. m_compact_display = CompactDisplay::Long;
  209. else
  210. VERIFY_NOT_REACHED();
  211. }
  212. StringView NumberFormat::compact_display_string() const
  213. {
  214. VERIFY(m_compact_display.has_value());
  215. switch (*m_compact_display) {
  216. case CompactDisplay::Short:
  217. return "short"sv;
  218. case CompactDisplay::Long:
  219. return "long"sv;
  220. default:
  221. VERIFY_NOT_REACHED();
  222. }
  223. }
  224. void NumberFormat::set_sign_display(StringView sign_display)
  225. {
  226. if (sign_display == "auto"sv)
  227. m_sign_display = SignDisplay::Auto;
  228. else if (sign_display == "never"sv)
  229. m_sign_display = SignDisplay::Never;
  230. else if (sign_display == "always"sv)
  231. m_sign_display = SignDisplay::Always;
  232. else if (sign_display == "exceptZero"sv)
  233. m_sign_display = SignDisplay::ExceptZero;
  234. else
  235. VERIFY_NOT_REACHED();
  236. }
  237. StringView NumberFormat::sign_display_string() const
  238. {
  239. switch (m_sign_display) {
  240. case SignDisplay::Auto:
  241. return "auto"sv;
  242. case SignDisplay::Never:
  243. return "never"sv;
  244. case SignDisplay::Always:
  245. return "always"sv;
  246. case SignDisplay::ExceptZero:
  247. return "exceptZero"sv;
  248. default:
  249. VERIFY_NOT_REACHED();
  250. }
  251. }
  252. static ALWAYS_INLINE int log10floor(double value)
  253. {
  254. return static_cast<int>(floor(log10(value)));
  255. }
  256. // 15.1.1 SetNumberFormatDigitOptions ( intlObj, options, mnfdDefault, mxfdDefault, notation ), https://tc39.es/ecma402/#sec-setnfdigitoptions
  257. ThrowCompletionOr<void> set_number_format_digit_options(GlobalObject& global_object, NumberFormat& intl_object, Object const& options, int default_min_fraction_digits, int default_max_fraction_digits, NumberFormat::Notation notation)
  258. {
  259. auto& vm = global_object.vm();
  260. // 1. Assert: Type(intlObj) is Object.
  261. // 2. Assert: Type(options) is Object.
  262. // 3. Assert: Type(mnfdDefault) is Number.
  263. // 4. Assert: Type(mxfdDefault) is Number.
  264. // 5. Let mnid be ? GetNumberOption(options, "minimumIntegerDigits,", 1, 21, 1).
  265. auto min_integer_digits = TRY(get_number_option(global_object, options, vm.names.minimumIntegerDigits, 1, 21, 1));
  266. // 6. Let mnfd be ? Get(options, "minimumFractionDigits").
  267. auto min_fraction_digits = TRY(options.get(vm.names.minimumFractionDigits));
  268. // 7. Let mxfd be ? Get(options, "maximumFractionDigits").
  269. auto max_fraction_digits = TRY(options.get(vm.names.maximumFractionDigits));
  270. // 8. Let mnsd be ? Get(options, "minimumSignificantDigits").
  271. auto min_significant_digits = TRY(options.get(vm.names.minimumSignificantDigits));
  272. // 9. Let mxsd be ? Get(options, "maximumSignificantDigits").
  273. auto max_significant_digits = TRY(options.get(vm.names.maximumSignificantDigits));
  274. // 10. Set intlObj.[[MinimumIntegerDigits]] to mnid.
  275. intl_object.set_min_integer_digits(*min_integer_digits);
  276. // 11. If mnsd is not undefined or mxsd is not undefined, then
  277. if (!min_significant_digits.is_undefined() || !max_significant_digits.is_undefined()) {
  278. // a. Set intlObj.[[RoundingType]] to significantDigits.
  279. intl_object.set_rounding_type(NumberFormat::RoundingType::SignificantDigits);
  280. // b. Let mnsd be ? DefaultNumberOption(mnsd, 1, 21, 1).
  281. auto min_digits = TRY(default_number_option(global_object, min_significant_digits, 1, 21, 1));
  282. // c. Let mxsd be ? DefaultNumberOption(mxsd, mnsd, 21, 21).
  283. auto max_digits = TRY(default_number_option(global_object, max_significant_digits, *min_digits, 21, 21));
  284. // d. Set intlObj.[[MinimumSignificantDigits]] to mnsd.
  285. intl_object.set_min_significant_digits(*min_digits);
  286. // e. Set intlObj.[[MaximumSignificantDigits]] to mxsd.
  287. intl_object.set_max_significant_digits(*max_digits);
  288. }
  289. // 12. Else if mnfd is not undefined or mxfd is not undefined, then
  290. else if (!min_fraction_digits.is_undefined() || !max_fraction_digits.is_undefined()) {
  291. // a. Set intlObj.[[RoundingType]] to fractionDigits.
  292. intl_object.set_rounding_type(NumberFormat::RoundingType::FractionDigits);
  293. // b. Let mnfd be ? DefaultNumberOption(mnfd, 0, 20, undefined).
  294. auto min_digits = TRY(default_number_option(global_object, min_fraction_digits, 0, 20, {}));
  295. // c. Let mxfd be ? DefaultNumberOption(mxfd, 0, 20, undefined).
  296. auto max_digits = TRY(default_number_option(global_object, max_fraction_digits, 0, 20, {}));
  297. // d. If mnfd is undefined, set mnfd to min(mnfdDefault, mxfd).
  298. if (!min_digits.has_value())
  299. min_digits = min(default_min_fraction_digits, *max_digits);
  300. // e. Else if mxfd is undefined, set mxfd to max(mxfdDefault, mnfd).
  301. else if (!max_digits.has_value())
  302. max_digits = max(default_max_fraction_digits, *min_digits);
  303. // f. Else if mnfd is greater than mxfd, throw a RangeError exception.
  304. else if (*min_digits > *max_digits)
  305. return vm.throw_completion<RangeError>(global_object, ErrorType::IntlMinimumExceedsMaximum, *min_digits, *max_digits);
  306. // g. Set intlObj.[[MinimumFractionDigits]] to mnfd.
  307. intl_object.set_min_fraction_digits(*min_digits);
  308. // h. Set intlObj.[[MaximumFractionDigits]] to mxfd.
  309. intl_object.set_max_fraction_digits(*max_digits);
  310. }
  311. // 13. Else if notation is "compact", then
  312. else if (notation == NumberFormat::Notation::Compact) {
  313. // a. Set intlObj.[[RoundingType]] to compactRounding.
  314. intl_object.set_rounding_type(NumberFormat::RoundingType::CompactRounding);
  315. }
  316. // 14. Else,
  317. else {
  318. // a. Set intlObj.[[RoundingType]] to fractionDigits.
  319. intl_object.set_rounding_type(NumberFormat::RoundingType::FractionDigits);
  320. // b. Set intlObj.[[MinimumFractionDigits]] to mnfdDefault.
  321. intl_object.set_min_fraction_digits(default_min_fraction_digits);
  322. // c. Set intlObj.[[MaximumFractionDigits]] to mxfdDefault.
  323. intl_object.set_max_fraction_digits(default_max_fraction_digits);
  324. }
  325. return {};
  326. }
  327. // 15.1.2 InitializeNumberFormat ( numberFormat, locales, options ), https://tc39.es/ecma402/#sec-initializenumberformat
  328. ThrowCompletionOr<NumberFormat*> initialize_number_format(GlobalObject& global_object, NumberFormat& number_format, Value locales_value, Value options_value)
  329. {
  330. auto& vm = global_object.vm();
  331. // 1. Let requestedLocales be ? CanonicalizeLocaleList(locales).
  332. auto requested_locales = TRY(canonicalize_locale_list(global_object, locales_value));
  333. // 2. Set options to ? CoerceOptionsToObject(options).
  334. auto* options = TRY(coerce_options_to_object(global_object, options_value));
  335. // 3. Let opt be a new Record.
  336. LocaleOptions opt {};
  337. // 4. Let matcher be ? GetOption(options, "localeMatcher", "string", « "lookup", "best fit" », "best fit").
  338. auto matcher = TRY(get_option(global_object, *options, vm.names.localeMatcher, Value::Type::String, { "lookup"sv, "best fit"sv }, "best fit"sv));
  339. // 5. Set opt.[[localeMatcher]] to matcher.
  340. opt.locale_matcher = matcher;
  341. // 6. Let numberingSystem be ? GetOption(options, "numberingSystem", "string", undefined, undefined).
  342. auto numbering_system = TRY(get_option(global_object, *options, vm.names.numberingSystem, Value::Type::String, {}, Empty {}));
  343. // 7. If numberingSystem is not undefined, then
  344. if (!numbering_system.is_undefined()) {
  345. // a. If numberingSystem does not match the Unicode Locale Identifier type nonterminal, throw a RangeError exception.
  346. if (!Unicode::is_type_identifier(numbering_system.as_string().string()))
  347. return vm.throw_completion<RangeError>(global_object, ErrorType::OptionIsNotValidValue, numbering_system, "numberingSystem"sv);
  348. // 8. Set opt.[[nu]] to numberingSystem.
  349. opt.nu = numbering_system.as_string().string();
  350. }
  351. // 9. Let localeData be %NumberFormat%.[[LocaleData]].
  352. // 10. Let r be ResolveLocale(%NumberFormat%.[[AvailableLocales]], requestedLocales, opt, %NumberFormat%.[[RelevantExtensionKeys]], localeData).
  353. auto result = resolve_locale(requested_locales, opt, NumberFormat::relevant_extension_keys());
  354. // 11. Set numberFormat.[[Locale]] to r.[[locale]].
  355. number_format.set_locale(move(result.locale));
  356. // 12. Set numberFormat.[[DataLocale]] to r.[[dataLocale]].
  357. number_format.set_data_locale(move(result.data_locale));
  358. // 13. Set numberFormat.[[NumberingSystem]] to r.[[nu]].
  359. number_format.set_numbering_system(result.nu.release_value());
  360. // 14. Perform ? SetNumberFormatUnitOptions(numberFormat, options).
  361. TRY(set_number_format_unit_options(global_object, number_format, *options));
  362. // 15. Let style be numberFormat.[[Style]].
  363. auto style = number_format.style();
  364. int default_min_fraction_digits = 0;
  365. int default_max_fraction_digits = 0;
  366. // 16. If style is "currency", then
  367. if (style == NumberFormat::Style::Currency) {
  368. // a. Let currency be numberFormat.[[Currency]].
  369. auto const& currency = number_format.currency();
  370. // b. Let cDigits be CurrencyDigits(currency).
  371. int digits = currency_digits(currency);
  372. // c. Let mnfdDefault be cDigits.
  373. default_min_fraction_digits = digits;
  374. // d. Let mxfdDefault be cDigits.
  375. default_max_fraction_digits = digits;
  376. }
  377. // 17. Else,
  378. else {
  379. // a. Let mnfdDefault be 0.
  380. default_min_fraction_digits = 0;
  381. // b. If style is "percent", then
  382. // i. Let mxfdDefault be 0.
  383. // c. Else,
  384. // i. Let mxfdDefault be 3.
  385. default_max_fraction_digits = style == NumberFormat::Style::Percent ? 0 : 3;
  386. }
  387. // 18. Let notation be ? GetOption(options, "notation", "string", « "standard", "scientific", "engineering", "compact" », "standard").
  388. auto notation = TRY(get_option(global_object, *options, vm.names.notation, Value::Type::String, { "standard"sv, "scientific"sv, "engineering"sv, "compact"sv }, "standard"sv));
  389. // 19. Set numberFormat.[[Notation]] to notation.
  390. number_format.set_notation(notation.as_string().string());
  391. // 20. Perform ? SetNumberFormatDigitOptions(numberFormat, options, mnfdDefault, mxfdDefault, notation).
  392. TRY(set_number_format_digit_options(global_object, number_format, *options, default_min_fraction_digits, default_max_fraction_digits, number_format.notation()));
  393. // 21. Let compactDisplay be ? GetOption(options, "compactDisplay", "string", « "short", "long" », "short").
  394. auto compact_display = TRY(get_option(global_object, *options, vm.names.compactDisplay, Value::Type::String, { "short"sv, "long"sv }, "short"sv));
  395. // 22. If notation is "compact", then
  396. if (number_format.notation() == NumberFormat::Notation::Compact) {
  397. // a. Set numberFormat.[[CompactDisplay]] to compactDisplay.
  398. number_format.set_compact_display(compact_display.as_string().string());
  399. }
  400. // 23. Let useGrouping be ? GetOption(options, "useGrouping", "boolean", undefined, true).
  401. auto use_grouping = TRY(get_option(global_object, *options, vm.names.useGrouping, Value::Type::Boolean, {}, true));
  402. // 24. Set numberFormat.[[UseGrouping]] to useGrouping.
  403. number_format.set_use_grouping(use_grouping.as_bool());
  404. // 25. Let signDisplay be ? GetOption(options, "signDisplay", "string", « "auto", "never", "always", "exceptZero" », "auto").
  405. auto sign_display = TRY(get_option(global_object, *options, vm.names.signDisplay, Value::Type::String, { "auto"sv, "never"sv, "always"sv, "exceptZero"sv }, "auto"sv));
  406. // 26. Set numberFormat.[[SignDisplay]] to signDisplay.
  407. number_format.set_sign_display(sign_display.as_string().string());
  408. // 27. Return numberFormat.
  409. return &number_format;
  410. }
  411. // 15.1.3 CurrencyDigits ( currency ), https://tc39.es/ecma402/#sec-currencydigits
  412. int currency_digits(StringView currency)
  413. {
  414. // 1. If the ISO 4217 currency and funds code list contains currency as an alphabetic code, return the minor
  415. // unit value corresponding to the currency from the list; otherwise, return 2.
  416. if (auto currency_code = Unicode::get_currency_code(currency); currency_code.has_value())
  417. return currency_code->minor_unit.value_or(2);
  418. return 2;
  419. }
  420. // 15.1.5 FormatNumericToString ( intlObject, x ), https://tc39.es/ecma402/#sec-formatnumberstring
  421. FormatResult format_numeric_to_string(NumberFormat& number_format, double number)
  422. {
  423. // 1. If x < 0 or x is -0𝔽, let isNegative be true; else let isNegative be false.
  424. bool is_negative = (number < 0.0) || Value(number).is_negative_zero();
  425. // 2. If isNegative, then
  426. if (is_negative) {
  427. // a. Let x be -x.
  428. number *= -1;
  429. }
  430. RawFormatResult result {};
  431. switch (number_format.rounding_type()) {
  432. // 3. If intlObject.[[RoundingType]] is significantDigits, then
  433. case NumberFormat::RoundingType::SignificantDigits:
  434. // a. Let result be ToRawPrecision(x, intlObject.[[MinimumSignificantDigits]], intlObject.[[MaximumSignificantDigits]]).
  435. result = to_raw_precision(number, number_format.min_significant_digits(), number_format.max_significant_digits());
  436. break;
  437. // 4. Else if intlObject.[[RoundingType]] is fractionDigits, then
  438. case NumberFormat::RoundingType::FractionDigits:
  439. // a. Let result be ToRawFixed(x, intlObject.[[MinimumFractionDigits]], intlObject.[[MaximumFractionDigits]]).
  440. result = to_raw_fixed(number, number_format.min_fraction_digits(), number_format.max_fraction_digits());
  441. break;
  442. // 5. Else,
  443. case NumberFormat::RoundingType::CompactRounding:
  444. // a. Assert: intlObject.[[RoundingType]] is compactRounding.
  445. // b. Let result be ToRawPrecision(x, 1, 2).
  446. result = to_raw_precision(number, 1, 2);
  447. // c. If result.[[IntegerDigitsCount]] > 1, then
  448. if (result.digits > 1) {
  449. // i. Let result be ToRawFixed(x, 0, 0).
  450. result = to_raw_fixed(number, 0, 0);
  451. }
  452. break;
  453. default:
  454. VERIFY_NOT_REACHED();
  455. }
  456. // 6. Let x be result.[[RoundedNumber]].
  457. number = result.rounded_number;
  458. // 7. Let string be result.[[FormattedString]].
  459. auto string = move(result.formatted_string);
  460. // 8. Let int be result.[[IntegerDigitsCount]].
  461. int digits = result.digits;
  462. // 9. Let minInteger be intlObject.[[MinimumIntegerDigits]].
  463. int min_integer = number_format.min_integer_digits();
  464. // 10. If int < minInteger, then
  465. if (digits < min_integer) {
  466. // a. Let forwardZeros be the String consisting of minInteger–int occurrences of the character "0".
  467. auto forward_zeros = String::repeated('0', min_integer - digits);
  468. // b. Set string to the string-concatenation of forwardZeros and string.
  469. string = String::formatted("{}{}", forward_zeros, string);
  470. }
  471. // 11. If isNegative, then
  472. if (is_negative) {
  473. // a. Let x be -x.
  474. number *= -1;
  475. }
  476. // 12. Return the Record { [[RoundedNumber]]: x, [[FormattedString]]: string }.
  477. return { move(string), number };
  478. }
  479. // 15.1.6 PartitionNumberPattern ( numberFormat, x ), https://tc39.es/ecma402/#sec-partitionnumberpattern
  480. Vector<PatternPartition> partition_number_pattern(NumberFormat& number_format, double number)
  481. {
  482. // 1. Let exponent be 0.
  483. int exponent = 0;
  484. String formatted_string;
  485. // 2. If x is NaN, then
  486. if (Value(number).is_nan()) {
  487. // a. Let n be an implementation- and locale-dependent (ILD) String value indicating the NaN value.
  488. formatted_string = Unicode::get_number_system_symbol(number_format.data_locale(), number_format.numbering_system(), "nan"sv).value_or("NaN"sv);
  489. }
  490. // 3. Else if x is a non-finite Number, then
  491. else if (!Value(number).is_finite_number()) {
  492. // a. Let n be an ILD String value indicating infinity.
  493. formatted_string = Unicode::get_number_system_symbol(number_format.data_locale(), number_format.numbering_system(), "infinity"sv).value_or("infinity"sv);
  494. }
  495. // 4. Else,
  496. else {
  497. // a. If numberFormat.[[Style]] is "percent", let x be 100 × x.
  498. if (number_format.style() == NumberFormat::Style::Percent)
  499. number = number * 100;
  500. // b. Let exponent be ComputeExponent(numberFormat, x).
  501. exponent = compute_exponent(number_format, number);
  502. // c. Let x be x × 10^(-exponent).
  503. number *= pow(10, -exponent);
  504. // d. Let formatNumberResult be FormatNumericToString(numberFormat, x).
  505. auto format_number_result = format_numeric_to_string(number_format, number);
  506. // e. Let n be formatNumberResult.[[FormattedString]].
  507. formatted_string = move(format_number_result.formatted_string);
  508. // f. Let x be formatNumberResult.[[RoundedNumber]].
  509. number = format_number_result.rounded_number;
  510. }
  511. // 5. Let pattern be GetNumberFormatPattern(numberFormat, x).
  512. auto pattern = get_number_format_pattern(number_format, number);
  513. if (!pattern.has_value())
  514. return {};
  515. // 6. Let result be a new empty List.
  516. Vector<PatternPartition> result;
  517. // 7. Let patternParts be PartitionPattern(pattern).
  518. auto pattern_parts = pattern->visit([](auto const& p) { return partition_pattern(p); });
  519. // 8. For each Record { [[Type]], [[Value]] } patternPart of patternParts, do
  520. for (auto& pattern_part : pattern_parts) {
  521. // a. Let p be patternPart.[[Type]].
  522. auto part = pattern_part.type;
  523. // b. If p is "literal", then
  524. if (part == "literal"sv) {
  525. // i. Append a new Record { [[Type]]: "literal", [[Value]]: patternPart.[[Value]] } as the last element of result.
  526. result.append({ "literal"sv, move(pattern_part.value) });
  527. }
  528. // c. Else if p is equal to "number", then
  529. else if (part == "number"sv) {
  530. // i. Let notationSubParts be PartitionNotationSubPattern(numberFormat, x, n, exponent).
  531. auto notation_sub_parts = partition_notation_sub_pattern(number_format, number, formatted_string, exponent);
  532. // ii. Append all elements of notationSubParts to result.
  533. result.extend(move(notation_sub_parts));
  534. }
  535. // d. Else if p is equal to "plusSign", then
  536. else if (part == "plusSign"sv) {
  537. // i. Let plusSignSymbol be the ILND String representing the plus sign.
  538. auto plus_sign_symbol = Unicode::get_number_system_symbol(number_format.data_locale(), number_format.numbering_system(), "plusSign"sv).value_or("+"sv);
  539. // ii. Append a new Record { [[Type]]: "plusSign", [[Value]]: plusSignSymbol } as the last element of result.
  540. result.append({ "plusSign"sv, plus_sign_symbol });
  541. }
  542. // e. Else if p is equal to "minusSign", then
  543. else if (part == "minusSign"sv) {
  544. // i. Let minusSignSymbol be the ILND String representing the minus sign.
  545. auto minus_sign_symbol = Unicode::get_number_system_symbol(number_format.data_locale(), number_format.numbering_system(), "minusSign"sv).value_or("-"sv);
  546. // ii. Append a new Record { [[Type]]: "minusSign", [[Value]]: minusSignSymbol } as the last element of result.
  547. result.append({ "minusSign"sv, minus_sign_symbol });
  548. }
  549. // f. Else if p is equal to "percentSign" and numberFormat.[[Style]] is "percent", then
  550. else if ((part == "percentSign"sv) && (number_format.style() == NumberFormat::Style::Percent)) {
  551. // i. Let percentSignSymbol be the ILND String representing the percent sign.
  552. auto percent_sign_symbol = Unicode::get_number_system_symbol(number_format.data_locale(), number_format.numbering_system(), "percentSign"sv).value_or("%"sv);
  553. // ii. Append a new Record { [[Type]]: "percentSign", [[Value]]: percentSignSymbol } as the last element of result.
  554. result.append({ "percentSign"sv, percent_sign_symbol });
  555. }
  556. // g. Else if p is equal to "unitPrefix" and numberFormat.[[Style]] is "unit", then
  557. else if ((part == "unitPrefix"sv) && (number_format.style() == NumberFormat::Style::Unit)) {
  558. // i. Let unit be numberFormat.[[Unit]].
  559. // ii. Let unitDisplay be numberFormat.[[UnitDisplay]].
  560. // iii. Let mu be an ILD String value representing unit before x in unitDisplay form, which may depend on x in languages having different plural forms.
  561. // iv. Append a new Record { [[Type]]: "unit", [[Value]]: mu } as the last element of result.
  562. // FIXME: LibUnicode will need to parse the cldr-units package.
  563. }
  564. // h. Else if p is equal to "unitSuffix" and numberFormat.[[Style]] is "unit", then
  565. else if ((part == "unitSuffix"sv) && (number_format.style() == NumberFormat::Style::Unit)) {
  566. // i. Let unit be numberFormat.[[Unit]].
  567. // ii. Let unitDisplay be numberFormat.[[UnitDisplay]].
  568. // iii. Let mu be an ILD String value representing unit after x in unitDisplay form, which may depend on x in languages having different plural forms.
  569. // iv. Append a new Record { [[Type]]: "unit", [[Value]]: mu } as the last element of result.
  570. // FIXME: LibUnicode will need to parse the cldr-units package.
  571. }
  572. // i. Else if p is equal to "currencyCode" and numberFormat.[[Style]] is "currency", then
  573. // j. Else if p is equal to "currencyPrefix" and numberFormat.[[Style]] is "currency", then
  574. // k. Else if p is equal to "currencySuffix" and numberFormat.[[Style]] is "currency", then
  575. //
  576. // Note: Our implementation manipulates the format string to inject/remove spacing around the
  577. // currency code during GetNumberFormatPattern so that we do not have to do currency
  578. // display / plurality lookups more than once.
  579. else if ((part == "currency"sv) && (number_format.style() == NumberFormat::Style::Currency)) {
  580. result.append({ "currency"sv, number_format.resolve_currency_display() });
  581. }
  582. // l. Else,
  583. else {
  584. // i. Let unknown be an ILND String based on x and p.
  585. // ii. Append a new Record { [[Type]]: "unknown", [[Value]]: unknown } as the last element of result.
  586. // LibUnicode doesn't generate any "unknown" patterns.
  587. VERIFY_NOT_REACHED();
  588. }
  589. }
  590. // 9. Return result.
  591. return result;
  592. }
  593. static String replace_digits_for_number_format(NumberFormat& number_format, String formatted_string)
  594. {
  595. // https://tc39.es/ecma402/#table-numbering-system-digits
  596. static HashMap<StringView, AK::Array<u32, 10>> s_numbering_system_digits = {
  597. { "adlm"sv, { 0x1e950, 0x1e951, 0x1e952, 0x1e953, 0x1e954, 0x1e955, 0x1e956, 0x1e957, 0x1e958, 0x1e959 } },
  598. { "ahom"sv, { 0x11730, 0x11731, 0x11732, 0x11733, 0x11734, 0x11735, 0x11736, 0x11737, 0x11738, 0x11739 } },
  599. { "arab"sv, { 0x660, 0x661, 0x662, 0x663, 0x664, 0x665, 0x666, 0x667, 0x668, 0x669 } },
  600. { "arabext"sv, { 0x6f0, 0x6f1, 0x6f2, 0x6f3, 0x6f4, 0x6f5, 0x6f6, 0x6f7, 0x6f8, 0x6f9 } },
  601. { "bali"sv, { 0x1b50, 0x1b51, 0x1b52, 0x1b53, 0x1b54, 0x1b55, 0x1b56, 0x1b57, 0x1b58, 0x1b59 } },
  602. { "beng"sv, { 0x9e6, 0x9e7, 0x9e8, 0x9e9, 0x9ea, 0x9eb, 0x9ec, 0x9ed, 0x9ee, 0x9ef } },
  603. { "bhks"sv, { 0x11c50, 0x11c51, 0x11c52, 0x11c53, 0x11c54, 0x11c55, 0x11c56, 0x11c57, 0x11c58, 0x11c59 } },
  604. { "brah"sv, { 0x11066, 0x11067, 0x11068, 0x11069, 0x1106a, 0x1106b, 0x1106c, 0x1106d, 0x1106e, 0x1106f } },
  605. { "cakm"sv, { 0x11136, 0x11137, 0x11138, 0x11139, 0x1113a, 0x1113b, 0x1113c, 0x1113d, 0x1113e, 0x1113f } },
  606. { "cham"sv, { 0xaa50, 0xaa51, 0xaa52, 0xaa53, 0xaa54, 0xaa55, 0xaa56, 0xaa57, 0xaa58, 0xaa59 } },
  607. { "deva"sv, { 0x966, 0x967, 0x968, 0x969, 0x96a, 0x96b, 0x96c, 0x96d, 0x96e, 0x96f } },
  608. { "diak"sv, { 0x11950, 0x11951, 0x11952, 0x11953, 0x11954, 0x11955, 0x11956, 0x11957, 0x11958, 0x11959 } },
  609. { "fullwide"sv, { 0xff10, 0xff11, 0xff12, 0xff13, 0xff14, 0xff15, 0xff16, 0xff17, 0xff18, 0xff19 } },
  610. { "gong"sv, { 0x11da0, 0x11da1, 0x11da2, 0x11da3, 0x11da4, 0x11da5, 0x11da6, 0x11da7, 0x11da8, 0x11da9 } },
  611. { "gonm"sv, { 0x11d50, 0x11d51, 0x11d52, 0x11d53, 0x11d54, 0x11d55, 0x11d56, 0x11d57, 0x11d58, 0x11d59 } },
  612. { "gujr"sv, { 0xae6, 0xae7, 0xae8, 0xae9, 0xaea, 0xaeb, 0xaec, 0xaed, 0xaee, 0xaef } },
  613. { "guru"sv, { 0xa66, 0xa67, 0xa68, 0xa69, 0xa6a, 0xa6b, 0xa6c, 0xa6d, 0xa6e, 0xa6f } },
  614. { "hanidec"sv, { 0x3007, 0x4e00, 0x4e8c, 0x4e09, 0x56db, 0x4e94, 0x516d, 0x4e03, 0x516b, 0x4e5d } },
  615. { "hmng"sv, { 0x16b50, 0x16b51, 0x16b52, 0x16b53, 0x16b54, 0x16b55, 0x16b56, 0x16b57, 0x16b58, 0x16b59 } },
  616. { "hmnp"sv, { 0x1e140, 0x1e141, 0x1e142, 0x1e143, 0x1e144, 0x1e145, 0x1e146, 0x1e147, 0x1e148, 0x1e149 } },
  617. { "java"sv, { 0xa9d0, 0xa9d1, 0xa9d2, 0xa9d3, 0xa9d4, 0xa9d5, 0xa9d6, 0xa9d7, 0xa9d8, 0xa9d9 } },
  618. { "kali"sv, { 0xa900, 0xa901, 0xa902, 0xa903, 0xa904, 0xa905, 0xa906, 0xa907, 0xa908, 0xa909 } },
  619. { "khmr"sv, { 0x17e0, 0x17e1, 0x17e2, 0x17e3, 0x17e4, 0x17e5, 0x17e6, 0x17e7, 0x17e8, 0x17e9 } },
  620. { "knda"sv, { 0xce6, 0xce7, 0xce8, 0xce9, 0xcea, 0xceb, 0xcec, 0xced, 0xcee, 0xcef } },
  621. { "lana"sv, { 0x1a80, 0x1a81, 0x1a82, 0x1a83, 0x1a84, 0x1a85, 0x1a86, 0x1a87, 0x1a88, 0x1a89 } },
  622. { "lanatham"sv, { 0x1a90, 0x1a91, 0x1a92, 0x1a93, 0x1a94, 0x1a95, 0x1a96, 0x1a97, 0x1a98, 0x1a99 } },
  623. { "laoo"sv, { 0xed0, 0xed1, 0xed2, 0xed3, 0xed4, 0xed5, 0xed6, 0xed7, 0xed8, 0xed9 } },
  624. { "latn"sv, { 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39 } },
  625. { "lepc"sv, { 0x1c40, 0x1c41, 0x1c42, 0x1c43, 0x1c44, 0x1c45, 0x1c46, 0x1c47, 0x1c48, 0x1c49 } },
  626. { "limb"sv, { 0x1946, 0x1947, 0x1948, 0x1949, 0x194a, 0x194b, 0x194c, 0x194d, 0x194e, 0x194f } },
  627. { "mathbold"sv, { 0x1d7ce, 0x1d7cf, 0x1d7d0, 0x1d7d1, 0x1d7d2, 0x1d7d3, 0x1d7d4, 0x1d7d5, 0x1d7d6, 0x1d7d7 } },
  628. { "mathdbl"sv, { 0x1d7d8, 0x1d7d9, 0x1d7da, 0x1d7db, 0x1d7dc, 0x1d7dd, 0x1d7de, 0x1d7df, 0x1d7e0, 0x1d7e1 } },
  629. { "mathmono"sv, { 0x1d7f6, 0x1d7f7, 0x1d7f8, 0x1d7f9, 0x1d7fa, 0x1d7fb, 0x1d7fc, 0x1d7fd, 0x1d7fe, 0x1d7ff } },
  630. { "mathsanb"sv, { 0x1d7ec, 0x1d7ed, 0x1d7ee, 0x1d7ef, 0x1d7f0, 0x1d7f1, 0x1d7f2, 0x1d7f3, 0x1d7f4, 0x1d7f5 } },
  631. { "mathsans"sv, { 0x1d7e2, 0x1d7e3, 0x1d7e4, 0x1d7e5, 0x1d7e6, 0x1d7e7, 0x1d7e8, 0x1d7e9, 0x1d7ea, 0x1d7eb } },
  632. { "mlym"sv, { 0xd66, 0xd67, 0xd68, 0xd69, 0xd6a, 0xd6b, 0xd6c, 0xd6d, 0xd6e, 0xd6f } },
  633. { "modi"sv, { 0x11650, 0x11651, 0x11652, 0x11653, 0x11654, 0x11655, 0x11656, 0x11657, 0x11658, 0x11659 } },
  634. { "mong"sv, { 0x1810, 0x1811, 0x1812, 0x1813, 0x1814, 0x1815, 0x1816, 0x1817, 0x1818, 0x1819 } },
  635. { "mroo"sv, { 0x16a60, 0x16a61, 0x16a62, 0x16a63, 0x16a64, 0x16a65, 0x16a66, 0x16a67, 0x16a68, 0x16a69 } },
  636. { "mtei"sv, { 0xabf0, 0xabf1, 0xabf2, 0xabf3, 0xabf4, 0xabf5, 0xabf6, 0xabf7, 0xabf8, 0xabf9 } },
  637. { "mymr"sv, { 0x1040, 0x1041, 0x1042, 0x1043, 0x1044, 0x1045, 0x1046, 0x1047, 0x1048, 0x1049 } },
  638. { "mymrshan"sv, { 0x1090, 0x1091, 0x1092, 0x1093, 0x1094, 0x1095, 0x1096, 0x1097, 0x1098, 0x1099 } },
  639. { "mymrtlng"sv, { 0xa9f0, 0xa9f1, 0xa9f2, 0xa9f3, 0xa9f4, 0xa9f5, 0xa9f6, 0xa9f7, 0xa9f8, 0xa9f9 } },
  640. { "newa"sv, { 0x11450, 0x11451, 0x11452, 0x11453, 0x11454, 0x11455, 0x11456, 0x11457, 0x11458, 0x11459 } },
  641. { "nkoo"sv, { 0x7c0, 0x7c1, 0x7c2, 0x7c3, 0x7c4, 0x7c5, 0x7c6, 0x7c7, 0x7c8, 0x7c9 } },
  642. { "olck"sv, { 0x1c50, 0x1c51, 0x1c52, 0x1c53, 0x1c54, 0x1c55, 0x1c56, 0x1c57, 0x1c58, 0x1c59 } },
  643. { "orya"sv, { 0xb66, 0xb67, 0xb68, 0xb69, 0xb6a, 0xb6b, 0xb6c, 0xb6d, 0xb6e, 0xb6f } },
  644. { "osma"sv, { 0x104a0, 0x104a1, 0x104a2, 0x104a3, 0x104a4, 0x104a5, 0x104a6, 0x104a7, 0x104a8, 0x104a9 } },
  645. { "rohg"sv, { 0x10d30, 0x10d31, 0x10d32, 0x10d33, 0x10d34, 0x10d35, 0x10d36, 0x10d37, 0x10d38, 0x10d39 } },
  646. { "saur"sv, { 0xa8d0, 0xa8d1, 0xa8d2, 0xa8d3, 0xa8d4, 0xa8d5, 0xa8d6, 0xa8d7, 0xa8d8, 0xa8d9 } },
  647. { "segment"sv, { 0x1fbf0, 0x1fbf1, 0x1fbf2, 0x1fbf3, 0x1fbf4, 0x1fbf5, 0x1fbf6, 0x1fbf7, 0x1fbf8, 0x1fbf9 } },
  648. { "shrd"sv, { 0x111d0, 0x111d1, 0x111d2, 0x111d3, 0x111d4, 0x111d5, 0x111d6, 0x111d7, 0x111d8, 0x111d9 } },
  649. { "sind"sv, { 0x112f0, 0x112f1, 0x112f2, 0x112f3, 0x112f4, 0x112f5, 0x112f6, 0x112f7, 0x112f8, 0x112f9 } },
  650. { "sinh"sv, { 0xde6, 0xde7, 0xde8, 0xde9, 0xdea, 0xdeb, 0xdec, 0xded, 0xdee, 0xdef } },
  651. { "sora"sv, { 0x110f0, 0x110f1, 0x110f2, 0x110f3, 0x110f4, 0x110f5, 0x110f6, 0x110f7, 0x110f8, 0x110f9 } },
  652. { "sund"sv, { 0x1bb0, 0x1bb1, 0x1bb2, 0x1bb3, 0x1bb4, 0x1bb5, 0x1bb6, 0x1bb7, 0x1bb8, 0x1bb9 } },
  653. { "takr"sv, { 0x116c0, 0x116c1, 0x116c2, 0x116c3, 0x116c4, 0x116c5, 0x116c6, 0x116c7, 0x116c8, 0x116c9 } },
  654. { "talu"sv, { 0x19d0, 0x19d1, 0x19d2, 0x19d3, 0x19d4, 0x19d5, 0x19d6, 0x19d7, 0x19d8, 0x19d9 } },
  655. { "tamldec"sv, { 0xbe6, 0xbe7, 0xbe8, 0xbe9, 0xbea, 0xbeb, 0xbec, 0xbed, 0xbee, 0xbef } },
  656. { "telu"sv, { 0xc66, 0xc67, 0xc68, 0xc69, 0xc6a, 0xc6b, 0xc6c, 0xc6d, 0xc6e, 0xc6f } },
  657. { "thai"sv, { 0xe50, 0xe51, 0xe52, 0xe53, 0xe54, 0xe55, 0xe56, 0xe57, 0xe58, 0xe59 } },
  658. { "tibt"sv, { 0xf20, 0xf21, 0xf22, 0xf23, 0xf24, 0xf25, 0xf26, 0xf27, 0xf28, 0xf29 } },
  659. { "tirh"sv, { 0x114d0, 0x114d1, 0x114d2, 0x114d3, 0x114d4, 0x114d5, 0x114d6, 0x114d7, 0x114d8, 0x114d9 } },
  660. { "vaii"sv, { 0xa620, 0xa621, 0xa622, 0xa623, 0xa624, 0xa625, 0xa626, 0xa627, 0xa628, 0xa629 } },
  661. { "wara"sv, { 0x118e0, 0x118e1, 0x118e2, 0x118e3, 0x118e4, 0x118e5, 0x118e6, 0x118e7, 0x118e8, 0x118e9 } },
  662. { "wcho"sv, { 0x1e2f0, 0x1e2f1, 0x1e2f2, 0x1e2f3, 0x1e2f4, 0x1e2f5, 0x1e2f6, 0x1e2f7, 0x1e2f8, 0x1e2f9 } },
  663. };
  664. auto digits = s_numbering_system_digits.get(number_format.numbering_system());
  665. if (!digits.has_value())
  666. digits = s_numbering_system_digits.get("latn"sv);
  667. VERIFY(digits.has_value());
  668. StringBuilder builder;
  669. for (auto& ch : formatted_string) {
  670. if (is_ascii_digit(ch)) {
  671. u32 digit = digits->at(parse_ascii_digit(ch));
  672. builder.append_code_point(digit);
  673. } else {
  674. builder.append(ch);
  675. }
  676. }
  677. return builder.build();
  678. }
  679. static Vector<StringView> separate_integer_into_groups(Unicode::NumberGroupings const& grouping_sizes, StringView integer)
  680. {
  681. Utf8View utf8_integer { integer };
  682. Vector<StringView> groups;
  683. auto add_group = [&](size_t index, size_t length) {
  684. groups.prepend(utf8_integer.unicode_substring_view(index, length).as_string());
  685. };
  686. if (utf8_integer.length() > grouping_sizes.primary_grouping_size) {
  687. size_t index = utf8_integer.length() - grouping_sizes.primary_grouping_size;
  688. add_group(index, grouping_sizes.primary_grouping_size);
  689. while (index > grouping_sizes.secondary_grouping_size) {
  690. index -= grouping_sizes.secondary_grouping_size;
  691. add_group(index, grouping_sizes.secondary_grouping_size);
  692. }
  693. if (index > 0)
  694. add_group(0, index);
  695. } else {
  696. groups.append(integer);
  697. }
  698. return groups;
  699. }
  700. // 15.1.7 PartitionNotationSubPattern ( numberFormat, x, n, exponent ), https://tc39.es/ecma402/#sec-partitionnotationsubpattern
  701. Vector<PatternPartition> partition_notation_sub_pattern(NumberFormat& number_format, double number, String formatted_string, int exponent)
  702. {
  703. // 1. Let result be a new empty List.
  704. Vector<PatternPartition> result;
  705. auto grouping_sizes = Unicode::get_number_system_groupings(number_format.data_locale(), number_format.numbering_system());
  706. if (!grouping_sizes.has_value())
  707. return {};
  708. // 2. If x is NaN, then
  709. if (Value(number).is_nan()) {
  710. // a. Append a new Record { [[Type]]: "nan", [[Value]]: n } as the last element of result.
  711. result.append({ "nan"sv, move(formatted_string) });
  712. }
  713. // 3. Else if x is a non-finite Number, then
  714. else if (!Value(number).is_finite_number()) {
  715. // a. Append a new Record { [[Type]]: "infinity", [[Value]]: n } as the last element of result.
  716. result.append({ "infinity"sv, move(formatted_string) });
  717. }
  718. // 4. Else,
  719. else {
  720. // a. Let notationSubPattern be GetNotationSubPattern(numberFormat, exponent).
  721. auto notation_sub_pattern = get_notation_sub_pattern(number_format, exponent);
  722. if (!notation_sub_pattern.has_value())
  723. return {};
  724. // b. Let patternParts be PartitionPattern(notationSubPattern).
  725. auto pattern_parts = partition_pattern(*notation_sub_pattern);
  726. // c. For each Record { [[Type]], [[Value]] } patternPart of patternParts, do
  727. for (auto& pattern_part : pattern_parts) {
  728. // i. Let p be patternPart.[[Type]].
  729. auto part = pattern_part.type;
  730. // ii. If p is "literal", then
  731. if (part == "literal"sv) {
  732. // 1. Append a new Record { [[Type]]: "literal", [[Value]]: patternPart.[[Value]] } as the last element of result.
  733. result.append({ "literal"sv, move(pattern_part.value) });
  734. }
  735. // iii. Else if p is equal to "number", then
  736. else if (part == "number"sv) {
  737. // 1. If the numberFormat.[[NumberingSystem]] matches one of the values in the "Numbering System" column of Table 10 below, then
  738. // a. Let digits be a List whose 10 String valued elements are the UTF-16 string representations of the 10 digits specified in the "Digits" column of the matching row in Table 10.
  739. // b. Replace each digit in n with the value of digits[digit].
  740. // 2. Else use an implementation dependent algorithm to map n to the appropriate representation of n in the given numbering system.
  741. formatted_string = replace_digits_for_number_format(number_format, move(formatted_string));
  742. // 3. Let decimalSepIndex be ! StringIndexOf(n, ".", 0).
  743. auto decimal_sep_index = formatted_string.find('.');
  744. StringView integer;
  745. Optional<StringView> fraction;
  746. // 4. If decimalSepIndex > 0, then
  747. if (decimal_sep_index.has_value() && (*decimal_sep_index > 0)) {
  748. // a. Let integer be the substring of n from position 0, inclusive, to position decimalSepIndex, exclusive.
  749. integer = formatted_string.substring_view(0, *decimal_sep_index);
  750. // b. Let fraction be the substring of n from position decimalSepIndex, exclusive, to the end of n.
  751. fraction = formatted_string.substring_view(*decimal_sep_index + 1);
  752. }
  753. // 5. Else,
  754. else {
  755. // a. Let integer be n.
  756. integer = formatted_string;
  757. // b. Let fraction be undefined.
  758. }
  759. bool use_grouping = number_format.use_grouping();
  760. // FIXME: The spec doesn't indicate this, but grouping should be disabled for numbers less than 10,000 when the notation is compact.
  761. // This is addressed in Intl.NumberFormat V3 with the "min2" [[UseGrouping]] option. However, test262 explicitly expects this
  762. // behavior in the "de-DE" locale tests, because this is how ICU (and therefore V8, SpiderMoney, etc.) has always behaved.
  763. //
  764. // So, in locales "de-*", we must have:
  765. // Intl.NumberFormat("de", {notation: "compact"}).format(1234) === "1234"
  766. // Intl.NumberFormat("de", {notation: "compact"}).format(12345) === "12.345"
  767. // Intl.NumberFormat("de").format(1234) === "1.234"
  768. // Intl.NumberFormat("de").format(12345) === "12.345"
  769. //
  770. // See: https://github.com/tc39/proposal-intl-numberformat-v3/issues/3
  771. if (number_format.has_compact_format())
  772. use_grouping = number >= 10'000;
  773. // 6. If the numberFormat.[[UseGrouping]] is true, then
  774. if (use_grouping) {
  775. // a. Let groupSepSymbol be the implementation-, locale-, and numbering system-dependent (ILND) String representing the grouping separator.
  776. auto group_sep_symbol = Unicode::get_number_system_symbol(number_format.data_locale(), number_format.numbering_system(), "group"sv).value_or(","sv);
  777. // b. Let groups be a List whose elements are, in left to right order, the substrings defined by ILND set of locations within the integer.
  778. auto groups = separate_integer_into_groups(*grouping_sizes, integer);
  779. // c. Assert: The number of elements in groups List is greater than 0.
  780. VERIFY(!groups.is_empty());
  781. // d. Repeat, while groups List is not empty,
  782. while (!groups.is_empty()) {
  783. // i. Remove the first element from groups and let integerGroup be the value of that element.
  784. auto integer_group = groups.take_first();
  785. // ii. Append a new Record { [[Type]]: "integer", [[Value]]: integerGroup } as the last element of result.
  786. result.append({ "integer"sv, integer_group });
  787. // iii. If groups List is not empty, then
  788. if (!groups.is_empty()) {
  789. // i. Append a new Record { [[Type]]: "group", [[Value]]: groupSepSymbol } as the last element of result.
  790. result.append({ "group"sv, group_sep_symbol });
  791. }
  792. }
  793. }
  794. // 7. Else,
  795. else {
  796. // a. Append a new Record { [[Type]]: "integer", [[Value]]: integer } as the last element of result.
  797. result.append({ "integer"sv, integer });
  798. }
  799. // 8. If fraction is not undefined, then
  800. if (fraction.has_value()) {
  801. // a. Let decimalSepSymbol be the ILND String representing the decimal separator.
  802. auto decimal_sep_symbol = Unicode::get_number_system_symbol(number_format.data_locale(), number_format.numbering_system(), "decimal"sv).value_or("."sv);
  803. // b. Append a new Record { [[Type]]: "decimal", [[Value]]: decimalSepSymbol } as the last element of result.
  804. result.append({ "decimal"sv, decimal_sep_symbol });
  805. // c. Append a new Record { [[Type]]: "fraction", [[Value]]: fraction } as the last element of result.
  806. result.append({ "fraction"sv, fraction.release_value() });
  807. }
  808. }
  809. // iv. Else if p is equal to "compactSymbol", then
  810. // v. Else if p is equal to "compactName", then
  811. else if (part.starts_with("compactIdentifier:"sv)) {
  812. // Note: Our implementation combines "compactSymbol" and "compactName" into one field, "compactIdentifier".
  813. auto identifier_index = part.substring_view("compactIdentifier:"sv.length()).to_uint();
  814. VERIFY(identifier_index.has_value());
  815. // 1. Let compactSymbol be an ILD string representing exponent in short form, which may depend on x in languages having different plural forms. The implementation must be able to provide this string, or else the pattern would not have a "{compactSymbol}" placeholder.
  816. auto compact_identifier = number_format.compact_format().identifiers[*identifier_index];
  817. // 2. Append a new Record { [[Type]]: "compact", [[Value]]: compactSymbol } as the last element of result.
  818. result.append({ "compact"sv, compact_identifier });
  819. }
  820. // vi. Else if p is equal to "scientificSeparator", then
  821. else if (part == "scientificSeparator"sv) {
  822. // 1. Let scientificSeparator be the ILND String representing the exponent separator.
  823. auto scientific_separator = Unicode::get_number_system_symbol(number_format.data_locale(), number_format.numbering_system(), "exponential"sv).value_or("E"sv);
  824. // 2. Append a new Record { [[Type]]: "exponentSeparator", [[Value]]: scientificSeparator } as the last element of result.
  825. result.append({ "exponentSeparator"sv, scientific_separator });
  826. }
  827. // vii. Else if p is equal to "scientificExponent", then
  828. else if (part == "scientificExponent"sv) {
  829. // 1. If exponent < 0, then
  830. if (exponent < 0) {
  831. // a. Let minusSignSymbol be the ILND String representing the minus sign.
  832. auto minus_sign_symbol = Unicode::get_number_system_symbol(number_format.data_locale(), number_format.numbering_system(), "minusSign"sv).value_or("-"sv);
  833. // b. Append a new Record { [[Type]]: "exponentMinusSign", [[Value]]: minusSignSymbol } as the last element of result.
  834. result.append({ "exponentMinusSign"sv, minus_sign_symbol });
  835. // c. Let exponent be -exponent.
  836. exponent *= -1;
  837. }
  838. // 2. Let exponentResult be ToRawFixed(exponent, 1, 0, 0).
  839. // Note: See the implementation of ToRawFixed for why we do not pass the 1.
  840. auto exponent_result = to_raw_fixed(exponent, 0, 0);
  841. // FIXME: The spec does not say to do this, but all of major engines perform this replacement.
  842. // Without this, formatting with non-Latin numbering systems will produce non-localized results.
  843. exponent_result.formatted_string = replace_digits_for_number_format(number_format, move(exponent_result.formatted_string));
  844. // 3. Append a new Record { [[Type]]: "exponentInteger", [[Value]]: exponentResult.[[FormattedString]] } as the last element of result.
  845. result.append({ "exponentInteger"sv, move(exponent_result.formatted_string) });
  846. }
  847. // viii. Else,
  848. else {
  849. // 1. Let unknown be an ILND String based on x and p.
  850. // 2. Append a new Record { [[Type]]: "unknown", [[Value]]: unknown } as the last element of result.
  851. // LibUnicode doesn't generate any "unknown" patterns.
  852. VERIFY_NOT_REACHED();
  853. }
  854. }
  855. }
  856. // 5. Return result.
  857. return result;
  858. }
  859. // 15.1.8 FormatNumeric ( numberFormat, x ), https://tc39.es/ecma402/#sec-formatnumber
  860. String format_numeric(NumberFormat& number_format, double number)
  861. {
  862. // 1. Let parts be ? PartitionNumberPattern(numberFormat, x).
  863. // Note: Our implementation of PartitionNumberPattern does not throw.
  864. auto parts = partition_number_pattern(number_format, number);
  865. // 2. Let result be the empty String.
  866. StringBuilder result;
  867. // 3. For each Record { [[Type]], [[Value]] } part in parts, do
  868. for (auto& part : parts) {
  869. // a. Set result to the string-concatenation of result and part.[[Value]].
  870. result.append(move(part.value));
  871. }
  872. // 4. Return result.
  873. return result.build();
  874. }
  875. // 15.1.9 FormatNumericToParts ( numberFormat, x ), https://tc39.es/ecma402/#sec-formatnumbertoparts
  876. Array* format_numeric_to_parts(GlobalObject& global_object, NumberFormat& number_format, double number)
  877. {
  878. auto& vm = global_object.vm();
  879. // 1. Let parts be ? PartitionNumberPattern(numberFormat, x).
  880. // Note: Our implementation of PartitionNumberPattern does not throw.
  881. auto parts = partition_number_pattern(number_format, number);
  882. // 2. Let result be ArrayCreate(0).
  883. auto* result = MUST(Array::create(global_object, 0));
  884. // 3. Let n be 0.
  885. size_t n = 0;
  886. // 4. For each Record { [[Type]], [[Value]] } part in parts, do
  887. for (auto& part : parts) {
  888. // a. Let O be OrdinaryObjectCreate(%Object.prototype%).
  889. auto* object = Object::create(global_object, global_object.object_prototype());
  890. // b. Perform ! CreateDataPropertyOrThrow(O, "type", part.[[Type]]).
  891. MUST(object->create_data_property_or_throw(vm.names.type, js_string(vm, part.type)));
  892. // c. Perform ! CreateDataPropertyOrThrow(O, "value", part.[[Value]]).
  893. MUST(object->create_data_property_or_throw(vm.names.value, js_string(vm, move(part.value))));
  894. // d. Perform ! CreateDataPropertyOrThrow(result, ! ToString(n), O).
  895. MUST(result->create_data_property_or_throw(n, object));
  896. // e. Increment n by 1.
  897. ++n;
  898. }
  899. // 5. Return result.
  900. return result;
  901. }
  902. static String cut_trailing_zeroes(StringView string, int cut)
  903. {
  904. // These steps are exactly the same between ToRawPrecision and ToRawFixed.
  905. // Repeat, while cut > 0 and the last character of m is "0",
  906. while ((cut > 0) && string.ends_with('0')) {
  907. // Remove the last character from m.
  908. string = string.substring_view(0, string.length() - 1);
  909. // Decrease cut by 1.
  910. --cut;
  911. }
  912. // If the last character of m is ".", then
  913. if (string.ends_with('.')) {
  914. // Remove the last character from m.
  915. string = string.substring_view(0, string.length() - 1);
  916. }
  917. return string.to_string();
  918. }
  919. // 15.1.10 ToRawPrecision ( x, minPrecision, maxPrecision ), https://tc39.es/ecma402/#sec-torawprecision
  920. RawFormatResult to_raw_precision(double number, int min_precision, int max_precision)
  921. {
  922. RawFormatResult result {};
  923. // 1. Let p be maxPrecision.
  924. int precision = max_precision;
  925. int exponent = 0;
  926. // 2. If x = 0, then
  927. if (number == 0.0) {
  928. // a. Let m be the String consisting of p occurrences of the character "0".
  929. result.formatted_string = String::repeated('0', precision);
  930. // b. Let e be 0.
  931. exponent = 0;
  932. // c. Let xFinal be 0.
  933. result.rounded_number = 0;
  934. }
  935. // 3. Else,
  936. else {
  937. // FIXME: The result of these steps isn't entirely accurate for large values of 'p' (which
  938. // defaults to 21, resulting in numbers on the order of 10^21). Either AK::format or
  939. // our Number::toString AO (double_to_string in Value.cpp) will need to be improved
  940. // to produce more accurate results.
  941. // a. Let e be the base 10 logarithm of x rounded down to the nearest integer.
  942. exponent = log10floor(number);
  943. double power = pow(10, exponent - precision + 1);
  944. // b. Let n be an integer such that 10^(p–1) ≤ n < 10^p and for which the exact mathematical value of n × 10^(e–p+1) – x
  945. // is as close to zero as possible. If there is more than one such n, pick the one for which n × 10^(e–p+1) is larger.
  946. double n = round(number / power);
  947. // c. Let m be the String consisting of the digits of the decimal representation of n (in order, with no leading zeroes).
  948. result.formatted_string = Value(n).to_string_without_side_effects();
  949. // d. Let xFinal be n × 10^(e–p+1).
  950. result.rounded_number = n * power;
  951. }
  952. // 4. If e ≥ p–1, then
  953. if (exponent >= (precision - 1)) {
  954. // a. Let m be the string-concatenation of m and e–p+1 occurrences of the character "0".
  955. result.formatted_string = String::formatted(
  956. "{}{}",
  957. result.formatted_string,
  958. String::repeated('0', exponent - precision + 1));
  959. // b. Let int be e+1.
  960. result.digits = exponent + 1;
  961. }
  962. // 5. Else if e ≥ 0, then
  963. else if (exponent >= 0) {
  964. // a. Let m be the string-concatenation of the first e+1 characters of m, the character ".", and the remaining p–(e+1) characters of m.
  965. result.formatted_string = String::formatted(
  966. "{}.{}",
  967. result.formatted_string.substring_view(0, exponent + 1),
  968. result.formatted_string.substring_view(exponent + 1));
  969. // b. Let int be e+1.
  970. result.digits = exponent + 1;
  971. }
  972. // 6. Else,
  973. else {
  974. // a. Assert: e < 0.
  975. // b. Let m be the string-concatenation of the String value "0.", –(e+1) occurrences of the character "0", and m.
  976. result.formatted_string = String::formatted(
  977. "0.{}{}",
  978. String::repeated('0', -1 * (exponent + 1)),
  979. result.formatted_string);
  980. // c. Let int be 1.
  981. result.digits = 1;
  982. }
  983. // 7. If m contains the character ".", and maxPrecision > minPrecision, then
  984. if (result.formatted_string.contains('.') && (max_precision > min_precision)) {
  985. // a. Let cut be maxPrecision – minPrecision.
  986. int cut = max_precision - min_precision;
  987. result.formatted_string = cut_trailing_zeroes(result.formatted_string, cut);
  988. }
  989. // 8. Return the Record { [[FormattedString]]: m, [[RoundedNumber]]: xFinal, [[IntegerDigitsCount]]: int }.
  990. return result;
  991. }
  992. // 15.1.11 ToRawFixed ( x, minInteger, minFraction, maxFraction ), https://tc39.es/ecma402/#sec-torawfixed
  993. // NOTE: The spec has a mistake here. The minInteger parameter is unused and is not provided by FormatNumericToString.
  994. RawFormatResult to_raw_fixed(double number, int min_fraction, int max_fraction)
  995. {
  996. RawFormatResult result {};
  997. // 1. Let f be maxFraction.
  998. int fraction = max_fraction;
  999. double power = pow(10, fraction);
  1000. // 2. Let n be an integer for which the exact mathematical value of n / 10^f – x is as close to zero as possible. If there are two such n, pick the larger n.
  1001. double n = round(number * power);
  1002. // 3. Let xFinal be n / 10^f.
  1003. result.rounded_number = n / power;
  1004. // 4. If n = 0, let m be the String "0". Otherwise, let m be the String consisting of the digits of the decimal representation of n (in order, with no leading zeroes).
  1005. result.formatted_string = n == 0.0 ? String("0"sv) : Value(n).to_string_without_side_effects();
  1006. // 5. If f ≠ 0, then
  1007. if (fraction != 0) {
  1008. // a. Let k be the number of characters in m.
  1009. auto decimals = result.formatted_string.length();
  1010. // b. If k ≤ f, then
  1011. if (decimals <= static_cast<size_t>(fraction)) {
  1012. // i. Let z be the String value consisting of f+1–k occurrences of the character "0".
  1013. auto zeroes = String::repeated('0', fraction + 1 - decimals);
  1014. // ii. Let m be the string-concatenation of z and m.
  1015. result.formatted_string = String::formatted("{}{}", zeroes, result.formatted_string);
  1016. // iii. Let k be f+1.
  1017. decimals = fraction + 1;
  1018. }
  1019. // c. Let a be the first k–f characters of m, and let b be the remaining f characters of m.
  1020. auto a = result.formatted_string.substring_view(0, decimals - fraction);
  1021. auto b = result.formatted_string.substring_view(decimals - fraction, fraction);
  1022. // d. Let m be the string-concatenation of a, ".", and b.
  1023. result.formatted_string = String::formatted("{}.{}", a, b);
  1024. // e. Let int be the number of characters in a.
  1025. result.digits = a.length();
  1026. }
  1027. // 6. Else, let int be the number of characters in m.
  1028. else {
  1029. result.digits = result.formatted_string.length();
  1030. }
  1031. // 7. Let cut be maxFraction – minFraction.
  1032. int cut = max_fraction - min_fraction;
  1033. result.formatted_string = cut_trailing_zeroes(result.formatted_string, cut);
  1034. // 10. Return the Record { [[FormattedString]]: m, [[RoundedNumber]]: xFinal, [[IntegerDigitsCount]]: int }.
  1035. return result;
  1036. }
  1037. // 15.1.13 SetNumberFormatUnitOptions ( intlObj, options ), https://tc39.es/ecma402/#sec-setnumberformatunitoptions
  1038. ThrowCompletionOr<void> set_number_format_unit_options(GlobalObject& global_object, NumberFormat& intl_object, Object const& options)
  1039. {
  1040. auto& vm = global_object.vm();
  1041. // 1. Assert: Type(intlObj) is Object.
  1042. // 2. Assert: Type(options) is Object.
  1043. // 3. Let style be ? GetOption(options, "style", "string", « "decimal", "percent", "currency", "unit" », "decimal").
  1044. auto style = TRY(get_option(global_object, options, vm.names.style, Value::Type::String, { "decimal"sv, "percent"sv, "currency"sv, "unit"sv }, "decimal"sv));
  1045. // 4. Set intlObj.[[Style]] to style.
  1046. intl_object.set_style(style.as_string().string());
  1047. // 5. Let currency be ? GetOption(options, "currency", "string", undefined, undefined).
  1048. auto currency = TRY(get_option(global_object, options, vm.names.currency, Value::Type::String, {}, Empty {}));
  1049. // 6. If currency is undefined, then
  1050. if (currency.is_undefined()) {
  1051. // a. If style is "currency", throw a TypeError exception.
  1052. if (intl_object.style() == NumberFormat::Style::Currency)
  1053. return vm.throw_completion<TypeError>(global_object, ErrorType::IntlOptionUndefined, "currency"sv, "style"sv, style);
  1054. }
  1055. // 7. Else,
  1056. // a. If the result of IsWellFormedCurrencyCode(currency) is false, throw a RangeError exception.
  1057. else if (!is_well_formed_currency_code(currency.as_string().string()))
  1058. return vm.throw_completion<RangeError>(global_object, ErrorType::OptionIsNotValidValue, currency, "currency"sv);
  1059. // 8. Let currencyDisplay be ? GetOption(options, "currencyDisplay", "string", « "code", "symbol", "narrowSymbol", "name" », "symbol").
  1060. auto currency_display = TRY(get_option(global_object, options, vm.names.currencyDisplay, Value::Type::String, { "code"sv, "symbol"sv, "narrowSymbol"sv, "name"sv }, "symbol"sv));
  1061. // 9. Let currencySign be ? GetOption(options, "currencySign", "string", « "standard", "accounting" », "standard").
  1062. auto currency_sign = TRY(get_option(global_object, options, vm.names.currencySign, Value::Type::String, { "standard"sv, "accounting"sv }, "standard"sv));
  1063. // 10. Let unit be ? GetOption(options, "unit", "string", undefined, undefined).
  1064. auto unit = TRY(get_option(global_object, options, vm.names.unit, Value::Type::String, {}, Empty {}));
  1065. // 11. If unit is undefined, then
  1066. if (unit.is_undefined()) {
  1067. // a. If style is "unit", throw a TypeError exception.
  1068. if (intl_object.style() == NumberFormat::Style::Unit)
  1069. return vm.throw_completion<TypeError>(global_object, ErrorType::IntlOptionUndefined, "unit"sv, "style"sv, style);
  1070. }
  1071. // 12. Else,
  1072. // a. If the result of IsWellFormedUnitIdentifier(unit) is false, throw a RangeError exception.
  1073. else if (!is_well_formed_unit_identifier(unit.as_string().string()))
  1074. return vm.throw_completion<RangeError>(global_object, ErrorType::OptionIsNotValidValue, unit, "unit"sv);
  1075. // 13. Let unitDisplay be ? GetOption(options, "unitDisplay", "string", « "short", "narrow", "long" », "short").
  1076. auto unit_display = TRY(get_option(global_object, options, vm.names.unitDisplay, Value::Type::String, { "short"sv, "narrow"sv, "long"sv }, "short"sv));
  1077. // 14. If style is "currency", then
  1078. if (intl_object.style() == NumberFormat::Style::Currency) {
  1079. // a. Let currency be the result of converting currency to upper case as specified in 6.1.
  1080. // b. Set intlObj.[[Currency]] to currency.
  1081. intl_object.set_currency(currency.as_string().string().to_uppercase());
  1082. // c. Set intlObj.[[CurrencyDisplay]] to currencyDisplay.
  1083. intl_object.set_currency_display(currency_display.as_string().string());
  1084. // d. Set intlObj.[[CurrencySign]] to currencySign.
  1085. intl_object.set_currency_sign(currency_sign.as_string().string());
  1086. }
  1087. // 15. If style is "unit", then
  1088. if (intl_object.style() == NumberFormat::Style::Unit) {
  1089. // a. Set intlObj.[[Unit]] to unit.
  1090. intl_object.set_unit(unit.as_string().string());
  1091. // b. Set intlObj.[[UnitDisplay]] to unitDisplay.
  1092. intl_object.set_unit_display(unit_display.as_string().string());
  1093. }
  1094. return {};
  1095. }
  1096. // 15.1.14 GetNumberFormatPattern ( numberFormat, x ), https://tc39.es/ecma402/#sec-getnumberformatpattern
  1097. Optional<Variant<StringView, String>> get_number_format_pattern(NumberFormat& number_format, double number)
  1098. {
  1099. // 1. Let localeData be %NumberFormat%.[[LocaleData]].
  1100. // 2. Let dataLocale be numberFormat.[[DataLocale]].
  1101. // 3. Let dataLocaleData be localeData.[[<dataLocale>]].
  1102. // 4. Let patterns be dataLocaleData.[[patterns]].
  1103. // 5. Assert: patterns is a Record (see 15.3.3).
  1104. Optional<Unicode::NumberFormat> patterns;
  1105. // 6. Let style be numberFormat.[[Style]].
  1106. switch (number_format.style()) {
  1107. // 7. If style is "percent", then
  1108. case NumberFormat::Style::Percent:
  1109. // a. Let patterns be patterns.[[percent]].
  1110. patterns = Unicode::get_standard_number_system_format(number_format.data_locale(), number_format.numbering_system(), Unicode::StandardNumberFormatType::Percent);
  1111. break;
  1112. // 8. Else if style is "unit", then
  1113. case NumberFormat::Style::Unit:
  1114. // a. Let unit be numberFormat.[[Unit]].
  1115. // b. Let unitDisplay be numberFormat.[[UnitDisplay]].
  1116. // c. Let patterns be patterns.[[unit]].
  1117. // d. If patterns doesn't have a field [[<unit>]], then
  1118. // i. Let unit be "fallback".
  1119. // e. Let patterns be patterns.[[<unit>]].
  1120. // f. Let patterns be patterns.[[<unitDisplay>]].
  1121. // FIXME: LibUnicode will need to parse the cldr-units package.
  1122. break;
  1123. // 9. Else if style is "currency", then
  1124. case NumberFormat::Style::Currency:
  1125. // a. Let currency be numberFormat.[[Currency]].
  1126. // b. Let currencyDisplay be numberFormat.[[CurrencyDisplay]].
  1127. // c. Let currencySign be numberFormat.[[CurrencySign]].
  1128. // d. Let patterns be patterns.[[currency]].
  1129. // e. If patterns doesn't have a field [[<currency>]], then
  1130. // i. Let currency be "fallback".
  1131. // f. Let patterns be patterns.[[<currency>]].
  1132. // g. Let patterns be patterns.[[<currencyDisplay>]].
  1133. // h. Let patterns be patterns.[[<currencySign>]].
  1134. // Handling of other [[CurrencyDisplay]] options will occur after [[SignDisplay]].
  1135. if (number_format.currency_display() == NumberFormat::CurrencyDisplay::Name) {
  1136. auto formats = Unicode::get_compact_number_system_formats(number_format.data_locale(), number_format.numbering_system(), Unicode::CompactNumberFormatType::CurrencyUnit);
  1137. auto maybe_patterns = Unicode::select_pattern_with_plurality(formats, number);
  1138. if (maybe_patterns.has_value()) {
  1139. patterns = maybe_patterns.release_value();
  1140. break;
  1141. }
  1142. }
  1143. switch (number_format.currency_sign()) {
  1144. case NumberFormat::CurrencySign::Standard:
  1145. patterns = Unicode::get_standard_number_system_format(number_format.data_locale(), number_format.numbering_system(), Unicode::StandardNumberFormatType::Currency);
  1146. break;
  1147. case NumberFormat::CurrencySign::Accounting:
  1148. patterns = Unicode::get_standard_number_system_format(number_format.data_locale(), number_format.numbering_system(), Unicode::StandardNumberFormatType::Accounting);
  1149. break;
  1150. }
  1151. break;
  1152. // 10. Else,
  1153. case NumberFormat::Style::Decimal:
  1154. // a. Assert: style is "decimal".
  1155. // b. Let patterns be patterns.[[decimal]].
  1156. patterns = Unicode::get_standard_number_system_format(number_format.data_locale(), number_format.numbering_system(), Unicode::StandardNumberFormatType::Decimal);
  1157. break;
  1158. default:
  1159. VERIFY_NOT_REACHED();
  1160. }
  1161. if (!patterns.has_value())
  1162. return {};
  1163. StringView pattern;
  1164. Value number_value(number);
  1165. bool is_positive_zero = number_value.is_positive_zero();
  1166. bool is_negative_zero = number_value.is_negative_zero();
  1167. bool is_nan = number_value.is_nan();
  1168. // 11. Let signDisplay be numberFormat.[[SignDisplay]].
  1169. switch (number_format.sign_display()) {
  1170. // 12. If signDisplay is "never", then
  1171. case NumberFormat::SignDisplay::Never:
  1172. // a. Let pattern be patterns.[[zeroPattern]].
  1173. pattern = patterns->zero_format;
  1174. break;
  1175. // 13. Else if signDisplay is "auto", then
  1176. case NumberFormat::SignDisplay::Auto:
  1177. // a. If x is 0 or x > 0 or x is NaN, then
  1178. if (is_positive_zero || (number > 0) || is_nan) {
  1179. // i. Let pattern be patterns.[[zeroPattern]].
  1180. pattern = patterns->zero_format;
  1181. }
  1182. // b. Else,
  1183. else {
  1184. // i. Let pattern be patterns.[[negativePattern]].
  1185. pattern = patterns->negative_format;
  1186. }
  1187. break;
  1188. // 14. Else if signDisplay is "always", then
  1189. case NumberFormat::SignDisplay::Always:
  1190. // a. If x is 0 or x > 0 or x is NaN, then
  1191. if (is_positive_zero || (number > 0) || is_nan) {
  1192. // i. Let pattern be patterns.[[positivePattern]].
  1193. pattern = patterns->positive_format;
  1194. }
  1195. // b. Else,
  1196. else {
  1197. // i. Let pattern be patterns.[[negativePattern]].
  1198. pattern = patterns->negative_format;
  1199. }
  1200. break;
  1201. // 15. Else,
  1202. case NumberFormat::SignDisplay::ExceptZero:
  1203. // a. Assert: signDisplay is "exceptZero".
  1204. // b. If x is 0 or x is -0 or x is NaN, then
  1205. if (is_positive_zero || is_negative_zero || is_nan) {
  1206. // i. Let pattern be patterns.[[zeroPattern]].
  1207. pattern = patterns->zero_format;
  1208. }
  1209. // c. Else if x > 0, then
  1210. else if (number > 0) {
  1211. // i. Let pattern be patterns.[[positivePattern]].
  1212. pattern = patterns->positive_format;
  1213. }
  1214. // d. Else,
  1215. else {
  1216. // i. Let pattern be patterns.[[negativePattern]].
  1217. pattern = patterns->negative_format;
  1218. }
  1219. break;
  1220. default:
  1221. VERIFY_NOT_REACHED();
  1222. }
  1223. // Handling of steps 9b/9g: Depending on the currency display and the format pattern found above,
  1224. // we might need to mutate the format pattern to inject a space between the currency display and
  1225. // the currency number.
  1226. if (number_format.style() == NumberFormat::Style::Currency) {
  1227. auto modified_pattern = Unicode::augment_currency_format_pattern(number_format.resolve_currency_display(), pattern);
  1228. if (modified_pattern.has_value())
  1229. return modified_pattern.release_value();
  1230. }
  1231. // 16. Return pattern.
  1232. return pattern;
  1233. }
  1234. // 15.1.15 GetNotationSubPattern ( numberFormat, exponent ), https://tc39.es/ecma402/#sec-getnotationsubpattern
  1235. Optional<StringView> get_notation_sub_pattern(NumberFormat& number_format, int exponent)
  1236. {
  1237. // 1. Let localeData be %NumberFormat%.[[LocaleData]].
  1238. // 2. Let dataLocale be numberFormat.[[DataLocale]].
  1239. // 3. Let dataLocaleData be localeData.[[<dataLocale>]].
  1240. // 4. Let notationSubPatterns be dataLocaleData.[[notationSubPatterns]].
  1241. // 5. Assert: notationSubPatterns is a Record (see 15.3.3).
  1242. // 6. Let notation be numberFormat.[[Notation]].
  1243. auto notation = number_format.notation();
  1244. // 7. If notation is "scientific" or notation is "engineering", then
  1245. if ((notation == NumberFormat::Notation::Scientific) || (notation == NumberFormat::Notation::Engineering)) {
  1246. // a. Return notationSubPatterns.[[scientific]].
  1247. auto notation_sub_patterns = Unicode::get_standard_number_system_format(number_format.data_locale(), number_format.numbering_system(), Unicode::StandardNumberFormatType::Scientific);
  1248. if (!notation_sub_patterns.has_value())
  1249. return {};
  1250. return notation_sub_patterns->zero_format;
  1251. }
  1252. // 8. Else if exponent is not 0, then
  1253. else if (exponent != 0) {
  1254. // a. Assert: notation is "compact".
  1255. VERIFY(notation == NumberFormat::Notation::Compact);
  1256. // b. Let compactDisplay be numberFormat.[[CompactDisplay]].
  1257. // c. Let compactPatterns be notationSubPatterns.[[compact]].[[<compactDisplay>]].
  1258. // d. Return compactPatterns.[[<exponent>]].
  1259. if (number_format.has_compact_format())
  1260. return number_format.compact_format().zero_format;
  1261. }
  1262. // 9. Else,
  1263. // a. Return "{number}".
  1264. return "{number}"sv;
  1265. }
  1266. // 15.1.16 ComputeExponent ( numberFormat, x ), https://tc39.es/ecma402/#sec-computeexponent
  1267. int compute_exponent(NumberFormat& number_format, double number)
  1268. {
  1269. // 1. If x = 0, then
  1270. if (number == 0.0) {
  1271. // a. Return 0.
  1272. return 0;
  1273. }
  1274. // 2. If x < 0, then
  1275. if (number < 0) {
  1276. // a. Let x = -x.
  1277. number *= -1;
  1278. }
  1279. // 3. Let magnitude be the base 10 logarithm of x rounded down to the nearest integer.
  1280. int magnitude = log10floor(number);
  1281. // 4. Let exponent be ComputeExponentForMagnitude(numberFormat, magnitude).
  1282. int exponent = compute_exponent_for_magniude(number_format, magnitude);
  1283. // 5. Let x be x × 10^(-exponent).
  1284. number *= pow(10, -exponent);
  1285. // 6. Let formatNumberResult be FormatNumericToString(numberFormat, x).
  1286. auto format_number_result = format_numeric_to_string(number_format, number);
  1287. // 7. If formatNumberResult.[[RoundedNumber]] = 0, then
  1288. if (format_number_result.rounded_number == 0) {
  1289. // a. Return exponent.
  1290. return exponent;
  1291. }
  1292. // 8. Let newMagnitude be the base 10 logarithm of formatNumberResult.[[RoundedNumber]] rounded down to the nearest integer.
  1293. int new_magnitude = log10floor(format_number_result.rounded_number);
  1294. // 9. If newMagnitude is magnitude – exponent, then
  1295. if (new_magnitude == magnitude - exponent) {
  1296. // a. Return exponent.
  1297. return exponent;
  1298. }
  1299. // 10. Return ComputeExponentForMagnitude(numberFormat, magnitude + 1).
  1300. return compute_exponent_for_magniude(number_format, magnitude + 1);
  1301. }
  1302. // 15.1.17 ComputeExponentForMagnitude ( numberFormat, magnitude ), https://tc39.es/ecma402/#sec-computeexponentformagnitude
  1303. int compute_exponent_for_magniude(NumberFormat& number_format, int magnitude)
  1304. {
  1305. // 1. Let notation be numberFormat.[[Notation]].
  1306. switch (number_format.notation()) {
  1307. // 2. If notation is "standard", then
  1308. case NumberFormat::Notation::Standard:
  1309. // a. Return 0.
  1310. return 0;
  1311. // 3. Else if notation is "scientific", then
  1312. case NumberFormat::Notation::Scientific:
  1313. // a. Return magnitude.
  1314. return magnitude;
  1315. // 4. Else if notation is "engineering", then
  1316. case NumberFormat::Notation::Engineering: {
  1317. // a. Let thousands be the greatest integer that is not greater than magnitude / 3.
  1318. double thousands = floor(static_cast<double>(magnitude) / 3.0);
  1319. // b. Return thousands × 3.
  1320. return static_cast<int>(thousands) * 3;
  1321. }
  1322. // 5. Else,
  1323. case NumberFormat::Notation::Compact: {
  1324. // a. Assert: notation is "compact".
  1325. VERIFY(number_format.has_compact_display());
  1326. // b. Let exponent be an implementation- and locale-dependent (ILD) integer by which to scale a number of the given magnitude in compact notation for the current locale.
  1327. // c. Return exponent.
  1328. Vector<Unicode::NumberFormat> format_rules;
  1329. if (number_format.style() == NumberFormat::Style::Currency)
  1330. format_rules = Unicode::get_compact_number_system_formats(number_format.data_locale(), number_format.numbering_system(), Unicode::CompactNumberFormatType::CurrencyShort);
  1331. else if (number_format.compact_display() == NumberFormat::CompactDisplay::Long)
  1332. format_rules = Unicode::get_compact_number_system_formats(number_format.data_locale(), number_format.numbering_system(), Unicode::CompactNumberFormatType::DecimalLong);
  1333. else
  1334. format_rules = Unicode::get_compact_number_system_formats(number_format.data_locale(), number_format.numbering_system(), Unicode::CompactNumberFormatType::DecimalShort);
  1335. Unicode::NumberFormat const* best_number_format = nullptr;
  1336. for (auto const& format_rule : format_rules) {
  1337. if (format_rule.magnitude > magnitude)
  1338. break;
  1339. best_number_format = &format_rule;
  1340. }
  1341. if (best_number_format == nullptr)
  1342. return 0;
  1343. number_format.set_compact_format(*best_number_format);
  1344. return best_number_format->exponent;
  1345. }
  1346. default:
  1347. VERIFY_NOT_REACHED();
  1348. }
  1349. }
  1350. }