os/ossrv/genericservices/httputils/inc/inetprottextutils.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// 
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file inetprottextutils.h
sl@0
    20
 @publishedAll
sl@0
    21
 @released
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __INETPROTTEXTUTILS_H__
sl@0
    25
#define __INETPROTTEXTUTILS_H__
sl@0
    26
sl@0
    27
#include <e32base.h>
sl@0
    28
sl@0
    29
/**
sl@0
    30
	Comments :
sl@0
    31
@publishedAll
sl@0
    32
@released
sl@0
    33
*/
sl@0
    34
class InetProtTextUtils
sl@0
    35
	{
sl@0
    36
public:	// Enums
sl@0
    37
sl@0
    38
/**	
sl@0
    39
	enum TRemoveMode
sl@0
    40
	Enum defining whitespace removal modes.
sl@0
    41
 */
sl@0
    42
	enum TRemoveMode
sl@0
    43
		{
sl@0
    44
		/** 
sl@0
    45
			Specifies removal any contiguous whitespace characters at the 
sl@0
    46
			beginning of some data.
sl@0
    47
		*/ 
sl@0
    48
		ERemoveLeft		= 0,
sl@0
    49
		/** 
sl@0
    50
			Specifies removal any contiguous whitespace characters at the end of
sl@0
    51
			some data.
sl@0
    52
		*/ 
sl@0
    53
		ERemoveRight,
sl@0
    54
		/** 
sl@0
    55
			Specifies removal any contiguous whitespace characters at the 
sl@0
    56
			beginning and end of some data.
sl@0
    57
		*/ 
sl@0
    58
		ERemoveBoth
sl@0
    59
		};
sl@0
    60
sl@0
    61
public:	// Methods
sl@0
    62
	
sl@0
    63
	IMPORT_C static TInt RemoveWhiteSpace(TPtrC8& aData, TRemoveMode aMode);
sl@0
    64
	IMPORT_C static TInt RemoveWhiteSpace(TPtrC16& aData, TRemoveMode aMode);
sl@0
    65
sl@0
    66
	IMPORT_C static void ConvertIntToDescriptorL(TInt aInt, HBufC8*& aBuffer);
sl@0
    67
	IMPORT_C static void ConvertIntToDescriptorL(TInt aInt, HBufC16*& aBuffer);
sl@0
    68
sl@0
    69
	IMPORT_C static void ConvertHexToDescriptorL(TInt aHex, HBufC8*& aBuffer);
sl@0
    70
	IMPORT_C static void ConvertHexToDescriptorL(TInt aHex, HBufC16*& aBuffer);
sl@0
    71
sl@0
    72
	IMPORT_C static TInt ConvertDescriptorToInt(const TDesC8& aData, TInt& aInt);
sl@0
    73
	IMPORT_C static TInt ConvertDescriptorToInt(const TDesC16& aData, TInt& aInt);
sl@0
    74
sl@0
    75
	IMPORT_C static TInt ConvertDescriptorToHex(const TDesC8& aData, TInt& aHex);
sl@0
    76
	IMPORT_C static TInt ConvertDescriptorToHex(const TDesC16& aData, TInt& aHex);
sl@0
    77
sl@0
    78
	IMPORT_C static TInt ExtractNextTokenFromList(TPtrC8& aBuffer, TPtrC8& aToken, TChar aSeparator);
sl@0
    79
	IMPORT_C static TInt ExtractNextTokenFromList(TPtrC16& aBuffer, TPtrC16& aToken, TChar aSeparator);
sl@0
    80
sl@0
    81
	IMPORT_C static TInt ExtractNextTokenFromList(TPtrC8& aBuffer, TPtrC8& aToken, const TDesC8& aSeparators);
sl@0
    82
	IMPORT_C static TInt ExtractNextTokenFromList(TPtrC16& aBuffer, TPtrC16& aToken, const TDesC16& aSeparators);
sl@0
    83
sl@0
    84
	IMPORT_C static TInt ExtractQuotedStringL(TPtrC8& aBuffer, TPtrC8& aQuotedString);
sl@0
    85
	IMPORT_C static TInt ExtractQuotedStringL(TPtrC16& aBuffer, TPtrC16& aQuotedString);
sl@0
    86
sl@0
    87
	IMPORT_C static TInt ExtractIntegerValueL(TPtrC8& aBuffer, TInt& aIntVal, TBool aAllowNonWsTerminator);
sl@0
    88
	};
sl@0
    89
sl@0
    90
#endif	// __INETPROTTEXTUTILS_H__