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 Descriptor16 conversions
25 * Converts a wstring to a descriptor of type TBufc16
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 )
34 EXPORT_C int WstringToTbuf16(wstring& aSrc, TDes16& aDes)
36 int retval = ESuccess;
37 const wchar_t* wcharString = aSrc.c_str();
39 if (L'\0' == wcharString[0])
44 int len= wcslen(wcharString);
45 if ((wcslen(wcharString)) > aDes.MaxLength())
46 if (len > aDes.MaxLength())
48 return EInsufficientMemory;
51 aDes.Copy((const TUint16*)wcharString);
57 * Converts a wstring to a descriptor of type TPtr16
59 * @param aSrc is the wstring to be converted , aDes is the
60 * reference to the descriptor where the result of conversion
62 * @return Status code (0 is ESuccess, -3 is EStringNoData, -1 is EInsufficientMemory)
65 EXPORT_C int WstringToTptr16(wstring& aSrc, TPtr16& aDes )
67 const wchar_t* wcharString = aSrc.c_str();
68 unsigned int wlen = 0 , maxlen =0;
70 if (L'\0' == wcharString[0])
75 wlen = wcslen(wcharString);
76 maxlen = aDes.MaxLength();
80 return EInsufficientMemory;
83 aDes.Set((unsigned short *)wcharString, wlen, maxlen);
88 * Converts a wstring to a descriptor of type TPtrC16
90 * @param aSrc is the wstring to be converted , aDes is the
91 * reference to the descriptor where the result of conversion
93 * @return Status code (0 is ESuccess,-3 is EStringNoData )
96 EXPORT_C int WstringToTptrc16(wstring& aSrc, TPtrC16& aDes)
99 const wchar_t* wcharString = aSrc.c_str();
101 if (L'\0' == wcharString[0])
103 return EStringNoData;
106 aDes.Set((TUint16 *)(wcharString));
111 * Converts a wstring to a descriptor of type HBufc16
113 * @param aSrc is the Wstring to be converted , aDes is the
114 * reference to the descriptor where the result of conversion
116 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
117 * -3 is EStringNoData, -4 is EInvalidPointer )
120 EXPORT_C int WstringToHbufc16(wstring& aSrc, HBufC16* aDes)
122 unsigned int ilendes = 0;
123 const wchar_t* wcharString = aSrc.c_str();
125 if (L'\0' == wcharString[0])
127 return EStringNoData;
131 return EInvalidPointer;
134 ilendes = aDes->Length();
140 else if (ilendes < wcslen(wcharString))
142 return EInsufficientMemory;
145 *aDes = (TUint16*)wcharString;
151 * Converts a wstring to a descriptor of type RBufc16
153 * @param aSrc is the wstring to be converted , aDes is the
154 * reference to the descriptor where the result of conversion
156 * @return Status code (0 is ESuccess , -3 is EStringNoData )
159 EXPORT_C int WstringToRbuf16(const wstring& aSrc, RBuf16& aDes)
161 unsigned int wlen =0;
162 int retval = ESuccess;
163 const wchar_t* wcharString = aSrc.c_str();
165 if (L'\0' == wcharString[0])
167 return EStringNoData;
170 wlen = wcslen(wcharString);
172 aDes.Copy((const unsigned short *)wcharString, wlen);