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 Descriptor8 conversions
25 * Converts a string to a descriptor of type TBuf8
27 * @param aSrc is the string to be converted , aDes is the
28 * reference to the descriptor where the result of conversion
30 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
31 * -3 is EStringNoData)
34 EXPORT_C int StringToTbuf8(string& aSrc, TDes8& aDes)
36 const char* charString = aSrc.c_str();
38 if('\0' == charString[0])
43 if (aDes.MaxLength() < strlen(charString))
45 return EInsufficientMemory;
48 aDes = (const TUint8*)(charString);
54 * Converts a string to a descriptor of type Tptrc8
56 * @param aSrc is the string to be converted , aDes is the
57 * reference to the descriptor where the result of conversion
59 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
60 * -3 is EStringNoData)
63 EXPORT_C int StringToTptrc8(string& aSrc, TPtrC8& aDes)
65 const char* charString = aSrc.c_str();
66 if ('\0' == charString[0])
71 aDes.Set(TPtrC8((TUint8 *)(charString)));
77 * Converts a string to a descriptor of type TPtr8
79 * @param aSrc is the string to be converted , aDes is the
80 * reference to the descriptor where the result of conversion
82 * @return Status code (0 is ESuccess, -3 is EStringNoData, -1 is EInsufficientMemory)
85 EXPORT_C int StringToTptr8 (string& aSrc, TPtr8& aDes)
87 const char* charString = aSrc.c_str();
89 if ('\0' == charString[0])
94 unsigned int ilen = strlen(charString);
95 unsigned int ideslen = aDes.MaxLength();
98 return EInsufficientMemory;
101 aDes.Set((unsigned char *)charString, ilen, ideslen);
107 * Converts a string to a descriptor of type HBufc8
109 * @param aSrc is the string to be converted , aDes is the
110 * reference to the descriptor where the result of conversion
112 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory,
113 * -3 is EStringNoData , -5 is EUseNewMaxL , -4 is EInvalidPointer )
116 EXPORT_C int StringToHbufc8(string& aSrc , HBufC8* aDes)
118 unsigned int ilendes = 0;
120 const char* charString = aSrc.c_str();
121 if ('\0' == charString[0])
123 return EStringNoData;
127 return EInvalidPointer;
130 ilendes = aDes->Length();
136 if (ilendes < strlen(charString))
138 return EInsufficientMemory;
141 *aDes = (const TUint8*)charString;
146 * Converts a string to a descriptor of type RBuf8
148 * @param aSrc is the string to be converted , aDes is the
149 * reference to the descriptor where the result of conversion
151 * @return Status code (0 is ESuccess,-3 is EStringNoData, -9 is EInsufficientSystemMemory)
154 EXPORT_C int StringToRbuf8(const string& aSrc, RBuf8& aDes)
156 int retval = ESuccess;
157 const char* charString = aSrc.c_str();
158 if ('\0' == charString[0])
160 return EStringNoData;
163 int ilen = strlen(charString);
165 aDes.Copy((const unsigned char *)charString, ilen);