Update contrib.
2 * Copyright (c) 2008 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.
14 * Description: Contains the source for char * to Descriptor16 conversions
24 * Converts a character stream to TBuf16
26 * @param aSrc is char*, aDes is the reference to the descriptor
27 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer, -7 is EInvalidMBSSequence)
30 EXPORT_C int CharToTbuf16(const char* aSrc, TDes16& aDes)
32 int retval = ESuccess;
33 unsigned int ilen = 0;
39 return EInvalidPointer;
44 if(ilen > aDes.MaxLength())
46 return EInsufficientMemory;
49 wchar_t *WcharString = new wchar_t[ilen+1];
52 return EInsufficientSystemMemory;
55 if(minusone == mbstowcs(WcharString, (const char*)aSrc, ilen))
57 retval = EInvalidMBSSequence;
61 aDes.Copy((unsigned short *)WcharString, ilen);
69 * Converts a character stream to HBufc16
71 * @param aSrc is char*, aDes is the reference to the descriptor
72 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer, -6 is EUseNewMaxL, -7 is EInvalidMBSSequence)
75 EXPORT_C int CharToHbufc16(const char* aSrc, HBufC16* aDes)
77 int retval = ESuccess;
78 unsigned int ilen = 0, ilendes = 0;
82 return EInvalidPointer;
87 ilendes = aDes->Length();
93 else if (ilen > ilendes)
95 return EInsufficientMemory;
99 wchar_t *wCharString = new wchar_t[ilen+1];
103 return EInsufficientMemory;
106 if(minusone == mbstowcs((wchar_t *)wCharString, (const char*)aSrc, ilen))
108 retval = EInvalidMBSSequence;
112 wCharString[ilen] = (wchar_t)'\0';
113 TPtrC16 temp ((unsigned short *)wCharString, ilen);
117 delete[] wCharString;
122 * Converts a character stream to TPtr16
124 * @param aSrc is char*, wPtr is wchar_t*, aDes is the reference to the descriptor
125 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer, -7 is EInvalidMBSSequence)
128 EXPORT_C int CharpToTptr16(const char* aSrc, TPtr16& aDes)
130 int retval = ESuccess;
131 unsigned int ilen =0 , ilendes = 0;
136 return EInvalidPointer;
141 ilendes = aDes.MaxLength();
145 return EInsufficientMemory;
149 wchar_t *wPtr = new wchar_t[ilen+1];
153 return EInsufficientMemory;
156 if(minusone != mbstowcs((wchar_t *)wPtr, (const char*)aSrc, ilen ))
158 aDes.Copy((unsigned short *)wPtr, ilen);
162 retval = EInvalidMBSSequence;
170 * Converts a character stream to TPtrc16
172 * @param aSrc is char*, cPtr is wchar_t*, aDes is the reference to the descriptor
173 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer, -7 is EInvalidMBSSequence)
176 EXPORT_C int CharpToTptrc16(char* aSrc ,wchar_t* cPtr, TPtrC16& aDes)
178 int retval = ESuccess;
179 unsigned int ilen = 0;
182 if ( !aSrc || !cPtr )
184 return EInvalidPointer;
189 if(minusone != mbstowcs((wchar_t*)cPtr, (const char*)aSrc, strlen(aSrc)))
191 aDes.Set((TUint16*)cPtr, ilen);
195 retval = EInvalidMBSSequence;
202 * Converts a character stream to RBuf16
204 * @param aSrc is char*, aDes is the reference to the descriptor
205 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer, -7 is EInvalidMBSSequence)
209 EXPORT_C int CharToRbuf16(const char* aSrc, RBuf16& aDes)
211 int retval = ESuccess;
212 unsigned int ilen = 0;
216 return EInvalidPointer;
220 wchar_t* buf = new wchar_t[ilen];
223 return EInsufficientSystemMemory;
226 if(minusone != mbstowcs(buf, aSrc, ilen))
228 aDes.Copy((const unsigned short *)buf, ilen);
232 retval = EInvalidMBSSequence;