os/ossrv/utilitylibraries/libutils/src/descriptor16towchar.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 Descriptor16 to wchar * 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 TBuf16 to WChar
sl@0
    26
   *
sl@0
    27
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
    28
   * reference to the WChar stream where the result of conversion 
sl@0
    29
   * is stored , n_size specifies the conversion size of the WChar 
sl@0
    30
   * @return Status code (0 is ESuccess, -2 is EInvalidSize , 
sl@0
    31
   * -4 is EInvalidPointer)
sl@0
    32
   */
sl@0
    33
sl@0
    34
EXPORT_C int Tbuf16ToWchar(const TDes16& aSrc, wchar_t* aDes, int& n_size)
sl@0
    35
{	
sl@0
    36
    unsigned int ilen = aSrc.Length();
sl@0
    37
    
sl@0
    38
    if (0 == ilen)
sl@0
    39
    {
sl@0
    40
    	return EDescriptorNoData;
sl@0
    41
    }
sl@0
    42
    else if (!aDes)
sl@0
    43
    {
sl@0
    44
    	return EInvalidPointer;
sl@0
    45
    }
sl@0
    46
	else if(n_size < (ilen+1))
sl@0
    47
	{
sl@0
    48
		n_size = ilen + 1;
sl@0
    49
		return EInvalidSize;
sl@0
    50
	}
sl@0
    51
		
sl@0
    52
	wmemcpy(aDes , (const wchar_t*)aSrc.Ptr(), ilen);
sl@0
    53
	aDes[ilen] = L'\0';
sl@0
    54
		
sl@0
    55
	return ESuccess;	
sl@0
    56
}
sl@0
    57
		
sl@0
    58
/**
sl@0
    59
   * Converts a descriptor of type HBufC16 to WChar
sl@0
    60
   *
sl@0
    61
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
    62
   * reference to the WChar stream where the result of conversion 
sl@0
    63
   * is stored , n_size specifies the conversion size of the WChar 
sl@0
    64
   * @return Status code (0 is ESuccess, -2 is EInvalidSize , 
sl@0
    65
   * -4 is EInvalidPointer)
sl@0
    66
   */
sl@0
    67
sl@0
    68
EXPORT_C int Hbufc16ToWchar(const HBufC16* aSrc, wchar_t* aDes, int& n_size)
sl@0
    69
{	
sl@0
    70
    unsigned int ilen = 0;
sl@0
    71
    if (!aSrc || !aDes)
sl@0
    72
    {
sl@0
    73
    	return EInvalidPointer;
sl@0
    74
    }
sl@0
    75
    else 
sl@0
    76
    {
sl@0
    77
        ilen = aSrc->Length();
sl@0
    78
    
sl@0
    79
        if (0 == ilen)
sl@0
    80
        {
sl@0
    81
    	    return EDescriptorNoData;
sl@0
    82
        }
sl@0
    83
        else if(n_size < (ilen+1))
sl@0
    84
	    {
sl@0
    85
		    n_size = ilen + 1;
sl@0
    86
		    return EInvalidSize;
sl@0
    87
	    }
sl@0
    88
    }
sl@0
    89
    	
sl@0
    90
	wmemcpy(aDes , (const wchar_t*)aSrc->Ptr(), ilen);
sl@0
    91
	aDes[ilen] = L'\0';
sl@0
    92
		
sl@0
    93
	return ESuccess;	
sl@0
    94
}
sl@0
    95
sl@0
    96
sl@0
    97
 /**
sl@0
    98
   * Converts a descriptor of type TBufC16 to WChar
sl@0
    99
   *
sl@0
   100
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
   101
   * reference to the WChar stream where the result of conversion 
sl@0
   102
   * is stored , n_size specifies the conversion size of the WChar 
sl@0
   103
   * @return Status code (0 is ESuccess, -2 is EInvalidSize , 
sl@0
   104
   * -4 is EInvalidPointer)
sl@0
   105
   */
