Converting to and from Transformation Formats Using CnvUtfConverter

This section describes the way in which CnvUtfConverter can be used to convert chunks of text from Unicode to the UTF-7 or UTF-8 transformation format, from the UTF-7 or UTF-8 transformation format to Unicode, and from the UTF-7 or UTF-8 transformation format to Unicode when the text is arriving in fragments.

Introduction

The CnvUtfConverter class is provided for converting text between Unicode (UCS-2) and the two Unicode transformation formats UTF-7 and UTF-8. The four conversion functions are all static, are ConvertFromUnicodeToUtf7() , ConvertFromUnicodeToUtf8() , ConvertToUnicodeFromUtf7() , and ConvertToUnicodeFromUtf8() .

Note : there is no direct way to convert between UTF-7 and UTF-8. Though it is possible to convert from one transformation format to UCS-2 and then from UCS-2 to the other transformation format.

The examples in the below sections describes how to convert to and from UTF-7. Converting to and from UTF-8 is almost identical. The only differences being in the use of a third parameter to ConvertFromUnicodeToUtf7() , and also that ConvertToUnicodeFromUtf8() does not use a ‘state’ parameter.

Converting Unicode to UTF-7

The text is converted in chunks, and it is not necessary to guess the full size of the converted output text in advance.

  1. The function below creates an output descriptor and a ‘remainder’ buffer for holding the unconverted Unicode characters. This remainder buffer is initialised with the text in the input descriptor.

             
              
             
             LOCAL_C void EncodeL(const TDesC16& aUnicodeText)
        {
        // Create a small output buffer
        TBuf8<20> outputBuffer;
        // Create a buffer for the unconverted text - initialised with the input text
        TPtrC16 remainderOfUnicodeText(aUnicodeText);
            
  2. A loop is set up to convert the text in the remainder buffer — which initially contains all the information in the input descriptor.

    ConvertFromUnicodeToUtf7() converts characters from the remainder buffer until the small output buffer is full — the Unicode contents of the output buffer are then safely stored. The remainder buffer is reset so that it only contains unconverted text. This process is repeated until the remainder buffer is empty, and the function completes. Note that the code fragment below also includes code to check for corrupted characters.

             
              
             
             for(;;) // conversion loop
            {
            // Start conversion. When the output buffer is full, return the 
            // number of characters that were not converted
            const TInt returnValue=CnvUtfConverter::ConvertFromUnicodeToUtf7(outputBuffer, 
                                    remainderOfUnicodeText, ETrue);
    
            // check to see that the descriptor isn’t corrupt - leave if it is
            if (returnValue==CnvUtfConverter::EErrorIllFormedInput)
                User::Leave(KErrCorrupt);
            else if (returnValue<0) // future-proof against "TError" expanding
                User::Leave(KErrGeneral);
    
            // Do something here to store the contents of the output buffer.
    
            // Finish conversion if there are no unconverted characters in the remainder buffer
            if (returnValue==0)
                break; 
    
            // Remove the converted source text from the remainder buffer.
            // The remainder buffer is then fed back into loop
            remainderOfUnicodeText.Set(remainderOfUnicodeText.Right(returnValue));
            }
        }
            

Converting UTF-7 to Unicode

The text is converted in chunks so that it is not necessary to guess the full size of the converted output text in advance. The process is similar to that given in the previous example.

  • The function below first creates an output descriptor, a state variable, and a ‘remainder’ buffer for holding the unconverted characters — this is initialised with the text in the input descriptor. The state variable is initialised with CnvUtfConverter::KStateDefault — after initialisation this should not be tampered with, but simply be passed into subsequent calls to ConvertToUnicode() .

             
              
             
             LOCAL_C void DecodeL(const TDesC8& aUtf7)
        {
        // Create a small output buffer
        TBuf16<20> outputBuffer;
        // Create a buffer for the unconverted text - initialised with the input text
        TPtrC8 remainderOfUtf7(aUtf7);
    
        // Create a "state" variable and initialise it with CnvUtfConverter::KStateDefault
        // After initialisation the state variable must not be tampered with.
        // Simply pass into each subsequent call of ConvertToUnicodeFromUtf7()
        TInt state=CnvUtfConverter::KStateDefault;
            
  • A loop is then set up to convert the text in the remainder buffer — which initially contains all the information in the input descriptor.

    ConvertToUnicodeFromUtf7() converts characters from the remainder buffer until the small output buffer is full — the Unicode contents of the output buffer are then safely stored. The remainder buffer is reset so that it only contains unconverted text. This process is repeated until the remainder buffer is empty, and the function completes. Note that the code fragment below also includes code to check for corrupted characters.

             
              
             
             for(;;)  // conversion loop
            {
            // Start conversion. When the output buffer is full, return the 
            // number of characters that were not converted
            const TInt returnValue=CnvUtfConverter::ConvertToUnicodeFromUtf7(outputBuffer,remainderOfUtf7,state);
    
            // check to see that the descriptor isn't corrupt - leave if it is
            if (returnValue==CnvUtfConverter::EErrorIllFormedInput)
                User::Leave(KErrCorrupt);
            else if (returnValue<0) // future-proof against "TError" expanding
                User::Leave(KErrGeneral);
    
            // Do something here to store the contents of the output buffer.
    
            // Finish conversion if there are no unconverted characters in the remainder buffer
            if (returnValue==0)
                break; 
    
            // Remove the converted source text from the remainder buffer.
            // The remainder buffer is then fed back into loop
            remainderOfUtf7.Set(remainderOfUtf7.Right(returnValue));
            }
        }
            

Converting fragmented UTF-7 to Unicode

The main difficulty in converting fragmented text is that received chunks may begin or end with bytes from an incomplete character.

