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 Descriptor16 to wstring conversions
26 * Converts a descriptor of type TPtrC16 to Wstring
28 * @param aSrc is the descriptor to be converted , aDes is the
29 * reference to the Wstring array where the result of conversion
31 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
32 * -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
35 EXPORT_C int Tptrc16ToWstring(TPtrC16& aSrc, wstring& aDes)
38 unsigned int ilen = aSrc.Length();
41 return EDescriptorNoData;
44 wchar_t* wcharString = new wchar_t[ilen+1];
47 return EInsufficientSystemMemory;
50 wmemcpy((wchar_t*)wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
51 wcharString[ilen] = L'\0';
53 aDes.assign(wcharString);
61 * Converts a descriptor of type Tbuf16 to Wstring
63 * @param aSrc is the descriptor to be converted , aDes is the
64 * reference to the Wstring array where the result of conversion
66 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
67 * -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
70 EXPORT_C int Tbuf16ToWstring(TDes16& aSrc, wstring& aDes)
73 unsigned int ilen = aSrc.Length();
76 return EDescriptorNoData;
79 wchar_t* wcharString = new wchar_t[ilen+1];
82 return EInsufficientSystemMemory;
85 wmemcpy((wchar_t*)wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
86 wcharString[ilen] = L'\0';
88 aDes.assign(wcharString);
95 * Converts a descriptor of type HBufc16 to Wstring
97 * @param aSrc is the descriptor to be converted , aDes is the
98 * reference to the Wstring array where the result of conversion
100 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
101 * -4 is EInvalidPointer , -5 is EDescriptorNoData)
103 EXPORT_C int Hbufc16ToWstring(HBufC16* aSrc, wstring& aDes)
105 unsigned int ilen = 0;
108 return EInvalidPointer;
112 ilen = aSrc->Length();
115 return EDescriptorNoData;
119 wchar_t* wcharString = new wchar_t[ilen+1];
122 return EInsufficientSystemMemory;
125 wmemcpy((wchar_t*)wcharString, (const wchar_t*)aSrc->Ptr(), ilen);
126 wcharString[ilen] = L'\0';
128 aDes.assign(wcharString);
130 delete []wcharString;
135 * Converts a descriptor of type TPtr16 to Wstring
137 * @param aSrc is the descriptor to be converted , aDes is the
138 * reference to the Wstring array where the result of conversion
140 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
141 * -5 is EDescriptorNoData)
143 EXPORT_C int Tptr16ToWstring(TPtr16& aSrc, wstring& aDes)
146 unsigned int ilen = aSrc.Length();
150 return EDescriptorNoData;
153 wchar_t* wcharString = new wchar_t[ilen+1];
156 return EInsufficientSystemMemory;
159 wmemcpy(wcharString, (wchar_t *)aSrc.Ptr(), ilen);
160 wcharString[ilen] = L'\0';
162 aDes.assign(wcharString);
164 delete []wcharString;
170 * Converts a descriptor of type RBuf16 to Wstring
172 * @param aSrc is the descriptor to be converted , aDes is the
173 * reference to the Wstring array where the result of conversion
175 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
176 * -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
178 EXPORT_C int Rbuf16ToWstring(TDes16& aSrc, wstring& aDes)
180 unsigned int ilen = aSrc.Length();
183 return EDescriptorNoData;
186 wchar_t* buf = new wchar_t[ilen+1];
189 return EInsufficientSystemMemory;
192 wmemcpy (buf,(wchar_t *)aSrc.Ptr(), ilen);
202 * Converts a descriptor of type TLitc16 to Wstring
204 * @param aSrc is the descriptor to be converted , aDes is the
205 * reference to the Wstring array where the result of conversion
207 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
208 * -5 is EDescriptorNoData)
210 EXPORT_C int Tlitc16ToWstring(TDesC16& aSrc, wstring& aDes)
213 unsigned int ilen = aSrc.Length();
216 return EDescriptorNoData;
219 wchar_t* wcharString = new wchar_t[ilen+1];
222 return EInsufficientSystemMemory;
225 wmemcpy((wchar_t*)wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
226 wcharString[ilen] = L'\0';
228 aDes.assign(wcharString);
230 delete []wcharString;