sl@0
   106
sl@0
   107
EXPORT_C int Tbufc16ToWchar(TDesC& aSrc, wchar_t* aDes, int& n_size)
sl@0
   108
{
sl@0
   109
    unsigned int ilen = aSrc.Length();
sl@0
   110
    
sl@0
   111
    if (0 == ilen)
sl@0
   112
    {
sl@0
   113
    	return EDescriptorNoData;
sl@0
   114
    }
sl@0
   115
    else if (!aDes)
sl@0
   116
    {
sl@0
   117
    	return EInvalidPointer;
sl@0
   118
    }
sl@0
   119
	if (n_size < (ilen+1))
sl@0
   120
	{
sl@0
   121
		n_size = ilen+1; 
sl@0
   122
		return EInvalidSize;
sl@0
   123
	}
sl@0
   124
    
sl@0
   125
	wmemcpy(aDes, (wchar_t *)aSrc.Ptr(), ilen);
sl@0
   126
	*(aDes + ilen) = L'\0';
sl@0
   127
	
sl@0
   128
	return ESuccess;	
sl@0
   129
}
sl@0
   130
sl@0
   131
sl@0
   132
 /**
sl@0
   133
   * Converts a descriptor of type TLitC16 to WChar
sl@0
   134
   *
sl@0
   135
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
   136
   * reference to the WChar stream where the result of conversion 
sl@0
   137
   * is stored , n_size specifies the conversion size of the WChar 
sl@0
   138
   * @return Status code (0 is ESuccess, -2 is EInvalidSize , 
sl@0
   139
   * -4 is EInvalidPointer)
sl@0
   140
   */
sl@0
   141
EXPORT_C int Tlitc16ToWchar(const TDesC16& aSrc, wchar_t* aDes, int& n_size)
sl@0
   142
{
sl@0
   143
    unsigned int ilen = aSrc.Length();
sl@0
   144
    
sl@0
   145
    if (0 == ilen)
sl@0
   146
    {
sl@0
   147
    	return EDescriptorNoData;
sl@0
   148
    }
sl@0
   149
    else if ( !aDes )
sl@0
   150
    {
sl@0
   151
    	return EInvalidPointer;
sl@0
   152
    }
sl@0
   153
    else if (n_size < (ilen+1))
sl@0
   154
    {
sl@0
   155
		n_size = ilen+11 ;
sl@0
   156
		return EInvalidSize;    	
sl@0
   157
    }
sl@0
   158
    	
sl@0
   159
	wmemcpy(aDes , (const wchar_t*)aSrc.Ptr(), ilen);
sl@0
   160
	aDes[ilen] = L'\0';
sl@0
   161
    
sl@0
   162
    return ESuccess;
sl@0
   163
	
sl@0
   164
}
sl@0
   165
sl@0
   166
 /**
sl@0
   167
   * Converts a descriptor of type TPtr16 to WChar
sl@0
   168
   *
sl@0
   169
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
   170
   * reference to the WChar stream where the result of conversion 
sl@0
   171
   * is stored , n_size specifies the conversion length of the WChar 
sl@0
   172
   * @return Status code (0 is ESuccess, -2 is EInvalidSize , 
sl@0
   173
   * -4 is EInvalidPointer)
sl@0
   174
   */
sl@0
   175
sl@0
   176
