sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description: Contains the source for wstring to Descriptor8 conversions
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "libutils.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
/**
|
sl@0
|
25 |
* Converts a wstring to a descriptor of type TBufc8
|
sl@0
|
26 |
*
|
sl@0
|
27 |
* @param aSrc is the wstring to be converted , aDes is the
|
sl@0
|
28 |
* reference to the descriptor where the result of conversion
|
sl@0
|
29 |
* is stored
|
sl@0
|
30 |
* @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
|
sl@0
|
31 |
* -3 is EStringNoData, -4 is EInvalidPointer, -8 is EInvalidWCSSequence
|
sl@0
|
32 |
* -9 is EInsufficientSystemMemory)
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
|
sl@0
|
35 |
EXPORT_C int WstringToTbuf8(wstring& aSrc, TDes8& aDes)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
int retval = ESuccess;
|
sl@0
|
38 |
unsigned int ilen = 0;
|
sl@0
|
39 |
const wchar_t* wcharString = aSrc.c_str();
|
sl@0
|
40 |
int minusone = -1;
|
sl@0
|
41 |
|
sl@0
|
42 |
if (L'\0' == wcharString[0])
|
sl@0
|
43 |
{
|
sl@0
|
44 |
return EStringNoData;
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
ilen = wcslen(wcharString);
|
sl@0
|
48 |
|
sl@0
|
49 |
if (ilen*2 > aDes.MaxLength())
|
sl@0
|
50 |
{
|
sl@0
|
51 |
return EInsufficientMemory;
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
char *CharString = new char[ilen*2];
|
sl@0
|
55 |
|
sl@0
|
56 |
if(!CharString)
|
sl@0
|
57 |
{
|
sl@0
|
58 |
return EInsufficientSystemMemory;
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
if(minusone == wcstombs(CharString, (const wchar_t*)wcharString, ilen*2))
|
sl@0
|
62 |
{
|
sl@0
|
63 |
retval = EInvalidWCSSequence;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
else
|
sl@0
|
66 |
{
|
sl@0
|
67 |
aDes.Copy((unsigned char *)CharString, ilen*2);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
delete []CharString;
|
sl@0
|
71 |
return retval;
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
* Converts a wstring to a descriptor of type TPtr8
|
sl@0
|
76 |
*
|
sl@0
|
77 |
* @param aSrc is the wstring to be converted , aDes is the
|
sl@0
|
78 |
* reference to the descriptor where the result of conversion
|
sl@0
|
79 |
* is stored
|
sl@0
|
80 |
* @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
|
sl@0
|
81 |
* -3 is EStringNoData, -4 is EInvalidPointer )
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
|
sl@0
|
84 |
EXPORT_C int WstringToTptr8(wstring& aSrc, char* cPtr, TPtr8& aDes)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
int retval = ESuccess;
|
sl@0
|
87 |
unsigned int wlen = 0, ilendes = 0;
|
sl@0
|
88 |
const wchar_t* wcharString = aSrc.c_str();
|
sl@0
|
89 |
int minusone = -1;
|
sl@0
|
90 |
|
sl@0
|
91 |
if (L'\0' == wcharString[0])
|
sl@0
|
92 |
{
|
sl@0
|
93 |
return EStringNoData;
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
wlen = wcslen(wcharString);
|
sl@0
|
97 |
ilendes = aDes.MaxLength();
|
sl@0
|
98 |
|
sl@0
|
99 |
if (ilendes < 2*wlen)
|
sl@0
|
100 |
{
|
sl@0
|
101 |
return EInsufficientMemory;
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
if(minusone != wcstombs(cPtr, wcharString, wlen*2))
|
sl@0
|
105 |
{
|
sl@0
|
106 |
aDes.Set((unsigned char *)cPtr, wlen*2, ilendes);
|
sl@0
|
107 |
}
|
sl@0
|
108 |
else
|
sl@0
|
109 |
{
|
sl@0
|
110 |
retval = EInvalidWCSSequence;
|
sl@0
|
111 |
}
|
sl@0
|
112 |
|
sl@0
|
113 |
return retval;
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
* Converts a wstring to a descriptor of type TPtrC8
|
sl@0
|
118 |
*
|
sl@0
|
119 |
* @param aSrc is the wstring to be converted , aDes is the
|
sl@0
|
120 |
* reference to the descriptor where the result of conversion
|
sl@0
|
121 |
* is stored
|
sl@0
|
122 |
* @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
|
sl@0
|
123 |
* -3 is EStringNoData, -4 is EInvalidPointer )
|
sl@0
|
124 |
*/
|
sl@0
|
125 |
|
sl@0
|
126 |
EXPORT_C int WstringToTptrc8(wstring& aSrc, char* cPtr, TPtrC8& aDes)
|
sl@0
|
127 |
{
|
sl@0
|
128 |
int retval = ESuccess;
|
sl@0
|
129 |
unsigned int wlen = 0;
|
sl@0
|
130 |
const wchar_t* wcharString = aSrc.c_str();
|
sl@0
|
131 |
int minusone = -1;
|
sl@0
|
132 |
|
sl@0
|
133 |
if (L'\0' == wcharString[0])
|
sl@0
|
134 |
{
|
sl@0
|
135 |
return EStringNoData;
|
sl@0
|
136 |
}
|
sl@0
|
137 |
else if ( !cPtr )
|
sl@0
|
138 |
{
|
sl@0
|
139 |
return EInvalidPointer;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
wlen = wcslen(wcharString);
|
sl@0
|
143 |
|
sl@0
|
144 |
if(minusone != wcstombs(cPtr, (const wchar_t*)wcharString, wlen*2 ))
|
sl@0
|
145 |
{
|
sl@0
|
146 |
aDes.Set((TUint8 *)(cPtr), wlen*2);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
else
|
sl@0
|
149 |
{
|
sl@0
|
150 |
retval = EInvalidWCSSequence;
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
return retval;
|
sl@0
|
154 |
}
|
sl@0
|
155 |
|
sl@0
|
156 |
/**
|
sl@0
|
157 |
* Converts a wstring to a descriptor of type HBufc8
|
sl@0
|
158 |
*
|
sl@0
|
159 |
* @param aSrc is the Wstring to be converted , aDes is the
|
sl@0
|
160 |
* reference to the descriptor where the result of conversion
|
sl@0
|
161 |
* is stored
|
sl@0
|
162 |
* @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
|
sl@0
|
163 |
* -3 is EStringNoData )
|
sl@0
|
164 |
*/
|
sl@0
|
165 |
|
sl@0
|
166 |
EXPORT_C int WstringToHbufc8(wstring& aSrc, HBufC8* aDes)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
unsigned int wlen = 0 , ilendes = 0;
|
sl@0
|
169 |
int retval = ESuccess;
|
sl@0
|
170 |
const wchar_t* wcharString = aSrc.c_str();
|
sl@0
|
171 |
int minusone = -1;
|
sl@0
|
172 |
|
sl@0
|
173 |
if (L'\0' == wcharString[0])
|
sl@0
|
174 |
{
|
sl@0
|
175 |
return EStringNoData;
|
sl@0
|
176 |
}
|
sl@0
|
177 |
else if (!aDes)
|
sl@0
|
178 |
{
|
sl@0
|
179 |
return EInvalidPointer;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
wlen = wcslen(wcharString);
|
sl@0
|
183 |
ilendes = aDes->Length();
|
sl@0
|
184 |
|
sl@0
|
185 |
if (0 == ilendes)
|
sl@0
|
186 |
{
|
sl@0
|
187 |
return EUseNewMaxL;
|
sl@0
|
188 |
}
|
sl@0
|
189 |
else if (ilendes < wlen)
|
sl@0
|
190 |
{
|
sl@0
|
191 |
return EInsufficientMemory;
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
char *CharString = new char[wlen*2];
|
sl@0
|
195 |
|
sl@0
|
196 |
if(!CharString)
|
sl@0
|
197 |
{
|
sl@0
|
198 |
return EInsufficientSystemMemory;
|
sl@0
|
199 |
}
|
sl@0
|
200 |
|
sl@0
|
201 |
|
sl@0
|
202 |
if(minusone == wcstombs(CharString, (const wchar_t *)wcharString, wlen*2))
|
sl@0
|
203 |
{
|
sl@0
|
204 |
retval = EInvalidWCSSequence;
|
sl@0
|
205 |
}
|
sl@0
|
206 |
else
|
sl@0
|
207 |
{
|
sl@0
|
208 |
*aDes = (TUint8 *)CharString;
|
sl@0
|
209 |
}
|
sl@0
|
210 |
|
sl@0
|
211 |
delete []CharString;
|
sl@0
|
212 |
return retval;
|
sl@0
|
213 |
}
|
sl@0
|
214 |
|
sl@0
|
215 |
/**
|
sl@0
|
216 |
* Converts a wstring to a descriptor of type RBuf8
|
sl@0
|
217 |
*
|
sl@0
|
218 |
* @param aSrc is the wstring to be converted , aDes is the
|
sl@0
|
219 |
* reference to the descriptor where the result of conversion
|
sl@0
|
220 |
* is stored
|
sl@0
|
221 |
* @return Status code (0 is ESuccess ,-1 is EInsufficientMemory -3 is EStringNoData )
|
sl@0
|
222 |
*/
|
sl@0
|
223 |
|
sl@0
|
224 |
EXPORT_C int WstringToRbuf8(const wstring& aSrc, RBuf8& aDes)
|
sl@0
|
225 |
{
|
sl@0
|
226 |
int retval = ESuccess;
|
sl@0
|
227 |
unsigned int wlen = 0;
|
sl@0
|
228 |
const wchar_t* wcharString = aSrc.c_str();
|
sl@0
|
229 |
int minusone = -1;
|
sl@0
|
230 |
|
sl@0
|
231 |
if (L'\0' == wcharString[0])
|
sl@0
|
232 |
{
|
sl@0
|
233 |
return EStringNoData;
|
sl@0
|
234 |
}
|
sl@0
|
235 |
|
sl@0
|
236 |
wlen = wcslen(aSrc.c_str());
|
sl@0
|
237 |
|
sl@0
|
238 |
char* buf = new char[wlen*2];
|
sl@0
|
239 |
|
sl@0
|
240 |
if (!buf)
|
sl@0
|
241 |
{
|
sl@0
|
242 |
return EInsufficientSystemMemory;
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
if(minusone != wcstombs(buf, (const wchar_t*)wcharString, wlen*2))
|
sl@0
|
246 |
{
|
sl@0
|
247 |
aDes.Copy((const unsigned char *)buf, wlen*2);
|
sl@0
|
248 |
}
|
sl@0
|
249 |
else
|
sl@0
|
250 |
{
|
sl@0
|
251 |
retval = EInvalidWCSSequence;
|
sl@0
|
252 |
}
|
sl@0
|
253 |
|
sl@0
|
254 |
delete []buf;
|
sl@0
|
255 |
return retval;
|
sl@0
|
256 |
}
|