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 Descriptor8 to string conversions
25 * Converts a descriptor of type TBuf8 to string datatype
27 * @param aSrc is the descriptor to be converted , aDes is the
28 * reference to the string to which the result of conversion
30 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory
31 * -4 is EDescriptorNoData)
34 EXPORT_C int Tbuf8ToString(TDes8& aSrc, string& aDes)
36 unsigned int ilen = aSrc.Length();
39 return EDescriptorNoData;
42 char* charString = new char[ilen +1];
45 return EInsufficientSystemMemory;
48 memcpy(charString, (char*)aSrc.Ptr(), ilen);
49 charString[ilen] = '\0';
51 aDes.assign(charString);
58 * Converts a descriptor of type TBufC8 to string datatype
60 * @param aSrc is the descriptor to be converted , aDes is the
61 * reference to the string to which the result of conversion
63 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory
64 * -4 is EDescriptorNoData)
67 EXPORT_C int Tbufc8ToString(TDesC8& aSrc, string& aDes)
69 unsigned int ilen = aSrc.Length();
72 return EDescriptorNoData;
75 char* charString = new char[ilen +1];
78 return EInsufficientSystemMemory;
81 memcpy(charString, (char*)aSrc.Ptr(), ilen);
82 charString[ilen] = '\0';
84 aDes.assign(charString);
91 * Converts a descriptor of type TPtr8 to string datatype
93 * @param aSrc is the descriptor to be converted , aDes is the
94 * reference to the string to which the result of conversion
96 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory
97 * -4 is EDescriptorNoData)
100 EXPORT_C int Tptr8ToString (TDes8& aSrc, string& aDes)
102 unsigned int ilen = aSrc.Length();
105 return EDescriptorNoData;
108 char* charString = new char[ilen +1];
112 return EInsufficientSystemMemory;
115 memcpy(charString, (char*)aSrc.Ptr(), ilen);
116 charString[ilen] = '\0';
118 aDes.assign (charString);
126 * Converts a descriptor of type TPtrC8 to string datatype
128 * @param aSrc is the descriptor to be converted , aDes is the
129 * reference to the string to which the result of conversion
131 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory
132 * -4 is EDescriptorNoData)
135 EXPORT_C int Tptrc8ToString (const TDesC8& aSrc, string& aDes)
137 unsigned int ilen = aSrc.Length();
140 return EDescriptorNoData;
143 char* charString = new char[ilen +1];
146 return EInsufficientSystemMemory;
149 memcpy(charString, (char*)aSrc.Ptr(), ilen);
150 charString[ilen] = '\0';
152 aDes.assign(charString);
159 * Converts a descriptor of type HBufC8 to string datatype
161 * @param aSrc is the descriptor to be converted , aDes is the
162 * reference to the string to which the result of conversion
163 * is stored , n_size specifies the conversion size of the string
164 * @return Status code (0 is ESuccess, -2 is EInvalidSize
165 * -4 is EInvalidPointer)
168 EXPORT_C int Hbufc8ToString(HBufC8* aSrc, string& aDes)
170 unsigned int ilen = 0;
173 return EInvalidPointer;
177 ilen = aSrc->Length();
180 return EDescriptorNoData;
185 char* charString = new char[ilen +1];
188 return EInsufficientSystemMemory;
191 memcpy(charString, (char*)aSrc->Ptr(), ilen);
192 charString[ilen] = '\0';
194 aDes.assign(charString);
200 * Converts a descriptor of type RBuf8 to string datatype
202 * @param aSrc is the descriptor to be converted , aDes is the
203 * reference to the string to which the result of conversion
204 * is stored , n_size specifies the conversion size of the string
205 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
206 * -5 is EDescriptorNoData)
209 EXPORT_C int Rbuf8ToString(TDes8& aSrc, string& aDes)
211 unsigned int ilen = aSrc.Length();
214 return EDescriptorNoData;
217 char* buf = new char [ilen+1];
220 return EInsufficientSystemMemory;
223 memcpy (buf,(char *)aSrc.Ptr(), ilen);
233 * Converts a descriptor of type TLit8 to string datatype
235 * @param aSrc is the descriptor to be converted , aDes is the
236 * reference to the string to which the result of conversion
237 * is stored , n_size specifies the conversion size of the string
238 * @return Status code (0 is ESuccess, -5 is EDescriptorNoData
239 * -9 is EInsufficientSystemMemory)
242 EXPORT_C int Tlit8ToString(const TDesC8& aSrc, string& aDes)
244 unsigned int ilen = aSrc.Length();
248 return EDescriptorNoData;
251 char* buf = new char [ilen+1];
254 return EInsufficientSystemMemory;
257 memcpy (buf,(char *)aSrc.Ptr(), ilen);