os/ossrv/utilitylibraries/libutils/src/descriptor8tostring.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 Descriptor8 to string 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 descriptor of type TBuf8 to string datatype
sl@0
    26
   *
sl@0
    27
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
    28
   * reference to the string to which the result of conversion 
sl@0
    29
   * is stored ,
sl@0
    30
   * @return Status code (0 is ESuccess, -1 is EInsufficientMemory
sl@0
    31
   * -4 is EDescriptorNoData)
sl@0
    32
   */
sl@0
    33
sl@0
    34
EXPORT_C int Tbuf8ToString(TDes8& aSrc, string& aDes)
sl@0
    35
{
sl@0
    36
    unsigned int ilen = aSrc.Length();
sl@0
    37
    if (ilen == 0)
sl@0
    38
    {
sl@0
    39
    	return EDescriptorNoData;
sl@0
    40
    }
sl@0
    41
    
sl@0
    42
    char* charString = new char[ilen +1];
sl@0
    43
    if (!charString)
sl@0
    44
    {
sl@0
    45
    	return EInsufficientSystemMemory;
sl@0
    46
    }
sl@0
    47
    	
sl@0
    48
    memcpy(charString, (char*)aSrc.Ptr(), ilen);
sl@0
    49
    charString[ilen] = '\0';
sl@0
    50
    
sl@0
    51
	aDes.assign(charString);
sl@0
    52
	
sl@0
    53
	delete []charString;
sl@0
    54
	return ESuccess;
sl@0
    55
}
sl@0
    56
sl@0
    57
  /**
sl@0
    58
    * Converts a descriptor of type TBufC8 to string datatype
sl@0
    59
    *
sl@0
    60
    * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
    61
    * reference to the string to which the result of conversion 
sl@0
    62
    * is stored ,
sl@0
    63
    * @return Status code (0 is ESuccess, -1 is EInsufficientMemory
sl@0
    64
    * -4 is EDescriptorNoData)
sl@0
    65
    */
sl@0
    66
sl@0
    67
EXPORT_C int Tbufc8ToString(TDesC8& aSrc, string& aDes)
sl@0
    68
{
sl@0
    69
    unsigned int ilen = aSrc.Length();
sl@0
    70
    if(0 == ilen)
sl@0
    71
    {
sl@0
    72
    	return EDescriptorNoData;
sl@0
    73
    }
sl@0
    74
    
sl@0
    75
    char* charString = new char[ilen +1];
sl@0
    76
    if (!charString)
sl@0
    77
    {
sl@0
    78
    	return EInsufficientSystemMemory;
sl@0
    79
    }
sl@0
    80
    	
sl@0
    81
    memcpy(charString, (char*)aSrc.Ptr(), ilen);
sl@0
    82
    charString[ilen] = '\0';
sl@0
    83
    
sl@0
    84
	aDes.assign(charString);
sl@0
    85
	
sl@0
    86
	delete []charString;
sl@0
    87
	return ESuccess;
sl@0
    88
}
sl@0
    89
sl@0
    90
 /**
sl@0
    91
   * Converts a descriptor of type TPtr8 to string datatype
sl@0
    92
   *
sl@0
    93
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
    94
   * reference to the string to which the result of conversion 
sl@0
    95
   * is stored ,
sl@0
    96
   * @return Status code (0 is ESuccess, -1 is EInsufficientMemory
sl@0
    97
   * -4 is EDescriptorNoData)
sl@0
    98
   */
sl@0
    99
sl@0
   100
EXPORT_C int Tptr8ToString (TDes8& aSrc, string& aDes)
sl@0
   101
{
sl@0
   102
    unsigned int ilen = aSrc.Length();
sl@0
   103
    if(0 == ilen )
sl@0
   104
    {
sl@0
   105
    	return EDescriptorNoData;
sl@0
   106
    }
sl@0
   107
	
sl@0
   108
	char* charString = new char[ilen +1];
sl@0
   109
	
sl@0
   110
	if (!charString)
sl@0
   111
    {
sl@0
   112
    	return EInsufficientSystemMemory;
sl@0
   113
    }
sl@0
   114
    
sl@0
   115
    memcpy(charString, (char*)aSrc.Ptr(), ilen);
sl@0
   116
    charString[ilen] = '\0';
sl@0
   117
    
sl@0
   118
	aDes.assign (charString);
sl@0
   119
	
sl@0
   120
	delete []charString;
sl@0
   121
	
sl@0
   122
	return ESuccess;
sl@0
   123
}
sl@0
   124
sl@0
   125
 /**
sl@0
   126
   * Converts a descriptor of type TPtrC8 to string datatype
sl@0
   127
   *
sl@0
   128
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
   129
   * reference to the string to which the result of conversion 
sl@0
   130
   * is stored ,
sl@0
   131
   * @return Status code (0 is ESuccess, -1 is EInsufficientMemory
sl@0
   132
   * -4 is EDescriptorNoData)
sl@0
   133
   */
sl@0
   134
sl@0
   135
