os/ossrv/utilitylibraries/libutils/src/chartodescriptor8.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 char * to Descriptor8 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
/**
sl@0
    26
   * Converts a character stream to TBuf8
sl@0
    27
   * @param aSrc is char* which is to be converted to TBuf8
sl@0
    28
   * @param aDes is the pointer to the descriptor of type TBuf8 which will hold
sl@0
    29
   * the result of conversion.aDes needs to be allocated with sufficient amount 
sl@0
    30
   * of memory before being passed to function. This Descriptor should have 
sl@0
    31
   * a allocation that is equal to or greater than char*
sl@0
    32
   *
sl@0
    33
   * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer)
sl@0
    34
   */
sl@0
    35
   
sl@0
    36
EXPORT_C  int CharToTbuf8 (const char* aSrc, TDes8& aDes)
sl@0
    37
{
sl@0
    38
	if (!aSrc)
sl@0
    39
	{
sl@0
    40
	    return EInvalidPointer;	
sl@0
    41
	}
sl@0
    42
	else 
sl@0
    43
	{
sl@0
    44
	    if (strlen (aSrc) > aDes.MaxLength())
sl@0
    45
	    {
sl@0
    46
	    	return EInsufficientMemory;	
sl@0
    47
	    }	
sl@0
    48
	}
sl@0
    49
	
sl@0
    50
	aDes.Copy ((const TUint8*)aSrc);
sl@0
    51
		
sl@0
    52
	return ESuccess;
sl@0
    53
}
sl@0
    54
sl@0
    55
 /**
sl@0
    56
   * Converts a character stream to HBufC8\\
sl@0
    57
   * @param aSrc is char* which is to be converted to HBufC8
sl@0
    58
   * @param aDes is the pointer to the descriptor of type HBufC8 which will hold
sl@0
    59
   * the result of conversion.aDes needs to be allocated with sufficient amount 
sl@0
    60
   * of memory before being passed to function. This Descriptor should have 
sl@0
    61
   * a allocation that is equal to or greater than char*
sl@0
    62
   *
sl@0
    63
   * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer, -6 is EUseNewMaxL)
sl@0
    64
   */
sl@0
    65
   
sl@0
    66
EXPORT_C int CharToHbufc8(const char* aSrc, HBufC8* aDes)
sl@0
    67
{
sl@0
    68
    unsigned int ilendes = 0;
sl@0
    69
	if ( !aSrc || !aDes )
sl@0
    70
	{
sl@0
    71
		return EInvalidPointer;
sl@0
    72
	}
sl@0
    73
	else 
sl@0
    74
	{
sl@0
    75
	    ilendes = aDes->Length();
sl@0
    76
	    if(0 == ilendes)
sl@0
    77
	    {
sl@0
    78
	    	return EUseNewMaxL;
sl@0
    79
	    }
sl@0
    80
	    else if (strlen (aSrc) > ilendes)
sl@0
    81
	    {
sl@0
    82
	    	return EInsufficientMemory;	
sl@0
    83
	    }	
sl@0
    84
	}
sl@0
    85
		
sl@0
    86
	*aDes = (const TUint8*)aSrc;
sl@0
    87
	return ESuccess;
sl@0
    88
	
sl@0
    89
}
sl@0
    90
sl@0
    91
 /**
sl@0
    92
   * Converts a character stream to Tptr8
sl@0
    93
   * @param aSrc is char* which is to be converted to TPtr8
sl@0
    94
   * @param aDes is the pointer to the descriptor of type TPtr8 which will hold
sl@0
    95
   * the result of conversion.aDes needs to be allocated with sufficient amount 
sl@0
    96
   * of memory before being passed to function. This Descriptor should have 
sl@0
    97
   * a allocation that is equal to or greater than char*
sl@0
    98
   *
sl@0
    99
   * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer)
sl@0
   100
   */
sl@0
   101
   
sl@0
   102
EXPORT_C int CharpToTptr8( const char* aSrc, TPtr8& aDes )
sl@0
   103
{
sl@0
   104
    unsigned int ilen = 0, ilendes = 0;
sl@0
   105
	if (!aSrc)
sl@0
   106
	{
sl@0
   107
		return EInvalidPointer;
sl@0
   108
	}
sl@0
   109
	
sl@0
   110
	ilen = strlen(aSrc);
sl@0
   111
	ilendes = aDes.MaxLength();
sl@0
   112
	
sl@0
   113
	if (ilendes < ilen)
sl@0
   114
	{
sl@0
   115
		return EInsufficientMemory;
sl@0
   116
	}
sl@0
   117
	
sl@0
   118
	aDes.Set((TUint8 *)(aSrc), ilen, ilendes);
sl@0
   119
	
sl@0
   120
	return ESuccess;
sl@0
   121
}
sl@0
   122
sl@0
   123
 /**
sl@0
   124
   * Converts a character stream to TPtrc8
sl@0
   125
   * @param aSrc is char* which is to be converted to TPtrc8
sl@0
   126
   * @param aDes is the pointer to the descriptor of type TPtrc8 which will hold
sl@0
   127
   * the result of conversion.aDes needs to be allocated with sufficient amount 
sl@0
   128
   * of memory before being passed to function. This Descriptor should have 
sl@0
   129
   * a allocation that is equal to or greater than char*
sl@0
   130
   *
sl@0
   131
   * @return Status code (0 is ESuccess, -4 is EInvalidPointer)  
sl@0
   132
   */
sl@0
   133
   
sl@0
   134
EXPORT_C int CharpToTptrc8(const char* aSrc, TPtrC8& aDes)
sl@0
   135
{    
sl@0
   136
	if ( !aSrc )
sl@0
   137
	{
sl@0
   138
		return EInvalidPointer;
sl@0
   139
	}
sl@0
   140
	
sl@0
   141
	aDes.Set((TUint8 *)(aSrc), strlen(aSrc));
sl@0
   142
	
sl@0
   143
	return ESuccess;
sl@0
   144
}
sl@0
   145
sl@0
   146
 /**
sl@0
   147
   * Converts a character stream to RBuf8
sl@0
   148
   * @param aSrc is char* which is to be converted to RBuf8
sl@0
   149
   * @param aDes is the pointer to the descriptor of type RBuf8 which will hold
sl@0
   150
   * the result of conversion.aDes needs to be allocated with sufficient amount 
sl@0
   151
   * of memory before being passed to function. This Descriptor should have 
sl@0
   152
   * a allocation that is equal to or greater than char*
sl@0
   153
   *
sl@0
   154
   * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, -4 is EInvalidPointer)
sl@0
   155
   */
sl@0
   156
sl@0
   157
EXPORT_C int CharToRbuf8(const char* aSrc, RBuf8& aDes)
sl@0
   158
{    
sl@0
   159
  if ( !aSrc )
sl@0
   160
  {
sl@0
   161
    return EInvalidPointer;
sl@0
   162
  }
sl@0
   163
        
sl@0
   164
  aDes.Copy((const unsigned char *)aSrc, strlen(aSrc));
sl@0
   165
	
sl@0
   166
	return ESuccess;	
sl@0
   167
}
sl@0
   168