os/ossrv/utilitylibraries/libutils/src/stringtodescriptor8.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 string 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
   * Converts a string to a descriptor of type TBuf8
sl@0
    26
   *
sl@0
    27
   * @param aSrc is the string to be converted , aDes is the 
sl@0
    28
   * reference to the descriptor where the result of conversion 
sl@0
    29
   * is stored
sl@0
    30
   * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, 
sl@0
    31
   * -3 is EStringNoData)
sl@0
    32
   */
sl@0
    33
sl@0
    34
EXPORT_C  int StringToTbuf8(string& aSrc, TDes8& aDes)
sl@0
    35
{
sl@0
    36
    const char* charString = aSrc.c_str();
sl@0
    37
    
sl@0
    38
    if('\0' == charString[0])
sl@0
    39
    {
sl@0
    40
    	return EStringNoData;
sl@0
    41
    }
sl@0
    42
    
sl@0
    43
    if (aDes.MaxLength() < strlen(charString))
sl@0
    44
    {
sl@0
    45
    	return EInsufficientMemory;
sl@0
    46
    }
sl@0
    47
    
sl@0
    48
	aDes = (const TUint8*)(charString);
sl@0
    49
	     
sl@0
    50
	return ESuccess;
sl@0
    51
}
sl@0
    52
sl@0
    53
 /**
sl@0
    54
   * Converts a string to a descriptor of type Tptrc8
sl@0
    55
   *
sl@0
    56
   * @param aSrc is the string to be converted , aDes is the 
sl@0
    57
   * reference to the descriptor where the result of conversion 
sl@0
    58
   * is stored
sl@0
    59
   * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, 
sl@0
    60
   * -3 is EStringNoData)
sl@0
    61
   */
sl@0
    62
sl@0
    63
EXPORT_C int StringToTptrc8(string& aSrc, TPtrC8& aDes)
sl@0
    64
{    
sl@0
    65
    const char* charString = aSrc.c_str();
sl@0
    66
    if ('\0' == charString[0])
sl@0
    67
    {
sl@0
    68
        return EStringNoData;
sl@0
    69
    }
sl@0
    70
  
sl@0
    71
    aDes.Set(TPtrC8((TUint8 *)(charString)));
sl@0
    72
    
sl@0
    73
    return ESuccess; 
sl@0
    74
} 
sl@0
    75
sl@0
    76
 /**
sl@0
    77
   * Converts a string to a descriptor of type TPtr8
sl@0
    78
   *
sl@0
    79
   * @param aSrc is the string to be converted , aDes is the 
sl@0
    80
   * reference to the descriptor where the result of conversion 
sl@0
    81
   * is stored
sl@0
    82
   * @return Status code (0 is ESuccess, -3 is EStringNoData, -1 is EInsufficientMemory)
sl@0
    83
   */
sl@0
    84
sl@0
    85
EXPORT_C  int StringToTptr8 (string& aSrc, TPtr8& aDes)
sl@0
    86
{
sl@0
    87
    const char* charString = aSrc.c_str();
sl@0
    88
    
sl@0
    89
    if ('\0' == charString[0])
sl@0
    90
    {
sl@0
    91
    	return EStringNoData;
sl@0
    92
    }
sl@0
    93
    
sl@0
    94
    unsigned int ilen = strlen(charString);
sl@0
    95
    unsigned int ideslen = aDes.MaxLength();
sl@0
    96
    if(ilen > ideslen)
sl@0
    97
    {
sl@0
    98
        return EInsufficientMemory;
sl@0
    99
    }
sl@0
   100
    
sl@0
   101
    aDes.Set((unsigned char *)charString, ilen, ideslen);
sl@0
   102
	
sl@0
   103
  	return ESuccess;	
sl@0
   104
} 
sl@0
   105
sl@0
   106
 /**
sl@0
   107
   * Converts a string to a descriptor of type HBufc8
sl@0
   108
   *
sl@0
   109
   * @param aSrc is the string to be converted , aDes is the 
sl@0
   110
   * reference to the descriptor where the result of conversion 
sl@0
   111
   * is stored 
sl@0
   112
   * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, 
sl@0
   113
   * -3 is EStringNoData , -5 is EUseNewMaxL , -4 is EInvalidPointer )
sl@0
   114
   */
sl@0
   115
sl@0
   116
EXPORT_C int StringToHbufc8(string& aSrc , HBufC8* aDes)
sl@0
   117
{
sl@0
   118
    unsigned int ilendes = 0;
sl@0
   119
     
sl@0
   120
    const char* charString = aSrc.c_str();
sl@0
   121
    if ('\0' == charString[0])
sl@0
   122
    {
sl@0
   123
    	return EStringNoData;
sl@0
   124
    }
sl@0
   125
    else if (!aDes)
sl@0
   126
    {
sl@0
   127
    	return EInvalidPointer;
sl@0
   128
    }
sl@0
   129
	
sl@0
   130
	ilendes = aDes->Length();
sl@0
   131
	if(0 == ilendes)
sl@0
   132
	{
sl@0
   133
		return EUseNewMaxL;
sl@0
   134
	}
sl@0
   135
	
sl@0
   136
	if (ilendes < strlen(charString))
sl@0
   137
	{
sl@0
   138
		return EInsufficientMemory;
sl@0
   139
	}
sl@0
   140
	
sl@0
   141
	*aDes = (const TUint8*)charString;
sl@0
   142
	return ESuccess;
sl@0
   143
}
sl@0
   144
sl@0
   145
 /**
sl@0
   146
   * Converts a string to a descriptor of type RBuf8
sl@0
   147
   *
sl@0
   148
   * @param aSrc is the string to be converted , aDes is the 
sl@0
   149
   * reference to the descriptor where the result of conversion 
sl@0
   150
   * is stored
sl@0
   151
   * @return Status code (0 is ESuccess,-3 is EStringNoData, -9 is EInsufficientSystemMemory)
sl@0
   152
   */  
sl@0
   153
sl@0
   154
EXPORT_C int StringToRbuf8(const string& aSrc, RBuf8& aDes)
sl@0
   155
{
sl@0
   156
    int retval = ESuccess;
sl@0
   157
    const char* charString = aSrc.c_str();
sl@0
   158
    if ('\0' == charString[0])
sl@0
   159
    {
sl@0
   160
        return EStringNoData;
sl@0
   161
    }
sl@0
   162
    
sl@0
   163
    int ilen = strlen(charString);
sl@0
   164
sl@0
   165
    aDes.Copy((const unsigned char *)charString, ilen);	
sl@0
   166
	
sl@0
   167
	  return retval;
sl@0
   168
}