First public contribution.
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 wchar * to Descriptor8 conversions
24 * Converts a wchar to a descriptor of type TBuf8
26 * @param aSrc is the wchar to be converted , aDes is the
27 * reference to the descriptor where the result of conversion
29 * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
30 * -3 is EStringNoData, -4 is EInvalidPointer )
33 EXPORT_C int WcharToTbuf8(const wchar_t* aSrc, TDes8& aDes)
35 int retval = ESuccess;
36 unsigned int ilen = 0;
40 return EInvalidPointer;
45 if (ilen*2 > aDes.MaxLength())
47 return EInsufficientMemory;
51 char *CharString = new char[ilen*2];
55 return EInsufficientSystemMemory;
58 if(minusone == wcstombs(CharString, (const wchar_t*)aSrc, ilen*2))
60 retval = EInvalidWCSSequence;
64 aDes.Copy((unsigned char *)CharString, ilen*2);
72 * Converts a wchar to a descriptor of type HBufc8
74 * @param aSrc is the Wstring to be converted, aDes is the
75 * reference to the descriptor where the result of conversion
77 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory )
80 EXPORT_C int WcharToHbufc8(const wchar_t* aSrc, HBufC8* aDes)
82 unsigned int wlen = 0, ilendes = 0;
83 int retval = ESuccess;
87 return EInvalidPointer;
92 ilendes = aDes->Length();
97 else if (wlen > ilendes)
99 return EInsufficientMemory;
103 char *CharString = new char[wlen*2];
107 return EInsufficientSystemMemory;
111 if(minusone == wcstombs(CharString, aSrc, wlen*2))
113 retval = EInvalidWCSSequence;
117 (*aDes) = (const TUint8 *)CharString;
125 * Converts a wchar to a descriptor of type TPtr8
127 * @param aSrc is the wchar to be converted , aDes is the
128 * reference to the descriptor where the result of conversion
130 * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
131 * -3 is EStringNoData, -4 is EInvalidPointer )
134 EXPORT_C int WcharpToTptr8(const wchar_t* aSrc, char* cPtr, TPtr8& aDes)
136 int retval = ESuccess;
137 unsigned int wlen = 0, ilendes = 0;
141 return EInvalidPointer;
146 ilendes = aDes.MaxLength();
149 return EInsufficientMemory;
153 if(minusone != wcstombs(cPtr, (const wchar_t*)aSrc, wlen))
155 aDes.Set((TUint8*)cPtr, wlen, ilendes);
159 retval = EInvalidWCSSequence;
166 * Converts a wchar to a descriptor of type TPtrC8
168 * @param aSrc is the wchar to be converted , aDes is the
169 * reference to the descriptor where the result of conversion
171 * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
172 * -4 is EInvalidPointer )
175 EXPORT_C int WcharpToTptrc8(const wchar_t* aSrc, char* cPtr, TPtrC8& aDes)
178 int retval = ESuccess;
179 unsigned int wlen = 0 ;
184 return EInvalidPointer;
189 if(minusone != wcstombs(cPtr, (const wchar_t*)aSrc, wlen))
191 aDes.Set((TUint8*)cPtr,wlen);
195 retval = EInvalidWCSSequence;
203 * Converts a wchar to a descriptor of type RBuf8
205 * @param aSrc is the wchar to be converted , aDes is the
206 * reference to the descriptor where the result of conversion
208 * @return Status code (0 is ESuccess ,-1 is EInsufficientMemory, -4 is EInvalidPointer )
211 EXPORT_C int WcharToRbuf8(const wchar_t* aSrc, RBuf8& aDes)
213 int retval = ESuccess;
214 unsigned int wlen = 0;
220 return EInvalidPointer;
225 buf = new char[wlen*2];
228 return EInsufficientSystemMemory;
231 if(minusone != wcstombs(buf, (const wchar_t*)aSrc, wlen*2))
233 aDes.Copy((const unsigned char *)buf, wlen*2);
237 retval = EInvalidWCSSequence;