12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /*
- * Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <AK/Optional.h>
- #include <AK/String.h>
- #include <AK/StringView.h>
- #include <AK/Types.h>
- #include <AK/Vector.h>
- #include <LibUnicode/Forward.h>
- namespace Unicode::Detail {
- struct Symbols {
- static Symbols const& ensure_loaded();
- // Loaded from UnicodeData.cpp:
- Optional<String> (*code_point_display_name)(u32) { nullptr };
- u32 (*canonical_combining_class)(u32 code_point) { nullptr };
- u32 (*simple_uppercase_mapping)(u32) { nullptr };
- u32 (*simple_lowercase_mapping)(u32) { nullptr };
- Span<SpecialCasing const* const> (*special_case_mapping)(u32 code_point) { nullptr };
- Optional<GeneralCategory> (*general_category_from_string)(StringView) { nullptr };
- bool (*code_point_has_general_category)(u32, GeneralCategory) { nullptr };
- Optional<Property> (*property_from_string)(StringView) { nullptr };
- bool (*code_point_has_property)(u32, Property) { nullptr };
- Optional<Script> (*script_from_string)(StringView) { nullptr };
- bool (*code_point_has_script)(u32, Script) { nullptr };
- bool (*code_point_has_script_extension)(u32, Script) { nullptr };
- // Loaded from UnicodeLocale.cpp:
- Optional<Locale> (*locale_from_string)(StringView) { nullptr };
- Optional<StringView> (*get_locale_language_mapping)(StringView, StringView) { nullptr };
- Optional<StringView> (*get_locale_territory_mapping)(StringView, StringView) { nullptr };
- Optional<StringView> (*get_locale_script_tag_mapping)(StringView, StringView) { nullptr };
- Optional<StringView> (*get_locale_long_currency_mapping)(StringView, StringView) { nullptr };
- Optional<StringView> (*get_locale_short_currency_mapping)(StringView, StringView) { nullptr };
- Optional<StringView> (*get_locale_narrow_currency_mapping)(StringView, StringView) { nullptr };
- Optional<StringView> (*get_locale_numeric_currency_mapping)(StringView, StringView) { nullptr };
- Optional<StringView> (*get_locale_key_mapping)(StringView, StringView) { nullptr };
- Optional<ListPatterns> (*get_locale_list_pattern_mapping)(StringView, StringView, StringView) { nullptr };
- Optional<StringView> (*resolve_language_alias)(StringView) { nullptr };
- Optional<StringView> (*resolve_territory_alias)(StringView) { nullptr };
- Optional<StringView> (*resolve_script_tag_alias)(StringView) { nullptr };
- Optional<StringView> (*resolve_variant_alias)(StringView) { nullptr };
- Optional<StringView> (*resolve_subdivision_alias)(StringView) { nullptr };
- void (*resolve_complex_language_aliases)(LanguageID&);
- Optional<LanguageID> (*add_likely_subtags)(LanguageID const&);
- Optional<String> (*resolve_most_likely_territory)(LanguageID const&);
- // Loaded from UnicodeNumberFormat.cpp:
- Optional<StringView> (*get_number_system_symbol)(StringView, StringView, NumericSymbol);
- Optional<NumberGroupings> (*get_number_system_groupings)(StringView, StringView);
- Optional<NumberFormat> (*get_standard_number_system_format)(StringView, StringView, StandardNumberFormatType);
- Vector<NumberFormat> (*get_compact_number_system_formats)(StringView, StringView, CompactNumberFormatType);
- Vector<NumberFormat> (*get_unit_formats)(StringView, StringView, Style);
- private:
- Symbols() = default;
- };
- }
|