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 wstring to Descriptor8 conversions
25 * Converts a wstring to a descriptor of type TBufc8
27 * @param aSrc is the wstring to be converted , aDes is the
28 * reference to the descriptor where the result of conversion
30 * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
31 * -3 is EStringNoData, -4 is EInvalidPointer, -8 is EInvalidWCSSequence
32 * -9 is EInsufficientSystemMemory)
35 EXPORT_C int WstringToTbuf8(wstring& aSrc, TDes8& aDes)
37 int retval = ESuccess;
38 unsigned int ilen = 0;
39 const wchar_t* wcharString = aSrc.c_str();
42 if (L'\0' == wcharString[0])
47 ilen = wcslen(wcharString);
49 if (ilen*2 > aDes.MaxLength())
51 return EInsufficientMemory;
54 char *CharString = new char[ilen*2];
58 return EInsufficientSystemMemory;
61 if(minusone == wcstombs(CharString, (const wchar_t*)wcharString, ilen*2))
63 retval = EInvalidWCSSequence;
67 aDes.Copy((unsigned char *)CharString, ilen*2);
75 * Converts a wstring to a descriptor of type TPtr8
77 * @param aSrc is the wstring to be converted , aDes is the
78 * reference to the descriptor where the result of conversion
80 * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
81 * -3 is EStringNoData, -4 is EInvalidPointer )
84 EXPORT_C int WstringToTptr8(wstring& aSrc, char* cPtr, TPtr8& aDes)
86 int retval = ESuccess;
87 unsigned int wlen = 0, ilendes = 0;
88 const wchar_t* wcharString = aSrc.c_str();
91 if (L'\0' == wcharString[0])
96 wlen = wcslen(wcharString);
97 ilendes = aDes.MaxLength();
101 return EInsufficientMemory;
104 if(minusone != wcstombs(cPtr, wcharString, wlen*2))
106 aDes.Set((unsigned char *)cPtr, wlen*2, ilendes);
110 retval = EInvalidWCSSequence;
117 * Converts a wstring to a descriptor of type TPtrC8
119 * @param aSrc is the wstring to be converted , aDes is the
120 * reference to the descriptor where the result of conversion
122 * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
123 * -3 is EStringNoData, -4 is EInvalidPointer )
126 EXPORT_C int WstringToTptrc8(wstring& aSrc, char* cPtr, TPtrC8& aDes)
128 int retval = ESuccess;
129 unsigned int wlen = 0;
130 const wchar_t* wcharString = aSrc.c_str();
133 if (L'\0' == wcharString[0])
135 return EStringNoData;
139 return EInvalidPointer;
142 wlen = wcslen(wcharString);
144 if(minusone != wcstombs(cPtr, (const wchar_t*)wcharString, wlen*2 ))
146 aDes.Set((TUint8 *)(cPtr), wlen*2);
150 retval = EInvalidWCSSequence;
157 * Converts a wstring to a descriptor of type HBufc8
159 * @param aSrc is the Wstring to be converted , aDes is the
160 * reference to the descriptor where the result of conversion
162 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
163 * -3 is EStringNoData )
166 EXPORT_C int WstringToHbufc8(wstring& aSrc, HBufC8* aDes)
168 unsigned int wlen = 0 , ilendes = 0;
169 int retval = ESuccess;
170 const wchar_t* wcharString = aSrc.c_str();
173 if (L'\0' == wcharString[0])
175 return EStringNoData;
179 return EInvalidPointer;
182 wlen = wcslen(wcharString);
183 ilendes = aDes->Length();
189 else if (ilendes < wlen)
191 return EInsufficientMemory;
194 char *CharString = new char[wlen*2];
198 return EInsufficientSystemMemory;
202 if(minusone == wcstombs(CharString, (const wchar_t *)wcharString, wlen*2))
204 retval = EInvalidWCSSequence;
208 *aDes = (TUint8 *)CharString;
216 * Converts a wstring to a descriptor of type RBuf8
218 * @param aSrc is the wstring to be converted , aDes is the
219 * reference to the descriptor where the result of conversion
221 * @return Status code (0 is ESuccess ,-1 is EInsufficientMemory -3 is EStringNoData )
224 EXPORT_C int WstringToRbuf8(const wstring& aSrc, RBuf8& aDes)
226 int retval = ESuccess;
227 unsigned int wlen = 0;
228 const wchar_t* wcharString = aSrc.c_str();
231 if (L'\0' == wcharString[0])
233 return EStringNoData;
236 wlen = wcslen(aSrc.c_str());
238 char* buf = new char[wlen*2];
242 return EInsufficientSystemMemory;
245 if(minusone != wcstombs(buf, (const wchar_t*)wcharString, wlen*2))
247 aDes.Copy((const unsigned char *)buf, wlen*2);
251 retval = EInvalidWCSSequence;