os/ossrv/utilitylibraries/libutils/src/wchartodescriptor16.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 wchar * to Descriptor16 conversions
    15  *
    16 */
    17 
    18 
    19 
    20 #include "libutils.h"
    21   
    22 
    23  /**
    24    * Converts a wchar to a descriptor of type TBufc16
    25    *
    26    * @param aSrc is the wchar to be converted , aDes is the 
    27    * reference to the descriptor where the result of conversion 
    28    * is stored 
    29    * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
    30    * -3 is EStringNoData, -4 is EInvalidPointer )
    31    */
    32    
    33 
    34 EXPORT_C int WcharToTbuf16(const wchar_t* aSrc, TDes16& aDes)
    35 {
    36     unsigned int ilen = 0;
    37 	if ( !aSrc )
    38 	{
    39 		return EInvalidPointer;
    40 	}
    41 	else
    42 	{
    43 		ilen = wcslen(aSrc);
    44 		if(ilen > aDes.MaxLength())
    45 		{
    46 			return EInsufficientMemory; 
    47 		}	
    48 	}
    49 	
    50 	aDes.Copy((const TUint16*)aSrc, ilen);
    51 	return ESuccess;
    52 }
    53  /**
    54    * Converts a wchar to a descriptor of type HBufc16
    55    *
    56    * @param aSrc is the Wstring to be converted , aDes is the 
    57    * reference to the descriptor where the result of conversion 
    58    * is stored 
    59    * @return Status code (0 is ESuccess, -1 is EInsufficientMemory, 
    60    * -3 is EStringNoData, -6 is EUseNewMaxL )
    61    */
    62 
    63 EXPORT_C  int WcharToHbufc16 (const wchar_t* aSrc ,HBufC16* aDes )
    64 {
    65    
    66     unsigned int ilendes = 0;
    67 	if ( !aSrc || !aDes)
    68 	{
    69 		return EInvalidPointer;
    70 	}
    71 	
    72 	ilendes = aDes->Length();
    73 	
    74 	if (0 == ilendes)
    75 	{
    76 		return EUseNewMaxL;
    77 	}
    78 	else if (ilendes < wcslen(aSrc))
    79 	{
    80 		return EInsufficientMemory;
    81 	}
    82 	
    83 	*aDes = (const TUint16*)aSrc;		
    84 	return ESuccess;
    85 }
    86 
    87  /**
    88    * Converts a wchar to a descriptor of type TPtr16
    89    *
    90    * @param aSrc is the wchar to be converted , aDes is the 
    91    * reference to the descriptor where the result of conversion 
    92    * is stored 
    93    * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
    94    * -3 is EStringNoData, -4 is EInvalidPointer )
    95    */
    96 
    97 EXPORT_C int WcharpToTptr16(const wchar_t* aSrc, TPtr16& aDes)
    98 {
    99     unsigned int ilen = 0, ilendes = 0;
   100 	if ( !aSrc )
   101 	{
   102 		return EInvalidPointer;
   103 	}
   104 	
   105 	ilen = wcslen(aSrc);
   106 	ilendes =  aDes.MaxLength();
   107 	
   108 	if (ilendes < ilen)
   109 	{
   110 		return EInsufficientMemory;
   111 	}
   112 	
   113 	aDes.Set((unsigned short*) aSrc, ilen, ilendes);
   114 	
   115 	return ESuccess;
   116 }
   117 
   118  /**
   119    * Converts a wchar to a descriptor of type TPtrC16
   120    *
   121    * @param aSrc is the wchar to be converted , aDes is the 
   122    * reference to the descriptor where the result of conversion 
   123    * is stored 
   124    * @return Status code (0 is ESuccess,-1 is EInsufficientMemory,
   125    * -3 is EStringNoData, -4 is EInvalidPointer )
   126    */
   127 EXPORT_C int WcharpToTptrc16(const wchar_t* aSrc, TPtrC16& aDes)
   128 
   129 {
   130 	if (!aSrc)
   131 	{
   132 		return EInvalidPointer;
   133 	}
   134 	
   135 	aDes.Set((TUint16 *)(aSrc), wcslen(aSrc));
   136 	
   137 	return ESuccess;
   138 }
   139 
   140  /**
   141    * Converts a wchar to a descriptor of type RBuf16
   142    *
   143    * @param aSrc is the wchar to be converted , aDes is the 
   144    * reference to the descriptor where the result of conversion 
   145    * is stored 
   146    * @return Status code (0 is ESuccess ,-1 is EInsufficientMemory,
   147    * -3 is EStringNoData, -4 is EInvalidPointer )
   148    */
   149 
   150 EXPORT_C int WcharToRbuf16(const wchar_t* aSrc, RBuf16& aDes)
   151 {
   152    
   153     int retval = ESuccess;
   154     unsigned int wlen = 0; 
   155     if ( !aSrc )
   156 	{
   157 		return EInvalidPointer;
   158 	}
   159 	
   160 	wlen = wcslen(aSrc);
   161 
   162   aDes.Copy((const unsigned short *)aSrc, wlen);	
   163 
   164 	return retval;
   165 }