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 string to Descriptor16 conversions
25 * Converts a string to a descriptor of type TBuf16
27 * @param aSrc is the string to be converted , aDes is the
28 * reference to the descriptor where the result of conversion
29 * is stored,n_size specifies the conversion size of the char array
30 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
31 * -3 is EStringNoData, -9 is EInsufficientSystemMemory)
33 EXPORT_C int StringToTbuf16(string& aSrc, TDes16& aDes)
35 int retval = ESuccess;
36 const char* charString = aSrc.c_str();
40 if('\0' == charString[0])
45 ilen = strlen(charString);
47 if (ilen > aDes.MaxLength())
49 return EInsufficientMemory;
52 wchar_t* WcharString = new wchar_t[ilen];
56 return EInsufficientSystemMemory;
59 if(minusone == mbstowcs(WcharString, (const char*)charString, ilen))
61 retval = EInvalidMBSSequence;
65 WcharString[ilen] = L'\0';
66 aDes.Copy((unsigned short*)WcharString,ilen);
74 * Converts a string to a descriptor of type Tptr16
76 * @param aSrc is the string to be converted , aDes is the
77 * reference to the descriptor where the result of conversion
79 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
80 * -3 is EStringNoData , -4 is EInvalidPointer)
83 EXPORT_C int StringToTptr16 (string& aSrc, wchar_t *wPtr, TPtr16& aDes)
85 int retval = ESuccess;
86 int ilen = 0, ideslen = 0;
87 const char* charString = aSrc.c_str();
90 if('\0' == charString[0])
96 return EInvalidPointer;
99 ilen = strlen(charString);
100 ideslen = aDes.MaxLength();
104 return EInsufficientMemory;
107 if(minusone != mbstowcs(wPtr, (const char*)charString, ilen))
109 aDes.Set((unsigned short *)wPtr, ilen, ideslen);
113 retval = EInvalidMBSSequence;
120 * Converts a string to a descriptor of type Tptrc16
122 * @param aSrc is the string to be converted , aDes is the
123 * reference to the descriptor where the result of conversion
125 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
126 * -3 is EStringNoData , -4 is EInvalidPointer)
129 EXPORT_C int StringToTptrc16(string& aSrc, wchar_t* wptr, TPtrC16& aDes)
131 unsigned int ilen = 0;
132 int retval = ESuccess;
133 const char* charString = aSrc.c_str();
138 return EInvalidPointer;
141 if('\0' == charString[0])
143 return EStringNoData;
146 ilen = strlen(charString);
148 if(minusone != mbstowcs(wptr, (const char*)charString, ilen ))
150 aDes.Set((TUint16 *)(wptr), ilen);
154 retval = EInvalidMBSSequence;
161 * Converts a string to a descriptor of type HBufc16
163 * @param aSrc is the string to be converted , aDes is the
164 * reference to the descriptor where the result of conversion
166 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
167 * -3 is EStringNoData, -4 is EInvalidPointer, -6 is EUseNewMaxL,
168 * -9 is EInsufficientSystemMemory)
171 EXPORT_C int StringToHbufc16(string& aSrc , HBufC16* aDes)
173 int retval = ESuccess;
174 unsigned int ilen = 0, ilendes = 0;
175 const char* charString = aSrc.c_str();
178 if('\0' == charString[0])
180 return EStringNoData;
184 return EInvalidPointer;
187 ilen = strlen(charString);
188 ilendes = aDes->Length();
194 else if (ilendes < ilen)
196 return EInsufficientMemory;
199 wchar_t* WcharString = new wchar_t[ilen];
203 return EInsufficientSystemMemory;
206 if(minusone == mbstowcs(WcharString, (const char*)charString, ilen))
208 retval = EInvalidMBSSequence;
212 TPtrC16 temp((unsigned short*)WcharString, ilen);
216 delete[] WcharString;
221 * Converts a string to a descriptor of type RBufc16
223 * @param aSrc is the string to be converted , aDes is the
224 * reference to the descriptor where the result of conversion
226 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
227 * -3 is EStringNoData, -7 is EInvalidMBSSequence, -9 is EInsufficientSystemMemory)
230 EXPORT_C int StringToRbuf16(const string& aSrc, RBuf16& aDes)
232 int retval = ESuccess;
233 unsigned int ilen = 0;
236 const char* charString = aSrc.c_str();
238 if('\0' == charString[0])
240 return EStringNoData;
243 ilen = strlen(charString);
245 wchar_t* buf = new wchar_t[ilen];
249 return EInsufficientMemory;
252 if(minusone != mbstowcs(buf, charString, ilen))
254 aDes.Copy((const unsigned short *)buf, ilen);
258 retval = EInvalidMBSSequence;