GenerateUnicodeDateTimeFormat.cpp 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154
  1. /*
  2. * Copyright (c) 2021-2022, Tim Flynn <trflynn89@pm.me>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include "GeneratorUtil.h"
  7. #include <AK/AllOf.h>
  8. #include <AK/CharacterTypes.h>
  9. #include <AK/Format.h>
  10. #include <AK/GenericLexer.h>
  11. #include <AK/HashFunctions.h>
  12. #include <AK/HashMap.h>
  13. #include <AK/JsonObject.h>
  14. #include <AK/JsonParser.h>
  15. #include <AK/JsonValue.h>
  16. #include <AK/LexicalPath.h>
  17. #include <AK/SourceGenerator.h>
  18. #include <AK/String.h>
  19. #include <AK/StringBuilder.h>
  20. #include <AK/Traits.h>
  21. #include <AK/Utf8View.h>
  22. #include <LibCore/ArgsParser.h>
  23. #include <LibCore/DirIterator.h>
  24. #include <LibCore/File.h>
  25. #include <LibUnicode/DateTimeFormat.h>
  26. using StringIndexType = u16;
  27. constexpr auto s_string_index_type = "u16"sv;
  28. using CalendarPatternIndexType = u16;
  29. constexpr auto s_calendar_pattern_index_type = "u16"sv;
  30. using CalendarPatternListIndexType = u8;
  31. constexpr auto s_calendar_pattern_list_index_type = "u8"sv;
  32. using CalendarRangePatternIndexType = u16;
  33. constexpr auto s_calendar_range_pattern_index_type = "u16"sv;
  34. using CalendarRangePatternListIndexType = u8;
  35. constexpr auto s_calendar_range_pattern_list_index_type = "u8"sv;
  36. using CalendarFormatIndexType = u8;
  37. constexpr auto s_calendar_format_index_type = "u8"sv;
  38. using SymbolListIndexType = u16;
  39. constexpr auto s_symbol_list_index_type = "u16"sv;
  40. using CalendarSymbolsIndexType = u16;
  41. constexpr auto s_calendar_symbols_index_type = "u16"sv;
  42. using CalendarSymbolsListIndexType = u8;
  43. constexpr auto s_calendar_symbols_list_index_type = "u8"sv;
  44. using CalendarIndexType = u8;
  45. constexpr auto s_calendar_index_type = "u8"sv;
  46. using TimeZoneIndexType = u16;
  47. constexpr auto s_time_zone_index_type = "u16"sv;
  48. using TimeZoneListIndexType = u8;
  49. constexpr auto s_time_zone_list_index_type = "u8"sv;
  50. using TimeZoneFormatIndexType = u8;
  51. constexpr auto s_time_zone_format_index_type = "u8"sv;
  52. using DayPeriodIndexType = u8;
  53. constexpr auto s_day_period_index_type = "u8"sv;
  54. using DayPeriodListIndexType = u8;
  55. constexpr auto s_day_period_list_index_type = "u8"sv;
  56. using HourCycleListIndexType = u8;
  57. constexpr auto s_hour_cycle_list_index_type = "u8"sv;
  58. struct CalendarPattern : public Unicode::CalendarPattern {
  59. bool contains_only_date_fields() const
  60. {
  61. return !day_period.has_value() && !hour.has_value() && !minute.has_value() && !second.has_value() && !fractional_second_digits.has_value() && !time_zone_name.has_value();
  62. }
  63. bool contains_only_time_fields() const
  64. {
  65. return !weekday.has_value() && !era.has_value() && !year.has_value() && !month.has_value() && !day.has_value();
  66. }
  67. unsigned hash() const
  68. {
  69. auto hash = pair_int_hash(pattern_index, pattern12_index);
  70. hash = pair_int_hash(hash, skeleton_index);
  71. auto hash_field = [&](auto const& field) {
  72. if (field.has_value())
  73. hash = pair_int_hash(hash, static_cast<u8>(*field));
  74. else
  75. hash = pair_int_hash(hash, -1);
  76. };
  77. hash_field(era);
  78. hash_field(year);
  79. hash_field(month);
  80. hash_field(weekday);
  81. hash_field(day);
  82. hash_field(day_period);
  83. hash_field(hour);
  84. hash_field(minute);
  85. hash_field(second);
  86. hash_field(fractional_second_digits);
  87. hash_field(time_zone_name);
  88. return hash;
  89. }
  90. bool operator==(CalendarPattern const& other) const
  91. {
  92. return (skeleton_index == other.skeleton_index)
  93. && (pattern_index == other.pattern_index)
  94. && (pattern12_index == other.pattern12_index)
  95. && (era == other.era)
  96. && (year == other.year)
  97. && (month == other.month)
  98. && (weekday == other.weekday)
  99. && (day == other.day)
  100. && (day_period == other.day_period)
  101. && (hour == other.hour)
  102. && (minute == other.minute)
  103. && (second == other.second)
  104. && (fractional_second_digits == other.fractional_second_digits)
  105. && (time_zone_name == other.time_zone_name);
  106. }
  107. StringIndexType skeleton_index { 0 };
  108. StringIndexType pattern_index { 0 };
  109. StringIndexType pattern12_index { 0 };
  110. };
  111. template<>
  112. struct AK::Formatter<CalendarPattern> : Formatter<FormatString> {
  113. ErrorOr<void> format(FormatBuilder& builder, CalendarPattern const& pattern)
  114. {
  115. auto field_to_i8 = [](auto const& field) -> i8 {
  116. if (!field.has_value())
  117. return -1;
  118. return static_cast<i8>(*field);
  119. };
  120. return Formatter<FormatString>::format(builder,
  121. "{{ {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {} }}",
  122. pattern.skeleton_index,
  123. pattern.pattern_index,
  124. pattern.pattern12_index,
  125. field_to_i8(pattern.era),
  126. field_to_i8(pattern.year),
  127. field_to_i8(pattern.month),
  128. field_to_i8(pattern.weekday),
  129. field_to_i8(pattern.day),
  130. field_to_i8(pattern.day_period),
  131. field_to_i8(pattern.hour),
  132. field_to_i8(pattern.minute),
  133. field_to_i8(pattern.second),
  134. field_to_i8(pattern.fractional_second_digits),
  135. field_to_i8(pattern.time_zone_name));
  136. }
  137. };
  138. template<>
  139. struct AK::Traits<CalendarPattern> : public GenericTraits<CalendarPattern> {
  140. static unsigned hash(CalendarPattern const& c) { return c.hash(); }
  141. };
  142. struct CalendarRangePattern : public CalendarPattern {
  143. unsigned hash() const
  144. {
  145. auto hash = CalendarPattern::hash();
  146. if (field.has_value())
  147. hash = pair_int_hash(hash, static_cast<u8>(*field));
  148. hash = pair_int_hash(hash, start_range);
  149. hash = pair_int_hash(hash, separator);
  150. hash = pair_int_hash(hash, end_range);
  151. return hash;
  152. }
  153. bool operator==(CalendarRangePattern const& other) const
  154. {
  155. if (!CalendarPattern::operator==(other))
  156. return false;
  157. return (field == other.field)
  158. && (start_range == other.start_range)
  159. && (separator == other.separator)
  160. && (end_range == other.end_range);
  161. }
  162. Optional<Unicode::CalendarRangePattern::Field> field {};
  163. StringIndexType start_range { 0 };
  164. StringIndexType separator { 0 };
  165. StringIndexType end_range { 0 };
  166. };
  167. template<>
  168. struct AK::Formatter<CalendarRangePattern> : Formatter<FormatString> {
  169. ErrorOr<void> format(FormatBuilder& builder, CalendarRangePattern const& pattern)
  170. {
  171. auto field_to_i8 = [](auto const& field) -> i8 {
  172. if (!field.has_value())
  173. return -1;
  174. return static_cast<i8>(*field);
  175. };
  176. return Formatter<FormatString>::format(builder,
  177. "{{ {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {} }}",
  178. pattern.skeleton_index,
  179. field_to_i8(pattern.field),
  180. pattern.start_range,
  181. pattern.separator,
  182. pattern.end_range,
  183. field_to_i8(pattern.era),
  184. field_to_i8(pattern.year),
  185. field_to_i8(pattern.month),
  186. field_to_i8(pattern.weekday),
  187. field_to_i8(pattern.day),
  188. field_to_i8(pattern.day_period),
  189. field_to_i8(pattern.hour),
  190. field_to_i8(pattern.minute),
  191. field_to_i8(pattern.second),
  192. field_to_i8(pattern.fractional_second_digits),
  193. field_to_i8(pattern.time_zone_name));
  194. }
  195. };
  196. template<>
  197. struct AK::Traits<CalendarRangePattern> : public GenericTraits<CalendarRangePattern> {
  198. static unsigned hash(CalendarRangePattern const& c) { return c.hash(); }
  199. };
  200. struct CalendarFormat {
  201. unsigned hash() const
  202. {
  203. auto hash = pair_int_hash(full_format, long_format);
  204. hash = pair_int_hash(hash, medium_format);
  205. hash = pair_int_hash(hash, short_format);
  206. return hash;
  207. }
  208. bool operator==(CalendarFormat const& other) const
  209. {
  210. return (full_format == other.full_format)
  211. && (long_format == other.long_format)
  212. && (medium_format == other.medium_format)
  213. && (short_format == other.short_format);
  214. }
  215. CalendarPatternIndexType full_format { 0 };
  216. CalendarPatternIndexType long_format { 0 };
  217. CalendarPatternIndexType medium_format { 0 };
  218. CalendarPatternIndexType short_format { 0 };
  219. };
  220. template<>
  221. struct AK::Formatter<CalendarFormat> : Formatter<FormatString> {
  222. ErrorOr<void> format(FormatBuilder& builder, CalendarFormat const& pattern)
  223. {
  224. return Formatter<FormatString>::format(builder,
  225. "{{ {}, {}, {}, {} }}",
  226. pattern.full_format,
  227. pattern.long_format,
  228. pattern.medium_format,
  229. pattern.short_format);
  230. }
  231. };
  232. template<>
  233. struct AK::Traits<CalendarFormat> : public GenericTraits<CalendarFormat> {
  234. static unsigned hash(CalendarFormat const& c) { return c.hash(); }
  235. };
  236. using SymbolList = Vector<StringIndexType>;
  237. struct CalendarSymbols {
  238. unsigned hash() const
  239. {
  240. auto hash = pair_int_hash(narrow_symbols, short_symbols);
  241. hash = pair_int_hash(hash, long_symbols);
  242. return hash;
  243. }
  244. bool operator==(CalendarSymbols const& other) const
  245. {
  246. return (narrow_symbols == other.narrow_symbols)
  247. && (short_symbols == other.short_symbols)
  248. && (long_symbols == other.long_symbols);
  249. }
  250. SymbolListIndexType narrow_symbols { 0 };
  251. SymbolListIndexType short_symbols { 0 };
  252. SymbolListIndexType long_symbols { 0 };
  253. };
  254. template<>
  255. struct AK::Formatter<CalendarSymbols> : Formatter<FormatString> {
  256. ErrorOr<void> format(FormatBuilder& builder, CalendarSymbols const& symbols)
  257. {
  258. return Formatter<FormatString>::format(builder,
  259. "{{ {}, {}, {} }}",
  260. symbols.narrow_symbols,
  261. symbols.short_symbols,
  262. symbols.long_symbols);
  263. }
  264. };
  265. template<>
  266. struct AK::Traits<CalendarSymbols> : public GenericTraits<CalendarSymbols> {
  267. static unsigned hash(CalendarSymbols const& c) { return c.hash(); }
  268. };
  269. using CalendarPatternList = Vector<CalendarPatternIndexType>;
  270. using CalendarRangePatternList = Vector<CalendarRangePatternIndexType>;
  271. using CalendarSymbolsList = Vector<CalendarSymbolsIndexType>;
  272. struct Calendar {
  273. unsigned hash() const
  274. {
  275. auto hash = int_hash(date_formats);
  276. hash = pair_int_hash(hash, time_formats);
  277. hash = pair_int_hash(hash, date_time_formats);
  278. hash = pair_int_hash(hash, available_formats);
  279. hash = pair_int_hash(hash, default_range_format);
  280. hash = pair_int_hash(hash, range_formats);
  281. hash = pair_int_hash(hash, range12_formats);
  282. hash = pair_int_hash(hash, symbols);
  283. return hash;
  284. }
  285. bool operator==(Calendar const& other) const
  286. {
  287. return (date_formats == other.date_formats)
  288. && (time_formats == other.time_formats)
  289. && (date_time_formats == other.date_time_formats)
  290. && (available_formats == other.available_formats)
  291. && (default_range_format == other.default_range_format)
  292. && (range_formats == other.range_formats)
  293. && (range12_formats == other.range12_formats)
  294. && (symbols == other.symbols);
  295. }
  296. CalendarFormatIndexType date_formats { 0 };
  297. CalendarFormatIndexType time_formats { 0 };
  298. CalendarFormatIndexType date_time_formats { 0 };
  299. CalendarPatternListIndexType available_formats { 0 };
  300. CalendarRangePatternIndexType default_range_format { 0 };
  301. CalendarRangePatternListIndexType range_formats { 0 };
  302. CalendarRangePatternListIndexType range12_formats { 0 };
  303. CalendarSymbolsListIndexType symbols { 0 };
  304. };
  305. template<>
  306. struct AK::Formatter<Calendar> : Formatter<FormatString> {
  307. ErrorOr<void> format(FormatBuilder& builder, Calendar const& calendar)
  308. {
  309. return Formatter<FormatString>::format(builder,
  310. "{{ {}, {}, {}, {}, {}, {}, {}, {} }}",
  311. calendar.date_formats,
  312. calendar.time_formats,
  313. calendar.date_time_formats,
  314. calendar.available_formats,
  315. calendar.default_range_format,
  316. calendar.range_formats,
  317. calendar.range12_formats,
  318. calendar.symbols);
  319. }
  320. };
  321. template<>
  322. struct AK::Traits<Calendar> : public GenericTraits<Calendar> {
  323. static unsigned hash(Calendar const& c) { return c.hash(); }
  324. };
  325. struct TimeZone {
  326. unsigned hash() const
  327. {
  328. return pair_int_hash(long_name, short_name);
  329. }
  330. bool operator==(TimeZone const& other) const
  331. {
  332. return (long_name == other.long_name) && (short_name == other.short_name);
  333. }
  334. StringIndexType long_name { 0 };
  335. StringIndexType short_name { 0 };
  336. };
  337. template<>
  338. struct AK::Formatter<TimeZone> : Formatter<FormatString> {
  339. ErrorOr<void> format(FormatBuilder& builder, TimeZone const& time_zone)
  340. {
  341. return Formatter<FormatString>::format(builder,
  342. "{{ {}, {} }}",
  343. time_zone.long_name,
  344. time_zone.short_name);
  345. }
  346. };
  347. template<>
  348. struct AK::Traits<TimeZone> : public GenericTraits<TimeZone> {
  349. static unsigned hash(TimeZone const& t) { return t.hash(); }
  350. };
  351. struct TimeZoneFormat {
  352. unsigned hash() const
  353. {
  354. return int_hash(gmt_zero_format);
  355. }
  356. bool operator==(TimeZoneFormat const& other) const
  357. {
  358. return gmt_zero_format == other.gmt_zero_format;
  359. }
  360. StringIndexType gmt_zero_format { 0 };
  361. };
  362. template<>
  363. struct AK::Formatter<TimeZoneFormat> : Formatter<FormatString> {
  364. ErrorOr<void> format(FormatBuilder& builder, TimeZoneFormat const& time_zone_format)
  365. {
  366. return Formatter<FormatString>::format(builder, "{{ {} }}", time_zone_format.gmt_zero_format);
  367. }
  368. };
  369. template<>
  370. struct AK::Traits<TimeZoneFormat> : public GenericTraits<TimeZoneFormat> {
  371. static unsigned hash(TimeZoneFormat const& t) { return t.hash(); }
  372. };
  373. struct DayPeriod {
  374. unsigned hash() const
  375. {
  376. auto hash = int_hash(static_cast<u8>(day_period));
  377. hash = pair_int_hash(hash, begin);
  378. hash = pair_int_hash(hash, end);
  379. return hash;
  380. }
  381. bool operator==(DayPeriod const& other) const
  382. {
  383. return (day_period == other.day_period)
  384. && (begin == other.begin)
  385. && (end == other.end);
  386. }
  387. Unicode::DayPeriod day_period {};
  388. u8 begin { 0 };
  389. u8 end { 0 };
  390. };
  391. template<>
  392. struct AK::Formatter<DayPeriod> : Formatter<FormatString> {
  393. ErrorOr<void> format(FormatBuilder& builder, DayPeriod const& day_period)
  394. {
  395. return Formatter<FormatString>::format(builder,
  396. "{{ {}, {}, {} }}",
  397. static_cast<u8>(day_period.day_period),
  398. day_period.begin,
  399. day_period.end);
  400. }
  401. };
  402. template<>
  403. struct AK::Traits<DayPeriod> : public GenericTraits<DayPeriod> {
  404. static unsigned hash(DayPeriod const& d) { return d.hash(); }
  405. };
  406. using TimeZoneList = Vector<TimeZoneIndexType>;
  407. using DayPeriodList = Vector<DayPeriodIndexType>;
  408. using HourCycleList = Vector<Unicode::HourCycle>;
  409. template<>
  410. struct AK::Formatter<Unicode::HourCycle> : Formatter<FormatString> {
  411. ErrorOr<void> format(FormatBuilder& builder, Unicode::HourCycle hour_cycle)
  412. {
  413. return Formatter<FormatString>::format(builder, "{}", to_underlying(hour_cycle));
  414. }
  415. };
  416. struct Locale {
  417. HashMap<String, CalendarIndexType> calendars;
  418. TimeZoneListIndexType time_zones { 0 };
  419. TimeZoneFormatIndexType time_zone_formats { 0 };
  420. DayPeriodListIndexType day_periods { 0 };
  421. };
  422. struct UnicodeLocaleData {
  423. UniqueStringStorage<StringIndexType> unique_strings;
  424. UniqueStorage<CalendarPattern, CalendarPatternIndexType> unique_patterns;
  425. UniqueStorage<CalendarPatternList, CalendarPatternListIndexType> unique_pattern_lists;
  426. UniqueStorage<CalendarRangePattern, CalendarRangePatternIndexType> unique_range_patterns;
  427. UniqueStorage<CalendarRangePatternList, CalendarRangePatternListIndexType> unique_range_pattern_lists;
  428. UniqueStorage<CalendarFormat, CalendarFormatIndexType> unique_formats;
  429. UniqueStorage<SymbolList, SymbolListIndexType> unique_symbol_lists;
  430. UniqueStorage<CalendarSymbols, CalendarSymbolsIndexType> unique_calendar_symbols;
  431. UniqueStorage<CalendarSymbolsList, CalendarSymbolsListIndexType> unique_calendar_symbols_lists;
  432. UniqueStorage<Calendar, CalendarIndexType> unique_calendars;
  433. UniqueStorage<TimeZone, TimeZoneIndexType> unique_time_zones;
  434. UniqueStorage<TimeZoneList, TimeZoneListIndexType> unique_time_zone_lists;
  435. UniqueStorage<TimeZoneFormat, TimeZoneFormatIndexType> unique_time_zone_formats;
  436. UniqueStorage<DayPeriod, DayPeriodIndexType> unique_day_periods;
  437. UniqueStorage<DayPeriodList, DayPeriodListIndexType> unique_day_period_lists;
  438. UniqueStorage<HourCycleList, HourCycleListIndexType> unique_hour_cycle_lists;
  439. HashMap<String, Locale> locales;
  440. HashMap<String, HourCycleListIndexType> hour_cycles;
  441. Vector<String> hour_cycle_regions;
  442. HashMap<String, String> meta_zones;
  443. Vector<String> time_zones { "UTC"sv };
  444. Vector<String> calendars;
  445. Vector<Alias> calendar_aliases {
  446. // FIXME: Aliases should come from BCP47. See: https://unicode-org.atlassian.net/browse/CLDR-15158
  447. { "gregorian"sv, "gregory"sv },
  448. };
  449. };
  450. static Optional<Unicode::DayPeriod> day_period_from_string(StringView day_period)
  451. {
  452. if (day_period == "am"sv)
  453. return Unicode::DayPeriod::AM;
  454. if (day_period == "pm"sv)
  455. return Unicode::DayPeriod::PM;
  456. if (day_period == "morning1"sv)
  457. return Unicode::DayPeriod::Morning1;
  458. if (day_period == "morning2"sv)
  459. return Unicode::DayPeriod::Morning2;
  460. if (day_period == "afternoon1"sv)
  461. return Unicode::DayPeriod::Afternoon1;
  462. if (day_period == "afternoon2"sv)
  463. return Unicode::DayPeriod::Afternoon2;
  464. if (day_period == "evening1"sv)
  465. return Unicode::DayPeriod::Evening1;
  466. if (day_period == "evening2"sv)
  467. return Unicode::DayPeriod::Evening2;
  468. if (day_period == "night1"sv)
  469. return Unicode::DayPeriod::Night1;
  470. if (day_period == "night2"sv)
  471. return Unicode::DayPeriod::Night2;
  472. return {};
  473. };
  474. static ErrorOr<void> parse_hour_cycles(String core_path, UnicodeLocaleData& locale_data)
  475. {
  476. // https://unicode.org/reports/tr35/tr35-dates.html#Time_Data
  477. LexicalPath time_data_path(move(core_path));
  478. time_data_path = time_data_path.append("supplemental"sv);
  479. time_data_path = time_data_path.append("timeData.json"sv);
  480. auto time_data_file = TRY(Core::File::open(time_data_path.string(), Core::OpenMode::ReadOnly));
  481. auto time_data = TRY(JsonValue::from_string(time_data_file->read_all()));
  482. auto const& supplemental_object = time_data.as_object().get("supplemental"sv);
  483. auto const& time_data_object = supplemental_object.as_object().get("timeData"sv);
  484. auto parse_hour_cycle = [](StringView hour_cycle) -> Optional<Unicode::HourCycle> {
  485. if (hour_cycle == "h"sv)
  486. return Unicode::HourCycle::H12;
  487. if (hour_cycle == "H"sv)
  488. return Unicode::HourCycle::H23;
  489. if (hour_cycle == "K"sv)
  490. return Unicode::HourCycle::H11;
  491. if (hour_cycle == "k"sv)
  492. return Unicode::HourCycle::H24;
  493. return {};
  494. };
  495. time_data_object.as_object().for_each_member([&](auto const& key, JsonValue const& value) {
  496. auto allowed_hour_cycles_string = value.as_object().get("_allowed"sv).as_string();
  497. auto allowed_hour_cycles = allowed_hour_cycles_string.split_view(' ');
  498. Vector<Unicode::HourCycle> hour_cycles;
  499. for (auto allowed_hour_cycle : allowed_hour_cycles) {
  500. if (auto hour_cycle = parse_hour_cycle(allowed_hour_cycle); hour_cycle.has_value())
  501. hour_cycles.append(*hour_cycle);
  502. }
  503. auto hour_cycles_index = locale_data.unique_hour_cycle_lists.ensure(move(hour_cycles));
  504. locale_data.hour_cycles.set(key, hour_cycles_index);
  505. if (!locale_data.hour_cycle_regions.contains_slow(key))
  506. locale_data.hour_cycle_regions.append(key);
  507. });
  508. return {};
  509. };
  510. static ErrorOr<void> parse_meta_zones(String core_path, UnicodeLocaleData& locale_data)
  511. {
  512. // https://unicode.org/reports/tr35/tr35-dates.html#Metazones
  513. LexicalPath meta_zone_path(move(core_path));
  514. meta_zone_path = meta_zone_path.append("supplemental"sv);
  515. meta_zone_path = meta_zone_path.append("metaZones.json"sv);
  516. auto meta_zone_file = TRY(Core::File::open(meta_zone_path.string(), Core::OpenMode::ReadOnly));
  517. auto meta_zone = TRY(JsonValue::from_string(meta_zone_file->read_all()));
  518. auto const& supplemental_object = meta_zone.as_object().get("supplemental"sv);
  519. auto const& meta_zone_object = supplemental_object.as_object().get("metaZones"sv);
  520. auto const& meta_zone_array = meta_zone_object.as_object().get("metazones"sv);
  521. meta_zone_array.as_array().for_each([&](JsonValue const& value) {
  522. auto const& mapping = value.as_object().get("mapZone"sv);
  523. auto const& meta_zone = mapping.as_object().get("_other"sv);
  524. auto const& golden_zone = mapping.as_object().get("_type"sv);
  525. locale_data.meta_zones.set(meta_zone.as_string(), golden_zone.as_string());
  526. });
  527. // UTC does not appear in metaZones.json. Define it for convenience so other parsers don't need to check for its existence.
  528. locale_data.meta_zones.set("UTC"sv, "UTC"sv);
  529. return {};
  530. };
  531. static constexpr auto is_char(char ch)
  532. {
  533. return [ch](auto c) { return c == ch; };
  534. }
  535. // For patterns that are 12-hour aware, we need to generate two patterns: one with the day period
  536. // (e.g. {ampm}) in the pattern, and one without the day period. We need to take care to remove
  537. // extra spaces around the day period. Some example expected removals:
  538. //
  539. // "{hour}:{minute} {ampm}" becomes "{hour}:{minute}" (remove the space before {ampm})
  540. // "{ampm} {hour}" becomes "{hour}" (remove the space after {ampm})
  541. // "{hour}:{minute} {ampm} {timeZoneName}" becomes "{hour}:{minute} {timeZoneName}" (remove one of the spaces around {ampm})
  542. static String remove_period_from_pattern(String pattern)
  543. {
  544. for (auto remove : AK::Array { "({ampm})"sv, "{ampm}"sv, "({dayPeriod})"sv, "{dayPeriod}"sv }) {
  545. auto index = pattern.find(remove);
  546. if (!index.has_value())
  547. continue;
  548. constexpr u32 space = ' ';
  549. constexpr u32 open = '{';
  550. constexpr u32 close = '}';
  551. Utf8View utf8_pattern { pattern };
  552. Optional<u32> before_removal;
  553. Optional<u32> after_removal;
  554. for (auto it = utf8_pattern.begin(); utf8_pattern.byte_offset_of(it) < *index; ++it)
  555. before_removal = *it;
  556. if (auto it = utf8_pattern.iterator_at_byte_offset(*index + remove.length()); it != utf8_pattern.end())
  557. after_removal = *it;
  558. if ((before_removal == space) && (after_removal != open)) {
  559. pattern = String::formatted("{}{}",
  560. pattern.substring_view(0, *index - 1),
  561. pattern.substring_view(*index + remove.length()));
  562. } else if ((after_removal == space) && (before_removal != close)) {
  563. pattern = String::formatted("{}{}",
  564. pattern.substring_view(0, *index),
  565. pattern.substring_view(*index + remove.length() + 1));
  566. } else {
  567. pattern = String::formatted("{}{}",
  568. pattern.substring_view(0, *index),
  569. pattern.substring_view(*index + remove.length()));
  570. }
  571. }
  572. return pattern;
  573. }
  574. static Optional<CalendarPattern> parse_date_time_pattern_raw(String pattern, String skeleton, UnicodeLocaleData& locale_data)
  575. {
  576. // https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
  577. using Unicode::CalendarPatternStyle;
  578. CalendarPattern format {};
  579. if (!skeleton.is_empty())
  580. format.skeleton_index = locale_data.unique_strings.ensure(move(skeleton));
  581. GenericLexer lexer { pattern };
  582. StringBuilder builder;
  583. bool hour12 { false };
  584. while (!lexer.is_eof()) {
  585. // Literal strings enclosed by quotes are to be appended to the pattern as-is without further
  586. // processing (this just avoids conflicts with the patterns below).
  587. if (lexer.next_is(is_quote)) {
  588. builder.append(lexer.consume_quoted_string());
  589. continue;
  590. }
  591. auto starting_char = lexer.peek();
  592. auto segment = lexer.consume_while([&](char ch) { return ch == starting_char; });
  593. // Era
  594. if (all_of(segment, is_char('G'))) {
  595. builder.append("{era}");
  596. if (segment.length() <= 3)
  597. format.era = CalendarPatternStyle::Short;
  598. else if (segment.length() == 4)
  599. format.era = CalendarPatternStyle::Long;
  600. else
  601. format.era = CalendarPatternStyle::Narrow;
  602. }
  603. // Year
  604. else if (all_of(segment, is_any_of("yYuUr"sv))) {
  605. builder.append("{year}");
  606. if (segment.length() == 2)
  607. format.year = CalendarPatternStyle::TwoDigit;
  608. else
  609. format.year = CalendarPatternStyle::Numeric;
  610. }
  611. // Quarter
  612. else if (all_of(segment, is_any_of("qQ"sv))) {
  613. // Intl.DateTimeFormat does not support quarter formatting, so drop these patterns.
  614. return {};
  615. }
  616. // Month
  617. else if (all_of(segment, is_any_of("ML"sv))) {
  618. builder.append("{month}");
  619. if (segment.length() == 1)
  620. format.month = CalendarPatternStyle::Numeric;
  621. else if (segment.length() == 2)
  622. format.month = CalendarPatternStyle::TwoDigit;
  623. else if (segment.length() == 3)
  624. format.month = CalendarPatternStyle::Short;
  625. else if (segment.length() == 4)
  626. format.month = CalendarPatternStyle::Long;
  627. else if (segment.length() == 5)
  628. format.month = CalendarPatternStyle::Narrow;
  629. } else if (all_of(segment, is_char('l'))) {
  630. // Using 'l' for month formatting is deprecated by TR-35, ensure it is not used.
  631. return {};
  632. }
  633. // Week
  634. else if (all_of(segment, is_any_of("wW"sv))) {
  635. // Intl.DateTimeFormat does not support week formatting, so drop these patterns.
  636. return {};
  637. }
  638. // Day
  639. else if (all_of(segment, is_char('d'))) {
  640. builder.append("{day}");
  641. if (segment.length() == 1)
  642. format.day = CalendarPatternStyle::Numeric;
  643. else
  644. format.day = CalendarPatternStyle::TwoDigit;
  645. } else if (all_of(segment, is_any_of("DFg"sv))) {
  646. builder.append("{day}");
  647. format.day = CalendarPatternStyle::Numeric;
  648. }
  649. // Weekday
  650. else if (all_of(segment, is_char('E'))) {
  651. builder.append("{weekday}");
  652. if (segment.length() == 4)
  653. format.weekday = CalendarPatternStyle::Long;
  654. else if (segment.length() == 5)
  655. format.weekday = CalendarPatternStyle::Narrow;
  656. else
  657. format.weekday = CalendarPatternStyle::Short;
  658. } else if (all_of(segment, is_any_of("ec"sv))) {
  659. builder.append("{weekday}");
  660. // TR-35 defines "e", "c", and "cc" as as numeric, and "ee" as 2-digit, but those
  661. // pattern styles are not supported by Intl.DateTimeFormat.
  662. if (segment.length() <= 2)
  663. return {};
  664. if (segment.length() == 4)
  665. format.weekday = CalendarPatternStyle::Long;
  666. else if (segment.length() == 5)
  667. format.weekday = CalendarPatternStyle::Narrow;
  668. else
  669. format.weekday = CalendarPatternStyle::Short;
  670. }
  671. // Period
  672. else if (all_of(segment, is_any_of("ab"sv))) {
  673. builder.append("{ampm}");
  674. hour12 = true;
  675. } else if (all_of(segment, is_char('B'))) {
  676. builder.append("{dayPeriod}");
  677. hour12 = true;
  678. if (segment.length() == 4)
  679. format.day_period = CalendarPatternStyle::Long;
  680. else if (segment.length() == 5)
  681. format.day_period = CalendarPatternStyle::Narrow;
  682. else
  683. format.day_period = CalendarPatternStyle::Short;
  684. }
  685. // Hour
  686. else if (all_of(segment, is_any_of("hHKk"sv))) {
  687. builder.append("{hour}");
  688. if ((segment[0] == 'h') || (segment[0] == 'K'))
  689. hour12 = true;
  690. if (segment.length() == 1)
  691. format.hour = CalendarPatternStyle::Numeric;
  692. else
  693. format.hour = CalendarPatternStyle::TwoDigit;
  694. } else if (all_of(segment, is_any_of("jJC"sv))) {
  695. // TR-35 indicates these should not be used.
  696. return {};
  697. }
  698. // Minute
  699. else if (all_of(segment, is_char('m'))) {
  700. builder.append("{minute}");
  701. if (segment.length() == 1)
  702. format.minute = CalendarPatternStyle::Numeric;
  703. else
  704. format.minute = CalendarPatternStyle::TwoDigit;
  705. }
  706. // Second
  707. else if (all_of(segment, is_char('s'))) {
  708. builder.append("{second}");
  709. if (segment.length() == 1)
  710. format.second = CalendarPatternStyle::Numeric;
  711. else
  712. format.second = CalendarPatternStyle::TwoDigit;
  713. } else if (all_of(segment, is_char('S'))) {
  714. builder.append("{fractionalSecondDigits}");
  715. VERIFY(segment.length() <= 3);
  716. format.fractional_second_digits = static_cast<u8>(segment.length());
  717. } else if (all_of(segment, is_char('A'))) {
  718. // Intl.DateTimeFormat does not support millisecond formatting, so drop these patterns.
  719. return {};
  720. }
  721. // Zone
  722. else if (all_of(segment, is_any_of("zV"sv))) {
  723. builder.append("{timeZoneName}");
  724. if (segment.length() < 4)
  725. format.time_zone_name = CalendarPatternStyle::Short;
  726. else
  727. format.time_zone_name = CalendarPatternStyle::Long;
  728. } else if (all_of(segment, is_any_of("ZOXx"sv))) {
  729. builder.append("{timeZoneName}");
  730. if (segment.length() < 4)
  731. format.time_zone_name = CalendarPatternStyle::ShortOffset;
  732. else
  733. format.time_zone_name = CalendarPatternStyle::LongOffset;
  734. } else if (all_of(segment, is_char('v'))) {
  735. builder.append("{timeZoneName}");
  736. if (segment.length() < 4)
  737. format.time_zone_name = CalendarPatternStyle::ShortGeneric;
  738. else
  739. format.time_zone_name = CalendarPatternStyle::LongGeneric;
  740. }
  741. // Non-patterns
  742. else {
  743. builder.append(segment);
  744. }
  745. }
  746. pattern = builder.build();
  747. if (hour12) {
  748. format.pattern = remove_period_from_pattern(pattern);
  749. format.pattern12 = move(pattern);
  750. } else {
  751. format.pattern = move(pattern);
  752. }
  753. return format;
  754. }
  755. static Optional<CalendarPatternIndexType> parse_date_time_pattern(String pattern, String skeleton, UnicodeLocaleData& locale_data)
  756. {
  757. auto format = parse_date_time_pattern_raw(move(pattern), move(skeleton), locale_data);
  758. if (!format.has_value())
  759. return {};
  760. format->pattern_index = locale_data.unique_strings.ensure(move(format->pattern));
  761. if (format->pattern12.has_value())
  762. format->pattern12_index = locale_data.unique_strings.ensure(format->pattern12.release_value());
  763. return locale_data.unique_patterns.ensure(format.release_value());
  764. }
  765. template<typename... Chars>
  766. static constexpr bool char_is_one_of(char ch, Chars&&... chars)
  767. {
  768. return ((ch == chars) || ...);
  769. }
  770. static void parse_interval_patterns(Calendar& calendar, JsonObject const& interval_formats_object, UnicodeLocaleData& locale_data)
  771. {
  772. // https://unicode.org/reports/tr35/tr35-dates.html#intervalFormats
  773. CalendarRangePatternList range_formats {};
  774. CalendarRangePatternList range12_formats {};
  775. auto name_of_field = [&](char field) {
  776. if (char_is_one_of(field, 'G'))
  777. return Unicode::CalendarRangePattern::Field::Era;
  778. if (char_is_one_of(field, 'y', 'Y', 'u', 'U', 'r'))
  779. return Unicode::CalendarRangePattern::Field::Year;
  780. if (char_is_one_of(field, 'M', 'L'))
  781. return Unicode::CalendarRangePattern::Field::Month;
  782. if (char_is_one_of(field, 'd', 'D', 'F', 'g'))
  783. return Unicode::CalendarRangePattern::Field::Day;
  784. if (char_is_one_of(field, 'a', 'b'))
  785. return Unicode::CalendarRangePattern::Field::AmPm;
  786. if (char_is_one_of(field, 'B'))
  787. return Unicode::CalendarRangePattern::Field::DayPeriod;
  788. if (char_is_one_of(field, 'h', 'H', 'K', 'k'))
  789. return Unicode::CalendarRangePattern::Field::Hour;
  790. if (char_is_one_of(field, 'm'))
  791. return Unicode::CalendarRangePattern::Field::Minute;
  792. if (char_is_one_of(field, 's'))
  793. return Unicode::CalendarRangePattern::Field::Second;
  794. if (char_is_one_of(field, 'S'))
  795. return Unicode::CalendarRangePattern::Field::FractionalSecondDigits;
  796. VERIFY_NOT_REACHED();
  797. };
  798. auto split_default_range_pattern = [&](auto skeleton, auto const& pattern) {
  799. auto start_range_end = pattern.find('}').value() + 1;
  800. auto end_range_begin = pattern.find_last('{').value();
  801. auto start_range = pattern.substring_view(0, start_range_end);
  802. auto separator = pattern.substring_view(start_range_end, end_range_begin - start_range_end);
  803. auto end_range = pattern.substring_view(end_range_begin);
  804. CalendarRangePattern format {};
  805. format.skeleton_index = locale_data.unique_strings.ensure(skeleton);
  806. format.start_range = locale_data.unique_strings.ensure(start_range);
  807. format.separator = locale_data.unique_strings.ensure(separator);
  808. format.end_range = locale_data.unique_strings.ensure(end_range);
  809. return format;
  810. };
  811. auto split_range_pattern = [&](auto skeleton, auto field, auto const& pattern, auto const& parsed_fields) {
  812. HashMap<StringView, size_t> partitions;
  813. StringView last_partition;
  814. auto begin_index = pattern.find('{');
  815. size_t end_index = 0;
  816. while (begin_index.has_value()) {
  817. end_index = pattern.find('}', *begin_index).value();
  818. auto partition = pattern.substring_view(*begin_index, end_index - *begin_index);
  819. if (partitions.contains(partition))
  820. break;
  821. partitions.set(partition, *begin_index);
  822. last_partition = partition;
  823. begin_index = pattern.find('{', end_index + 1);
  824. }
  825. VERIFY(begin_index.has_value() && !last_partition.is_empty());
  826. auto start_range_end = partitions.get(last_partition).value() + last_partition.length() + 1;
  827. auto start_range = pattern.substring_view(0, start_range_end);
  828. auto separator = pattern.substring_view(start_range_end, *begin_index - start_range_end);
  829. auto end_range = pattern.substring_view(*begin_index);
  830. CalendarRangePattern format {};
  831. format.skeleton_index = locale_data.unique_strings.ensure(skeleton);
  832. format.field = field;
  833. format.start_range = locale_data.unique_strings.ensure(start_range);
  834. format.separator = locale_data.unique_strings.ensure(separator);
  835. format.end_range = locale_data.unique_strings.ensure(end_range);
  836. format.for_each_calendar_field_zipped_with(parsed_fields, [](auto& format_field, auto const& parsed_field, auto) {
  837. format_field = parsed_field;
  838. });
  839. return format;
  840. };
  841. interval_formats_object.for_each_member([&](auto const& skeleton, auto const& value) {
  842. if (skeleton == "intervalFormatFallback"sv) {
  843. auto range_format = split_default_range_pattern(skeleton, value.as_string());
  844. calendar.default_range_format = locale_data.unique_range_patterns.ensure(move(range_format));
  845. return;
  846. }
  847. value.as_object().for_each_member([&](auto const& field, auto const& pattern) {
  848. if (field.ends_with("alt-variant"sv))
  849. return;
  850. VERIFY(field.length() == 1);
  851. auto name = name_of_field(field[0]);
  852. auto format = parse_date_time_pattern_raw(pattern.as_string(), skeleton, locale_data).release_value();
  853. auto range_format = split_range_pattern(skeleton, name, format.pattern, format);
  854. range_formats.append(locale_data.unique_range_patterns.ensure(move(range_format)));
  855. if (format.pattern12.has_value()) {
  856. auto range12_pattern = split_range_pattern(skeleton, name, *format.pattern12, format);
  857. range12_formats.append(locale_data.unique_range_patterns.ensure(move(range12_pattern)));
  858. } else {
  859. range12_formats.append(range_formats.last());
  860. }
  861. });
  862. });
  863. calendar.range_formats = locale_data.unique_range_pattern_lists.ensure(move(range_formats));
  864. calendar.range12_formats = locale_data.unique_range_pattern_lists.ensure(move(range12_formats));
  865. }
  866. static void generate_missing_patterns(Calendar& calendar, CalendarPatternList& formats, Vector<CalendarPattern> date_formats, Vector<CalendarPattern> time_formats, UnicodeLocaleData& locale_data)
  867. {
  868. // https://unicode.org/reports/tr35/tr35-dates.html#Missing_Skeleton_Fields
  869. auto replace_pattern = [&](auto format, auto time_format, auto date_format) {
  870. auto pattern = locale_data.unique_strings.get(format);
  871. auto time_pattern = locale_data.unique_strings.get(time_format);
  872. auto date_pattern = locale_data.unique_strings.get(date_format);
  873. auto new_pattern = pattern.replace("{0}", time_pattern).replace("{1}", date_pattern);
  874. return locale_data.unique_strings.ensure(move(new_pattern));
  875. };
  876. auto inject_fractional_second_digits = [&](auto format) {
  877. auto pattern = locale_data.unique_strings.get(format);
  878. auto new_pattern = pattern.replace("{second}"sv, "{second}{decimal}{fractionalSecondDigits}"sv);
  879. return locale_data.unique_strings.ensure(move(new_pattern));
  880. };
  881. auto append_if_unique = [&](auto format) {
  882. auto format_index = locale_data.unique_patterns.ensure(move(format));
  883. if (!formats.contains_slow(format_index))
  884. formats.append(format_index);
  885. };
  886. Vector<CalendarPattern> time_formats_with_fractional_second_digits;
  887. for (auto const& format : date_formats)
  888. append_if_unique(format);
  889. for (auto const& format : time_formats) {
  890. append_if_unique(format);
  891. if (format.second.has_value() && !format.fractional_second_digits.has_value()) {
  892. auto new_format = format;
  893. new_format.fractional_second_digits = 2;
  894. new_format.pattern_index = inject_fractional_second_digits(new_format.pattern_index);
  895. if (new_format.pattern12_index != 0)
  896. new_format.pattern12_index = inject_fractional_second_digits(new_format.pattern12_index);
  897. time_formats_with_fractional_second_digits.append(new_format);
  898. append_if_unique(move(new_format));
  899. }
  900. }
  901. time_formats.extend(move(time_formats_with_fractional_second_digits));
  902. for (auto const& date_format : date_formats) {
  903. auto const& date_time_formats = locale_data.unique_formats.get(calendar.date_time_formats);
  904. CalendarPatternIndexType date_time_format_index = 0;
  905. if (date_format.month == Unicode::CalendarPatternStyle::Long) {
  906. if (date_format.weekday.has_value())
  907. date_time_format_index = date_time_formats.full_format;
  908. else
  909. date_time_format_index = date_time_formats.long_format;
  910. } else if (date_format.month == Unicode::CalendarPatternStyle::Short) {
  911. date_time_format_index = date_time_formats.medium_format;
  912. } else {
  913. date_time_format_index = date_time_formats.short_format;
  914. }
  915. for (auto const& time_format : time_formats) {
  916. auto format = locale_data.unique_patterns.get(date_time_format_index);
  917. if (time_format.pattern12_index != 0)
  918. format.pattern12_index = replace_pattern(format.pattern_index, time_format.pattern12_index, date_format.pattern_index);
  919. format.pattern_index = replace_pattern(format.pattern_index, time_format.pattern_index, date_format.pattern_index);
  920. format.for_each_calendar_field_zipped_with(date_format, [](auto& field, auto const& date_field, auto) {
  921. if (date_field.has_value())
  922. field = date_field;
  923. });
  924. format.for_each_calendar_field_zipped_with(time_format, [](auto& field, auto const& time_field, auto) {
  925. if (time_field.has_value())
  926. field = time_field;
  927. });
  928. append_if_unique(move(format));
  929. }
  930. }
  931. }
  932. static void parse_calendar_symbols(Calendar& calendar, JsonObject const& calendar_object, UnicodeLocaleData& locale_data)
  933. {
  934. auto create_symbol_lists = [](size_t size) {
  935. SymbolList narrow_symbol_list;
  936. SymbolList short_symbol_list;
  937. SymbolList long_symbol_list;
  938. narrow_symbol_list.resize(size);
  939. short_symbol_list.resize(size);
  940. long_symbol_list.resize(size);
  941. return Array<SymbolList, 3> { {
  942. move(narrow_symbol_list),
  943. move(short_symbol_list),
  944. move(long_symbol_list),
  945. } };
  946. };
  947. CalendarSymbolsList symbols_list {};
  948. auto store_symbol_lists = [&](auto symbol, auto symbol_lists) {
  949. auto symbol_index = to_underlying(symbol);
  950. if (symbol_index >= symbols_list.size())
  951. symbols_list.resize(symbol_index + 1);
  952. CalendarSymbols symbols {};
  953. symbols.narrow_symbols = locale_data.unique_symbol_lists.ensure(move(symbol_lists[0]));
  954. symbols.short_symbols = locale_data.unique_symbol_lists.ensure(move(symbol_lists[1]));
  955. symbols.long_symbols = locale_data.unique_symbol_lists.ensure(move(symbol_lists[2]));
  956. auto calendar_symbols_index = locale_data.unique_calendar_symbols.ensure(move(symbols));
  957. symbols_list[symbol_index] = calendar_symbols_index;
  958. };
  959. auto parse_era_symbols = [&](auto const& symbols_object) {
  960. auto const& narrow_symbols = symbols_object.get("eraNarrow"sv).as_object();
  961. auto const& short_symbols = symbols_object.get("eraAbbr"sv).as_object();
  962. auto const& long_symbols = symbols_object.get("eraNames"sv).as_object();
  963. auto symbol_lists = create_symbol_lists(2);
  964. auto append_symbol = [&](auto& symbols, auto const& key, auto symbol) {
  965. if (auto key_index = key.to_uint(); key_index.has_value())
  966. symbols[*key_index] = locale_data.unique_strings.ensure(move(symbol));
  967. };
  968. narrow_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  969. append_symbol(symbol_lists[0], key, value.as_string());
  970. });
  971. short_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  972. append_symbol(symbol_lists[1], key, value.as_string());
  973. });
  974. long_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  975. append_symbol(symbol_lists[2], key, value.as_string());
  976. });
  977. store_symbol_lists(Unicode::CalendarSymbol::Era, move(symbol_lists));
  978. };
  979. auto parse_month_symbols = [&](auto const& symbols_object) {
  980. auto const& narrow_symbols = symbols_object.get("narrow"sv).as_object();
  981. auto const& short_symbols = symbols_object.get("abbreviated"sv).as_object();
  982. auto const& long_symbols = symbols_object.get("wide"sv).as_object();
  983. auto symbol_lists = create_symbol_lists(12);
  984. auto append_symbol = [&](auto& symbols, auto const& key, auto symbol) {
  985. auto key_index = key.to_uint().value() - 1;
  986. symbols[key_index] = locale_data.unique_strings.ensure(move(symbol));
  987. };
  988. narrow_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  989. append_symbol(symbol_lists[0], key, value.as_string());
  990. });
  991. short_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  992. append_symbol(symbol_lists[1], key, value.as_string());
  993. });
  994. long_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  995. append_symbol(symbol_lists[2], key, value.as_string());
  996. });
  997. store_symbol_lists(Unicode::CalendarSymbol::Month, move(symbol_lists));
  998. };
  999. auto parse_weekday_symbols = [&](auto const& symbols_object) {
  1000. auto const& narrow_symbols = symbols_object.get("narrow"sv).as_object();
  1001. auto const& short_symbols = symbols_object.get("abbreviated"sv).as_object();
  1002. auto const& long_symbols = symbols_object.get("wide"sv).as_object();
  1003. auto symbol_lists = create_symbol_lists(7);
  1004. auto append_symbol = [&](auto& symbols, auto const& key, auto symbol) {
  1005. if (key == "sun"sv)
  1006. symbols[to_underlying(Unicode::Weekday::Sunday)] = locale_data.unique_strings.ensure(move(symbol));
  1007. else if (key == "mon"sv)
  1008. symbols[to_underlying(Unicode::Weekday::Monday)] = locale_data.unique_strings.ensure(move(symbol));
  1009. else if (key == "tue"sv)
  1010. symbols[to_underlying(Unicode::Weekday::Tuesday)] = locale_data.unique_strings.ensure(move(symbol));
  1011. else if (key == "wed"sv)
  1012. symbols[to_underlying(Unicode::Weekday::Wednesday)] = locale_data.unique_strings.ensure(move(symbol));
  1013. else if (key == "thu"sv)
  1014. symbols[to_underlying(Unicode::Weekday::Thursday)] = locale_data.unique_strings.ensure(move(symbol));
  1015. else if (key == "fri"sv)
  1016. symbols[to_underlying(Unicode::Weekday::Friday)] = locale_data.unique_strings.ensure(move(symbol));
  1017. else if (key == "sat"sv)
  1018. symbols[to_underlying(Unicode::Weekday::Saturday)] = locale_data.unique_strings.ensure(move(symbol));
  1019. };
  1020. narrow_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  1021. append_symbol(symbol_lists[0], key, value.as_string());
  1022. });
  1023. short_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  1024. append_symbol(symbol_lists[1], key, value.as_string());
  1025. });
  1026. long_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  1027. append_symbol(symbol_lists[2], key, value.as_string());
  1028. });
  1029. store_symbol_lists(Unicode::CalendarSymbol::Weekday, move(symbol_lists));
  1030. };
  1031. auto parse_day_period_symbols = [&](auto const& symbols_object) {
  1032. auto const& narrow_symbols = symbols_object.get("narrow"sv).as_object();
  1033. auto const& short_symbols = symbols_object.get("abbreviated"sv).as_object();
  1034. auto const& long_symbols = symbols_object.get("wide"sv).as_object();
  1035. auto symbol_lists = create_symbol_lists(10);
  1036. auto append_symbol = [&](auto& symbols, auto const& key, auto symbol) {
  1037. if (auto day_period = day_period_from_string(key); day_period.has_value())
  1038. symbols[to_underlying(*day_period)] = locale_data.unique_strings.ensure(move(symbol));
  1039. };
  1040. narrow_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  1041. append_symbol(symbol_lists[0], key, value.as_string());
  1042. });
  1043. short_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  1044. append_symbol(symbol_lists[1], key, value.as_string());
  1045. });
  1046. long_symbols.for_each_member([&](auto const& key, JsonValue const& value) {
  1047. append_symbol(symbol_lists[2], key, value.as_string());
  1048. });
  1049. store_symbol_lists(Unicode::CalendarSymbol::DayPeriod, move(symbol_lists));
  1050. };
  1051. parse_era_symbols(calendar_object.get("eras"sv).as_object());
  1052. parse_month_symbols(calendar_object.get("months"sv).as_object().get("format"sv).as_object());
  1053. parse_weekday_symbols(calendar_object.get("days"sv).as_object().get("format"sv).as_object());
  1054. parse_day_period_symbols(calendar_object.get("dayPeriods"sv).as_object().get("format"sv).as_object());
  1055. calendar.symbols = locale_data.unique_calendar_symbols_lists.ensure(move(symbols_list));
  1056. }
  1057. static ErrorOr<void> parse_calendars(String locale_calendars_path, UnicodeLocaleData& locale_data, Locale& locale)
  1058. {
  1059. LexicalPath calendars_path(move(locale_calendars_path));
  1060. if (!calendars_path.basename().starts_with("ca-"sv))
  1061. return {};
  1062. auto calendars_file = TRY(Core::File::open(calendars_path.string(), Core::OpenMode::ReadOnly));
  1063. auto calendars = TRY(JsonValue::from_string(calendars_file->read_all()));
  1064. auto const& main_object = calendars.as_object().get("main"sv);
  1065. auto const& locale_object = main_object.as_object().get(calendars_path.parent().basename());
  1066. auto const& dates_object = locale_object.as_object().get("dates"sv);
  1067. auto const& calendars_object = dates_object.as_object().get("calendars"sv);
  1068. auto parse_patterns = [&](auto const& patterns_object, auto const& skeletons_object, Vector<CalendarPattern>* patterns) {
  1069. auto parse_pattern = [&](auto name) {
  1070. auto format = patterns_object.get(name);
  1071. auto skeleton = skeletons_object.get(name);
  1072. auto format_index = parse_date_time_pattern(format.as_string(), skeleton.as_string_or(String::empty()), locale_data).value();
  1073. if (patterns)
  1074. patterns->append(locale_data.unique_patterns.get(format_index));
  1075. return format_index;
  1076. };
  1077. CalendarFormat formats {};
  1078. formats.full_format = parse_pattern("full"sv);
  1079. formats.long_format = parse_pattern("long"sv);
  1080. formats.medium_format = parse_pattern("medium"sv);
  1081. formats.short_format = parse_pattern("short"sv);
  1082. return locale_data.unique_formats.ensure(move(formats));
  1083. };
  1084. calendars_object.as_object().for_each_member([&](auto const& calendar_name, JsonValue const& value) {
  1085. // The generic calendar is not a supported Unicode calendar key, so skip it:
  1086. // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/calendar#unicode_calendar_keys
  1087. if (calendar_name == "generic"sv)
  1088. return;
  1089. Calendar calendar {};
  1090. CalendarPatternList available_formats {};
  1091. if (!locale_data.calendars.contains_slow(calendar_name))
  1092. locale_data.calendars.append(calendar_name);
  1093. Vector<CalendarPattern> date_formats;
  1094. Vector<CalendarPattern> time_formats;
  1095. auto const& date_formats_object = value.as_object().get("dateFormats"sv);
  1096. auto const& date_skeletons_object = value.as_object().get("dateSkeletons"sv);
  1097. calendar.date_formats = parse_patterns(date_formats_object.as_object(), date_skeletons_object.as_object(), &date_formats);
  1098. auto const& time_formats_object = value.as_object().get("timeFormats"sv);
  1099. auto const& time_skeletons_object = value.as_object().get("timeSkeletons"sv);
  1100. calendar.time_formats = parse_patterns(time_formats_object.as_object(), time_skeletons_object.as_object(), &time_formats);
  1101. auto const& date_time_formats_object = value.as_object().get("dateTimeFormats"sv);
  1102. calendar.date_time_formats = parse_patterns(date_time_formats_object.as_object(), JsonObject {}, nullptr);
  1103. auto const& available_formats_object = date_time_formats_object.as_object().get("availableFormats"sv);
  1104. available_formats_object.as_object().for_each_member([&](auto const& skeleton, JsonValue const& pattern) {
  1105. auto pattern_index = parse_date_time_pattern(pattern.as_string(), skeleton, locale_data);
  1106. if (!pattern_index.has_value())
  1107. return;
  1108. auto const& format = locale_data.unique_patterns.get(*pattern_index);
  1109. if (format.contains_only_date_fields())
  1110. date_formats.append(format);
  1111. else if (format.contains_only_time_fields())
  1112. time_formats.append(format);
  1113. if (!available_formats.contains_slow(*pattern_index))
  1114. available_formats.append(*pattern_index);
  1115. });
  1116. auto const& interval_formats_object = date_time_formats_object.as_object().get("intervalFormats"sv);
  1117. parse_interval_patterns(calendar, interval_formats_object.as_object(), locale_data);
  1118. generate_missing_patterns(calendar, available_formats, move(date_formats), move(time_formats), locale_data);
  1119. parse_calendar_symbols(calendar, value.as_object(), locale_data);
  1120. calendar.available_formats = locale_data.unique_pattern_lists.ensure(move(available_formats));
  1121. locale.calendars.set(calendar_name, locale_data.unique_calendars.ensure(move(calendar)));
  1122. });
  1123. return {};
  1124. }
  1125. static ErrorOr<void> parse_time_zone_names(String locale_time_zone_names_path, UnicodeLocaleData& locale_data, Locale& locale)
  1126. {
  1127. LexicalPath time_zone_names_path(move(locale_time_zone_names_path));
  1128. time_zone_names_path = time_zone_names_path.append("timeZoneNames.json"sv);
  1129. auto time_zone_names_file = TRY(Core::File::open(time_zone_names_path.string(), Core::OpenMode::ReadOnly));
  1130. auto time_zone_names = TRY(JsonValue::from_string(time_zone_names_file->read_all()));
  1131. auto const& main_object = time_zone_names.as_object().get("main"sv);
  1132. auto const& locale_object = main_object.as_object().get(time_zone_names_path.parent().basename());
  1133. auto const& dates_object = locale_object.as_object().get("dates"sv);
  1134. auto const& time_zone_names_object = dates_object.as_object().get("timeZoneNames"sv);
  1135. auto const& meta_zone_object = time_zone_names_object.as_object().get("metazone"sv);
  1136. auto const& gmt_zero_format_string = time_zone_names_object.as_object().get("gmtZeroFormat"sv);
  1137. if (meta_zone_object.is_null())
  1138. return {};
  1139. auto parse_name = [&](StringView type, JsonObject const& meta_zone_object) -> Optional<StringIndexType> {
  1140. auto const& names = meta_zone_object.get(type);
  1141. if (!names.is_object())
  1142. return {};
  1143. auto const& daylight = names.as_object().get("daylight"sv);
  1144. if (daylight.is_string())
  1145. return locale_data.unique_strings.ensure(daylight.as_string());
  1146. auto const& standard = names.as_object().get("standard"sv);
  1147. if (standard.is_string())
  1148. return locale_data.unique_strings.ensure(standard.as_string());
  1149. return {};
  1150. };
  1151. TimeZoneList time_zones;
  1152. TimeZoneFormat time_zone_formats {};
  1153. time_zone_formats.gmt_zero_format = locale_data.unique_strings.ensure(gmt_zero_format_string.as_string());
  1154. auto parse_time_zone = [&](StringView meta_zone, JsonObject const& meta_zone_object) {
  1155. auto const& golden_zone = locale_data.meta_zones.find(meta_zone)->value;
  1156. TimeZone time_zone {};
  1157. if (auto long_name = parse_name("long"sv, meta_zone_object); long_name.has_value())
  1158. time_zone.long_name = long_name.value();
  1159. if (auto short_name = parse_name("short"sv, meta_zone_object); short_name.has_value())
  1160. time_zone.short_name = short_name.value();
  1161. auto time_zone_index = locale_data.time_zones.find_first_index(golden_zone).value();
  1162. time_zones[time_zone_index] = locale_data.unique_time_zones.ensure(move(time_zone));
  1163. };
  1164. meta_zone_object.as_object().for_each_member([&](auto const& meta_zone, JsonValue const&) {
  1165. auto const& golden_zone = locale_data.meta_zones.find(meta_zone)->value;
  1166. if (!locale_data.time_zones.contains_slow(golden_zone))
  1167. locale_data.time_zones.append(golden_zone);
  1168. });
  1169. time_zones.resize(locale_data.time_zones.size());
  1170. quick_sort(locale_data.time_zones);
  1171. meta_zone_object.as_object().for_each_member([&](auto const& meta_zone, JsonValue const& value) {
  1172. parse_time_zone(meta_zone, value.as_object());
  1173. });
  1174. // The long and short names for UTC are not under the "timeZoneNames/metazone" object, but are under "timeZoneNames/zone/Etc".
  1175. auto const& zone_object = time_zone_names_object.as_object().get("zone"sv);
  1176. auto const& etc_object = zone_object.as_object().get("Etc"sv);
  1177. auto const& utc_object = etc_object.as_object().get("UTC"sv);
  1178. parse_time_zone("UTC"sv, utc_object.as_object());
  1179. locale.time_zones = locale_data.unique_time_zone_lists.ensure(move(time_zones));
  1180. locale.time_zone_formats = locale_data.unique_time_zone_formats.ensure(move(time_zone_formats));
  1181. return {};
  1182. }
  1183. static ErrorOr<void> parse_day_periods(String core_path, UnicodeLocaleData& locale_data)
  1184. {
  1185. // https://unicode.org/reports/tr35/tr35-dates.html#Day_Period_Rule_Sets
  1186. LexicalPath day_periods_path(move(core_path));
  1187. day_periods_path = day_periods_path.append("supplemental"sv);
  1188. day_periods_path = day_periods_path.append("dayPeriods.json"sv);
  1189. auto day_periods_file = TRY(Core::File::open(day_periods_path.string(), Core::OpenMode::ReadOnly));
  1190. auto locale_day_periods = TRY(JsonValue::from_string(day_periods_file->read_all()));
  1191. auto const& supplemental_object = locale_day_periods.as_object().get("supplemental"sv);
  1192. auto const& day_periods_object = supplemental_object.as_object().get("dayPeriodRuleSet"sv);
  1193. auto parse_hour = [](auto const& time) {
  1194. auto hour_end_index = time.find(':').value();
  1195. // The times are in the form "hours:minutes", but we only need the hour segment.
  1196. // TR-35 explicitly states that minutes other than :00 must not be used.
  1197. VERIFY(time.substring_view(hour_end_index) == ":00"sv);
  1198. auto hour = time.substring_view(0, hour_end_index);
  1199. return hour.template to_uint<u8>().value();
  1200. };
  1201. auto parse_day_period = [&](auto const& symbol, auto const& ranges) -> Optional<DayPeriod> {
  1202. auto day_period = day_period_from_string(symbol);
  1203. if (!day_period.has_value())
  1204. return {};
  1205. auto begin = parse_hour(ranges.get("_from"sv).as_string());
  1206. auto end = parse_hour(ranges.get("_before"sv).as_string());
  1207. return DayPeriod { *day_period, begin, end };
  1208. };
  1209. day_periods_object.as_object().for_each_member([&](auto const& language, JsonValue const& value) {
  1210. auto locale = locale_data.locales.find(language);
  1211. if (locale == locale_data.locales.end())
  1212. return;
  1213. DayPeriodList day_periods;
  1214. value.as_object().for_each_member([&](auto const& symbol, JsonValue const& ranges) {
  1215. if (auto day_period = parse_day_period(symbol, ranges.as_object()); day_period.has_value()) {
  1216. auto day_period_index = locale_data.unique_day_periods.ensure(day_period.release_value());
  1217. day_periods.append(day_period_index);
  1218. }
  1219. });
  1220. locale->value.day_periods = locale_data.unique_day_period_lists.ensure(move(day_periods));
  1221. });
  1222. return {};
  1223. };
  1224. static ErrorOr<void> parse_all_locales(String core_path, String dates_path, UnicodeLocaleData& locale_data)
  1225. {
  1226. TRY(parse_hour_cycles(core_path, locale_data));
  1227. TRY(parse_meta_zones(core_path, locale_data));
  1228. auto dates_iterator = TRY(path_to_dir_iterator(move(dates_path)));
  1229. auto remove_variants_from_path = [&](String path) -> ErrorOr<String> {
  1230. auto parsed_locale = TRY(CanonicalLanguageID<StringIndexType>::parse(locale_data.unique_strings, LexicalPath::basename(path)));
  1231. StringBuilder builder;
  1232. builder.append(locale_data.unique_strings.get(parsed_locale.language));
  1233. if (auto script = locale_data.unique_strings.get(parsed_locale.script); !script.is_empty())
  1234. builder.appendff("-{}", script);
  1235. if (auto region = locale_data.unique_strings.get(parsed_locale.region); !region.is_empty())
  1236. builder.appendff("-{}", region);
  1237. return builder.build();
  1238. };
  1239. while (dates_iterator.has_next()) {
  1240. auto dates_path = TRY(next_path_from_dir_iterator(dates_iterator));
  1241. auto calendars_iterator = TRY(path_to_dir_iterator(dates_path, {}));
  1242. auto language = TRY(remove_variants_from_path(dates_path));
  1243. auto& locale = locale_data.locales.ensure(language);
  1244. while (calendars_iterator.has_next()) {
  1245. auto calendars_path = TRY(next_path_from_dir_iterator(calendars_iterator));
  1246. TRY(parse_calendars(move(calendars_path), locale_data, locale));
  1247. }
  1248. TRY(parse_time_zone_names(move(dates_path), locale_data, locale));
  1249. }
  1250. TRY(parse_day_periods(move(core_path), locale_data));
  1251. return {};
  1252. }
  1253. static String format_identifier(StringView owner, String identifier)
  1254. {
  1255. identifier = identifier.replace("-"sv, "_"sv, true);
  1256. identifier = identifier.replace("/"sv, "_"sv, true);
  1257. if (all_of(identifier, is_ascii_digit))
  1258. return String::formatted("{}_{}", owner[0], identifier);
  1259. if (is_ascii_lower_alpha(identifier[0]))
  1260. return String::formatted("{:c}{}", to_ascii_uppercase(identifier[0]), identifier.substring_view(1));
  1261. return identifier;
  1262. }
  1263. static void generate_unicode_locale_header(Core::File& file, UnicodeLocaleData& locale_data)
  1264. {
  1265. StringBuilder builder;
  1266. SourceGenerator generator { builder };
  1267. generator.append(R"~~~(
  1268. #pragma once
  1269. #include <AK/Types.h>
  1270. namespace Unicode {
  1271. )~~~");
  1272. generate_enum(generator, format_identifier, "Calendar"sv, {}, locale_data.calendars, locale_data.calendar_aliases);
  1273. generate_enum(generator, format_identifier, "HourCycleRegion"sv, {}, locale_data.hour_cycle_regions);
  1274. generate_enum(generator, format_identifier, "TimeZone"sv, {}, locale_data.time_zones);
  1275. generator.append(R"~~~(
  1276. }
  1277. )~~~");
  1278. VERIFY(file.write(generator.as_string_view()));
  1279. }
  1280. static void generate_unicode_locale_implementation(Core::File& file, UnicodeLocaleData& locale_data)
  1281. {
  1282. StringBuilder builder;
  1283. SourceGenerator generator { builder };
  1284. generator.set("string_index_type"sv, s_string_index_type);
  1285. generator.set("calendar_pattern_index_type"sv, s_calendar_pattern_index_type);
  1286. generator.set("calendar_pattern_list_index_type"sv, s_calendar_pattern_list_index_type);
  1287. generator.set("calendar_range_pattern_index_type"sv, s_calendar_range_pattern_index_type);
  1288. generator.set("calendar_range_pattern_list_index_type"sv, s_calendar_range_pattern_list_index_type);
  1289. generator.set("calendar_format_index_type"sv, s_calendar_format_index_type);
  1290. generator.set("symbol_list_index_type"sv, s_symbol_list_index_type);
  1291. generator.set("calendar_symbols_index_type"sv, s_calendar_symbols_index_type);
  1292. generator.set("calendar_symbols_list_index_type"sv, s_calendar_symbols_list_index_type);
  1293. generator.set("calendar_index_type"sv, s_calendar_index_type);
  1294. generator.set("time_zone_index_type"sv, s_time_zone_index_type);
  1295. generator.set("time_zone_list_index_type"sv, s_time_zone_list_index_type);
  1296. generator.set("day_period_index_type"sv, s_day_period_index_type);
  1297. generator.set("day_period_list_index_type"sv, s_day_period_list_index_type);
  1298. generator.append(R"~~~(
  1299. #include <AK/Array.h>
  1300. #include <AK/BinarySearch.h>
  1301. #include <AK/Optional.h>
  1302. #include <AK/StringView.h>
  1303. #include <LibUnicode/DateTimeFormat.h>
  1304. #include <LibUnicode/Locale.h>
  1305. #include <LibUnicode/UnicodeDateTimeFormat.h>
  1306. namespace Unicode {
  1307. )~~~");
  1308. locale_data.unique_strings.generate(generator);
  1309. generator.append(R"~~~(
  1310. template <typename SourceType, typename TargetType>
  1311. static void convert_calendar_fields(SourceType const& source, TargetType& target)
  1312. {
  1313. if (source.era != -1)
  1314. target.era = static_cast<CalendarPatternStyle>(source.era);
  1315. if (source.year != -1)
  1316. target.year = static_cast<CalendarPatternStyle>(source.year);
  1317. if (source.month != -1)
  1318. target.month = static_cast<CalendarPatternStyle>(source.month);
  1319. if (source.weekday != -1)
  1320. target.weekday = static_cast<CalendarPatternStyle>(source.weekday);
  1321. if (source.day != -1)
  1322. target.day = static_cast<CalendarPatternStyle>(source.day);
  1323. if (source.day_period != -1)
  1324. target.day_period = static_cast<CalendarPatternStyle>(source.day_period);
  1325. if (source.hour != -1)
  1326. target.hour = static_cast<CalendarPatternStyle>(source.hour);
  1327. if (source.minute != -1)
  1328. target.minute = static_cast<CalendarPatternStyle>(source.minute);
  1329. if (source.second != -1)
  1330. target.second = static_cast<CalendarPatternStyle>(source.second);
  1331. if (source.fractional_second_digits != -1)
  1332. target.fractional_second_digits = static_cast<u8>(source.fractional_second_digits);
  1333. if (source.time_zone_name != -1)
  1334. target.time_zone_name = static_cast<CalendarPatternStyle>(source.time_zone_name);
  1335. }
  1336. struct CalendarPatternImpl {
  1337. CalendarPattern to_unicode_calendar_pattern() const {
  1338. CalendarPattern calendar_pattern {};
  1339. calendar_pattern.skeleton = s_string_list[skeleton];
  1340. calendar_pattern.pattern = s_string_list[pattern];
  1341. if (pattern12 != 0)
  1342. calendar_pattern.pattern12 = s_string_list[pattern12];
  1343. convert_calendar_fields(*this, calendar_pattern);
  1344. return calendar_pattern;
  1345. }
  1346. @string_index_type@ skeleton { 0 };
  1347. @string_index_type@ pattern { 0 };
  1348. @string_index_type@ pattern12 { 0 };
  1349. i8 era { -1 };
  1350. i8 year { -1 };
  1351. i8 month { -1 };
  1352. i8 weekday { -1 };
  1353. i8 day { -1 };
  1354. i8 day_period { -1 };
  1355. i8 hour { -1 };
  1356. i8 minute { -1 };
  1357. i8 second { -1 };
  1358. i8 fractional_second_digits { -1 };
  1359. i8 time_zone_name { -1 };
  1360. };
  1361. struct CalendarRangePatternImpl {
  1362. CalendarRangePattern to_unicode_calendar_range_pattern() const {
  1363. CalendarRangePattern calendar_range_pattern {};
  1364. if (field != -1)
  1365. calendar_range_pattern.field = static_cast<CalendarRangePattern::Field>(field);
  1366. calendar_range_pattern.start_range = s_string_list[start_range];
  1367. calendar_range_pattern.separator = s_string_list[separator];
  1368. calendar_range_pattern.end_range = s_string_list[end_range];
  1369. convert_calendar_fields(*this, calendar_range_pattern);
  1370. return calendar_range_pattern;
  1371. }
  1372. @string_index_type@ skeleton { 0 };
  1373. i8 field { -1 };
  1374. @string_index_type@ start_range { 0 };
  1375. @string_index_type@ separator { 0 };
  1376. @string_index_type@ end_range { 0 };
  1377. i8 era { -1 };
  1378. i8 year { -1 };
  1379. i8 month { -1 };
  1380. i8 weekday { -1 };
  1381. i8 day { -1 };
  1382. i8 day_period { -1 };
  1383. i8 hour { -1 };
  1384. i8 minute { -1 };
  1385. i8 second { -1 };
  1386. i8 fractional_second_digits { -1 };
  1387. i8 time_zone_name { -1 };
  1388. };
  1389. )~~~");
  1390. locale_data.unique_patterns.generate(generator, "CalendarPatternImpl"sv, "s_calendar_patterns"sv, 10);
  1391. locale_data.unique_pattern_lists.generate(generator, s_calendar_pattern_index_type, "s_calendar_pattern_lists"sv);
  1392. locale_data.unique_range_patterns.generate(generator, "CalendarRangePatternImpl"sv, "s_calendar_range_patterns"sv, 10);
  1393. locale_data.unique_range_pattern_lists.generate(generator, s_calendar_range_pattern_index_type, "s_calendar_range_pattern_lists"sv);
  1394. generator.append(R"~~~(
  1395. struct CalendarFormatImpl {
  1396. CalendarFormat to_unicode_calendar_format() const {
  1397. CalendarFormat calendar_format {};
  1398. calendar_format.full_format = s_calendar_patterns[full_format].to_unicode_calendar_pattern();
  1399. calendar_format.long_format = s_calendar_patterns[long_format].to_unicode_calendar_pattern();
  1400. calendar_format.medium_format = s_calendar_patterns[medium_format].to_unicode_calendar_pattern();
  1401. calendar_format.short_format = s_calendar_patterns[short_format].to_unicode_calendar_pattern();
  1402. return calendar_format;
  1403. }
  1404. @calendar_pattern_index_type@ full_format { 0 };
  1405. @calendar_pattern_index_type@ long_format { 0 };
  1406. @calendar_pattern_index_type@ medium_format { 0 };
  1407. @calendar_pattern_index_type@ short_format { 0 };
  1408. };
  1409. struct CalendarSymbols {
  1410. @symbol_list_index_type@ narrow_symbols { 0 };
  1411. @symbol_list_index_type@ short_symbols { 0 };
  1412. @symbol_list_index_type@ long_symbols { 0 };
  1413. };
  1414. struct CalendarData {
  1415. @calendar_format_index_type@ date_formats { 0 };
  1416. @calendar_format_index_type@ time_formats { 0 };
  1417. @calendar_format_index_type@ date_time_formats { 0 };
  1418. @calendar_pattern_list_index_type@ available_formats { 0 };
  1419. @calendar_range_pattern_index_type@ default_range_format { 0 };
  1420. @calendar_range_pattern_list_index_type@ range_formats { 0 };
  1421. @calendar_range_pattern_list_index_type@ range12_formats { 0 };
  1422. @calendar_symbols_list_index_type@ symbols { 0 };
  1423. };
  1424. struct TimeZoneData {
  1425. @string_index_type@ long_name { 0 };
  1426. @string_index_type@ short_name { 0 };
  1427. };
  1428. struct TimeZoneFormat {
  1429. @string_index_type@ gmt_zero_format { 0 };
  1430. };
  1431. struct DayPeriodData {
  1432. u8 day_period { 0 };
  1433. u8 begin { 0 };
  1434. u8 end { 0 };
  1435. };
  1436. )~~~");
  1437. locale_data.unique_formats.generate(generator, "CalendarFormatImpl"sv, "s_calendar_formats"sv, 10);
  1438. locale_data.unique_symbol_lists.generate(generator, s_string_index_type, "s_symbol_lists"sv);
  1439. locale_data.unique_calendar_symbols.generate(generator, "CalendarSymbols"sv, "s_calendar_symbols"sv, 10);
  1440. locale_data.unique_calendar_symbols_lists.generate(generator, s_calendar_symbols_index_type, "s_calendar_symbol_lists"sv);
  1441. locale_data.unique_calendars.generate(generator, "CalendarData"sv, "s_calendars"sv, 10);
  1442. locale_data.unique_time_zones.generate(generator, "TimeZoneData"sv, "s_time_zones"sv, 30);
  1443. locale_data.unique_time_zone_lists.generate(generator, s_time_zone_index_type, "s_time_zone_lists"sv);
  1444. locale_data.unique_time_zone_formats.generate(generator, "TimeZoneFormat"sv, "s_time_zone_formats"sv, 30);
  1445. locale_data.unique_day_periods.generate(generator, "DayPeriodData"sv, "s_day_periods"sv, 30);
  1446. locale_data.unique_day_period_lists.generate(generator, s_day_period_index_type, "s_day_period_lists"sv);
  1447. locale_data.unique_hour_cycle_lists.generate(generator, "u8"sv, "s_hour_cycle_lists"sv);
  1448. auto append_calendars = [&](String name, auto const& calendars) {
  1449. generator.set("name", name);
  1450. generator.set("size", String::number(calendars.size()));
  1451. generator.append(R"~~~(
  1452. static constexpr Array<@calendar_index_type@, @size@> @name@ { {)~~~");
  1453. bool first = true;
  1454. for (auto const& calendar_key : locale_data.calendars) {
  1455. auto calendar = calendars.find(calendar_key)->value;
  1456. generator.append(first ? " " : ", ");
  1457. generator.append(String::number(calendar));
  1458. first = false;
  1459. }
  1460. generator.append(" } };");
  1461. };
  1462. auto append_mapping = [&](auto const& keys, auto const& map, auto type, auto name, auto mapping_getter) {
  1463. generator.set("type", type);
  1464. generator.set("name", name);
  1465. generator.set("size", String::number(keys.size()));
  1466. generator.append(R"~~~(
  1467. static constexpr Array<@type@, @size@> @name@ { {)~~~");
  1468. bool first = true;
  1469. for (auto const& key : keys) {
  1470. auto const& value = map.find(key)->value;
  1471. auto mapping = mapping_getter(value);
  1472. generator.append(first ? " " : ", ");
  1473. generator.append(String::number(mapping));
  1474. first = false;
  1475. }
  1476. generator.append(" } };");
  1477. };
  1478. auto locales = locale_data.locales.keys();
  1479. quick_sort(locales);
  1480. generate_mapping(generator, locale_data.locales, s_calendar_index_type, "s_locale_calendars"sv, "s_calendars_{}", [&](auto const& name, auto const& value) { append_calendars(name, value.calendars); });
  1481. append_mapping(locales, locale_data.locales, s_time_zone_index_type, "s_locale_time_zones"sv, [](auto const& locale) { return locale.time_zones; });
  1482. append_mapping(locales, locale_data.locales, s_time_zone_format_index_type, "s_locale_time_zone_formats"sv, [](auto const& locale) { return locale.time_zone_formats; });
  1483. append_mapping(locales, locale_data.locales, s_day_period_index_type, "s_locale_day_periods"sv, [](auto const& locale) { return locale.day_periods; });
  1484. append_mapping(locale_data.hour_cycle_regions, locale_data.hour_cycles, s_hour_cycle_list_index_type, "s_hour_cycles"sv, [](auto const& hour_cycles) { return hour_cycles; });
  1485. generator.append("\n");
  1486. auto append_from_string = [&](StringView enum_title, StringView enum_snake, auto const& values, Vector<Alias> const& aliases = {}) {
  1487. HashValueMap<String> hashes;
  1488. hashes.ensure_capacity(values.size());
  1489. for (auto const& value : values)
  1490. hashes.set(value.hash(), format_identifier(enum_title, value));
  1491. for (auto const& alias : aliases)
  1492. hashes.set(alias.alias.hash(), format_identifier(enum_title, alias.alias));
  1493. generate_value_from_string(generator, "{}_from_string"sv, enum_title, enum_snake, move(hashes));
  1494. };
  1495. append_from_string("Calendar"sv, "calendar"sv, locale_data.calendars, locale_data.calendar_aliases);
  1496. append_from_string("HourCycleRegion"sv, "hour_cycle_region"sv, locale_data.hour_cycle_regions);
  1497. append_from_string("TimeZone"sv, "time_zone"sv, locale_data.time_zones);
  1498. generator.append(R"~~~(
  1499. Vector<HourCycle> get_regional_hour_cycles(StringView region)
  1500. {
  1501. auto region_value = hour_cycle_region_from_string(region);
  1502. if (!region_value.has_value())
  1503. return {};
  1504. auto region_index = to_underlying(*region_value);
  1505. auto regional_hour_cycles_index = s_hour_cycles.at(region_index);
  1506. auto const& regional_hour_cycles = s_hour_cycle_lists.at(regional_hour_cycles_index);
  1507. Vector<HourCycle> hour_cycles;
  1508. hour_cycles.ensure_capacity(regional_hour_cycles.size());
  1509. for (auto hour_cycle : regional_hour_cycles)
  1510. hour_cycles.unchecked_append(static_cast<HourCycle>(hour_cycle));
  1511. return hour_cycles;
  1512. }
  1513. static CalendarData const* find_calendar_data(StringView locale, StringView calendar)
  1514. {
  1515. auto locale_value = locale_from_string(locale);
  1516. if (!locale_value.has_value())
  1517. return nullptr;
  1518. auto calendar_value = calendar_from_string(calendar);
  1519. if (!calendar_value.has_value())
  1520. return nullptr;
  1521. auto locale_index = to_underlying(*locale_value) - 1; // Subtract 1 because 0 == Locale::None.
  1522. size_t calendar_index = to_underlying(*calendar_value);
  1523. auto const& calendar_indices = s_locale_calendars.at(locale_index);
  1524. calendar_index = calendar_indices[calendar_index];
  1525. return &s_calendars[calendar_index];
  1526. }
  1527. Optional<CalendarFormat> get_calendar_date_format(StringView locale, StringView calendar)
  1528. {
  1529. if (auto const* data = find_calendar_data(locale, calendar); data != nullptr) {
  1530. auto const& formats = s_calendar_formats.at(data->date_formats);
  1531. return formats.to_unicode_calendar_format();
  1532. }
  1533. return {};
  1534. }
  1535. Optional<CalendarFormat> get_calendar_time_format(StringView locale, StringView calendar)
  1536. {
  1537. if (auto const* data = find_calendar_data(locale, calendar); data != nullptr) {
  1538. auto const& formats = s_calendar_formats.at(data->time_formats);
  1539. return formats.to_unicode_calendar_format();
  1540. }
  1541. return {};
  1542. }
  1543. Optional<CalendarFormat> get_calendar_date_time_format(StringView locale, StringView calendar)
  1544. {
  1545. if (auto const* data = find_calendar_data(locale, calendar); data != nullptr) {
  1546. auto const& formats = s_calendar_formats.at(data->date_time_formats);
  1547. return formats.to_unicode_calendar_format();
  1548. }
  1549. return {};
  1550. }
  1551. Vector<CalendarPattern> get_calendar_available_formats(StringView locale, StringView calendar)
  1552. {
  1553. Vector<CalendarPattern> result {};
  1554. if (auto const* data = find_calendar_data(locale, calendar); data != nullptr) {
  1555. auto const& available_formats = s_calendar_pattern_lists.at(data->available_formats);
  1556. result.ensure_capacity(available_formats.size());
  1557. for (auto const& format : available_formats)
  1558. result.unchecked_append(s_calendar_patterns[format].to_unicode_calendar_pattern());
  1559. }
  1560. return result;
  1561. }
  1562. Optional<CalendarRangePattern> get_calendar_default_range_format(StringView locale, StringView calendar)
  1563. {
  1564. if (auto const* data = find_calendar_data(locale, calendar); data != nullptr) {
  1565. auto const& pattern = s_calendar_range_patterns[data->default_range_format];
  1566. return pattern.to_unicode_calendar_range_pattern();
  1567. }
  1568. return {};
  1569. }
  1570. Vector<CalendarRangePattern> get_calendar_range_formats(StringView locale, StringView calendar, StringView skeleton)
  1571. {
  1572. Vector<CalendarRangePattern> result {};
  1573. if (auto const* data = find_calendar_data(locale, calendar); data != nullptr) {
  1574. auto const& range_formats = s_calendar_range_pattern_lists.at(data->range_formats);
  1575. for (auto format : range_formats) {
  1576. auto const& pattern = s_calendar_range_patterns[format];
  1577. if (skeleton == s_string_list[pattern.skeleton])
  1578. result.append(pattern.to_unicode_calendar_range_pattern());
  1579. }
  1580. }
  1581. return result;
  1582. }
  1583. Vector<CalendarRangePattern> get_calendar_range12_formats(StringView locale, StringView calendar, StringView skeleton)
  1584. {
  1585. Vector<CalendarRangePattern> result {};
  1586. if (auto const* data = find_calendar_data(locale, calendar); data != nullptr) {
  1587. auto const& range12_formats = s_calendar_range_pattern_lists.at(data->range12_formats);
  1588. for (auto format : range12_formats) {
  1589. auto const& pattern = s_calendar_range_patterns[format];
  1590. if (skeleton == s_string_list[pattern.skeleton])
  1591. result.append(pattern.to_unicode_calendar_range_pattern());
  1592. }
  1593. }
  1594. return result;
  1595. }
  1596. static Span<@string_index_type@ const> find_calendar_symbols(StringView locale, StringView calendar, CalendarSymbol symbol, CalendarPatternStyle style)
  1597. {
  1598. if (auto const* data = find_calendar_data(locale, calendar); data != nullptr) {
  1599. auto const& symbols_list = s_calendar_symbol_lists[data->symbols];
  1600. auto symbol_index = to_underlying(symbol);
  1601. auto calendar_symbols_index = symbols_list.at(symbol_index);
  1602. auto const& symbols = s_calendar_symbols.at(calendar_symbols_index);
  1603. @symbol_list_index_type@ symbol_list_index = 0;
  1604. switch (style) {
  1605. case CalendarPatternStyle::Narrow:
  1606. symbol_list_index = symbols.narrow_symbols;
  1607. break;
  1608. case CalendarPatternStyle::Short:
  1609. symbol_list_index = symbols.short_symbols;
  1610. break;
  1611. case CalendarPatternStyle::Long:
  1612. symbol_list_index = symbols.long_symbols;
  1613. break;
  1614. default:
  1615. VERIFY_NOT_REACHED();
  1616. }
  1617. return s_symbol_lists.at(symbol_list_index);
  1618. }
  1619. return {};
  1620. }
  1621. Optional<StringView> get_calendar_era_symbol(StringView locale, StringView calendar, CalendarPatternStyle style, Era value)
  1622. {
  1623. auto symbols = find_calendar_symbols(locale, calendar, CalendarSymbol::Era, style);
  1624. if (auto value_index = to_underlying(value); value_index < symbols.size())
  1625. return s_string_list[symbols.at(value_index)];
  1626. return {};
  1627. }
  1628. Optional<StringView> get_calendar_month_symbol(StringView locale, StringView calendar, CalendarPatternStyle style, Month value)
  1629. {
  1630. auto symbols = find_calendar_symbols(locale, calendar, CalendarSymbol::Month, style);
  1631. if (auto value_index = to_underlying(value); value_index < symbols.size())
  1632. return s_string_list[symbols.at(value_index)];
  1633. return {};
  1634. }
  1635. Optional<StringView> get_calendar_weekday_symbol(StringView locale, StringView calendar, CalendarPatternStyle style, Weekday value)
  1636. {
  1637. auto symbols = find_calendar_symbols(locale, calendar, CalendarSymbol::Weekday, style);
  1638. if (auto value_index = to_underlying(value); value_index < symbols.size())
  1639. return s_string_list[symbols.at(value_index)];
  1640. return {};
  1641. }
  1642. Optional<StringView> get_calendar_day_period_symbol(StringView locale, StringView calendar, CalendarPatternStyle style, DayPeriod value)
  1643. {
  1644. auto symbols = find_calendar_symbols(locale, calendar, CalendarSymbol::DayPeriod, style);
  1645. if (auto value_index = to_underlying(value); value_index < symbols.size())
  1646. return s_string_list[symbols.at(value_index)];
  1647. return {};
  1648. }
  1649. Optional<StringView> get_calendar_day_period_symbol_for_hour(StringView locale, StringView calendar, CalendarPatternStyle style, u8 hour)
  1650. {
  1651. auto locale_value = locale_from_string(locale);
  1652. if (!locale_value.has_value())
  1653. return {};
  1654. auto locale_index = to_underlying(*locale_value) - 1; // Subtract 1 because 0 == Locale::None.
  1655. auto day_periods_index = s_locale_day_periods[locale_index];
  1656. auto day_periods = s_day_period_lists[day_periods_index];
  1657. for (auto day_period_index : day_periods) {
  1658. auto const& day_period = s_day_periods[day_period_index];
  1659. if ((day_period.begin <= hour) && (hour < day_period.end)) {
  1660. auto period = static_cast<DayPeriod>(day_period.day_period);
  1661. return get_calendar_day_period_symbol(locale, calendar, style, period);
  1662. }
  1663. }
  1664. // Fallback to fixed periods if the locale does not have flexible day periods.
  1665. // TR-35 states that the meaning of AM and PM does not change with locale.
  1666. if (hour < 12)
  1667. return get_calendar_day_period_symbol(locale, calendar, style, DayPeriod::AM);
  1668. return get_calendar_day_period_symbol(locale, calendar, style, DayPeriod::PM);
  1669. }
  1670. static TimeZoneFormat const* find_time_zone_formats(StringView locale)
  1671. {
  1672. auto locale_value = locale_from_string(locale);
  1673. if (!locale_value.has_value())
  1674. return nullptr;
  1675. auto locale_index = to_underlying(*locale_value) - 1; // Subtract 1 because 0 == Locale::None.
  1676. auto time_zone_format_index = s_locale_time_zone_formats.at(locale_index);
  1677. return &s_time_zone_formats.at(time_zone_format_index);
  1678. }
  1679. static TimeZoneData const* find_time_zone_data(StringView locale, StringView time_zone)
  1680. {
  1681. auto locale_value = locale_from_string(locale);
  1682. if (!locale_value.has_value())
  1683. return nullptr;
  1684. auto time_zone_value = time_zone_from_string(time_zone);
  1685. if (!time_zone_value.has_value())
  1686. return nullptr;
  1687. auto locale_index = to_underlying(*locale_value) - 1; // Subtract 1 because 0 == Locale::None.
  1688. size_t time_zone_index = to_underlying(*time_zone_value);
  1689. auto time_zone_list_index = s_locale_time_zones.at(locale_index);
  1690. auto const& time_zone_list = s_time_zone_lists.at(time_zone_list_index);
  1691. time_zone_index = time_zone_list.at(time_zone_index);
  1692. return &s_time_zones[time_zone_index];
  1693. }
  1694. Optional<StringView> get_time_zone_name(StringView locale, StringView time_zone, CalendarPatternStyle style)
  1695. {
  1696. // FIXME: This becomes more complicated when time zones other than UTC are supported. We will need to know the GMT offset
  1697. // of each time zone (which must be parsed from the time zone database, not the CLDR). For now, assuming UTC means
  1698. // we can assume a GMT offset of 0, for which the CLDR has a specific format string for the offset styles. Further,
  1699. // we will need to parse the "generic" time zone names from timeZoneNames.json.
  1700. VERIFY(time_zone == "UTC"sv);
  1701. if ((style == CalendarPatternStyle::Long) || (style == CalendarPatternStyle::Short)) {
  1702. if (auto const* data = find_time_zone_data(locale, time_zone); data != nullptr) {
  1703. auto time_zone_index = style == CalendarPatternStyle::Long ? data->long_name : data->short_name;
  1704. if (time_zone_index != 0)
  1705. return s_string_list[time_zone_index];
  1706. }
  1707. } else {
  1708. if (auto const* formats = find_time_zone_formats(locale); formats != nullptr)
  1709. return s_string_list[formats->gmt_zero_format];
  1710. }
  1711. return {};
  1712. }
  1713. }
  1714. )~~~");
  1715. VERIFY(file.write(generator.as_string_view()));
  1716. }
  1717. ErrorOr<int> serenity_main(Main::Arguments arguments)
  1718. {
  1719. StringView generated_header_path;
  1720. StringView generated_implementation_path;
  1721. StringView core_path;
  1722. StringView dates_path;
  1723. Core::ArgsParser args_parser;
  1724. args_parser.add_option(generated_header_path, "Path to the Unicode locale header file to generate", "generated-header-path", 'h', "generated-header-path");
  1725. args_parser.add_option(generated_implementation_path, "Path to the Unicode locale implementation file to generate", "generated-implementation-path", 'c', "generated-implementation-path");
  1726. args_parser.add_option(core_path, "Path to cldr-core directory", "core-path", 'r', "core-path");
  1727. args_parser.add_option(dates_path, "Path to cldr-dates directory", "dates-path", 'd', "dates-path");
  1728. args_parser.parse(arguments);
  1729. auto open_file = [&](StringView path) -> ErrorOr<NonnullRefPtr<Core::File>> {
  1730. if (path.is_empty()) {
  1731. args_parser.print_usage(stderr, arguments.argv[0]);
  1732. return Error::from_string_literal("Must provide all command line options"sv);
  1733. }
  1734. return Core::File::open(path, Core::OpenMode::ReadWrite);
  1735. };
  1736. auto generated_header_file = TRY(open_file(generated_header_path));
  1737. auto generated_implementation_file = TRY(open_file(generated_implementation_path));
  1738. UnicodeLocaleData locale_data;
  1739. TRY(parse_all_locales(core_path, dates_path, locale_data));
  1740. generate_unicode_locale_header(generated_header_file, locale_data);
  1741. generate_unicode_locale_implementation(generated_implementation_file, locale_data);
  1742. return 0;
  1743. }