EXPORT_C int Tptr16ToWcharp(const TPtr16& aSrc ,wchar_t* aDes, int& n_size)
sl@0
   177
{
sl@0
   178
    unsigned int ilen = aSrc.Length();
sl@0
   179
    
sl@0
   180
    if (0 == ilen)
sl@0
   181
    {
sl@0
   182
    	return EDescriptorNoData;
sl@0
   183
    }
sl@0
   184
    else if(!aDes)
sl@0
   185
    {
sl@0
   186
    	return EInvalidPointer;
sl@0
   187
    }
sl@0
   188
	else if(n_size < ilen)
sl@0
   189
	{   
sl@0
   190
		n_size = ilen;
sl@0
   191
		return EInvalidSize;
sl@0
   192
	}   
sl@0
   193
	
sl@0
   194
	wmemcpy(aDes, (const wchar_t*)aSrc.Ptr(), ilen);
sl@0
   195
	aDes[ilen] = L'\0';
sl@0
   196
	
sl@0
   197
	return ESuccess;
sl@0
   198
}
sl@0
   199
sl@0
   200
 /**
sl@0
   201
   * Converts a descriptor of type TPtrC16 to WChar
sl@0
   202
   *
sl@0
   203
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
   204
   * reference to the WChar stream where the result of conversion 
sl@0
   205
   * is stored , n_size specifies the conversion length of the WChar 
sl@0
   206
   * @return Status code (0 is ESuccess, -2 is EInvalidSize , 
sl@0
   207
   * -4 is EInvalidPointer)
sl@0
   208
   */
sl@0
   209
sl@0
   210
EXPORT_C int Tptrc16ToWcharp(TPtrC16& aSrc, wchar_t* aDes, int& n_size)
sl@0
   211
{
sl@0
   212
    unsigned int ilen = aSrc.Length();
sl@0
   213
    
sl@0
   214
    if (0 == ilen)
sl@0
   215
    {
sl@0
   216
    	return EDescriptorNoData;
sl@0
   217
    }
sl@0
   218
    else if (!aDes)
sl@0
   219
    {
sl@0
   220
    	return EInvalidPointer;
sl@0
   221
    }
sl@0
   222
	else if (n_size < (ilen+1))
sl@0
   223
	{
sl@0
   224
		n_size = ilen+1;
sl@0
   225
		return EInvalidSize;
sl@0
   226
	}
sl@0
   227
	
sl@0
   228
	wmemcpy(aDes , (const wchar_t*)aSrc.Ptr(),ilen);
sl@0
   229
	aDes[ilen] = L'\0';
sl@0
   230
	
sl@0
   231
    return ESuccess;
sl@0
   232
}
sl@0
   233
sl@0
   234
 /**
sl@0
   235
   * Converts a descriptor of type RBuf16 to WChar
sl@0
   236
   *
sl@0
   237
   * @param aSrc is the descriptor to be converted , aDes is the 
sl@0
   238
   * reference to the WChar stream where the result of conversion 
sl@0
   239
   * is stored , n_size specifies the conversion length of the WChar 
sl@0
   240
   * @return Status code (0 is ESuccess, -2 is EInvalidSize , 
sl@0
   241
   * -4 is EInvalidPointer , -5 is EDESCRIPTORNDATA)
sl@0
   242
   */
sl@0
   243
sl@0
   244
EXPORT_C int Rbuf16ToWchar(TDes16& aSrc, wchar_t* aDes, int& n_size)
sl@0
   245
{
sl@0
   246
    unsigned int ilen = aSrc.Length();
sl@0
   247
    
sl@0
   248
    if (0 == ilen)
sl@0
   249
    {
sl@0
   250
    	return EDescriptorNoData;
sl@0
   251
    }
sl@0
   252
    else if(!aDes)
sl@0
   253
    {
sl@0
   254
    	return EInvalidPointer; 
sl@0
   255
    }
sl@0
   256
    else if (n_size < (ilen+1))
sl@0
   257
	{
sl@0
   258
		n_size = ilen + 1;
sl@0
   259
		return EInvalidSize;
sl@0
   260
	}
sl@0
   261
sl@0
   262
    wmemcpy (aDes,(const wchar_t *)aSrc.Ptr(), ilen);
sl@0
   263
sl@0
   264
    aDes[ilen] = L'\0';
sl@0
   265
sl@0
   266
	return ESuccess;   
sl@0
   267
}