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 Descriptor16 to wstring 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 |
/**
|
sl@0
|
26 |
* Converts a descriptor of type TPtrC16 to Wstring
|
sl@0
|
27 |
*
|
sl@0
|
28 |
* @param aSrc is the descriptor to be converted , aDes is the
|
sl@0
|
29 |
* reference to the Wstring array where the result of conversion
|
sl@0
|
30 |
* is stored
|
sl@0
|
31 |
* @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
|
sl@0
|
32 |
* -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
|
sl@0
|
35 |
EXPORT_C int Tptrc16ToWstring(TPtrC16& aSrc, wstring& aDes)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
|
sl@0
|
38 |
unsigned int ilen = aSrc.Length();
|
sl@0
|
39 |
if (0 == ilen)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
return EDescriptorNoData;
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
wchar_t* wcharString = new wchar_t[ilen+1];
|
sl@0
|
45 |
if (!wcharString)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
return EInsufficientSystemMemory;
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
wmemcpy((wchar_t*)wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
|
sl@0
|
51 |
wcharString[ilen] = L'\0';
|
sl@0
|
52 |
|
sl@0
|
53 |
aDes.assign(wcharString);
|
sl@0
|
54 |
|
sl@0
|
55 |
delete []wcharString;
|
sl@0
|
56 |
|
sl@0
|
57 |
return ESuccess;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
* Converts a descriptor of type Tbuf16 to Wstring
|
sl@0
|
62 |
*
|
sl@0
|
63 |
* @param aSrc is the descriptor to be converted , aDes is the
|
sl@0
|
64 |
* reference to the Wstring array where the result of conversion
|
sl@0
|
65 |
* is stored
|
sl@0
|
66 |
* @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
|
sl@0
|
67 |
* -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
|
sl@0
|
70 |
EXPORT_C int Tbuf16ToWstring(TDes16& aSrc, wstring& aDes)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
|
sl@0
|
73 |
unsigned int ilen = aSrc.Length();
|
sl@0
|
74 |
if (0 == ilen)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
return EDescriptorNoData;
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
wchar_t* wcharString = new wchar_t[ilen+1];
|
sl@0
|
80 |
if (!wcharString)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
return EInsufficientSystemMemory;
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
wmemcpy((wchar_t*)wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
|
sl@0
|
86 |
wcharString[ilen] = L'\0';
|
sl@0
|
87 |
|
sl@0
|
88 |
aDes.assign(wcharString);
|
sl@0
|
89 |
|
sl@0
|
90 |
delete []wcharString;
|
sl@0
|
91 |
return ESuccess;
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
* Converts a descriptor of type HBufc16 to Wstring
|
sl@0
|
96 |
*
|
sl@0
|
97 |
* @param aSrc is the descriptor to be converted , aDes is the
|
sl@0
|
98 |
* reference to the Wstring array where the result of conversion
|
sl@0
|
99 |
* is stored
|
sl@0
|
100 |
* @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
|
sl@0
|
101 |
* -4 is EInvalidPointer , -5 is EDescriptorNoData)
|
sl@0
|
102 |
*/
|
sl@0
|
103 |
EXPORT_C int Hbufc16ToWstring(HBufC16* aSrc, wstring& aDes)
|
sl@0
|
104 |
{
|
sl@0
|
105 |
unsigned int ilen = 0;
|
sl@0
|
106 |
if (!aSrc)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
return EInvalidPointer;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
else
|
sl@0
|
111 |
{
|
sl@0
|
112 |
ilen = aSrc->Length();
|
sl@0
|
113 |
if (0 == ilen )
|
sl@0
|
114 |
{
|
sl@0
|
115 |
return EDescriptorNoData;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
wchar_t* wcharString = new wchar_t[ilen+1];
|
sl@0
|
120 |
if (!wcharString)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
return EInsufficientSystemMemory;
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
wmemcpy((wchar_t*)wcharString, (const wchar_t*)aSrc->Ptr(), ilen);
|
sl@0
|
126 |
wcharString[ilen] = L'\0';
|
sl@0
|
127 |
|
sl@0
|
128 |
aDes.assign(wcharString);
|
sl@0
|
129 |
|
sl@0
|
130 |
delete []wcharString;
|
sl@0
|
131 |
return ESuccess;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
/**
|
sl@0
|
135 |
* Converts a descriptor of type TPtr16 to Wstring
|
sl@0
|
136 |
*
|
sl@0
|
137 |
* @param aSrc is the descriptor to be converted , aDes is the
|
sl@0
|
138 |
* reference to the Wstring array where the result of conversion
|
sl@0
|
139 |
* is stored
|
sl@0
|
140 |
* @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
|
sl@0
|
141 |
* -5 is EDescriptorNoData)
|
sl@0
|
142 |
*/
|
sl@0
|
143 |
EXPORT_C int Tptr16ToWstring(TPtr16& aSrc, wstring& aDes)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
|
sl@0
|
146 |
unsigned int ilen = aSrc.Length();
|
sl@0
|
147 |
|
sl@0
|
148 |
if (0 == ilen)
|
sl@0
|
149 |
{
|
sl@0
|
150 |
return EDescriptorNoData;
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
wchar_t* wcharString = new wchar_t[ilen+1];
|
sl@0
|
154 |
if (!wcharString)
|
sl@0
|
155 |
{
|
sl@0
|
156 |
return EInsufficientSystemMemory;
|
sl@0
|
157 |
}
|
sl@0
|
158 |
|
sl@0
|
159 |
wmemcpy(wcharString, (wchar_t *)aSrc.Ptr(), ilen);
|
sl@0
|
160 |
wcharString[ilen] = L'\0';
|
sl@0
|
161 |
|
sl@0
|
162 |
aDes.assign(wcharString);
|
sl@0
|
163 |
|
sl@0
|
164 |
delete []wcharString;
|
sl@0
|
165 |
return ESuccess;
|
sl@0
|
166 |
}
|
sl@0
|
167 |
|
sl@0
|
168 |
|
sl@0
|
169 |
/**
|
sl@0
|
170 |
* Converts a descriptor of type RBuf16 to Wstring
|
sl@0
|
171 |
*
|
sl@0
|
172 |
* @param aSrc is the descriptor to be converted , aDes is the
|
sl@0
|
173 |
* reference to the Wstring array where the result of conversion
|
sl@0
|
174 |
* is stored
|
sl@0
|
175 |
* @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
|
sl@0
|
176 |
* -2 is EInvalidSize , -4 is EInvalidPointer , -5 is EDescriptorNoData)
|
sl@0
|
177 |
*/
|
sl@0
|
178 |
EXPORT_C int Rbuf16ToWstring(TDes16& aSrc, wstring& aDes)
|
sl@0
|
179 |
{
|
sl@0
|
180 |
unsigned int ilen = aSrc.Length();
|
sl@0
|
181 |
if (0 == ilen)
|
sl@0
|
182 |
{
|
sl@0
|
183 |
return EDescriptorNoData;
|
sl@0
|
184 |
}
|
sl@0
|
185 |
|
sl@0
|
186 |
wchar_t* buf = new wchar_t[ilen+1];
|
sl@0
|
187 |
if(!buf)
|
sl@0
|
188 |
{
|
sl@0
|
189 |
return EInsufficientSystemMemory;
|
sl@0
|
190 |
}
|
sl@0
|
191 |
|
sl@0
|
192 |
wmemcpy (buf,(wchar_t *)aSrc.Ptr(), ilen);
|
sl@0
|
193 |
buf[ilen]=L'\0';
|
sl@0
|
194 |
|
sl@0
|
195 |
aDes.assign(buf);
|
sl@0
|
196 |
delete[] buf;
|
sl@0
|
197 |
|
sl@0
|
198 |
return ESuccess;
|
sl@0
|
199 |
}
|
sl@0
|
200 |
|
sl@0
|
201 |
/**
|
sl@0
|
202 |
* Converts a descriptor of type TLitc16 to Wstring
|
sl@0
|
203 |
*
|
sl@0
|
204 |
* @param aSrc is the descriptor to be converted , aDes is the
|
sl@0
|
205 |
* reference to the Wstring array where the result of conversion
|
sl@0
|
206 |
* is stored
|
sl@0
|
207 |
* @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
|
sl@0
|
208 |
* -5 is EDescriptorNoData)
|
sl@0
|
209 |
*/
|
sl@0
|
210 |
EXPORT_C int Tlitc16ToWstring(TDesC16& aSrc, wstring& aDes)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
|
sl@0
|
213 |
unsigned int ilen = aSrc.Length();
|
sl@0
|
214 |
if (0 == ilen)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
return EDescriptorNoData;
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
wchar_t* wcharString = new wchar_t[ilen+1];
|
sl@0
|
220 |
if (!wcharString)
|
sl@0
|
221 |
{
|
sl@0
|
222 |
return EInsufficientSystemMemory;
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
wmemcpy((wchar_t*)wcharString, (const wchar_t*)aSrc.Ptr(), ilen);
|
sl@0
|
226 |
wcharString[ilen] = L'\0';
|
sl@0
|
227 |
|
sl@0
|
228 |
aDes.assign(wcharString);
|
sl@0
|
229 |
|
sl@0
|
230 |
delete []wcharString;
|
sl@0
|
231 |
return ESuccess;
|
sl@0
|
232 |
}
|