mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 11:54:57 +00:00

Previously, each code point's General Category was part of the generated UnicodeData structure. This ultimately presented two problems, one functional and one performance related: * Some General Categories are applied to unassigned code points, for example the Unassigned (Cn) category. Unassigned code points are strictly excluded from UnicodeData.txt, so by relying on that file, the generator is unable to handle these categories. * Lookups for General Categories are slower when searching through the large UnicodeData hash map. Even though lookups are O(1), the hash function turned out to be slower than binary searching through a category-specific table. So, now a table is generated for each General Category. When querying a code point for a category, a binary search is done on each code point range in that category's table to check if code point has that category. Further, General Categories are now parsed from the UCD file DerivedGeneralCategory.txt. This file is a normal "prop list" file and contains the categories for unassigned code points.
23 lines
377 B
C++
23 lines
377 B
C++
/*
|
|
* Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace Unicode {
|
|
|
|
enum class Condition : u8;
|
|
enum class GeneralCategory : u8;
|
|
enum class Locale : u8;
|
|
enum class Property : u64;
|
|
enum class Script : u8;
|
|
enum class WordBreakProperty : u8;
|
|
|
|
struct SpecialCasing;
|
|
struct UnicodeData;
|
|
|
|
}
|