EXPORT_C int Tptrc8ToString (const TDesC8& aSrc, string& aDes)
sl@0
   136
{
sl@0
   137
    unsigned int ilen = aSrc.Length();
sl@0
   138
    if (0 == ilen)
sl@0
   139
    {
sl@0
   140
    	return EDescriptorNoData;
sl@0
   141
    }
sl@0
   142
    
sl@0
   143
	char* charString = new char[ilen +1];
sl@0
   144
	if(!charString)
sl@0
   145
	{
sl@0
   146
		return EInsufficientSystemMemory;
sl@0
   147
	}
sl@0
   148
	
sl@0
   149
    memcpy(charString, (char*)aSrc.Ptr(), ilen);
sl@0
   150
    charString[ilen] = '\0';
sl@0
   151
    
sl@0
   152
    aDes.assign(charString);
sl@0
   153
	
sl@0
   154
	delete []charString;
sl@0
   155
	return ESuccess;
sl@0
   156
}
sl@0
   157
sl@0
   158
 /**
sl@0
   159
   * Converts a descriptor of type HBufC8 to string datatype
sl@0
   160
   *
sl@0
   161
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
   162
   * reference to the string to which the result of conversion 
sl@0
   163
   * is stored , n_size specifies the conversion size of the string
sl@0
   164
   * @return Status code (0 is ESuccess, -2 is EInvalidSize
sl@0
   165
   * -4 is EInvalidPointer)
sl@0
   166
   */
sl@0
   167
sl@0
   168
EXPORT_C int Hbufc8ToString(HBufC8* aSrc, string& aDes)
sl@0
   169
{
sl@0
   170
    unsigned int ilen = 0;
sl@0
   171
	if(!aSrc)
sl@0
   172
    {
sl@0
   173
        return EInvalidPointer;
sl@0
   174
    }
sl@0
   175
    else 
sl@0
   176
    {
sl@0
   177
        ilen = aSrc->Length();
sl@0
   178
        if ( 0 == ilen)
sl@0
   179
        {
sl@0
   180
        	return EDescriptorNoData;	
sl@0
   181
        }
sl@0
   182
    	
sl@0
   183
    }
sl@0
   184
	
sl@0
   185
	char* charString = new char[ilen +1];
sl@0
   186
	if(!charString)
sl@0
   187
	{
sl@0
   188
		return EInsufficientSystemMemory;
sl@0
   189
	}
sl@0
   190
	
sl@0
   191
	memcpy(charString, (char*)aSrc->Ptr(), ilen);
sl@0
   192
    charString[ilen] = '\0';
sl@0
   193
    
sl@0
   194
	aDes.assign(charString);
sl@0
   195
	delete[] charString;
sl@0
   196
	return ESuccess;
sl@0
   197
}
sl@0
   198
sl@0
   199
 /**
sl@0
   200
   * Converts a descriptor of type RBuf8 to string datatype
sl@0
   201
   *
sl@0
   202
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
   203
   * reference to the string to which the result of conversion 
sl@0
   204
   * is stored , n_size specifies the conversion size of the string
sl@0
   205
   * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, 
sl@0
   206
   * -5 is EDescriptorNoData)
sl@0
   207
   */
sl@0
   208
sl@0
   209
EXPORT_C int Rbuf8ToString(TDes8& aSrc, string& aDes)
sl@0
   210
{
sl@0
   211
    unsigned int ilen = aSrc.Length();
sl@0
   212
    if (0 == ilen)
sl@0
   213
    {
sl@0
   214
    	return EDescriptorNoData;
sl@0
   215
    }
sl@0
   216
    
sl@0
   217
    char* buf = new char [ilen+1];
sl@0
   218
    if (!buf)
sl@0
   219
    {
sl@0
   220
    	return EInsufficientSystemMemory;
sl@0
   221
    }
sl@0
   222
sl@0
   223
    memcpy (buf,(char *)aSrc.Ptr(), ilen);
sl@0
   224
    buf[ilen]='\0';
sl@0
   225
   
sl@0
   226
    aDes.assign(buf);
sl@0
   227
    
sl@0
   228
    delete []buf;
sl@0
   229
	return ESuccess;
sl@0
   230
}
sl@0
   231
sl@0
   232
 /**
sl@0
   233
   * Converts a descriptor of type TLit8 to string datatype
sl@0
   234
   *
sl@0
   235
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
   236
   * reference to the string to which the result of conversion 
sl@0
   237
   * is stored , n_size specifies the conversion size of the string
sl@0
   238
   * @return Status code (0 is ESuccess,  -5 is EDescriptorNoData
sl@0
   239
   * -9 is EInsufficientSystemMemory)
sl@0
   240
   */
sl@0
   241
sl@0
   242
EXPORT_C int Tlit8ToString(const TDesC8& aSrc, string& aDes)
sl@0
   243
{   
sl@0
   244
    unsigned int ilen = aSrc.Length();
sl@0
   245
    
sl@0
   246
    if (0 == ilen)
sl@0
   247
    {
sl@0
   248
    	return EDescriptorNoData;
sl@0
   249
    }
sl@0
   250
    
sl@0
   251
    char* buf = new char [ilen+1];
sl@0
   252
    if (!buf)
sl@0
   253
    {
sl@0
   254
    	return EInsufficientSystemMemory;
sl@0
   255
    }
sl@0
   256
sl@0
   257
    memcpy (buf,(char *)aSrc.Ptr(), ilen);
sl@0
   258
    buf[ilen]='\0';
sl@0
   259
   
sl@0
   260
    aDes.assign(buf);
sl@0
   261
    delete [] buf;
sl@0
   262
    
sl@0
   263
	return ESuccess;
sl@0
   264
}