sl@0: // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file inetprottextutils.h sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: sl@0: #ifndef __INETPROTTEXTUTILS_H__ sl@0: #define __INETPROTTEXTUTILS_H__ sl@0: sl@0: #include sl@0: sl@0: /** sl@0: Comments : sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class InetProtTextUtils sl@0: { sl@0: public: // Enums sl@0: sl@0: /** sl@0: enum TRemoveMode sl@0: Enum defining whitespace removal modes. sl@0: */ sl@0: enum TRemoveMode sl@0: { sl@0: /** sl@0: Specifies removal any contiguous whitespace characters at the sl@0: beginning of some data. sl@0: */ sl@0: ERemoveLeft = 0, sl@0: /** sl@0: Specifies removal any contiguous whitespace characters at the end of sl@0: some data. sl@0: */ sl@0: ERemoveRight, sl@0: /** sl@0: Specifies removal any contiguous whitespace characters at the sl@0: beginning and end of some data. sl@0: */ sl@0: ERemoveBoth sl@0: }; sl@0: sl@0: public: // Methods sl@0: sl@0: IMPORT_C static TInt RemoveWhiteSpace(TPtrC8& aData, TRemoveMode aMode); sl@0: IMPORT_C static TInt RemoveWhiteSpace(TPtrC16& aData, TRemoveMode aMode); sl@0: sl@0: IMPORT_C static void ConvertIntToDescriptorL(TInt aInt, HBufC8*& aBuffer); sl@0: IMPORT_C static void ConvertIntToDescriptorL(TInt aInt, HBufC16*& aBuffer); sl@0: sl@0: IMPORT_C static void ConvertHexToDescriptorL(TInt aHex, HBufC8*& aBuffer); sl@0: IMPORT_C static void ConvertHexToDescriptorL(TInt aHex, HBufC16*& aBuffer); sl@0: sl@0: IMPORT_C static TInt ConvertDescriptorToInt(const TDesC8& aData, TInt& aInt); sl@0: IMPORT_C static TInt ConvertDescriptorToInt(const TDesC16& aData, TInt& aInt); sl@0: sl@0: IMPORT_C static TInt ConvertDescriptorToHex(const TDesC8& aData, TInt& aHex); sl@0: IMPORT_C static TInt ConvertDescriptorToHex(const TDesC16& aData, TInt& aHex); sl@0: sl@0: IMPORT_C static TInt ExtractNextTokenFromList(TPtrC8& aBuffer, TPtrC8& aToken, TChar aSeparator); sl@0: IMPORT_C static TInt ExtractNextTokenFromList(TPtrC16& aBuffer, TPtrC16& aToken, TChar aSeparator); sl@0: sl@0: IMPORT_C static TInt ExtractNextTokenFromList(TPtrC8& aBuffer, TPtrC8& aToken, const TDesC8& aSeparators); sl@0: IMPORT_C static TInt ExtractNextTokenFromList(TPtrC16& aBuffer, TPtrC16& aToken, const TDesC16& aSeparators); sl@0: sl@0: IMPORT_C static TInt ExtractQuotedStringL(TPtrC8& aBuffer, TPtrC8& aQuotedString); sl@0: IMPORT_C static TInt ExtractQuotedStringL(TPtrC16& aBuffer, TPtrC16& aQuotedString); sl@0: sl@0: IMPORT_C static TInt ExtractIntegerValueL(TPtrC8& aBuffer, TInt& aIntVal, TBool aAllowNonWsTerminator); sl@0: }; sl@0: sl@0: #endif // __INETPROTTEXTUTILS_H__