[libc-commits] [libc] [libc] Implemented CharacterConverter push/pop for utf32->utf8 conversions (PR #143971)
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Mon Jun 16 11:16:06 PDT 2025
================
@@ -18,17 +20,75 @@ namespace internal {
CharacterConverter::CharacterConverter(mbstate *mbstate) { state = mbstate; }
+void CharacterConverter::clear() {
+ state->partial = 0;
+ state->bytes_processed = 0;
+ state->total_bytes = 0;
+}
+
bool CharacterConverter::isComplete() {
return state->bytes_processed == state->total_bytes;
}
-int CharacterConverter::push(char8_t utf8_byte) {}
+int CharacterConverter::push(char32_t utf32) {
+ // we can't be partially through a conversion when pushing a utf32 value
+ if (!isComplete())
+ return -1;
+
+ state->partial = utf32;
+ state->bytes_processed = 0;
+
+ // determine number of utf-8 bytes needed to represent this utf32 value
+ constexpr char32_t MAX_VALUE_PER_UTF8_LEN[] = {0x7f, 0x7ff, 0xffff, 0x10ffff};
+ constexpr int NUM_RANGES = 4;
+ for (uint8_t i = 0; i < NUM_RANGES; i++) {
+ if (state->partial <= MAX_VALUE_PER_UTF8_LEN[i]) {
+ state->total_bytes = i + 1;
+ return 0;
+ }
+ }
+
+ // `utf32` contains a value that is too large to actually represent a valid
+ // unicode character
+ clear();
+ return -1;
+}
+
+ErrorOr<char8_t> CharacterConverter::pop_utf8() {
+ if (isComplete())
+ return Error(-1);
+
+ constexpr char8_t FIRST_BYTE_HEADERS[] = {0, 0xC0, 0xE0, 0xF0};
+ constexpr char8_t CONTINUING_BYTE_HEADER = 0x80;
-int CharacterConverter::push(char32_t utf32) {}
+ // the number of bits per utf-8 byte that actually encode character
+ // information not metadata (# of bits excluding the byte headers)
+ constexpr size_t ENCODED_BITS_PER_UTF8 = 6;
+ constexpr int MASK_ENCODED_BITS =
+ mask_trailing_ones<unsigned int, ENCODED_BITS_PER_UTF8>();
-utf_ret<char8_t> CharacterConverter::pop_utf8() {}
+ char32_t output;
-utf_ret<char32_t> CharacterConverter::pop_utf32() {}
+ // Shift to get the next 6 bits from the utf32 encoding
+ const char32_t shift_amount =
+ (state->total_bytes - state->bytes_processed - 1) * ENCODED_BITS_PER_UTF8;
+ if (state->bytes_processed == 0) {
+ /*
+ Choose the correct set of most significant bits to encode the length
+ of the utf8 sequence. The remaining bits contain the most significant
+ bits of the unicode value of the character.
+ */
+ output = FIRST_BYTE_HEADERS[state->total_bytes - 1] |
+ (state->partial >> shift_amount);
+ } else {
+ // Get the next 6 bits and format it like so: 10xxxxxx
+ output = CONTINUING_BYTE_HEADER |
+ ((state->partial >> shift_amount) & MASK_ENCODED_BITS);
+ }
+
+ state->bytes_processed++;
+ return (char8_t)output;
----------------
michaelrj-google wrote:
nit: use static_cast instead of c style cast.
https://github.com/llvm/llvm-project/pull/143971
More information about the libc-commits
mailing list