Update contrib.
2 * Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
22 #include "unicodeconv.h"
24 //replacement character to be used when unicode cannot be converted
25 const TUint8 KForeignReplacement = 0x5F;
27 //This function converts from Unicoded characters, to foreign characters and adds them into a descriptor
28 EXPORT_C void UnicodeConv::ConvertFromUnicodeL(TDes8& aForeign, const TDesC16& aUnicode)
30 UnicodeConv::ConvertFromUnicodeL(aForeign, aUnicode, ETrue);
33 //This function converts from Unicoded characters, to foreign characters and adds them into a descriptor
34 EXPORT_C TInt UnicodeConv::ConvertFromUnicodeL(TDes8& aForeign, const TDesC16& aUnicode, TBool leaveWhenOverflow)
36 const TInt unicodeLength = aUnicode.Length();
38 //loop going through the character of the unicode descriptor
39 for(TInt i=0; i<unicodeLength; i++)
41 const TUint16 unicodeChar = aUnicode[i];
43 // if the output buffer is already full, leave with KErrOverflow
44 if ( aForeign.Length() >= aForeign.MaxLength() )
46 if (leaveWhenOverflow)
47 User::Leave(KErrOverflow);
52 //charcters from 0x0000 to 0x007F, can be mapped directly
53 if(unicodeChar<0x0080)
55 aForeign.Append(static_cast<TUint8>(unicodeChar));
59 TInt trailByte = KErrNotFound;
60 TInt returnValue = TConvDataStruct::ConvertSingleUnicode(unicodeChar,trailByte);
62 if(returnValue!=KErrNotFound)
64 if(trailByte!=KErrNotFound)
66 // as two bytes are being added check enough space for second
67 if ( aForeign.Length() + 2 <= aForeign.MaxLength() )
69 aForeign.Append(static_cast<TUint8>(returnValue));
70 aForeign.Append(static_cast<TUint8>(trailByte));
74 if (leaveWhenOverflow)
75 User::Leave(KErrOverflow);
81 aForeign.Append(static_cast<TUint8>(returnValue));
84 aForeign.Append(KForeignReplacement);
91 //This function converts from foreign characters into unicode and adds them into a descriptor
92 EXPORT_C void UnicodeConv::ConvertToUnicodeL(TDes16& aUnicode, const TDesC8& aForeign)
94 UnicodeConv::ConvertToUnicodeL(aUnicode, aForeign, ETrue);
97 //This function converts from foreign characters into unicode and adds them into a descriptor
98 EXPORT_C TInt UnicodeConv::ConvertToUnicodeL(TDes16& aUnicode, const TDesC8& aForeign, TBool leaveWhenOverflow)
100 const TInt foreignLength = aForeign.Length();
102 //loop going through the characters of the foreign descriptor
103 for(TInt i = 0; i<foreignLength; i++)
105 const TUint8 leadForeign = aForeign[i];
106 TUint8 tailForeign = 0x00;
108 // Check there is enough space in the output buffer, and leave with KErrOverflow if not
109 if ( aUnicode.Length() == aUnicode.MaxLength() )
111 if (leaveWhenOverflow)
112 User::Leave(KErrOverflow);
117 //charcters from 0x00 to 0x7F, can be mapped directly
118 if(leadForeign < 0x80)
119 aUnicode.Append(static_cast<TUint16>(leadForeign));
122 if((i+1)<foreignLength)
123 tailForeign = aForeign[i+1];
125 const TLeadOrSingle* structPtr = TConvDataStruct::KFirstByteConversions + (leadForeign-0x80);
127 if(structPtr->iUnicodeIfSingle)
128 aUnicode.Append(structPtr->iUnicodeIfSingle);
131 if(TConvDataStruct::KMinTrailByte<=tailForeign && tailForeign<=TConvDataStruct::KMaxTrailByte)
132 aUnicode.Append(TConvDataStruct::KDoubleByteConversions[structPtr->iDoubleByteIndex+
133 (tailForeign - TConvDataStruct::KMinTrailByte)]);
135 aUnicode.Append(0xFFFD);
144 EXPORT_C TBool UnicodeConv::IsLegalShortNameCharacter (TUint aCharacter)
146 //1. aCharacter >= 0x0080
147 if (aCharacter>=0x0080)
149 if (aCharacter>0xFFFF)
152 TInt trailByte = KErrNotFound;
153 TInt returnValue = TConvDataStruct::ConvertSingleUnicode(aCharacter,trailByte);
155 if(returnValue!=KErrNotFound)
161 // For most common cases:
162 // Note: lower case characters are considered legal DOS char here.
163 if ((aCharacter>='a' && aCharacter<='z') ||
164 (aCharacter>='A' && aCharacter<='Z') ||
165 (aCharacter>='0' && aCharacter<='9'))
169 // Checking for illegal chars:
170 // 2. aCharacter <= 0x20
171 // Note: leading 0x05 byte should be guarded by callers of this function
172 // as the information of the position of the character is required.
173 if (aCharacter < 0x20)
175 // Space (' ') is not considered as a legal DOS char here.
176 if (aCharacter == 0x20)
179 // 3. 0x20 < aCharacter < 0x80
180 // According to FAT Spec, "following characters are not legal in any bytes of DIR_Name":
187 //case 0x2E: // '.' // Although '.' is not allowed in any bytes of DIR_Name, it
188 // is a valid character in short file names.