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 string conversions
25 * Converts a descriptor of type TBuf16 to string datatype
27 * @param aSrc is the descriptor to be converted , aDes is the
28 * reference to the string to which the result of conversion
30 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory)
33 EXPORT_C int Tbuf16ToString(TDes16& aSrc, string& aDes)
35 unsigned int ilen = aSrc.Length();
36 int retval = ESuccess;
38 char* charString = new char[ilen*2+1];
42 return EInsufficientSystemMemory;
45 wchar_t *wcharString = new wchar_t[ilen+1];
50 return EInsufficientSystemMemory;
53 wmemcpy(wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
54 wcharString[ilen] = L'\0';
56 if(minusone != wcstombs(charString, wcharString, ilen*2))
58 charString[ilen*2] = '\0';
59 aDes.assign(charString);
63 retval = EInvalidWCSSequence;
73 * Converts a descriptor of type TBufC16 to string datatype
75 * @param aSrc is the descriptor to be converted , aDes is the
76 * reference to the string to which the result of conversion
78 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory)
81 EXPORT_C int Tbufc16ToString(TDesC16& aSrc, string& aDes)
83 int ilen = aSrc.Length(), retval = ESuccess;
85 char* charString = new char[ilen*2+1];
89 return EInsufficientSystemMemory;
92 wchar_t *wcharString = new wchar_t[ilen+1];
97 return EInsufficientSystemMemory;
100 wmemcpy(wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
101 wcharString[ilen] = L'\0';
103 if(minusone != wcstombs(charString, wcharString, ilen*2))
105 charString[ilen*2] = '\0';
106 aDes.assign(charString);
110 retval = EInvalidWCSSequence;
114 delete []wcharString;
120 * Converts a descriptor of type TPtr16 to string datatype
122 * @param aSrc is the descriptor to be converted , aDes is the
123 * reference to the string to which the result of conversion
125 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory)
128 EXPORT_C int Tptr16ToString (TDes16& aSrc, string& aDes)
130 int retval = ESuccess;
131 unsigned int ilen= aSrc.Length();
133 char* charString = new char[ilen*2+1];
137 return EInsufficientSystemMemory;
139 wchar_t *wcharString = new wchar_t[ilen+1];
144 return EInsufficientSystemMemory;
147 wmemcpy(wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
148 wcharString[ilen] = L'\0';
151 if(minusone != wcstombs(charString, wcharString, ilen*2))
153 charString[ilen*2] = '\0';
154 aDes.assign(charString);
158 retval = EInvalidWCSSequence;
162 delete []wcharString;
168 * Converts a descriptor of type TPtrC16 to string datatype
170 * @param aSrc is the descriptor to be converted , aDes is the
171 * reference to the string to which the result of conversion
173 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory)
176 EXPORT_C int Tptrc16ToString (const TDesC16& aSrc, string& aDes)
178 int retval = ESuccess;
179 int ilen= aSrc.Length();
181 char* buf = new char[ilen*2 +1];
185 return EInsufficientSystemMemory;
188 wchar_t *wcharString = new wchar_t[ilen+1];
193 return EInsufficientSystemMemory;
196 wmemcpy(wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
197 wcharString[ilen] = L'\0';
199 if(minusone != wcstombs(buf, wcharString, ilen*2))
206 retval = EInvalidWCSSequence;
210 delete []wcharString;
216 * Converts a descriptor of type HbufC16 to string datatype
218 * @param aSrc is the descriptor to be converted , aDes is the
219 * reference to the string to which the result of conversion
220 * is stored , n_size specifies the conversion size of the string
221 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory)
222 * -2 is EInvalidSize , -5 is EDescriptorNoData)
225 EXPORT_C int Hbufc16ToString(HBufC16* aSrc, string& aDes, int& n_size)
227 int retval = ESuccess;
233 return EInvalidPointer;
240 return EDescriptorNoData;
242 else if (n_size < ilen)
249 char* buf = new char[ilen*2 +1];
253 return EInsufficientSystemMemory;
256 wchar_t *wcharString = new wchar_t[ilen+1];
261 return EInsufficientSystemMemory;
264 wmemcpy(wcharString, (const wchar_t*)aSrc->Ptr(), ilen);
265 wcharString[ilen] = L'\0';
268 if(minusone != wcstombs(buf, wcharString, ilen*2))
271 aDes.assign(buf, ilen*2);
276 retval = EInvalidWCSSequence;
280 delete []wcharString;
286 * Converts a descriptor of type RBuf16 to string datatype
288 * @param aSrc is the descriptor to be converted , aDes is the
289 * reference to the string to which the result of conversion
291 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory
292 * -5 is EDescriptorNoData)
295 EXPORT_C int Rbuf16ToString(TDes16& aSrc, string& aDes)
297 unsigned int ilen = aSrc.Length();
298 int retval = ESuccess ;
302 return EDescriptorNoData;
305 char* buf = new char[ilen*2 +1];
309 return EInsufficientSystemMemory;
312 wchar_t *wcharString = new wchar_t[ilen+1];
317 return EInsufficientSystemMemory;
320 wmemcpy(wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
321 wcharString[ilen] = L'\0';
324 if(minusone != wcstombs(buf, wcharString, ilen*2))
327 aDes.assign(buf, ilen*2);
332 retval = EInvalidWCSSequence;
336 delete []wcharString;
342 * Converts a descriptor of type TLit16 to string datatype
344 * @param aSrc is the descriptor to be converted , aDes is the
345 * reference to the string to which the result of conversion
347 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory
348 * -5 is EDescriptorNoData)
351 EXPORT_C int Tlit16ToString(const TDesC16& aSrc, string& aDes)
353 unsigned int ilen = 0;
354 int retval = ESuccess;
355 ilen = aSrc.Length();
360 return EDescriptorNoData;
363 char* buf = new char[ilen*2 +1];
367 return EInsufficientSystemMemory;
370 wchar_t *wcharString = new wchar_t[ilen+1];
375 return EInsufficientSystemMemory;
378 wmemcpy(wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
379 wcharString[ilen] = L'\0';
382 if(minusone != wcstombs(buf, wcharString, ilen*2))
390 retval = EInvalidWCSSequence;
394 delete []wcharString;