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 Descriptor to wstring conversions
25 * Converts a descriptor of type Tptrc8 to Wstring
27 * @param aSrc is the descriptor to be converted , aDes is the
28 * reference to the wstring array where the result of conversion
30 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
31 * -5 is EDescriptorNoData)
34 EXPORT_C int Tptrc8ToWstring(TPtrC8& aSrc, wstring& aDes)
36 int retval = ESuccess;
37 int ilen = aSrc.Length();
42 return EDescriptorNoData;
45 wchar_t* wcharString = new wchar_t[ilen+1];
49 return EInsufficientSystemMemory;
52 if(minusone != mbstowcs (wcharString, (const char*)aSrc.Ptr(), ilen))
54 wcharString[ilen] = L'\0';
55 aDes.assign(wcharString);
59 retval = EInvalidMBSSequence;
67 * Converts a descriptor of type TBuf8 to wstring
69 * @param aSrc is the descriptor to be converted , aDes is the
70 * reference to the wstring array where the result of conversion
72 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
73 * -5 is EDescriptorNoData)
76 EXPORT_C int Tbuf8ToWstring(TDes8& aSrc, wstring& aDes)
78 int retval = ESuccess;
79 unsigned int ilen = aSrc.Length();
84 return EDescriptorNoData;
87 wchar_t* wcharString = new wchar_t[ilen+1];
91 return EInsufficientSystemMemory;
94 if(minusone != mbstowcs (wcharString, (const char*)aSrc.Ptr(), ilen))
96 wcharString[ilen] = L'\0';
97 aDes.assign(wcharString);
101 retval = EInvalidMBSSequence;
104 delete []wcharString;
109 * Converts a descriptor of type TBufC8 to wstring
111 * @param aSrc is the descriptor to be converted , aDes is the
112 * reference to the wstring array where the result of conversion
114 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
115 * -5 is EDescriptorNoData)
118 EXPORT_C int Tbufc8ToWstring(TDesC8& aSrc, wstring& aDes)
121 int retval = ESuccess;
122 unsigned int ilen = aSrc.Length();
127 return EDescriptorNoData;
130 wchar_t* wcharString = new wchar_t[ilen+1];
134 return EInsufficientSystemMemory;
137 if(minusone != mbstowcs (wcharString, (const char*)aSrc.Ptr(), ilen))
139 wcharString[ilen] = L'\0';
140 aDes.assign (wcharString);
144 retval = EInvalidMBSSequence;
147 delete []wcharString;
152 * Converts a descriptor of type Tptr8 to wstring
154 * @param aSrc is the descriptor to be converted , aDes is the
155 * reference to the wstring array where the result of conversion
157 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
158 * -5 is EDescriptorNoData)
161 EXPORT_C int Tptr8ToWstring(TPtr8& aSrc, wstring& aDes)
163 int retval= ESuccess;
164 unsigned int ilen = aSrc.Length();
169 return EDescriptorNoData;
172 wchar_t* wcharString = new wchar_t[ilen+1];
175 return EInsufficientSystemMemory;
178 if(minusone != mbstowcs(wcharString, (const char*)aSrc.Ptr(), ilen))
180 wcharString[ilen] = L'\0';
181 aDes.assign(wcharString);
185 retval= EInvalidMBSSequence;
188 delete []wcharString;
193 * Converts a descriptor of type RBuf8 to wstring
195 * @param aSrc is the descriptor to be converted , aDes is the
196 * reference to the wstring array where the result of conversion
198 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
199 * -5 is EDescriptorNoData)
202 EXPORT_C int Rbuf8ToWstring(TDes8& aSrc, wstring& aDes)
204 int retval = ESuccess;
205 unsigned int ilen = aSrc.Length();
209 return EDescriptorNoData;
212 wchar_t* buf = new wchar_t[ilen+1];
215 return EInsufficientSystemMemory;
218 if(minusone != mbstowcs(buf, (char *)aSrc.Ptr(), ilen))
225 retval = EInvalidMBSSequence;
233 * Converts a descriptor of type HBuf8 to wstring
235 * @param aSrc is the descriptor to be converted , aDes is the
236 * reference to the wstring array where the result of conversion
238 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
239 * -4 is EInvalidPointer , -5 is EDescriptorNoData, -7 is EInvalidMBSSequence)
242 EXPORT_C int Hbufc8ToWstring(HBufC8* aSrc, wstring& aDes)
244 unsigned int ilen = 0;
245 int retval = ESuccess;
250 return EInvalidPointer;
254 ilen = aSrc->Length();
257 return EDescriptorNoData;
261 wchar_t* buff = new wchar_t[ilen+1];
264 return EInsufficientSystemMemory;
267 if(minusone != mbstowcs(buff, (char *)aSrc->Ptr(), ilen))
274 retval = EInvalidMBSSequence;
282 * Converts a descriptor of type Tlitc8 to wstring
284 * @param aSrc is the descriptor to be converted , aDes is the
285 * reference to the wstring array where the result of conversion
287 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
288 * -5 is EDescriptorNoData, -7 is EInvalidMBSSequence)
291 EXPORT_C int Tlitc8ToWstring(TDes8& aSrc, wstring& aDes)
293 int retval= ESuccess;
294 unsigned int ilen = aSrc.Length();
299 return EDescriptorNoData;
302 wchar_t* wcharString = new wchar_t[ilen+1];
305 return EInsufficientSystemMemory;
308 if(minusone != mbstowcs(wcharString, (const char*)aSrc.Ptr(), ilen))
310 wcharString[ilen] = L'\0';
311 aDes.assign(wcharString);
315 retval= EInvalidMBSSequence;
318 delete []wcharString;