9 releases (stable)

1.4.1 Jan 23, 2024
1.4.0 Nov 16, 2023
1.3.2 Oct 3, 2023
1.2.0 Apr 14, 2023
0.0.1 Apr 29, 2021

#228 in Internationalization (i18n)

Download history 3755/week @ 2023-12-22 5380/week @ 2023-12-29 6767/week @ 2024-01-05 6167/week @ 2024-01-12 7008/week @ 2024-01-19 6923/week @ 2024-01-26 6484/week @ 2024-02-02 6215/week @ 2024-02-09 8100/week @ 2024-02-16 8103/week @ 2024-02-23 7457/week @ 2024-03-01 7219/week @ 2024-03-08 8652/week @ 2024-03-15 7088/week @ 2024-03-22 6267/week @ 2024-03-29 6327/week @ 2024-04-05

29,466 downloads per month
Used in 37 crates (8 directly)

Custom license

1.5MB
26K SLoC

icu_normalizer crates.io

Normalizing text into Unicode Normalization Forms.

This module is published as its own crate (icu_normalizer) and as part of the icu crate. See the latter for more details on the ICU4X project.

Implementation notes

The normalizer operates on a lazy iterator over Unicode scalar values (Rust char) internally and iterating over guaranteed-valid UTF-8, potentially-invalid UTF-8, and potentially-invalid UTF-16 is a step that doesn’t leak into the normalizer internals. Ill-formed byte sequences are treated as U+FFFD.

The normalizer data layout is not based on the ICU4C design at all. Instead, the normalization data layout is a clean-slate design optimized for the concept of fusing the NFD decomposition into the collator. That is, the decomposing normalizer is a by-product of the collator-motivated data layout.

Notably, the decomposition data structure is optimized for a starter decomposing to itself, which is the most common case, and for a starter decomposing to a starter and a non-starter on the Basic Multilingual Plane. Notably, in this case, the collator makes use of the knowledge that the second character of such a decomposition is a non-starter. Therefore, decomposition into two starters is handled by generic fallback path that looks the decomposition from an array by offset and length instead of baking a BMP starter pair directly into a trie value.

The decompositions into non-starters are hard-coded. At present in Unicode, these appear to be special cases falling into three categories:

  1. Deprecated combining marks.
  2. Particular Tibetan vowel sings.
  3. NFKD only: half-width kana voicing marks.

Hopefully Unicode never adds more decompositions into non-starters (other than a character decomposing to itself), but if it does, a code update is needed instead of a mere data update.

The composing normalizer builds on the decomposing normalizer by performing the canonical composition post-processing per spec. As an optimization, though, the composing normalizer attempts to pass through already-normalized text consisting of starters that never combine backwards and that map to themselves if followed by a character whose decomposition starts with a starter that never combines backwards.

As a difference with ICU4C, the composing normalizer has only the simplest possible passthrough (only one inversion list lookup per character in the best case) and the full decompose-then-canonically-compose behavior, whereas ICU4C has other paths between these extremes. The ICU4X collator doesn't make use of the FCD concept at all in order to avoid doing the work of checking whether the FCD condition holds.

More Information

For more information on development, authorship, contributing etc. please visit ICU4X home page.

Dependencies

~1.1–1.8MB
~35K SLoC