os/ossrv/utilitylibraries/libutils/src/wstringtodescriptor8.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:   Contains the source for wstring to Descriptor8 conversions
    15  *
    16 */
    17 
    18 
    19 
    20 #include "libutils.h"
    21   
    22 
    23 
    24  /**
    25    * Converts a wstring to a descriptor of type TBufc8
    26    *
    27    * @param aSrc is the wstring to be converted , aDes is the 
    28    * reference to the descriptor where the result of conversion 
    29    * is stored 
    30    * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
    31    * -3 is EStringNoData, -4 is EInvalidPointer, -8 is EInvalidWCSSequence
    32    * -9 is EInsufficientSystemMemory)
    33    */
    34 
    35 EXPORT_C int WstringToTbuf8(wstring& aSrc, TDes8& aDes)
    36 {	
    37     int retval = ESuccess;
    38     unsigned int ilen = 0;
    39     const wchar_t* wcharString = aSrc.c_str();
    40     int minusone = -1;
    41     
    42     if (L'\0' == wcharString[0])
    43     {
    44     	return EStringNoData;
    45     }
    46     
    47     ilen = wcslen(wcharString);
    48     
    49     if (ilen*2 > aDes.MaxLength())
    50     {
    51     	return EInsufficientMemory;
    52     }
    53     
    54     char *CharString = new char[ilen*2];
    55     
    56     if(!CharString)
    57     {
    58     	return EInsufficientSystemMemory;
    59     }
    60     
    61 	if(minusone == wcstombs(CharString, (const wchar_t*)wcharString, ilen*2))
    62 	{
    63 		retval = EInvalidWCSSequence;
    64 	}
    65 	else 
    66 	{
    67 		aDes.Copy((unsigned char *)CharString, ilen*2);
    68 	}
    69 	
    70 	delete []CharString;
    71 	return retval;	
    72 }
    73 
    74  /**
    75    * Converts a wstring to a descriptor of type TPtr8
    76    *
    77    * @param aSrc is the wstring to be converted , aDes is the 
    78    * reference to the descriptor where the result of conversion 
    79    * is stored 
    80    * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
    81    * -3 is EStringNoData, -4 is EInvalidPointer )
    82    */
    83 
    84 EXPORT_C int WstringToTptr8(wstring& aSrc, char* cPtr, TPtr8& aDes)
    85 {
    86     int retval = ESuccess;
    87     unsigned int wlen = 0, ilendes = 0;
    88     const wchar_t* wcharString = aSrc.c_str();
    89     int minusone = -1;
    90     
    91     if (L'\0' == wcharString[0])
    92     {
    93     	return EStringNoData;
    94     }
    95     
    96 	wlen = wcslen(wcharString);
    97 	ilendes = aDes.MaxLength();
    98 	
    99 	if (ilendes < 2*wlen)
   100 	{
   101 		return EInsufficientMemory;
   102 	}
   103 	
   104 	if(minusone != wcstombs(cPtr, wcharString, wlen*2))
   105 	{
   106 		aDes.Set((unsigned char *)cPtr, wlen*2, ilendes);	
   107 	}
   108 	else
   109 	{
   110 		retval = EInvalidWCSSequence;
   111 	}
   112 		
   113 	return retval;
   114 }
   115 
   116  /**
   117    * Converts a wstring to a descriptor of type TPtrC8
   118    *
   119    * @param aSrc is the wstring to be converted , aDes is the 
   120    * reference to the descriptor where the result of conversion 
   121    * is stored 
   122    * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
   123    * -3 is EStringNoData, -4 is EInvalidPointer )
   124    */
   125 
   126 EXPORT_C int WstringToTptrc8(wstring& aSrc, char* cPtr, TPtrC8& aDes)
   127 {
   128     int retval = ESuccess;
   129     unsigned int wlen = 0;
   130     const wchar_t* wcharString = aSrc.c_str();
   131     int minusone = -1;
   132     
   133     if (L'\0' == wcharString[0])
   134     {
   135     	return EStringNoData;
   136     }
   137     else if ( !cPtr )
   138     {
   139     	return EInvalidPointer;
   140     }
   141     
   142 	wlen = wcslen(wcharString);
   143 		
   144     if(minusone != wcstombs(cPtr, (const wchar_t*)wcharString, wlen*2 ))
   145     {
   146     	aDes.Set((TUint8 *)(cPtr), wlen*2);	
   147     }
   148 	else
   149 	{
   150 		retval = EInvalidWCSSequence;
   151 	}
   152 	
   153     return retval;	
   154 }
   155 
   156  /**
   157    * Converts a wstring to a descriptor of type HBufc8
   158    *
   159    * @param aSrc is the Wstring to be converted , aDes is the 
   160    * reference to the descriptor where the result of conversion 
   161    * is stored 
   162    * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, 
   163    * -3 is EStringNoData )
   164    */
   165 
   166 EXPORT_C int WstringToHbufc8(wstring& aSrc, HBufC8* aDes)
   167 {
   168     unsigned int wlen = 0 , ilendes = 0; 
   169     int retval = ESuccess; 
   170     const wchar_t* wcharString = aSrc.c_str();
   171     int minusone = -1;
   172     
   173     if (L'\0' == wcharString[0])
   174     {
   175     	return EStringNoData;
   176     }	
   177     else if (!aDes)
   178 	{
   179 		return EInvalidPointer;
   180 	}
   181 	
   182 	wlen = wcslen(wcharString);
   183     ilendes = aDes->Length();
   184     
   185     if (0 == ilendes)
   186     {
   187     	return EUseNewMaxL;
   188     }
   189     else if (ilendes < wlen)
   190     {
   191     	return EInsufficientMemory;
   192     }
   193     
   194     char *CharString = new char[wlen*2];
   195     
   196     if(!CharString)
   197     {
   198     	return EInsufficientSystemMemory;
   199     }
   200     
   201 	
   202 	if(minusone == wcstombs(CharString, (const wchar_t *)wcharString, wlen*2))
   203 	{
   204 		retval = EInvalidWCSSequence;
   205 	}
   206 	else 
   207 	{
   208 		*aDes = (TUint8 *)CharString;
   209 	}
   210 	
   211 	delete []CharString;
   212 	return retval;
   213 }
   214  
   215  /**
   216    * Converts a wstring to a descriptor of type RBuf8
   217    *
   218    * @param aSrc is the wstring to be converted , aDes is the 
   219    * reference to the descriptor where the result of conversion 
   220    * is stored 
   221    * @return Status code (0 is ESuccess ,-1 is EInsufficientMemory -3 is EStringNoData )
   222    */
   223 
   224 EXPORT_C int WstringToRbuf8(const wstring& aSrc, RBuf8& aDes)
   225 {
   226     int retval = ESuccess;
   227     unsigned int wlen = 0;
   228     const wchar_t* wcharString = aSrc.c_str();
   229     int minusone = -1;
   230     
   231     if (L'\0' == wcharString[0])
   232     {
   233     	return EStringNoData;
   234     }	
   235     
   236     wlen = wcslen(aSrc.c_str());
   237    
   238     char* buf = new char[wlen*2];
   239     
   240     if (!buf)
   241     {
   242     	return EInsufficientSystemMemory;
   243     }
   244          
   245 	if(minusone != wcstombs(buf, (const wchar_t*)wcharString, wlen*2))
   246 	{
   247     aDes.Copy((const unsigned char *)buf, wlen*2);	
   248 	}
   249 	else
   250 	{
   251 		retval = EInvalidWCSSequence;
   252 	}
   253 	
   254 	delete []buf;
   255 	return retval;
   256 }