commit | 7ebe55f85dc6a221c658da0f45b764c367b81015 | [log] [tgz] |
---|---|---|
author | James Farrell <jamesfarrell@google.com> | Tue Aug 06 16:57:10 2024 +0000 |
committer | James Farrell <jamesfarrell@google.com> | Tue Aug 06 16:57:10 2024 +0000 |
tree | 6aefb942c72b8962fff3aaef81a5d856979a0b8f | |
parent | 1352fb317244ce80db18722be4661e0cc03b8f26 [diff] |
Update Android.bp by running cargo_embargo Test: ran cargo_embargo Change-Id: I0913110ab2cea7265e48b9bcbdc6f1a6ff9bf5ba
Convert between ordinary UTF-8 and CESU-8 encodings.
CESU-8 encodes characters outside the Basic Multilingual Plane as two UTF-16 surrogate chacaters, which are then further re-encoded as invalid, 3-byte UTF-8 characters. This means that 4-byte UTF-8 sequences become 6-byte CESU-8 sequences.
Note that CESU-8 is only intended for internal use within tightly-coupled systems, and not for data interchange.
This encoding is sometimes needed when working with Java, Oracle or MySQL, and when trying to store emoji, hieroglyphs, or other characters on the Supplementary Multilingual Plane or the Supplementary Ideographic Plane.
Some of this code is adapted from Rust's src/libcore/str.rs
file. This code is covered by LICENSE-RUST.txt and copyright by The Rust Project Developers and individual Rust contributors, as described in that file.
The new code in this project is distributed under the same terms.