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 Descriptor16 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 TBufc16
|
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 )
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
|
sl@0
|
34 |
EXPORT_C int WstringToTbuf16(wstring& aSrc, TDes16& aDes)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
int retval = ESuccess;
|
sl@0
|
37 |
const wchar_t* wcharString = aSrc.c_str();
|
sl@0
|
38 |
|
sl@0
|
39 |
if (L'\0' == wcharString[0])
|
sl@0
|
40 |
{
|
sl@0
|
41 |
return EStringNoData;
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
int len= wcslen(wcharString);
|
sl@0
|
45 |
if ((wcslen(wcharString)) > aDes.MaxLength())
|
sl@0
|
46 |
if (len > aDes.MaxLength())
|
sl@0
|
47 |
{
|
sl@0
|
48 |
return EInsufficientMemory;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
aDes.Copy((const TUint16*)wcharString);
|
sl@0
|
52 |
|
sl@0
|
53 |
return retval;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
* Converts a wstring to a descriptor of type TPtr16
|
sl@0
|
58 |
*
|
sl@0
|
59 |
* @param aSrc is the wstring to be converted , aDes is the
|
sl@0
|
60 |
* reference to the descriptor where the result of conversion
|
sl@0
|
61 |
* is stored
|
sl@0
|
62 |
* @return Status code (0 is ESuccess, -3 is EStringNoData, -1 is EInsufficientMemory)
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
|
sl@0
|
65 |
EXPORT_C int WstringToTptr16(wstring& aSrc, TPtr16& aDes )
|
sl@0
|
66 |
{
|
sl@0
|
67 |
const wchar_t* wcharString = aSrc.c_str();
|
sl@0
|
68 |
unsigned int wlen = 0 , maxlen =0;
|
sl@0
|
69 |
|
sl@0
|
70 |
if (L'\0' == wcharString[0])
|
sl@0
|
71 |
{
|
sl@0
|
72 |
return EStringNoData;
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
wlen = wcslen(wcharString);
|
sl@0
|
76 |
maxlen = aDes.MaxLength();
|
sl@0
|
77 |
|
sl@0
|
78 |
if (maxlen < wlen)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
return EInsufficientMemory;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
aDes.Set((unsigned short *)wcharString, wlen, maxlen);
|
sl@0
|
84 |
return ESuccess;
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
/**
|
sl@0
|
88 |
* Converts a wstring to a descriptor of type TPtrC16
|
sl@0
|
89 |
*
|
sl@0
|
90 |
* @param aSrc is the wstring to be converted , aDes is the
|
sl@0
|
91 |
* reference to the descriptor where the result of conversion
|
sl@0
|
92 |
* is stored
|
sl@0
|
93 |
* @return Status code (0 is ESuccess,-3 is EStringNoData )
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
|
sl@0
|
96 |
EXPORT_C int WstringToTptrc16(wstring& aSrc, TPtrC16& aDes)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
|
sl@0
|
99 |
const wchar_t* wcharString = aSrc.c_str();
|
sl@0
|
100 |
|
sl@0
|
101 |
if (L'\0' == wcharString[0])
|
sl@0
|
102 |
{
|
sl@0
|
103 |
return EStringNoData;
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
aDes.Set((TUint16 *)(wcharString));
|
sl@0
|
107 |
return ESuccess;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
/**
|
sl@0
|
111 |
* Converts a wstring to a descriptor of type HBufc16
|
sl@0
|
112 |
*
|
sl@0
|
113 |
* @param aSrc is the Wstring to be converted , aDes is the
|
sl@0
|
114 |
* reference to the descriptor where the result of conversion
|
sl@0
|
115 |
* is stored
|
sl@0
|
116 |
* @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
|
sl@0
|
117 |
* -3 is EStringNoData, -4 is EInvalidPointer )
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
|
sl@0
|
120 |
EXPORT_C int WstringToHbufc16(wstring& aSrc, HBufC16* aDes)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
unsigned int ilendes = 0;
|
sl@0
|
123 |
const wchar_t* wcharString = aSrc.c_str();
|
sl@0
|
124 |
|
sl@0
|
125 |
if (L'\0' == wcharString[0])
|
sl@0
|
126 |
{
|
sl@0
|
127 |
return EStringNoData;
|
sl@0
|
128 |
}
|
sl@0
|
129 |
else if (!aDes)
|
sl@0
|
130 |
{
|
sl@0
|
131 |
return EInvalidPointer;
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
ilendes = aDes->Length();
|
sl@0
|
135 |
|
sl@0
|
136 |
if (0 == ilendes)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
return EUseNewMaxL;
|
sl@0
|
139 |
}
|
sl@0
|
140 |
else if (ilendes < wcslen(wcharString))
|
sl@0
|
141 |
{
|
sl@0
|
142 |
return EInsufficientMemory;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
*aDes = (TUint16*)wcharString;
|
sl@0
|
146 |
|
sl@0
|
147 |
return ESuccess;
|
sl@0
|
148 |
}
|
sl@0
|
149 |
|
sl@0
|
150 |
/**
|
sl@0
|
151 |
* Converts a wstring to a descriptor of type RBufc16
|
sl@0
|
152 |
*
|
sl@0
|
153 |
* @param aSrc is the wstring to be converted , aDes is the
|
sl@0
|
154 |
* reference to the descriptor where the result of conversion
|
sl@0
|
155 |
* is stored
|
sl@0
|
156 |
* @return Status code (0 is ESuccess , -3 is EStringNoData )
|
sl@0
|
157 |
*/
|
sl@0
|
158 |
|
sl@0
|
159 |
EXPORT_C int WstringToRbuf16(const wstring& aSrc, RBuf16& aDes)
|
sl@0
|
160 |
{
|
sl@0
|
161 |
unsigned int wlen =0;
|
sl@0
|
162 |
int retval = ESuccess;
|
sl@0
|
163 |
const wchar_t* wcharString = aSrc.c_str();
|
sl@0
|
164 |
|
sl@0
|
165 |
if (L'\0' == wcharString[0])
|
sl@0
|
166 |
{
|
sl@0
|
167 |
return EStringNoData;
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
wlen = wcslen(wcharString);
|
sl@0
|
171 |
|
sl@0
|
172 |
aDes.Copy((const unsigned short *)wcharString, wlen);
|
sl@0
|
173 |
|
sl@0
|
174 |
return retval;
|
sl@0
|
175 |
}
|