12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253 |
- // © 2016 and later: Unicode, Inc. and others.
- // License & terms of use: http://www.unicode.org/copyright.html
- /*
- **********************************************************************
- * Copyright (C) 2002-2015, International Business Machines
- * Corporation and others. All Rights Reserved.
- **********************************************************************
- * file name: ucnv_u32.c
- * encoding: UTF-8
- * tab size: 8 (not used)
- * indentation:4
- *
- * created on: 2002jul01
- * created by: Markus W. Scherer
- *
- * UTF-32 converter implementation. Used to be in ucnv_utf.c.
- */
- #include "unicode/utypes.h"
- #if !UCONFIG_NO_CONVERSION && !UCONFIG_ONLY_HTML_CONVERSION
- #include "unicode/ucnv.h"
- #include "unicode/utf.h"
- #include "ucnv_bld.h"
- #include "ucnv_cnv.h"
- #include "cmemory.h"
- #define MAXIMUM_UCS2 0x0000FFFF
- #define MAXIMUM_UTF 0x0010FFFF
- #define HALF_SHIFT 10
- #define HALF_BASE 0x0010000
- #define HALF_MASK 0x3FF
- #define SURROGATE_HIGH_START 0xD800
- #define SURROGATE_LOW_START 0xDC00
- /* -SURROGATE_LOW_START + HALF_BASE */
- #define SURROGATE_LOW_BASE 9216
- enum {
- UCNV_NEED_TO_WRITE_BOM=1
- };
- /* UTF-32BE ----------------------------------------------------------------- */
- U_CDECL_BEGIN
- static void U_CALLCONV
- T_UConverter_toUnicode_UTF32_BE(UConverterToUnicodeArgs * args,
- UErrorCode * err)
- {
- const unsigned char *mySource = (unsigned char *) args->source;
- char16_t *myTarget = args->target;
- const unsigned char *sourceLimit = (unsigned char *) args->sourceLimit;
- const char16_t *targetLimit = args->targetLimit;
- unsigned char *toUBytes = args->converter->toUBytes;
- uint32_t ch, i;
- /* Restore state of current sequence */
- if (args->converter->toULength > 0 && myTarget < targetLimit) {
- i = args->converter->toULength; /* restore # of bytes consumed */
- args->converter->toULength = 0;
- ch = args->converter->toUnicodeStatus - 1;/*Stores the previously calculated ch from a previous call*/
- args->converter->toUnicodeStatus = 0;
- goto morebytes;
- }
- while (mySource < sourceLimit && myTarget < targetLimit) {
- i = 0;
- ch = 0;
- morebytes:
- while (i < sizeof(uint32_t)) {
- if (mySource < sourceLimit) {
- ch = (ch << 8) | (uint8_t)(*mySource);
- toUBytes[i++] = (char) *(mySource++);
- }
- else {
- /* stores a partially calculated target*/
- /* + 1 to make 0 a valid character */
- args->converter->toUnicodeStatus = ch + 1;
- args->converter->toULength = (int8_t) i;
- goto donefornow;
- }
- }
- if (ch <= MAXIMUM_UTF && !U_IS_SURROGATE(ch)) {
- /* Normal valid byte when the loop has not prematurely terminated (i < inBytes) */
- if (ch <= MAXIMUM_UCS2)
- {
- /* fits in 16 bits */
- *(myTarget++) = (char16_t) ch;
- }
- else {
- /* write out the surrogates */
- *(myTarget++) = U16_LEAD(ch);
- ch = U16_TRAIL(ch);
- if (myTarget < targetLimit) {
- *(myTarget++) = (char16_t)ch;
- }
- else {
- /* Put in overflow buffer (not handled here) */
- args->converter->UCharErrorBuffer[0] = (char16_t) ch;
- args->converter->UCharErrorBufferLength = 1;
- *err = U_BUFFER_OVERFLOW_ERROR;
- break;
- }
- }
- }
- else {
- args->converter->toULength = (int8_t)i;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- }
- donefornow:
- if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) {
- /* End of target buffer */
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- args->target = myTarget;
- args->source = (const char *) mySource;
- }
- static void U_CALLCONV
- T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC(UConverterToUnicodeArgs * args,
- UErrorCode * err)
- {
- const unsigned char *mySource = (unsigned char *) args->source;
- char16_t *myTarget = args->target;
- int32_t *myOffsets = args->offsets;
- const unsigned char *sourceLimit = (unsigned char *) args->sourceLimit;
- const char16_t *targetLimit = args->targetLimit;
- unsigned char *toUBytes = args->converter->toUBytes;
- uint32_t ch, i;
- int32_t offsetNum = 0;
- /* Restore state of current sequence */
- if (args->converter->toULength > 0 && myTarget < targetLimit) {
- i = args->converter->toULength; /* restore # of bytes consumed */
- args->converter->toULength = 0;
- ch = args->converter->toUnicodeStatus - 1;/*Stores the previously calculated ch from a previous call*/
- args->converter->toUnicodeStatus = 0;
- goto morebytes;
- }
- while (mySource < sourceLimit && myTarget < targetLimit) {
- i = 0;
- ch = 0;
- morebytes:
- while (i < sizeof(uint32_t)) {
- if (mySource < sourceLimit) {
- ch = (ch << 8) | (uint8_t)(*mySource);
- toUBytes[i++] = (char) *(mySource++);
- }
- else {
- /* stores a partially calculated target*/
- /* + 1 to make 0 a valid character */
- args->converter->toUnicodeStatus = ch + 1;
- args->converter->toULength = (int8_t) i;
- goto donefornow;
- }
- }
- if (ch <= MAXIMUM_UTF && !U_IS_SURROGATE(ch)) {
- /* Normal valid byte when the loop has not prematurely terminated (i < inBytes) */
- if (ch <= MAXIMUM_UCS2) {
- /* fits in 16 bits */
- *(myTarget++) = (char16_t) ch;
- *(myOffsets++) = offsetNum;
- }
- else {
- /* write out the surrogates */
- *(myTarget++) = U16_LEAD(ch);
- *myOffsets++ = offsetNum;
- ch = U16_TRAIL(ch);
- if (myTarget < targetLimit)
- {
- *(myTarget++) = (char16_t)ch;
- *(myOffsets++) = offsetNum;
- }
- else {
- /* Put in overflow buffer (not handled here) */
- args->converter->UCharErrorBuffer[0] = (char16_t) ch;
- args->converter->UCharErrorBufferLength = 1;
- *err = U_BUFFER_OVERFLOW_ERROR;
- break;
- }
- }
- }
- else {
- args->converter->toULength = (int8_t)i;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- offsetNum += i;
- }
- donefornow:
- if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err))
- {
- /* End of target buffer */
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- args->target = myTarget;
- args->source = (const char *) mySource;
- args->offsets = myOffsets;
- }
- static void U_CALLCONV
- T_UConverter_fromUnicode_UTF32_BE(UConverterFromUnicodeArgs * args,
- UErrorCode * err)
- {
- const char16_t *mySource = args->source;
- unsigned char *myTarget;
- const char16_t *sourceLimit = args->sourceLimit;
- const unsigned char *targetLimit = (unsigned char *) args->targetLimit;
- UChar32 ch, ch2;
- unsigned int indexToWrite;
- unsigned char temp[sizeof(uint32_t)];
- if(mySource >= sourceLimit) {
- /* no input, nothing to do */
- return;
- }
- /* write the BOM if necessary */
- if(args->converter->fromUnicodeStatus==UCNV_NEED_TO_WRITE_BOM) {
- static const char bom[]={ 0, 0, (char)0xfeu, (char)0xffu };
- ucnv_fromUWriteBytes(args->converter,
- bom, 4,
- &args->target, args->targetLimit,
- &args->offsets, -1,
- err);
- args->converter->fromUnicodeStatus=0;
- }
- myTarget = (unsigned char *) args->target;
- temp[0] = 0;
- if (args->converter->fromUChar32) {
- ch = args->converter->fromUChar32;
- args->converter->fromUChar32 = 0;
- goto lowsurogate;
- }
- while (mySource < sourceLimit && myTarget < targetLimit) {
- ch = *(mySource++);
- if (U_IS_SURROGATE(ch)) {
- if (U_IS_LEAD(ch)) {
- lowsurogate:
- if (mySource < sourceLimit) {
- ch2 = *mySource;
- if (U_IS_TRAIL(ch2)) {
- ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE;
- mySource++;
- }
- else {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- args->converter->fromUChar32 = ch;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- }
- else {
- /* ran out of source */
- args->converter->fromUChar32 = ch;
- if (args->flush) {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- *err = U_ILLEGAL_CHAR_FOUND;
- }
- break;
- }
- }
- else {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- args->converter->fromUChar32 = ch;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- }
- /* We cannot get any larger than 10FFFF because we are coming from UTF-16 */
- temp[1] = (uint8_t) (ch >> 16 & 0x1F);
- temp[2] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
- temp[3] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
- for (indexToWrite = 0; indexToWrite <= sizeof(uint32_t) - 1; indexToWrite++) {
- if (myTarget < targetLimit) {
- *(myTarget++) = temp[indexToWrite];
- }
- else {
- args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- }
- }
- if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) {
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- args->target = (char *) myTarget;
- args->source = mySource;
- }
- static void U_CALLCONV
- T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC(UConverterFromUnicodeArgs * args,
- UErrorCode * err)
- {
- const char16_t *mySource = args->source;
- unsigned char *myTarget;
- int32_t *myOffsets;
- const char16_t *sourceLimit = args->sourceLimit;
- const unsigned char *targetLimit = (unsigned char *) args->targetLimit;
- UChar32 ch, ch2;
- int32_t offsetNum = 0;
- unsigned int indexToWrite;
- unsigned char temp[sizeof(uint32_t)];
- if(mySource >= sourceLimit) {
- /* no input, nothing to do */
- return;
- }
- /* write the BOM if necessary */
- if(args->converter->fromUnicodeStatus==UCNV_NEED_TO_WRITE_BOM) {
- static const char bom[]={ 0, 0, (char)0xfeu, (char)0xffu };
- ucnv_fromUWriteBytes(args->converter,
- bom, 4,
- &args->target, args->targetLimit,
- &args->offsets, -1,
- err);
- args->converter->fromUnicodeStatus=0;
- }
- myTarget = (unsigned char *) args->target;
- myOffsets = args->offsets;
- temp[0] = 0;
- if (args->converter->fromUChar32) {
- ch = args->converter->fromUChar32;
- args->converter->fromUChar32 = 0;
- goto lowsurogate;
- }
- while (mySource < sourceLimit && myTarget < targetLimit) {
- ch = *(mySource++);
- if (U_IS_SURROGATE(ch)) {
- if (U_IS_LEAD(ch)) {
- lowsurogate:
- if (mySource < sourceLimit) {
- ch2 = *mySource;
- if (U_IS_TRAIL(ch2)) {
- ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE;
- mySource++;
- }
- else {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- args->converter->fromUChar32 = ch;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- }
- else {
- /* ran out of source */
- args->converter->fromUChar32 = ch;
- if (args->flush) {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- *err = U_ILLEGAL_CHAR_FOUND;
- }
- break;
- }
- }
- else {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- args->converter->fromUChar32 = ch;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- }
- /* We cannot get any larger than 10FFFF because we are coming from UTF-16 */
- temp[1] = (uint8_t) (ch >> 16 & 0x1F);
- temp[2] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
- temp[3] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
- for (indexToWrite = 0; indexToWrite <= sizeof(uint32_t) - 1; indexToWrite++) {
- if (myTarget < targetLimit) {
- *(myTarget++) = temp[indexToWrite];
- *(myOffsets++) = offsetNum;
- }
- else {
- args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- }
- offsetNum = offsetNum + 1 + (temp[1] != 0);
- }
- if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) {
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- args->target = (char *) myTarget;
- args->source = mySource;
- args->offsets = myOffsets;
- }
- static UChar32 U_CALLCONV
- T_UConverter_getNextUChar_UTF32_BE(UConverterToUnicodeArgs* args,
- UErrorCode* err)
- {
- const uint8_t *mySource;
- UChar32 myUChar;
- int32_t length;
- mySource = (const uint8_t *)args->source;
- if (mySource >= (const uint8_t *)args->sourceLimit)
- {
- /* no input */
- *err = U_INDEX_OUTOFBOUNDS_ERROR;
- return 0xffff;
- }
- length = (int32_t)((const uint8_t *)args->sourceLimit - mySource);
- if (length < 4)
- {
- /* got a partial character */
- uprv_memcpy(args->converter->toUBytes, mySource, length);
- args->converter->toULength = (int8_t)length;
- args->source = (const char *)(mySource + length);
- *err = U_TRUNCATED_CHAR_FOUND;
- return 0xffff;
- }
- /* Don't even try to do a direct cast because the value may be on an odd address. */
- myUChar = ((UChar32)mySource[0] << 24)
- | ((UChar32)mySource[1] << 16)
- | ((UChar32)mySource[2] << 8)
- | ((UChar32)mySource[3]);
- args->source = (const char *)(mySource + 4);
- if ((uint32_t)myUChar <= MAXIMUM_UTF && !U_IS_SURROGATE(myUChar)) {
- return myUChar;
- }
- uprv_memcpy(args->converter->toUBytes, mySource, 4);
- args->converter->toULength = 4;
- *err = U_ILLEGAL_CHAR_FOUND;
- return 0xffff;
- }
- U_CDECL_END
- static const UConverterImpl _UTF32BEImpl = {
- UCNV_UTF32_BigEndian,
- nullptr,
- nullptr,
- nullptr,
- nullptr,
- nullptr,
- T_UConverter_toUnicode_UTF32_BE,
- T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC,
- T_UConverter_fromUnicode_UTF32_BE,
- T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC,
- T_UConverter_getNextUChar_UTF32_BE,
- nullptr,
- nullptr,
- nullptr,
- nullptr,
- ucnv_getNonSurrogateUnicodeSet,
- nullptr,
- nullptr
- };
- /* The 1232 CCSID refers to any version of Unicode with any endianness of UTF-32 */
- static const UConverterStaticData _UTF32BEStaticData = {
- sizeof(UConverterStaticData),
- "UTF-32BE",
- 1232,
- UCNV_IBM, UCNV_UTF32_BigEndian, 4, 4,
- { 0, 0, 0xff, 0xfd }, 4, false, false,
- 0,
- 0,
- { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */
- };
- const UConverterSharedData _UTF32BEData =
- UCNV_IMMUTABLE_SHARED_DATA_INITIALIZER(&_UTF32BEStaticData, &_UTF32BEImpl);
- /* UTF-32LE ---------------------------------------------------------- */
- U_CDECL_BEGIN
- static void U_CALLCONV
- T_UConverter_toUnicode_UTF32_LE(UConverterToUnicodeArgs * args,
- UErrorCode * err)
- {
- const unsigned char *mySource = (unsigned char *) args->source;
- char16_t *myTarget = args->target;
- const unsigned char *sourceLimit = (unsigned char *) args->sourceLimit;
- const char16_t *targetLimit = args->targetLimit;
- unsigned char *toUBytes = args->converter->toUBytes;
- uint32_t ch, i;
- /* Restore state of current sequence */
- if (args->converter->toULength > 0 && myTarget < targetLimit)
- {
- i = args->converter->toULength; /* restore # of bytes consumed */
- args->converter->toULength = 0;
- /* Stores the previously calculated ch from a previous call*/
- ch = args->converter->toUnicodeStatus - 1;
- args->converter->toUnicodeStatus = 0;
- goto morebytes;
- }
- while (mySource < sourceLimit && myTarget < targetLimit)
- {
- i = 0;
- ch = 0;
- morebytes:
- while (i < sizeof(uint32_t))
- {
- if (mySource < sourceLimit)
- {
- ch |= ((uint8_t)(*mySource)) << (i * 8);
- toUBytes[i++] = (char) *(mySource++);
- }
- else
- {
- /* stores a partially calculated target*/
- /* + 1 to make 0 a valid character */
- args->converter->toUnicodeStatus = ch + 1;
- args->converter->toULength = (int8_t) i;
- goto donefornow;
- }
- }
- if (ch <= MAXIMUM_UTF && !U_IS_SURROGATE(ch)) {
- /* Normal valid byte when the loop has not prematurely terminated (i < inBytes) */
- if (ch <= MAXIMUM_UCS2) {
- /* fits in 16 bits */
- *(myTarget++) = (char16_t) ch;
- }
- else {
- /* write out the surrogates */
- *(myTarget++) = U16_LEAD(ch);
- ch = U16_TRAIL(ch);
- if (myTarget < targetLimit) {
- *(myTarget++) = (char16_t)ch;
- }
- else {
- /* Put in overflow buffer (not handled here) */
- args->converter->UCharErrorBuffer[0] = (char16_t) ch;
- args->converter->UCharErrorBufferLength = 1;
- *err = U_BUFFER_OVERFLOW_ERROR;
- break;
- }
- }
- }
- else {
- args->converter->toULength = (int8_t)i;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- }
- donefornow:
- if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err))
- {
- /* End of target buffer */
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- args->target = myTarget;
- args->source = (const char *) mySource;
- }
- static void U_CALLCONV
- T_UConverter_toUnicode_UTF32_LE_OFFSET_LOGIC(UConverterToUnicodeArgs * args,
- UErrorCode * err)
- {
- const unsigned char *mySource = (unsigned char *) args->source;
- char16_t *myTarget = args->target;
- int32_t *myOffsets = args->offsets;
- const unsigned char *sourceLimit = (unsigned char *) args->sourceLimit;
- const char16_t *targetLimit = args->targetLimit;
- unsigned char *toUBytes = args->converter->toUBytes;
- uint32_t ch, i;
- int32_t offsetNum = 0;
- /* Restore state of current sequence */
- if (args->converter->toULength > 0 && myTarget < targetLimit)
- {
- i = args->converter->toULength; /* restore # of bytes consumed */
- args->converter->toULength = 0;
- /* Stores the previously calculated ch from a previous call*/
- ch = args->converter->toUnicodeStatus - 1;
- args->converter->toUnicodeStatus = 0;
- goto morebytes;
- }
- while (mySource < sourceLimit && myTarget < targetLimit)
- {
- i = 0;
- ch = 0;
- morebytes:
- while (i < sizeof(uint32_t))
- {
- if (mySource < sourceLimit)
- {
- ch |= ((uint8_t)(*mySource)) << (i * 8);
- toUBytes[i++] = (char) *(mySource++);
- }
- else
- {
- /* stores a partially calculated target*/
- /* + 1 to make 0 a valid character */
- args->converter->toUnicodeStatus = ch + 1;
- args->converter->toULength = (int8_t) i;
- goto donefornow;
- }
- }
- if (ch <= MAXIMUM_UTF && !U_IS_SURROGATE(ch))
- {
- /* Normal valid byte when the loop has not prematurely terminated (i < inBytes) */
- if (ch <= MAXIMUM_UCS2)
- {
- /* fits in 16 bits */
- *(myTarget++) = (char16_t) ch;
- *(myOffsets++) = offsetNum;
- }
- else {
- /* write out the surrogates */
- *(myTarget++) = U16_LEAD(ch);
- *(myOffsets++) = offsetNum;
- ch = U16_TRAIL(ch);
- if (myTarget < targetLimit)
- {
- *(myTarget++) = (char16_t)ch;
- *(myOffsets++) = offsetNum;
- }
- else
- {
- /* Put in overflow buffer (not handled here) */
- args->converter->UCharErrorBuffer[0] = (char16_t) ch;
- args->converter->UCharErrorBufferLength = 1;
- *err = U_BUFFER_OVERFLOW_ERROR;
- break;
- }
- }
- }
- else
- {
- args->converter->toULength = (int8_t)i;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- offsetNum += i;
- }
- donefornow:
- if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err))
- {
- /* End of target buffer */
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- args->target = myTarget;
- args->source = (const char *) mySource;
- args->offsets = myOffsets;
- }
- static void U_CALLCONV
- T_UConverter_fromUnicode_UTF32_LE(UConverterFromUnicodeArgs * args,
- UErrorCode * err)
- {
- const char16_t *mySource = args->source;
- unsigned char *myTarget;
- const char16_t *sourceLimit = args->sourceLimit;
- const unsigned char *targetLimit = (unsigned char *) args->targetLimit;
- UChar32 ch, ch2;
- unsigned int indexToWrite;
- unsigned char temp[sizeof(uint32_t)];
- if(mySource >= sourceLimit) {
- /* no input, nothing to do */
- return;
- }
- /* write the BOM if necessary */
- if(args->converter->fromUnicodeStatus==UCNV_NEED_TO_WRITE_BOM) {
- static const char bom[]={ (char)0xffu, (char)0xfeu, 0, 0 };
- ucnv_fromUWriteBytes(args->converter,
- bom, 4,
- &args->target, args->targetLimit,
- &args->offsets, -1,
- err);
- args->converter->fromUnicodeStatus=0;
- }
- myTarget = (unsigned char *) args->target;
- temp[3] = 0;
- if (args->converter->fromUChar32)
- {
- ch = args->converter->fromUChar32;
- args->converter->fromUChar32 = 0;
- goto lowsurogate;
- }
- while (mySource < sourceLimit && myTarget < targetLimit)
- {
- ch = *(mySource++);
- if (U16_IS_SURROGATE(ch)) {
- if (U16_IS_LEAD(ch))
- {
- lowsurogate:
- if (mySource < sourceLimit)
- {
- ch2 = *mySource;
- if (U16_IS_TRAIL(ch2)) {
- ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE;
- mySource++;
- }
- else {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- args->converter->fromUChar32 = ch;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- }
- else {
- /* ran out of source */
- args->converter->fromUChar32 = ch;
- if (args->flush) {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- *err = U_ILLEGAL_CHAR_FOUND;
- }
- break;
- }
- }
- else {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- args->converter->fromUChar32 = ch;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- }
- /* We cannot get any larger than 10FFFF because we are coming from UTF-16 */
- temp[2] = (uint8_t) (ch >> 16 & 0x1F);
- temp[1] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
- temp[0] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
- for (indexToWrite = 0; indexToWrite <= sizeof(uint32_t) - 1; indexToWrite++)
- {
- if (myTarget < targetLimit)
- {
- *(myTarget++) = temp[indexToWrite];
- }
- else
- {
- args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- }
- }
- if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err))
- {
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- args->target = (char *) myTarget;
- args->source = mySource;
- }
- static void U_CALLCONV
- T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC(UConverterFromUnicodeArgs * args,
- UErrorCode * err)
- {
- const char16_t *mySource = args->source;
- unsigned char *myTarget;
- int32_t *myOffsets;
- const char16_t *sourceLimit = args->sourceLimit;
- const unsigned char *targetLimit = (unsigned char *) args->targetLimit;
- UChar32 ch, ch2;
- unsigned int indexToWrite;
- unsigned char temp[sizeof(uint32_t)];
- int32_t offsetNum = 0;
- if(mySource >= sourceLimit) {
- /* no input, nothing to do */
- return;
- }
- /* write the BOM if necessary */
- if(args->converter->fromUnicodeStatus==UCNV_NEED_TO_WRITE_BOM) {
- static const char bom[]={ (char)0xffu, (char)0xfeu, 0, 0 };
- ucnv_fromUWriteBytes(args->converter,
- bom, 4,
- &args->target, args->targetLimit,
- &args->offsets, -1,
- err);
- args->converter->fromUnicodeStatus=0;
- }
- myTarget = (unsigned char *) args->target;
- myOffsets = args->offsets;
- temp[3] = 0;
- if (args->converter->fromUChar32)
- {
- ch = args->converter->fromUChar32;
- args->converter->fromUChar32 = 0;
- goto lowsurogate;
- }
- while (mySource < sourceLimit && myTarget < targetLimit)
- {
- ch = *(mySource++);
- if (U16_IS_SURROGATE(ch)) {
- if (U16_IS_LEAD(ch))
- {
- lowsurogate:
- if (mySource < sourceLimit)
- {
- ch2 = *mySource;
- if (U16_IS_TRAIL(ch2))
- {
- ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE;
- mySource++;
- }
- else {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- args->converter->fromUChar32 = ch;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- }
- else {
- /* ran out of source */
- args->converter->fromUChar32 = ch;
- if (args->flush) {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- *err = U_ILLEGAL_CHAR_FOUND;
- }
- break;
- }
- }
- else {
- /* this is an unmatched trail code unit (2nd surrogate) */
- /* callback(illegal) */
- args->converter->fromUChar32 = ch;
- *err = U_ILLEGAL_CHAR_FOUND;
- break;
- }
- }
- /* We cannot get any larger than 10FFFF because we are coming from UTF-16 */
- temp[2] = (uint8_t) (ch >> 16 & 0x1F);
- temp[1] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
- temp[0] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
- for (indexToWrite = 0; indexToWrite <= sizeof(uint32_t) - 1; indexToWrite++)
- {
- if (myTarget < targetLimit)
- {
- *(myTarget++) = temp[indexToWrite];
- *(myOffsets++) = offsetNum;
- }
- else
- {
- args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- }
- offsetNum = offsetNum + 1 + (temp[2] != 0);
- }
- if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err))
- {
- *err = U_BUFFER_OVERFLOW_ERROR;
- }
- args->target = (char *) myTarget;
- args->source = mySource;
- args->offsets = myOffsets;
- }
- static UChar32 U_CALLCONV
- T_UConverter_getNextUChar_UTF32_LE(UConverterToUnicodeArgs* args,
- UErrorCode* err)
- {
- const uint8_t *mySource;
- UChar32 myUChar;
- int32_t length;
- mySource = (const uint8_t *)args->source;
- if (mySource >= (const uint8_t *)args->sourceLimit)
- {
- /* no input */
- *err = U_INDEX_OUTOFBOUNDS_ERROR;
- return 0xffff;
- }
- length = (int32_t)((const uint8_t *)args->sourceLimit - mySource);
- if (length < 4)
- {
- /* got a partial character */
- uprv_memcpy(args->converter->toUBytes, mySource, length);
- args->converter->toULength = (int8_t)length;
- args->source = (const char *)(mySource + length);
- *err = U_TRUNCATED_CHAR_FOUND;
- return 0xffff;
- }
- /* Don't even try to do a direct cast because the value may be on an odd address. */
- myUChar = ((UChar32)mySource[3] << 24)
- | ((UChar32)mySource[2] << 16)
- | ((UChar32)mySource[1] << 8)
- | ((UChar32)mySource[0]);
- args->source = (const char *)(mySource + 4);
- if ((uint32_t)myUChar <= MAXIMUM_UTF && !U_IS_SURROGATE(myUChar)) {
- return myUChar;
- }
- uprv_memcpy(args->converter->toUBytes, mySource, 4);
- args->converter->toULength = 4;
- *err = U_ILLEGAL_CHAR_FOUND;
- return 0xffff;
- }
- U_CDECL_END
- static const UConverterImpl _UTF32LEImpl = {
- UCNV_UTF32_LittleEndian,
- nullptr,
- nullptr,
- nullptr,
- nullptr,
- nullptr,
- T_UConverter_toUnicode_UTF32_LE,
- T_UConverter_toUnicode_UTF32_LE_OFFSET_LOGIC,
- T_UConverter_fromUnicode_UTF32_LE,
- T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC,
- T_UConverter_getNextUChar_UTF32_LE,
- nullptr,
- nullptr,
- nullptr,
- nullptr,
- ucnv_getNonSurrogateUnicodeSet,
- nullptr,
- nullptr
- };
- /* The 1232 CCSID refers to any version of Unicode with any endianness of UTF-32 */
- static const UConverterStaticData _UTF32LEStaticData = {
- sizeof(UConverterStaticData),
- "UTF-32LE",
- 1234,
- UCNV_IBM, UCNV_UTF32_LittleEndian, 4, 4,
- { 0xfd, 0xff, 0, 0 }, 4, false, false,
- 0,
- 0,
- { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */
- };
- const UConverterSharedData _UTF32LEData =
- UCNV_IMMUTABLE_SHARED_DATA_INITIALIZER(&_UTF32LEStaticData, &_UTF32LEImpl);
- /* UTF-32 (Detect BOM) ------------------------------------------------------ */
- /*
- * Detect a BOM at the beginning of the stream and select UTF-32BE or UTF-32LE
- * accordingly.
- *
- * State values:
- * 0 initial state
- * 1 saw 00
- * 2 saw 00 00
- * 3 saw 00 00 FE
- * 4 -
- * 5 saw FF
- * 6 saw FF FE
- * 7 saw FF FE 00
- * 8 UTF-32BE mode
- * 9 UTF-32LE mode
- *
- * During detection: state&3==number of matching bytes so far.
- *
- * On output, emit U+FEFF as the first code point.
- */
- U_CDECL_BEGIN
- static void U_CALLCONV
- _UTF32Reset(UConverter *cnv, UConverterResetChoice choice) {
- if(choice<=UCNV_RESET_TO_UNICODE) {
- /* reset toUnicode: state=0 */
- cnv->mode=0;
- }
- if(choice!=UCNV_RESET_TO_UNICODE) {
- /* reset fromUnicode: prepare to output the UTF-32PE BOM */
- cnv->fromUnicodeStatus=UCNV_NEED_TO_WRITE_BOM;
- }
- }
- static void U_CALLCONV
- _UTF32Open(UConverter *cnv,
- UConverterLoadArgs *pArgs,
- UErrorCode *pErrorCode) {
- (void)pArgs;
- (void)pErrorCode;
- _UTF32Reset(cnv, UCNV_RESET_BOTH);
- }
- static const char utf32BOM[8]={ 0, 0, (char)0xfeu, (char)0xffu, (char)0xffu, (char)0xfeu, 0, 0 };
- static void U_CALLCONV
- _UTF32ToUnicodeWithOffsets(UConverterToUnicodeArgs *pArgs,
- UErrorCode *pErrorCode) {
- UConverter *cnv=pArgs->converter;
- const char *source=pArgs->source;
- const char *sourceLimit=pArgs->sourceLimit;
- int32_t *offsets=pArgs->offsets;
- int32_t state, offsetDelta;
- char b;
- state=cnv->mode;
- /*
- * If we detect a BOM in this buffer, then we must add the BOM size to the
- * offsets because the actual converter function will not see and count the BOM.
- * offsetDelta will have the number of the BOM bytes that are in the current buffer.
- */
- offsetDelta=0;
- while(source<sourceLimit && U_SUCCESS(*pErrorCode)) {
- switch(state) {
- case 0:
- b=*source;
- if(b==0) {
- state=1; /* could be 00 00 FE FF */
- } else if(b==(char)0xffu) {
- state=5; /* could be FF FE 00 00 */
- } else {
- state=8; /* default to UTF-32BE */
- continue;
- }
- ++source;
- break;
- case 1:
- case 2:
- case 3:
- case 5:
- case 6:
- case 7:
- if(*source==utf32BOM[state]) {
- ++state;
- ++source;
- if(state==4) {
- state=8; /* detect UTF-32BE */
- offsetDelta=(int32_t)(source-pArgs->source);
- } else if(state==8) {
- state=9; /* detect UTF-32LE */
- offsetDelta=(int32_t)(source-pArgs->source);
- }
- } else {
- /* switch to UTF-32BE and pass the previous bytes */
- int32_t count=(int32_t)(source-pArgs->source); /* number of bytes from this buffer */
- /* reset the source */
- source=pArgs->source;
- if(count==(state&3)) {
- /* simple: all in the same buffer, just reset source */
- } else {
- UBool oldFlush=pArgs->flush;
- /* some of the bytes are from a previous buffer, replay those first */
- pArgs->source=utf32BOM+(state&4); /* select the correct BOM */
- pArgs->sourceLimit=pArgs->source+((state&3)-count); /* replay previous bytes */
- pArgs->flush=false; /* this sourceLimit is not the real source stream limit */
- /* no offsets: bytes from previous buffer, and not enough for output */
- T_UConverter_toUnicode_UTF32_BE(pArgs, pErrorCode);
- /* restore real pointers; pArgs->source will be set in case 8/9 */
- pArgs->sourceLimit=sourceLimit;
- pArgs->flush=oldFlush;
- }
- state=8;
- continue;
- }
- break;
- case 8:
- /* call UTF-32BE */
- pArgs->source=source;
- if(offsets==nullptr) {
- T_UConverter_toUnicode_UTF32_BE(pArgs, pErrorCode);
- } else {
- T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC(pArgs, pErrorCode);
- }
- source=pArgs->source;
- break;
- case 9:
- /* call UTF-32LE */
- pArgs->source=source;
- if(offsets==nullptr) {
- T_UConverter_toUnicode_UTF32_LE(pArgs, pErrorCode);
- } else {
- T_UConverter_toUnicode_UTF32_LE_OFFSET_LOGIC(pArgs, pErrorCode);
- }
- source=pArgs->source;
- break;
- default:
- break; /* does not occur */
- }
- }
- /* add BOM size to offsets - see comment at offsetDelta declaration */
- if(offsets!=nullptr && offsetDelta!=0) {
- int32_t *offsetsLimit=pArgs->offsets;
- while(offsets<offsetsLimit) {
- *offsets++ += offsetDelta;
- }
- }
- pArgs->source=source;
- if(source==sourceLimit && pArgs->flush) {
- /* handle truncated input */
- switch(state) {
- case 0:
- break; /* no input at all, nothing to do */
- case 8:
- T_UConverter_toUnicode_UTF32_BE(pArgs, pErrorCode);
- break;
- case 9:
- T_UConverter_toUnicode_UTF32_LE(pArgs, pErrorCode);
- break;
- default:
- /* handle 0<state<8: call UTF-32BE with too-short input */
- pArgs->source=utf32BOM+(state&4); /* select the correct BOM */
- pArgs->sourceLimit=pArgs->source+(state&3); /* replay bytes */
- /* no offsets: not enough for output */
- T_UConverter_toUnicode_UTF32_BE(pArgs, pErrorCode);
- pArgs->source=source;
- pArgs->sourceLimit=sourceLimit;
- state=8;
- break;
- }
- }
- cnv->mode=state;
- }
- static UChar32 U_CALLCONV
- _UTF32GetNextUChar(UConverterToUnicodeArgs *pArgs,
- UErrorCode *pErrorCode) {
- switch(pArgs->converter->mode) {
- case 8:
- return T_UConverter_getNextUChar_UTF32_BE(pArgs, pErrorCode);
- case 9:
- return T_UConverter_getNextUChar_UTF32_LE(pArgs, pErrorCode);
- default:
- return UCNV_GET_NEXT_UCHAR_USE_TO_U;
- }
- }
- U_CDECL_END
- static const UConverterImpl _UTF32Impl = {
- UCNV_UTF32,
- nullptr,
- nullptr,
- _UTF32Open,
- nullptr,
- _UTF32Reset,
- _UTF32ToUnicodeWithOffsets,
- _UTF32ToUnicodeWithOffsets,
- #if U_IS_BIG_ENDIAN
- T_UConverter_fromUnicode_UTF32_BE,
- T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC,
- #else
- T_UConverter_fromUnicode_UTF32_LE,
- T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC,
- #endif
- _UTF32GetNextUChar,
- nullptr, /* ### TODO implement getStarters for all Unicode encodings?! */
- nullptr,
- nullptr,
- nullptr,
- ucnv_getNonSurrogateUnicodeSet,
- nullptr,
- nullptr
- };
- /* The 1236 CCSID refers to any version of Unicode with a BOM sensitive endianness of UTF-32 */
- static const UConverterStaticData _UTF32StaticData = {
- sizeof(UConverterStaticData),
- "UTF-32",
- 1236,
- UCNV_IBM, UCNV_UTF32, 4, 4,
- #if U_IS_BIG_ENDIAN
- { 0, 0, 0xff, 0xfd }, 4,
- #else
- { 0xfd, 0xff, 0, 0 }, 4,
- #endif
- false, false,
- 0,
- 0,
- { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */
- };
- const UConverterSharedData _UTF32Data =
- UCNV_IMMUTABLE_SHARED_DATA_INITIALIZER(&_UTF32StaticData, &_UTF32Impl);
- #endif
|