To overcome this problem, implementations must ensure that the descriptors passed to ConvertToUnicodeFromUtf7() always begin with a complete character, (making the output descriptor at least 20 elements long should be enough to ensure this) and that conversions only progress to completion for the final chunk of text— in which the last character is complete. In the function below this is achieved by beginning the buffer for each chunk with a small amount of unconverted text from the previous chunk. The buffer is then guaranteed to begin with a complete character. Any ‘loose’ bytes from the end of the last chunk and the beginning of the new one combine to form a complete character.

The function first creates a buffer to hold both the unconverted text fragment from the previous chunk, and the new chunk.

       
        
       
       LOCAL_C void DecodeL()
    {
    // Create a buffer for holding UTF-7 text to be converted
    const TInt KMaximumLengthOfBufferForUtf7=200;
    TUint8 bufferForUtf7[KMaximumLengthOfBufferForUtf7];
    // Create a variable for indicating the actual amount of text in the buffer
    TInt lengthOfBufferForUtf7=0;
      

A loop is then set up to get a new chunk and append it to the unconverted text fragment from the previous chunk. The code also contains a placeholder to find out whether the current chunk is the last chunk, and stores this information in a flag. In addition, it creates an output descriptor, a state variable, and a ‘remainder’ buffer for holding the unconverted text. The state variable is initialised with CnvUtfConverter::KStateDefault — after initialisation this should not be tampered with, but simply be passed into subsequent calls to ConvertToUnicodeFromUtf7() .

       
        
       
       // Outer loop.
    // Appends new chunk to fragment from previous chunk
    // Then passes the buffer to the conversion loop.
    for(;;)  
        {
        // Create a modifiable pointer descriptor for the next chunk of non-Unicode text
        TPtr8 nextChunkOfUtf7(bufferForUtf7+lengthOfBufferForUtf7,
                            KMaximumLengthOfBufferForUtf7-lengthOfBufferForUtf7);

        // Insert code to load next chunk of Utf7 here

        // Calculate the length of the next chunk of text to be processed
        const TInt lengthOfNextChunkOfUtf7=nextChunkOfUtf7.Length();
        // Specify the length of the buffer for Utf7 text
        lengthOfBufferForUtf7+=lengthOfNextChunkOfUtf7;

        // Set whether this is the last chunk - find out from source of text
        const TBool isLastChunkOfUtf7=  ; // ?
            // e.g. the source may define that the last chunk is of length zero, in which case
            // the expression "(lengthOfNextChunkOfUtf7==0)" would be assigned to 
            // this variable; note that even if the length of this chunk is zero, 
            // dont just exit this function here as bufferForUtf7
            // may not be empty (i.e. lengthOfBufferForUtf7>0)

        // Create a small output buffer
        TBuf16<20> outputBuffer;
        // Create a remainder buffer for the unconverted text - used in conversion loop
        TPtrC8 remainderOfUtf7(bufferForUtf7, lengthOfBufferForUtf7);

        // Create a "state" variable and initialise it with CnvUtfConverter::KStateDefault
        // After initialisation the state variable must not be tampered with.
        // Simply pass into each subsequent call of ConvertToUnicodeFromUtf7()
        TInt state=CnvUtfConverter::KStateDefault;
      

The remainder buffer is passed to the conversion loop.

ConvertToUnicodeFromUtf7() converts characters from the remainder buffer until the output buffer is full — the Unicode contents of the output buffer are then safely stored. Then the remainder buffer is reset so that it only contains unconverted text. This process is repeated until the remainder buffer contains less than 20 bytes. The remainder of the unconverted bytes are copied into the main UTF-7 buffer, and the function returns to the outer loop. The process then repeats itself, with a new chunk being added to the UTF-7 buffer etc.

If the ‘last chunk’ flag is set— in the main loop— then the conversion continues until the remainder buffer is empty. The function then completes. The code fragment below also includes code to check for corrupted characters.

       
        
       
       // The conversion loop. This loop takes chunks of text prepared by the previous loop and converts them
        for(;;)
            {
            const TInt lengthOfRemainderOfUtf7=remainderOfUtf7.Length();
            if (isLastChunkOfUtf7)
                {
                if (lengthOfRemainderOfUtf7==0)
                    return; // the single point of exit of this function
                }
            else
                {
                // As this isn't the last chunk, we don't want ConvertToUnicodeFromUtf7 to return
                // CnvUtfConverter::EErrorIllFormedInput if the input descriptor ends with an
                // incomplete sequence - but it will only do this if *none* of the input
                // descriptor can be consumed. Therefore if the input descriptor is long enough
                // (20 elements or longer is adequate) there is no danger of this error
                // being returned for this reason. If it's shorter than that, we'll simply put it
                // at the start of the buffer so that it gets converted with the next chunk.
                if (lengthOfRemainderOfUtf7<20)
                    {
                    // put any remaining UTF-7 at the start of bufferForUtf7
                    lengthOfBufferForUtf7=lengthOfRemainderOfUtf7;
                    Mem::Copy(bufferForUtf7, remainderOfUtf7.Ptr(), lengthOfBufferForUtf7);
                    break;
                    }
                }

            const TInt returnValue=CnvUtfConverter::ConvertToUnicodeFromUtf7(outputBuffer, remainderOfUtf7, state);
            if (returnValue==CnvUtfConverter::EErrorIllFormedInput)
                User::Leave(KErrCorrupt);
            else if (returnValue<0) // future-proof against "TError" expanding
                User::Leave(KErrGeneral);

            // Do something here to store the contents of the output buffer.

            remainderOfUtf7.Set(remainderOfUtf7.Right(returnValue));
            }
        }
    }