GenerateUnicodeData.cpp 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200
  1. /*
  2. * Copyright (c) 2021, Tim Flynn <trflynn89@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include "GeneratorUtil.h"
  7. #include <AK/AllOf.h>
  8. #include <AK/Array.h>
  9. #include <AK/CharacterTypes.h>
  10. #include <AK/Find.h>
  11. #include <AK/HashMap.h>
  12. #include <AK/Optional.h>
  13. #include <AK/QuickSort.h>
  14. #include <AK/SourceGenerator.h>
  15. #include <AK/String.h>
  16. #include <AK/StringUtils.h>
  17. #include <AK/Types.h>
  18. #include <AK/Vector.h>
  19. #include <LibCore/ArgsParser.h>
  20. #include <LibCore/File.h>
  21. // Some code points are excluded from UnicodeData.txt, and instead are part of a "range" of code
  22. // points, as indicated by the "name" field. For example:
  23. // 3400;<CJK Ideograph Extension A, First>;Lo;0;L;;;;;N;;;;;
  24. // 4DBF;<CJK Ideograph Extension A, Last>;Lo;0;L;;;;;N;;;;;
  25. struct CodePointRange {
  26. u32 first;
  27. u32 last;
  28. };
  29. // SpecialCasing source: https://www.unicode.org/Public/13.0.0/ucd/SpecialCasing.txt
  30. // Field descriptions: https://www.unicode.org/reports/tr44/tr44-13.html#SpecialCasing.txt
  31. struct SpecialCasing {
  32. u32 index { 0 };
  33. u32 code_point { 0 };
  34. Vector<u32> lowercase_mapping;
  35. Vector<u32> uppercase_mapping;
  36. Vector<u32> titlecase_mapping;
  37. String locale;
  38. String condition;
  39. };
  40. // PropList source: https://www.unicode.org/Public/13.0.0/ucd/PropList.txt
  41. // Property descriptions: https://www.unicode.org/reports/tr44/tr44-13.html#PropList.txt
  42. using PropList = HashMap<String, Vector<CodePointRange>>;
  43. // Normalization source: https://www.unicode.org/Public/13.0.0/ucd/DerivedNormalizationProps.txt
  44. // Normalization descriptions: https://www.unicode.org/reports/tr44/#DerivedNormalizationProps.txt
  45. enum class QuickCheck {
  46. Yes,
  47. No,
  48. Maybe,
  49. };
  50. struct Normalization {
  51. CodePointRange code_point_range;
  52. Vector<u32> value;
  53. QuickCheck quick_check { QuickCheck::Yes };
  54. };
  55. using NormalizationProps = HashMap<String, Vector<Normalization>>;
  56. struct CodePointName {
  57. CodePointRange code_point_range;
  58. StringView name;
  59. };
  60. // UnicodeData source: https://www.unicode.org/Public/13.0.0/ucd/UnicodeData.txt
  61. // Field descriptions: https://www.unicode.org/reports/tr44/tr44-13.html#UnicodeData.txt
  62. // https://www.unicode.org/reports/tr44/#General_Category_Values
  63. struct CodePointData {
  64. u32 code_point { 0 };
  65. String name;
  66. Optional<StringView> abbreviation;
  67. u8 canonical_combining_class { 0 };
  68. String bidi_class;
  69. String decomposition_type;
  70. Optional<i8> numeric_value_decimal;
  71. Optional<i8> numeric_value_digit;
  72. Optional<i8> numeric_value_numeric;
  73. bool bidi_mirrored { false };
  74. String unicode_1_name;
  75. String iso_comment;
  76. Optional<u32> simple_uppercase_mapping;
  77. Optional<u32> simple_lowercase_mapping;
  78. Optional<u32> simple_titlecase_mapping;
  79. Vector<u32> special_casing_indices;
  80. };
  81. struct UnicodeData {
  82. u32 code_points_with_non_zero_combining_class { 0 };
  83. u32 simple_uppercase_mapping_size { 0 };
  84. u32 simple_lowercase_mapping_size { 0 };
  85. Vector<SpecialCasing> special_casing;
  86. u32 code_points_with_special_casing { 0 };
  87. u32 largest_casing_transform_size { 0 };
  88. u32 largest_special_casing_size { 0 };
  89. Vector<String> conditions;
  90. Vector<CodePointData> code_point_data;
  91. HashMap<u32, String> code_point_abbreviations;
  92. HashMap<u32, String> code_point_display_name_aliases;
  93. Vector<CodePointName> code_point_display_names;
  94. PropList general_categories;
  95. Vector<Alias> general_category_aliases;
  96. // The Unicode standard defines additional properties (Any, Assigned, ASCII) which are not in
  97. // any UCD file. Assigned code point ranges are derived as this generator is executed.
  98. // https://unicode.org/reports/tr18/#General_Category_Property
  99. PropList prop_list {
  100. { "Any"sv, { { 0, 0x10ffff } } },
  101. { "Assigned"sv, {} },
  102. { "ASCII"sv, { { 0, 0x7f } } },
  103. };
  104. Vector<Alias> prop_aliases;
  105. PropList script_list {
  106. { "Unknown"sv, {} },
  107. };
  108. Vector<Alias> script_aliases;
  109. PropList script_extensions;
  110. // FIXME: We are not yet doing anything with this data. It will be needed for String.prototype.normalize.
  111. NormalizationProps normalization_props;
  112. PropList grapheme_break_props;
  113. PropList word_break_props;
  114. PropList sentence_break_props;
  115. };
  116. static Vector<u32> parse_code_point_list(StringView list)
  117. {
  118. Vector<u32> code_points;
  119. auto segments = list.split_view(' ');
  120. for (auto const& code_point : segments)
  121. code_points.append(AK::StringUtils::convert_to_uint_from_hex<u32>(code_point).value());
  122. return code_points;
  123. }
  124. static CodePointRange parse_code_point_range(StringView list)
  125. {
  126. CodePointRange code_point_range {};
  127. if (list.contains(".."sv)) {
  128. auto segments = list.split_view(".."sv);
  129. VERIFY(segments.size() == 2);
  130. auto begin = AK::StringUtils::convert_to_uint_from_hex<u32>(segments[0]).value();
  131. auto end = AK::StringUtils::convert_to_uint_from_hex<u32>(segments[1]).value();
  132. code_point_range = { begin, end };
  133. } else {
  134. auto code_point = AK::StringUtils::convert_to_uint_from_hex<u32>(list).value();
  135. code_point_range = { code_point, code_point };
  136. }
  137. return code_point_range;
  138. }
  139. static void parse_special_casing(Core::File& file, UnicodeData& unicode_data)
  140. {
  141. while (file.can_read_line()) {
  142. auto line = file.read_line();
  143. if (line.is_empty() || line.starts_with('#'))
  144. continue;
  145. if (auto index = line.find('#'); index.has_value())
  146. line = line.substring(0, *index);
  147. auto segments = line.split(';', true);
  148. VERIFY(segments.size() == 5 || segments.size() == 6);
  149. SpecialCasing casing {};
  150. casing.code_point = AK::StringUtils::convert_to_uint_from_hex<u32>(segments[0]).value();
  151. casing.lowercase_mapping = parse_code_point_list(segments[1]);
  152. casing.titlecase_mapping = parse_code_point_list(segments[2]);
  153. casing.uppercase_mapping = parse_code_point_list(segments[3]);
  154. if (auto condition = segments[4].trim_whitespace(); !condition.is_empty()) {
  155. auto conditions = condition.split(' ', true);
  156. VERIFY(conditions.size() == 1 || conditions.size() == 2);
  157. if (conditions.size() == 2) {
  158. casing.locale = move(conditions[0]);
  159. casing.condition = move(conditions[1]);
  160. } else if (all_of(conditions[0], is_ascii_lower_alpha)) {
  161. casing.locale = move(conditions[0]);
  162. } else {
  163. casing.condition = move(conditions[0]);
  164. }
  165. if (!casing.locale.is_empty())
  166. casing.locale = String::formatted("{:c}{}", to_ascii_uppercase(casing.locale[0]), casing.locale.substring_view(1));
  167. casing.condition = casing.condition.replace("_", "", true);
  168. if (!casing.condition.is_empty() && !unicode_data.conditions.contains_slow(casing.condition))
  169. unicode_data.conditions.append(casing.condition);
  170. }
  171. unicode_data.largest_casing_transform_size = max(unicode_data.largest_casing_transform_size, casing.lowercase_mapping.size());
  172. unicode_data.largest_casing_transform_size = max(unicode_data.largest_casing_transform_size, casing.titlecase_mapping.size());
  173. unicode_data.largest_casing_transform_size = max(unicode_data.largest_casing_transform_size, casing.uppercase_mapping.size());
  174. unicode_data.special_casing.append(move(casing));
  175. }
  176. quick_sort(unicode_data.special_casing, [](auto const& lhs, auto const& rhs) {
  177. if (lhs.code_point != rhs.code_point)
  178. return lhs.code_point < rhs.code_point;
  179. if (lhs.locale.is_empty() && !rhs.locale.is_empty())
  180. return false;
  181. if (!lhs.locale.is_empty() && rhs.locale.is_empty())
  182. return true;
  183. return lhs.locale < rhs.locale;
  184. });
  185. for (u32 i = 0; i < unicode_data.special_casing.size(); ++i)
  186. unicode_data.special_casing[i].index = i;
  187. }
  188. static void parse_prop_list(Core::File& file, PropList& prop_list, bool multi_value_property = false)
  189. {
  190. while (file.can_read_line()) {
  191. auto line = file.read_line();
  192. if (line.is_empty() || line.starts_with('#'))
  193. continue;
  194. if (auto index = line.find('#'); index.has_value())
  195. line = line.substring(0, *index);
  196. auto segments = line.split_view(';', true);
  197. VERIFY(segments.size() == 2);
  198. auto code_point_range = parse_code_point_range(segments[0].trim_whitespace());
  199. Vector<StringView> properties;
  200. if (multi_value_property)
  201. properties = segments[1].trim_whitespace().split_view(' ');
  202. else
  203. properties = { segments[1].trim_whitespace() };
  204. for (auto const& property : properties) {
  205. auto& code_points = prop_list.ensure(property.trim_whitespace());
  206. code_points.append(code_point_range);
  207. }
  208. }
  209. }
  210. static void parse_alias_list(Core::File& file, PropList const& prop_list, Vector<Alias>& prop_aliases)
  211. {
  212. String current_property;
  213. auto append_alias = [&](auto alias, auto property) {
  214. // Note: The alias files contain lines such as "Hyphen = Hyphen", which we should just skip.
  215. if (alias == property)
  216. return;
  217. // FIXME: We will, eventually, need to find where missing properties are located and parse them.
  218. if (!prop_list.contains(property))
  219. return;
  220. prop_aliases.append({ property, alias });
  221. };
  222. while (file.can_read_line()) {
  223. auto line = file.read_line();
  224. if (line.is_empty() || line.starts_with('#')) {
  225. if (line.ends_with("Properties"sv))
  226. current_property = line.substring(2);
  227. continue;
  228. }
  229. // Note: For now, we only care about Binary Property aliases for Unicode property escapes.
  230. if (current_property != "Binary Properties"sv)
  231. continue;
  232. auto segments = line.split_view(';', true);
  233. VERIFY((segments.size() == 2) || (segments.size() == 3));
  234. auto alias = segments[0].trim_whitespace();
  235. auto property = segments[1].trim_whitespace();
  236. append_alias(alias, property);
  237. if (segments.size() == 3) {
  238. alias = segments[2].trim_whitespace();
  239. append_alias(alias, property);
  240. }
  241. }
  242. }
  243. static void parse_name_aliases(Core::File& file, UnicodeData& unicode_data)
  244. {
  245. while (file.can_read_line()) {
  246. auto line = file.read_line();
  247. if (line.is_empty() || line.starts_with('#'))
  248. continue;
  249. auto segments = line.split_view(';', true);
  250. VERIFY(segments.size() == 3);
  251. auto code_point = AK::StringUtils::convert_to_uint_from_hex<u32>(segments[0].trim_whitespace());
  252. auto alias = segments[1].trim_whitespace();
  253. auto reason = segments[2].trim_whitespace();
  254. if (reason == "abbreviation"sv) {
  255. unicode_data.code_point_abbreviations.set(*code_point, alias);
  256. } else if (reason.is_one_of("correction"sv, "control"sv)) {
  257. if (!unicode_data.code_point_display_name_aliases.contains(*code_point))
  258. unicode_data.code_point_display_name_aliases.set(*code_point, alias);
  259. }
  260. }
  261. }
  262. static void parse_value_alias_list(Core::File& file, StringView desired_category, Vector<String> const& value_list, Vector<Alias>& prop_aliases, bool primary_value_is_first = true)
  263. {
  264. VERIFY(file.seek(0));
  265. auto append_alias = [&](auto alias, auto value) {
  266. // Note: The value alias file contains lines such as "Ahom = Ahom", which we should just skip.
  267. if (alias == value)
  268. return;
  269. // FIXME: We will, eventually, need to find where missing properties are located and parse them.
  270. if (!value_list.contains_slow(value))
  271. return;
  272. prop_aliases.append({ value, alias });
  273. };
  274. while (file.can_read_line()) {
  275. auto line = file.read_line();
  276. if (line.is_empty() || line.starts_with('#'))
  277. continue;
  278. if (auto index = line.find('#'); index.has_value())
  279. line = line.substring(0, *index);
  280. auto segments = line.split_view(';', true);
  281. auto category = segments[0].trim_whitespace();
  282. if (category != desired_category)
  283. continue;
  284. VERIFY((segments.size() == 3) || (segments.size() == 4));
  285. auto value = primary_value_is_first ? segments[1].trim_whitespace() : segments[2].trim_whitespace();
  286. auto alias = primary_value_is_first ? segments[2].trim_whitespace() : segments[1].trim_whitespace();
  287. append_alias(alias, value);
  288. if (segments.size() == 4) {
  289. alias = segments[3].trim_whitespace();
  290. append_alias(alias, value);
  291. }
  292. }
  293. }
  294. static void parse_normalization_props(Core::File& file, UnicodeData& unicode_data)
  295. {
  296. while (file.can_read_line()) {
  297. auto line = file.read_line();
  298. if (line.is_empty() || line.starts_with('#'))
  299. continue;
  300. if (auto index = line.find('#'); index.has_value())
  301. line = line.substring(0, *index);
  302. auto segments = line.split_view(';', true);
  303. VERIFY((segments.size() == 2) || (segments.size() == 3));
  304. auto code_point_range = parse_code_point_range(segments[0].trim_whitespace());
  305. auto property = segments[1].trim_whitespace().to_string();
  306. Vector<u32> value;
  307. QuickCheck quick_check = QuickCheck::Yes;
  308. if (segments.size() == 3) {
  309. auto value_or_quick_check = segments[2].trim_whitespace();
  310. if ((value_or_quick_check == "N"sv))
  311. quick_check = QuickCheck::No;
  312. else if ((value_or_quick_check == "M"sv))
  313. quick_check = QuickCheck::Maybe;
  314. else
  315. value = parse_code_point_list(value_or_quick_check);
  316. }
  317. auto& normalizations = unicode_data.normalization_props.ensure(property);
  318. normalizations.append({ code_point_range, move(value), quick_check });
  319. auto& prop_list = unicode_data.prop_list.ensure(property);
  320. prop_list.append(move(code_point_range));
  321. }
  322. }
  323. static void add_canonical_code_point_name(CodePointRange range, StringView name, UnicodeData& unicode_data)
  324. {
  325. // https://www.unicode.org/versions/Unicode14.0.0/ch04.pdf#G142981
  326. // FIXME: Implement the NR1 rules for Hangul syllables.
  327. // These code point ranges are the NR2 set of name replacements defined by Table 4-8.
  328. constexpr Array<CodePointName, 15> s_ideographic_replacements { {
  329. { { 0x3400, 0x4DBF }, "CJK UNIFIED IDEOGRAPH-{:X}"sv },
  330. { { 0x4E00, 0x9FFC }, "CJK UNIFIED IDEOGRAPH-{:X}"sv },
  331. { { 0xF900, 0xFA6D }, "CJK COMPATIBILITY IDEOGRAPH-{:X}"sv },
  332. { { 0xFA70, 0xFAD9 }, "CJK COMPATIBILITY IDEOGRAPH-{:X}"sv },
  333. { { 0x17000, 0x187F7 }, "TANGUT IDEOGRAPH-{:X}"sv },
  334. { { 0x18B00, 0x18CD5 }, "KHITAN SMALL SCRIPT CHARACTER-{:X}"sv },
  335. { { 0x18D00, 0x18D08 }, "TANGUT IDEOGRAPH-{:X}"sv },
  336. { { 0x1B170, 0x1B2FB }, "NUSHU CHARACTER-{:X}"sv },
  337. { { 0x20000, 0x2A6DD }, "CJK UNIFIED IDEOGRAPH-{:X}"sv },
  338. { { 0x2A700, 0x2B734 }, "CJK UNIFIED IDEOGRAPH-{:X}"sv },
  339. { { 0x2B740, 0x2B81D }, "CJK UNIFIED IDEOGRAPH-{:X}"sv },
  340. { { 0x2B820, 0x2CEA1 }, "CJK UNIFIED IDEOGRAPH-{:X}"sv },
  341. { { 0x2CEB0, 0x2EBE0 }, "CJK UNIFIED IDEOGRAPH-{:X}"sv },
  342. { { 0x2F800, 0x2FA1D }, "CJK COMPATIBILITY IDEOGRAPH-{:X}"sv },
  343. { { 0x30000, 0x3134A }, "CJK UNIFIED IDEOGRAPH-{:X}"sv },
  344. } };
  345. auto it = find_if(s_ideographic_replacements.begin(), s_ideographic_replacements.end(),
  346. [&](auto const& replacement) {
  347. return replacement.code_point_range.first == range.first;
  348. });
  349. if (it != s_ideographic_replacements.end()) {
  350. unicode_data.code_point_display_names.append(*it);
  351. return;
  352. }
  353. it = find_if(s_ideographic_replacements.begin(), s_ideographic_replacements.end(),
  354. [&](auto const& replacement) {
  355. return (replacement.code_point_range.first <= range.first) && (range.first <= replacement.code_point_range.last);
  356. });
  357. if (it != s_ideographic_replacements.end()) {
  358. // Drop code points that will have been captured by a range defined by the ideographic replacements.
  359. return;
  360. }
  361. if (auto alias = unicode_data.code_point_display_name_aliases.get(range.first); alias.has_value()) {
  362. // NR4 states that control code points have a null string as their name. Our implementation
  363. // uses the control code's alias as its display name.
  364. unicode_data.code_point_display_names.append({ range, *alias });
  365. return;
  366. }
  367. unicode_data.code_point_display_names.append({ range, name });
  368. }
  369. static void parse_unicode_data(Core::File& file, UnicodeData& unicode_data)
  370. {
  371. Optional<u32> code_point_range_start;
  372. auto& assigned_code_points = unicode_data.prop_list.find("Assigned"sv)->value;
  373. Optional<u32> assigned_code_point_range_start = 0;
  374. u32 previous_code_point = 0;
  375. while (file.can_read_line()) {
  376. auto line = file.read_line();
  377. if (line.is_empty())
  378. continue;
  379. auto segments = line.split(';', true);
  380. VERIFY(segments.size() == 15);
  381. CodePointData data {};
  382. data.code_point = AK::StringUtils::convert_to_uint_from_hex<u32>(segments[0]).value();
  383. data.name = move(segments[1]);
  384. data.canonical_combining_class = AK::StringUtils::convert_to_uint<u8>(segments[3]).value();
  385. data.bidi_class = move(segments[4]);
  386. data.decomposition_type = move(segments[5]);
  387. data.numeric_value_decimal = AK::StringUtils::convert_to_int<i8>(segments[6]);
  388. data.numeric_value_digit = AK::StringUtils::convert_to_int<i8>(segments[7]);
  389. data.numeric_value_numeric = AK::StringUtils::convert_to_int<i8>(segments[8]);
  390. data.bidi_mirrored = segments[9] == "Y"sv;
  391. data.unicode_1_name = move(segments[10]);
  392. data.iso_comment = move(segments[11]);
  393. data.simple_uppercase_mapping = AK::StringUtils::convert_to_uint_from_hex<u32>(segments[12]);
  394. data.simple_lowercase_mapping = AK::StringUtils::convert_to_uint_from_hex<u32>(segments[13]);
  395. data.simple_titlecase_mapping = AK::StringUtils::convert_to_uint_from_hex<u32>(segments[14]);
  396. if (auto abbreviation = unicode_data.code_point_abbreviations.get(data.code_point); abbreviation.has_value())
  397. data.abbreviation = *abbreviation;
  398. if (!assigned_code_point_range_start.has_value())
  399. assigned_code_point_range_start = data.code_point;
  400. if (data.name.starts_with("<"sv) && data.name.ends_with(", First>")) {
  401. VERIFY(!code_point_range_start.has_value() && assigned_code_point_range_start.has_value());
  402. code_point_range_start = data.code_point;
  403. data.name = data.name.substring(1, data.name.length() - 9);
  404. assigned_code_points.append({ *assigned_code_point_range_start, previous_code_point });
  405. assigned_code_point_range_start.clear();
  406. } else if (data.name.starts_with("<"sv) && data.name.ends_with(", Last>")) {
  407. VERIFY(code_point_range_start.has_value());
  408. CodePointRange code_point_range { *code_point_range_start, data.code_point };
  409. assigned_code_points.append(code_point_range);
  410. data.name = data.name.substring(1, data.name.length() - 8);
  411. code_point_range_start.clear();
  412. add_canonical_code_point_name(code_point_range, data.name, unicode_data);
  413. } else {
  414. add_canonical_code_point_name({ data.code_point, data.code_point }, data.name, unicode_data);
  415. if ((data.code_point > 0) && (data.code_point - previous_code_point) != 1) {
  416. VERIFY(assigned_code_point_range_start.has_value());
  417. assigned_code_points.append({ *assigned_code_point_range_start, previous_code_point });
  418. assigned_code_point_range_start = data.code_point;
  419. }
  420. }
  421. bool has_special_casing { false };
  422. for (auto const& casing : unicode_data.special_casing) {
  423. if (casing.code_point == data.code_point) {
  424. data.special_casing_indices.append(casing.index);
  425. has_special_casing = true;
  426. }
  427. }
  428. unicode_data.code_points_with_non_zero_combining_class += data.canonical_combining_class != 0;
  429. unicode_data.simple_uppercase_mapping_size += data.simple_uppercase_mapping.has_value();
  430. unicode_data.simple_lowercase_mapping_size += data.simple_lowercase_mapping.has_value();
  431. unicode_data.code_points_with_special_casing += has_special_casing;
  432. unicode_data.largest_special_casing_size = max(unicode_data.largest_special_casing_size, data.special_casing_indices.size());
  433. previous_code_point = data.code_point;
  434. unicode_data.code_point_data.append(move(data));
  435. }
  436. }
  437. static void generate_unicode_data_header(Core::File& file, UnicodeData& unicode_data)
  438. {
  439. StringBuilder builder;
  440. SourceGenerator generator { builder };
  441. generator.set("casing_transform_size", String::number(unicode_data.largest_casing_transform_size));
  442. auto generate_enum = [&](StringView name, StringView default_, Vector<String> values, Vector<Alias> aliases = {}) {
  443. quick_sort(values);
  444. quick_sort(aliases, [](auto& alias1, auto& alias2) { return alias1.alias < alias2.alias; });
  445. generator.set("name", name);
  446. generator.set("underlying", String::formatted("{}UnderlyingType", name));
  447. generator.append(R"~~~(
  448. using @underlying@ = u8;
  449. enum class @name@ : @underlying@ {)~~~");
  450. if (!default_.is_empty()) {
  451. generator.set("default", default_);
  452. generator.append(R"~~~(
  453. @default@,)~~~");
  454. }
  455. for (auto const& value : values) {
  456. generator.set("value", value);
  457. generator.append(R"~~~(
  458. @value@,)~~~");
  459. }
  460. for (auto const& alias : aliases) {
  461. generator.set("alias", alias.alias);
  462. generator.set("value", alias.name);
  463. generator.append(R"~~~(
  464. @alias@ = @value@,)~~~");
  465. }
  466. generator.append(R"~~~(
  467. };
  468. )~~~");
  469. };
  470. generator.append(R"~~~(
  471. #pragma once
  472. #include <AK/Types.h>
  473. #include <LibUnicode/Forward.h>
  474. #include <LibUnicode/UnicodeLocale.h>
  475. namespace Unicode {
  476. )~~~");
  477. generate_enum("Condition"sv, "None"sv, move(unicode_data.conditions));
  478. generate_enum("GeneralCategory"sv, {}, unicode_data.general_categories.keys(), unicode_data.general_category_aliases);
  479. generate_enum("Property"sv, {}, unicode_data.prop_list.keys(), unicode_data.prop_aliases);
  480. generate_enum("Script"sv, {}, unicode_data.script_list.keys(), unicode_data.script_aliases);
  481. generate_enum("GraphemeBreakProperty"sv, {}, unicode_data.grapheme_break_props.keys());
  482. generate_enum("WordBreakProperty"sv, {}, unicode_data.word_break_props.keys());
  483. generate_enum("SentenceBreakProperty"sv, {}, unicode_data.sentence_break_props.keys());
  484. generator.append(R"~~~(
  485. struct SpecialCasing {
  486. u32 code_point { 0 };
  487. u32 lowercase_mapping[@casing_transform_size@];
  488. u32 lowercase_mapping_size { 0 };
  489. u32 uppercase_mapping[@casing_transform_size@];
  490. u32 uppercase_mapping_size { 0 };
  491. u32 titlecase_mapping[@casing_transform_size@];
  492. u32 titlecase_mapping_size { 0 };
  493. Locale locale { Locale::None };
  494. Condition condition { Condition::None };
  495. };
  496. }
  497. )~~~");
  498. VERIFY(file.write(generator.as_string_view()));
  499. }
  500. static void generate_unicode_data_implementation(Core::File& file, UnicodeData const& unicode_data)
  501. {
  502. StringBuilder builder;
  503. SourceGenerator generator { builder };
  504. generator.set("largest_special_casing_size", String::number(unicode_data.largest_special_casing_size));
  505. generator.set("special_casing_size", String::number(unicode_data.special_casing.size()));
  506. generator.append(R"~~~(
  507. #include <AK/Array.h>
  508. #include <AK/BinarySearch.h>
  509. #include <AK/CharacterTypes.h>
  510. #include <AK/Optional.h>
  511. #include <AK/Span.h>
  512. #include <AK/String.h>
  513. #include <AK/StringView.h>
  514. #include <LibUnicode/CharacterTypes.h>
  515. #include <LibUnicode/UnicodeData.h>
  516. namespace Unicode {
  517. )~~~");
  518. auto append_list_and_size = [&](auto const& list, StringView format) {
  519. if (list.is_empty()) {
  520. generator.append(", {}, 0");
  521. return;
  522. }
  523. bool first = true;
  524. generator.append(", {");
  525. for (auto const& item : list) {
  526. generator.append(first ? " " : ", ");
  527. generator.append(String::formatted(format, item));
  528. first = false;
  529. }
  530. generator.append(String::formatted(" }}, {}", list.size()));
  531. };
  532. generator.append(R"~~~(
  533. static constexpr Array<SpecialCasing, @special_casing_size@> s_special_casing { {)~~~");
  534. for (auto const& casing : unicode_data.special_casing) {
  535. generator.set("code_point", String::formatted("{:#x}", casing.code_point));
  536. generator.append(R"~~~(
  537. { @code_point@)~~~");
  538. constexpr auto format = "0x{:x}"sv;
  539. append_list_and_size(casing.lowercase_mapping, format);
  540. append_list_and_size(casing.uppercase_mapping, format);
  541. append_list_and_size(casing.titlecase_mapping, format);
  542. generator.set("locale", casing.locale.is_empty() ? "None" : casing.locale);
  543. generator.append(", Locale::@locale@");
  544. generator.set("condition", casing.condition.is_empty() ? "None" : casing.condition);
  545. generator.append(", Condition::@condition@");
  546. generator.append(" },");
  547. }
  548. generator.append(R"~~~(
  549. } };
  550. struct CodePointMapping {
  551. u32 code_point { 0 };
  552. u32 mapping { 0 };
  553. };
  554. struct SpecialCaseMapping {
  555. u32 code_point { 0 };
  556. Array<SpecialCasing const*, @largest_special_casing_size@> special_casing {};
  557. u32 special_casing_size { 0 };
  558. };
  559. struct CodePointAbbreviation {
  560. u32 code_point { 0 };
  561. StringView abbreviation {};
  562. };
  563. template<typename MappingType>
  564. struct CodePointComparator {
  565. constexpr int operator()(u32 code_point, MappingType const& mapping)
  566. {
  567. return code_point - mapping.code_point;
  568. }
  569. };
  570. )~~~");
  571. auto append_code_point_mappings = [&](StringView name, StringView mapping_type, u32 size, auto mapping_getter) {
  572. generator.set("name", name);
  573. generator.set("mapping_type", mapping_type);
  574. generator.set("size", String::number(size));
  575. generator.append(R"~~~(
  576. static constexpr Array<@mapping_type@, @size@> s_@name@_mappings { {
  577. )~~~");
  578. constexpr size_t max_mappings_per_row = 20;
  579. size_t mappings_in_current_row = 0;
  580. for (auto const& data : unicode_data.code_point_data) {
  581. auto mapping = mapping_getter(data);
  582. if constexpr (requires { mapping.has_value(); }) {
  583. if (!mapping.has_value())
  584. continue;
  585. } else {
  586. if (mapping.is_empty())
  587. continue;
  588. }
  589. if (mappings_in_current_row++ > 0)
  590. generator.append(" ");
  591. generator.set("code_point", String::formatted("{:#x}", data.code_point));
  592. generator.append("{ @code_point@");
  593. if constexpr (IsSame<decltype(mapping), Optional<u32>>) {
  594. generator.set("mapping", String::formatted("{:#x}", *mapping));
  595. generator.append(", @mapping@ },");
  596. } else if constexpr (IsSame<decltype(mapping), Optional<StringView>>) {
  597. generator.set("mapping", String::formatted("{}", *mapping));
  598. generator.append(", \"@mapping@\"sv },");
  599. } else {
  600. append_list_and_size(data.special_casing_indices, "&s_special_casing[{}]"sv);
  601. generator.append(" },");
  602. }
  603. if (mappings_in_current_row == max_mappings_per_row) {
  604. mappings_in_current_row = 0;
  605. generator.append("\n ");
  606. }
  607. }
  608. generator.append(R"~~~(
  609. } };
  610. )~~~");
  611. };
  612. append_code_point_mappings("combining_class"sv, "CodePointMapping"sv, unicode_data.code_points_with_non_zero_combining_class,
  613. [](auto const& data) -> Optional<u32> {
  614. if (data.canonical_combining_class == 0)
  615. return {};
  616. return data.canonical_combining_class;
  617. });
  618. append_code_point_mappings("uppercase"sv, "CodePointMapping"sv, unicode_data.simple_uppercase_mapping_size, [](auto const& data) { return data.simple_uppercase_mapping; });
  619. append_code_point_mappings("lowercase"sv, "CodePointMapping"sv, unicode_data.simple_lowercase_mapping_size, [](auto const& data) { return data.simple_lowercase_mapping; });
  620. append_code_point_mappings("special_case"sv, "SpecialCaseMapping"sv, unicode_data.code_points_with_special_casing, [](auto const& data) { return data.special_casing_indices; });
  621. append_code_point_mappings("abbreviation"sv, "CodePointAbbreviation"sv, unicode_data.code_point_abbreviations.size(), [](auto const& data) { return data.abbreviation; });
  622. generator.append(R"~~~(
  623. struct CodePointRange {
  624. u32 first { 0 };
  625. u32 last { 0 };
  626. };
  627. struct CodePointRangeComparator {
  628. constexpr int operator()(u32 code_point, CodePointRange const& range)
  629. {
  630. return (code_point > range.last) - (code_point < range.first);
  631. }
  632. };
  633. )~~~");
  634. auto append_code_point_range_list = [&](String name, Vector<CodePointRange> const& ranges) {
  635. generator.set("name", name);
  636. generator.set("size", String::number(ranges.size()));
  637. generator.append(R"~~~(
  638. static constexpr Array<CodePointRange, @size@> @name@ { {
  639. )~~~");
  640. constexpr size_t max_ranges_per_row = 20;
  641. size_t ranges_in_current_row = 0;
  642. for (auto const& range : ranges) {
  643. if (ranges_in_current_row++ > 0)
  644. generator.append(" ");
  645. generator.set("first", String::formatted("{:#x}", range.first));
  646. generator.set("last", String::formatted("{:#x}", range.last));
  647. generator.append("{ @first@, @last@ },");
  648. if (ranges_in_current_row == max_ranges_per_row) {
  649. ranges_in_current_row = 0;
  650. generator.append("\n ");
  651. }
  652. }
  653. generator.append(R"~~~(
  654. } };
  655. )~~~");
  656. };
  657. auto append_prop_list = [&](StringView collection_name, StringView property_format, PropList const& property_list) {
  658. for (auto const& property : property_list) {
  659. auto name = String::formatted(property_format, property.key);
  660. append_code_point_range_list(move(name), property.value);
  661. }
  662. auto property_names = property_list.keys();
  663. quick_sort(property_names);
  664. generator.set("name", collection_name);
  665. generator.set("size", String::number(property_names.size()));
  666. generator.append(R"~~~(
  667. static constexpr Array<Span<CodePointRange const>, @size@> @name@ { {)~~~");
  668. for (auto const& property_name : property_names) {
  669. generator.set("name", String::formatted(property_format, property_name));
  670. generator.append(R"~~~(
  671. @name@.span(),)~~~");
  672. }
  673. generator.append(R"~~~(
  674. } };
  675. )~~~");
  676. };
  677. append_prop_list("s_general_categories"sv, "s_general_category_{}"sv, unicode_data.general_categories);
  678. append_prop_list("s_properties"sv, "s_property_{}"sv, unicode_data.prop_list);
  679. append_prop_list("s_scripts"sv, "s_script_{}"sv, unicode_data.script_list);
  680. append_prop_list("s_script_extensions"sv, "s_script_extension_{}"sv, unicode_data.script_extensions);
  681. append_prop_list("s_grapheme_break_properties"sv, "s_grapheme_break_property_{}"sv, unicode_data.grapheme_break_props);
  682. append_prop_list("s_word_break_properties"sv, "s_word_break_property_{}"sv, unicode_data.word_break_props);
  683. append_prop_list("s_sentence_break_properties"sv, "s_sentence_break_property_{}"sv, unicode_data.sentence_break_props);
  684. generator.append(R"~~~(
  685. struct CodePointName {
  686. CodePointRange code_point_range {};
  687. StringView display_name;
  688. };
  689. struct CodePointNameComparator : public CodePointRangeComparator {
  690. constexpr int operator()(u32 code_point, CodePointName const& name)
  691. {
  692. return CodePointRangeComparator::operator()(code_point, name.code_point_range);
  693. }
  694. };
  695. )~~~");
  696. generator.set("code_point_display_names_size", String::number(unicode_data.code_point_display_names.size()));
  697. generator.append(R"~~~(
  698. static constexpr Array<CodePointName, @code_point_display_names_size@> s_code_point_display_names { {
  699. )~~~");
  700. for (auto const& code_point_name : unicode_data.code_point_display_names) {
  701. generator.set("first", String::formatted("{:#x}", code_point_name.code_point_range.first));
  702. generator.set("last", String::formatted("{:#x}", code_point_name.code_point_range.last));
  703. generator.set("name", code_point_name.name);
  704. generator.append(R"~~~( { { @first@, @last@ }, "@name@"sv },
  705. )~~~");
  706. }
  707. generator.append(R"~~~(} };
  708. )~~~");
  709. generator.append(R"~~~(
  710. Optional<String> code_point_display_name(u32 code_point)
  711. {
  712. if (auto const* entry = binary_search(s_code_point_display_names, code_point, nullptr, CodePointNameComparator {})) {
  713. if (entry->display_name.ends_with("{:X}"sv))
  714. return String::formatted(entry->display_name, code_point);
  715. return entry->display_name;
  716. }
  717. return {};
  718. }
  719. )~~~");
  720. auto append_code_point_mapping_search = [&](StringView method, StringView mappings, StringView fallback) {
  721. generator.set("method", method);
  722. generator.set("mappings", mappings);
  723. generator.set("fallback", fallback);
  724. generator.append(R"~~~(
  725. u32 @method@(u32 code_point)
  726. {
  727. auto const* mapping = binary_search(@mappings@, code_point, nullptr, CodePointComparator<CodePointMapping> {});
  728. return mapping ? mapping->mapping : @fallback@;
  729. }
  730. )~~~");
  731. };
  732. append_code_point_mapping_search("canonical_combining_class"sv, "s_combining_class_mappings"sv, "0"sv);
  733. append_code_point_mapping_search("to_unicode_uppercase"sv, "s_uppercase_mappings"sv, "code_point"sv);
  734. append_code_point_mapping_search("to_unicode_lowercase"sv, "s_lowercase_mappings"sv, "code_point"sv);
  735. generator.append(R"~~~(
  736. Span<SpecialCasing const* const> special_case_mapping(u32 code_point)
  737. {
  738. auto const* mapping = binary_search(s_special_case_mappings, code_point, nullptr, CodePointComparator<SpecialCaseMapping> {});
  739. if (mapping == nullptr)
  740. return {};
  741. return mapping->special_casing.span().slice(0, mapping->special_casing_size);
  742. }
  743. Optional<StringView> code_point_abbreviation(u32 code_point)
  744. {
  745. auto const* mapping = binary_search(s_abbreviation_mappings, code_point, nullptr, CodePointComparator<CodePointAbbreviation> {});
  746. if (mapping == nullptr)
  747. return {};
  748. return mapping->abbreviation;
  749. }
  750. )~~~");
  751. auto append_prop_search = [&](StringView enum_title, StringView enum_snake, StringView collection_name) {
  752. generator.set("enum_title", enum_title);
  753. generator.set("enum_snake", enum_snake);
  754. generator.set("collection_name", collection_name);
  755. generator.append(R"~~~(
  756. bool code_point_has_@enum_snake@(u32 code_point, @enum_title@ @enum_snake@)
  757. {
  758. auto index = static_cast<@enum_title@UnderlyingType>(@enum_snake@);
  759. auto const& ranges = @collection_name@.at(index);
  760. auto const* range = binary_search(ranges, code_point, nullptr, CodePointRangeComparator {});
  761. return range != nullptr;
  762. }
  763. )~~~");
  764. };
  765. auto append_from_string = [&](StringView enum_title, StringView enum_snake, PropList const& prop_list, Vector<Alias> const& aliases) {
  766. HashValueMap<StringView> hashes;
  767. hashes.ensure_capacity(prop_list.size() + aliases.size());
  768. for (auto const& prop : prop_list)
  769. hashes.set(prop.key.hash(), prop.key);
  770. for (auto const& alias : aliases)
  771. hashes.set(alias.alias.hash(), alias.alias);
  772. generate_value_from_string(generator, "{}_from_string"sv, enum_title, enum_snake, move(hashes));
  773. };
  774. append_prop_search("GeneralCategory"sv, "general_category"sv, "s_general_categories"sv);
  775. append_from_string("GeneralCategory"sv, "general_category"sv, unicode_data.general_categories, unicode_data.general_category_aliases);
  776. append_prop_search("Property"sv, "property"sv, "s_properties"sv);
  777. append_from_string("Property"sv, "property"sv, unicode_data.prop_list, unicode_data.prop_aliases);
  778. append_prop_search("Script"sv, "script"sv, "s_scripts"sv);
  779. append_prop_search("Script"sv, "script_extension"sv, "s_script_extensions"sv);
  780. append_from_string("Script"sv, "script"sv, unicode_data.script_list, unicode_data.script_aliases);
  781. append_prop_search("GraphemeBreakProperty"sv, "grapheme_break_property"sv, "s_grapheme_break_properties"sv);
  782. append_prop_search("WordBreakProperty"sv, "word_break_property"sv, "s_word_break_properties"sv);
  783. append_prop_search("SentenceBreakProperty"sv, "sentence_break_property"sv, "s_sentence_break_properties"sv);
  784. generator.append(R"~~~(
  785. }
  786. )~~~");
  787. VERIFY(file.write(generator.as_string_view()));
  788. }
  789. static Vector<u32> flatten_code_point_ranges(Vector<CodePointRange> const& code_points)
  790. {
  791. Vector<u32> flattened;
  792. for (auto const& range : code_points) {
  793. flattened.grow_capacity(range.last - range.first);
  794. for (u32 code_point = range.first; code_point <= range.last; ++code_point)
  795. flattened.append(code_point);
  796. }
  797. return flattened;
  798. }
  799. static Vector<CodePointRange> form_code_point_ranges(Vector<u32> code_points)
  800. {
  801. Vector<CodePointRange> ranges;
  802. u32 range_start = code_points[0];
  803. u32 range_end = range_start;
  804. for (size_t i = 1; i < code_points.size(); ++i) {
  805. u32 code_point = code_points[i];
  806. if ((code_point - range_end) == 1) {
  807. range_end = code_point;
  808. } else {
  809. ranges.append({ range_start, range_end });
  810. range_start = code_point;
  811. range_end = code_point;
  812. }
  813. }
  814. ranges.append({ range_start, range_end });
  815. return ranges;
  816. }
  817. static void sort_and_merge_code_point_ranges(Vector<CodePointRange>& code_points)
  818. {
  819. quick_sort(code_points, [](auto const& range1, auto const& range2) {
  820. return range1.first < range2.first;
  821. });
  822. for (size_t i = 0; i < code_points.size() - 1;) {
  823. if (code_points[i].last >= code_points[i + 1].first) {
  824. code_points[i].last = max(code_points[i].last, code_points[i + 1].last);
  825. code_points.remove(i + 1);
  826. } else {
  827. ++i;
  828. }
  829. }
  830. auto all_code_points = flatten_code_point_ranges(code_points);
  831. code_points = form_code_point_ranges(all_code_points);
  832. }
  833. static void populate_general_category_unions(PropList& general_categories)
  834. {
  835. // The Unicode standard defines General Category values which are not in any UCD file. These
  836. // values are simply unions of other values.
  837. // https://www.unicode.org/reports/tr44/#GC_Values_Table
  838. auto populate_union = [&](auto alias, auto categories) {
  839. auto& code_points = general_categories.ensure(alias);
  840. for (auto const& category : categories)
  841. code_points.extend(general_categories.find(category)->value);
  842. sort_and_merge_code_point_ranges(code_points);
  843. };
  844. populate_union("LC"sv, Array { "Ll"sv, "Lu"sv, "Lt"sv });
  845. populate_union("L"sv, Array { "Lu"sv, "Ll"sv, "Lt"sv, "Lm"sv, "Lo"sv });
  846. populate_union("M"sv, Array { "Mn"sv, "Mc"sv, "Me"sv });
  847. populate_union("N"sv, Array { "Nd"sv, "Nl"sv, "No"sv });
  848. populate_union("P"sv, Array { "Pc"sv, "Pd"sv, "Ps"sv, "Pe"sv, "Pi"sv, "Pf"sv, "Po"sv });
  849. populate_union("S"sv, Array { "Sm"sv, "Sc"sv, "Sk"sv, "So"sv });
  850. populate_union("Z"sv, Array { "Zs"sv, "Zl"sv, "Zp"sv });
  851. populate_union("C"sv, Array { "Cc"sv, "Cf"sv, "Cs"sv, "Co"sv, "Cn"sv });
  852. }
  853. static void normalize_script_extensions(PropList& script_extensions, PropList const& script_list, Vector<Alias> const& script_aliases)
  854. {
  855. // The ScriptExtensions UCD file lays out its code point ranges rather uniquely compared to
  856. // other files. The Script listed on each line may either be a full Script string or an aliased
  857. // abbreviation. Further, the extensions may or may not include the base Script list. Normalize
  858. // the extensions here to be keyed by the full Script name and always include the base list.
  859. auto extensions = move(script_extensions);
  860. script_extensions = script_list;
  861. for (auto const& extension : extensions) {
  862. auto it = find_if(script_aliases.begin(), script_aliases.end(), [&](auto const& alias) { return extension.key == alias.alias; });
  863. auto const& key = (it == script_aliases.end()) ? extension.key : it->name;
  864. auto& code_points = script_extensions.find(key)->value;
  865. code_points.extend(extension.value);
  866. sort_and_merge_code_point_ranges(code_points);
  867. }
  868. // Lastly, the Common and Inherited script extensions are special. They must not contain any
  869. // code points which appear in other script extensions. The ScriptExtensions UCD file does not
  870. // list these extensions, therefore this peculiarity must be handled programmatically.
  871. // https://www.unicode.org/reports/tr24/#Assignment_ScriptX_Values
  872. auto code_point_has_other_extension = [&](StringView key, u32 code_point) {
  873. for (auto const& extension : extensions) {
  874. if (extension.key == key)
  875. continue;
  876. if (any_of(extension.value, [&](auto const& r) { return (r.first <= code_point) && (code_point <= r.last); }))
  877. return true;
  878. }
  879. return false;
  880. };
  881. auto get_code_points_without_other_extensions = [&](StringView key) {
  882. auto code_points = flatten_code_point_ranges(script_list.find(key)->value);
  883. code_points.remove_all_matching([&](u32 c) { return code_point_has_other_extension(key, c); });
  884. return code_points;
  885. };
  886. auto common_code_points = get_code_points_without_other_extensions("Common"sv);
  887. script_extensions.set("Common"sv, form_code_point_ranges(common_code_points));
  888. auto inherited_code_points = get_code_points_without_other_extensions("Inherited"sv);
  889. script_extensions.set("Inherited"sv, form_code_point_ranges(inherited_code_points));
  890. }
  891. ErrorOr<int> serenity_main(Main::Arguments arguments)
  892. {
  893. StringView generated_header_path;
  894. StringView generated_implementation_path;
  895. StringView unicode_data_path;
  896. StringView special_casing_path;
  897. StringView derived_general_category_path;
  898. StringView prop_list_path;
  899. StringView derived_core_prop_path;
  900. StringView derived_binary_prop_path;
  901. StringView prop_alias_path;
  902. StringView prop_value_alias_path;
  903. StringView name_alias_path;
  904. StringView scripts_path;
  905. StringView script_extensions_path;
  906. StringView emoji_data_path;
  907. StringView normalization_path;
  908. StringView grapheme_break_path;
  909. StringView word_break_path;
  910. StringView sentence_break_path;
  911. Core::ArgsParser args_parser;
  912. args_parser.add_option(generated_header_path, "Path to the Unicode Data header file to generate", "generated-header-path", 'h', "generated-header-path");
  913. args_parser.add_option(generated_implementation_path, "Path to the Unicode Data implementation file to generate", "generated-implementation-path", 'c', "generated-implementation-path");
  914. args_parser.add_option(unicode_data_path, "Path to UnicodeData.txt file", "unicode-data-path", 'u', "unicode-data-path");
  915. args_parser.add_option(special_casing_path, "Path to SpecialCasing.txt file", "special-casing-path", 's', "special-casing-path");
  916. args_parser.add_option(derived_general_category_path, "Path to DerivedGeneralCategory.txt file", "derived-general-category-path", 'g', "derived-general-category-path");
  917. args_parser.add_option(prop_list_path, "Path to PropList.txt file", "prop-list-path", 'p', "prop-list-path");
  918. args_parser.add_option(derived_core_prop_path, "Path to DerivedCoreProperties.txt file", "derived-core-prop-path", 'd', "derived-core-prop-path");
  919. args_parser.add_option(derived_binary_prop_path, "Path to DerivedBinaryProperties.txt file", "derived-binary-prop-path", 'b', "derived-binary-prop-path");
  920. args_parser.add_option(prop_alias_path, "Path to PropertyAliases.txt file", "prop-alias-path", 'a', "prop-alias-path");
  921. args_parser.add_option(prop_value_alias_path, "Path to PropertyValueAliases.txt file", "prop-value-alias-path", 'v', "prop-value-alias-path");
  922. args_parser.add_option(name_alias_path, "Path to NameAliases.txt file", "name-alias-path", 'm', "name-alias-path");
  923. args_parser.add_option(scripts_path, "Path to Scripts.txt file", "scripts-path", 'r', "scripts-path");
  924. args_parser.add_option(script_extensions_path, "Path to ScriptExtensions.txt file", "script-extensions-path", 'x', "script-extensions-path");
  925. args_parser.add_option(emoji_data_path, "Path to emoji-data.txt file", "emoji-data-path", 'e', "emoji-data-path");
  926. args_parser.add_option(normalization_path, "Path to DerivedNormalizationProps.txt file", "normalization-path", 'n', "normalization-path");
  927. args_parser.add_option(grapheme_break_path, "Path to GraphemeBreakProperty.txt file", "grapheme-break-path", 'f', "grapheme-break-path");
  928. args_parser.add_option(word_break_path, "Path to WordBreakProperty.txt file", "word-break-path", 'w', "word-break-path");
  929. args_parser.add_option(sentence_break_path, "Path to SentenceBreakProperty.txt file", "sentence-break-path", 'i', "sentence-break-path");
  930. args_parser.parse(arguments);
  931. auto open_file = [&](StringView path, Core::OpenMode mode = Core::OpenMode::ReadOnly) -> ErrorOr<NonnullRefPtr<Core::File>> {
  932. if (path.is_empty()) {
  933. args_parser.print_usage(stderr, arguments.argv[0]);
  934. return Error::from_string_literal("Must provide all command line options"sv);
  935. }
  936. return Core::File::open(path, mode);
  937. };
  938. auto generated_header_file = TRY(open_file(generated_header_path, Core::OpenMode::ReadWrite));
  939. auto generated_implementation_file = TRY(open_file(generated_implementation_path, Core::OpenMode::ReadWrite));
  940. auto unicode_data_file = TRY(open_file(unicode_data_path));
  941. auto derived_general_category_file = TRY(open_file(derived_general_category_path));
  942. auto special_casing_file = TRY(open_file(special_casing_path));
  943. auto prop_list_file = TRY(open_file(prop_list_path));
  944. auto derived_core_prop_file = TRY(open_file(derived_core_prop_path));
  945. auto derived_binary_prop_file = TRY(open_file(derived_binary_prop_path));
  946. auto prop_alias_file = TRY(open_file(prop_alias_path));
  947. auto prop_value_alias_file = TRY(open_file(prop_value_alias_path));
  948. auto name_alias_file = TRY(open_file(name_alias_path));
  949. auto scripts_file = TRY(open_file(scripts_path));
  950. auto script_extensions_file = TRY(open_file(script_extensions_path));
  951. auto emoji_data_file = TRY(open_file(emoji_data_path));
  952. auto normalization_file = TRY(open_file(normalization_path));
  953. auto grapheme_break_file = TRY(open_file(grapheme_break_path));
  954. auto word_break_file = TRY(open_file(word_break_path));
  955. auto sentence_break_file = TRY(open_file(sentence_break_path));
  956. UnicodeData unicode_data {};
  957. parse_special_casing(special_casing_file, unicode_data);
  958. parse_prop_list(derived_general_category_file, unicode_data.general_categories);
  959. parse_prop_list(prop_list_file, unicode_data.prop_list);
  960. parse_prop_list(derived_core_prop_file, unicode_data.prop_list);
  961. parse_prop_list(derived_binary_prop_file, unicode_data.prop_list);
  962. parse_prop_list(emoji_data_file, unicode_data.prop_list);
  963. parse_normalization_props(normalization_file, unicode_data);
  964. parse_alias_list(prop_alias_file, unicode_data.prop_list, unicode_data.prop_aliases);
  965. parse_prop_list(scripts_file, unicode_data.script_list);
  966. parse_prop_list(script_extensions_file, unicode_data.script_extensions, true);
  967. parse_name_aliases(name_alias_file, unicode_data);
  968. parse_prop_list(grapheme_break_file, unicode_data.grapheme_break_props);
  969. parse_prop_list(word_break_file, unicode_data.word_break_props);
  970. parse_prop_list(sentence_break_file, unicode_data.sentence_break_props);
  971. populate_general_category_unions(unicode_data.general_categories);
  972. parse_unicode_data(unicode_data_file, unicode_data);
  973. parse_value_alias_list(prop_value_alias_file, "gc"sv, unicode_data.general_categories.keys(), unicode_data.general_category_aliases);
  974. parse_value_alias_list(prop_value_alias_file, "sc"sv, unicode_data.script_list.keys(), unicode_data.script_aliases, false);
  975. normalize_script_extensions(unicode_data.script_extensions, unicode_data.script_list, unicode_data.script_aliases);
  976. generate_unicode_data_header(generated_header_file, unicode_data);
  977. generate_unicode_data_implementation(generated_implementation_file, unicode_data);
  978. return 0;
  979. }