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 char * to Descriptor8 conversions
26 * Converts a character stream to TBuf8
27 * @param aSrc is char* which is to be converted to TBuf8
28 * @param aDes is the pointer to the descriptor of type TBuf8 which will hold
29 * the result of conversion.aDes needs to be allocated with sufficient amount
30 * of memory before being passed to function. This Descriptor should have
31 * a allocation that is equal to or greater than char*
33 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer)
36 EXPORT_C int CharToTbuf8 (const char* aSrc, TDes8& aDes)
40 return EInvalidPointer;
44 if (strlen (aSrc) > aDes.MaxLength())
46 return EInsufficientMemory;
50 aDes.Copy ((const TUint8*)aSrc);
56 * Converts a character stream to HBufC8\\
57 * @param aSrc is char* which is to be converted to HBufC8
58 * @param aDes is the pointer to the descriptor of type HBufC8 which will hold
59 * the result of conversion.aDes needs to be allocated with sufficient amount
60 * of memory before being passed to function. This Descriptor should have
61 * a allocation that is equal to or greater than char*
63 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer, -6 is EUseNewMaxL)
66 EXPORT_C int CharToHbufc8(const char* aSrc, HBufC8* aDes)
68 unsigned int ilendes = 0;
71 return EInvalidPointer;
75 ilendes = aDes->Length();
80 else if (strlen (aSrc) > ilendes)
82 return EInsufficientMemory;
86 *aDes = (const TUint8*)aSrc;
92 * Converts a character stream to Tptr8
93 * @param aSrc is char* which is to be converted to TPtr8
94 * @param aDes is the pointer to the descriptor of type TPtr8 which will hold
95 * the result of conversion.aDes needs to be allocated with sufficient amount
96 * of memory before being passed to function. This Descriptor should have
97 * a allocation that is equal to or greater than char*
99 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer)
102 EXPORT_C int CharpToTptr8( const char* aSrc, TPtr8& aDes )
104 unsigned int ilen = 0, ilendes = 0;
107 return EInvalidPointer;
111 ilendes = aDes.MaxLength();
115 return EInsufficientMemory;
118 aDes.Set((TUint8 *)(aSrc), ilen, ilendes);
124 * Converts a character stream to TPtrc8
125 * @param aSrc is char* which is to be converted to TPtrc8
126 * @param aDes is the pointer to the descriptor of type TPtrc8 which will hold
127 * the result of conversion.aDes needs to be allocated with sufficient amount
128 * of memory before being passed to function. This Descriptor should have
129 * a allocation that is equal to or greater than char*
131 * @return Status code (0 is ESuccess, -4 is EInvalidPointer)
134 EXPORT_C int CharpToTptrc8(const char* aSrc, TPtrC8& aDes)
138 return EInvalidPointer;
141 aDes.Set((TUint8 *)(aSrc), strlen(aSrc));
147 * Converts a character stream to RBuf8
148 * @param aSrc is char* which is to be converted to RBuf8
149 * @param aDes is the pointer to the descriptor of type RBuf8 which will hold
150 * the result of conversion.aDes needs to be allocated with sufficient amount
151 * of memory before being passed to function. This Descriptor should have
152 * a allocation that is equal to or greater than char*
154 * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer)
157 EXPORT_C int CharToRbuf8(const char* aSrc, RBuf8& aDes)
161 return EInvalidPointer;
164 aDes.Copy((const unsigned char *)aSrc, strlen(aSrc));