os/ossrv/genericservices/httputils/inc/DelimitedParser8.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
// This file contains the API definition for the classes TDelimitedParserBase8
sl@0
    15
// and CDelimitedData8. 
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file DelimitedParser8.h
sl@0
    21
 @publishedAll
sl@0
    22
 @released	
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __DELIMITEDPARSER8_H__
sl@0
    26
#define __DELIMITEDPARSER8_H__
sl@0
    27
sl@0
    28
// System includes
sl@0
    29
//
sl@0
    30
#include <e32base.h>
sl@0
    31
#include <delimitedparsercommon.h>
sl@0
    32
sl@0
    33
sl@0
    34
/**
sl@0
    35
Comments : Provides non-modifying functionality for parsing data delimited by 
sl@0
    36
a single character. The data is delimited into segments. Uses 8-bit descriptors.
sl@0
    37
sl@0
    38
The object contains a descriptor with the data which can be parsed from left 
sl@0
    39
to right, or right to left. It is non-owning. The current segment can be extracted, 
sl@0
    40
which then parses the string for the next segment.
sl@0
    41
sl@0
    42
This is a base class and an object of this type cannot be instantiated. It should
sl@0
    43
be derived. The derived class should ensure that the data iDataDes is set before 
sl@0
    44
calling one of the protected parsing functions. The derived class should also ensure 
sl@0
    45
that the delimiting character has been set.
sl@0
    46
sl@0
    47
If the data iDataDes has not been parsed, then calling any functionality that 
sl@0
    48
requires the data to have been parsed will result in a panic 
sl@0
    49
KDelimitedParserErrNotParsed. The data can only be parsed by calling one of the
sl@0
    50
protected parsing functions from the derived class.
sl@0
    51
sl@0
    52
If the delimiting character iDelimiter has not been set, then calling the protected
sl@0
    53
parsing functions and some of the other public functionality that requires the 
sl@0
    54
delimiter to be set will result in a panic KDelimitingParserErrNoDelimiter.
sl@0
    55
@publishedAll
sl@0
    56
@released
sl@0
    57
@since 6.0
sl@0
    58
*/
sl@0
    59
class TDelimitedParserBase8
sl@0
    60
	{
sl@0
    61
public:	// Methods
sl@0
    62
sl@0
    63
	IMPORT_C void Reset() const;
sl@0
    64
sl@0
    65
	IMPORT_C TInt GetNext(TPtrC8& aSegment) const;
sl@0
    66
sl@0
    67
	IMPORT_C TInt Inc() const;
sl@0
    68
sl@0
    69
	IMPORT_C TInt Dec() const;
sl@0
    70
sl@0
    71
	IMPORT_C TInt Peek(TPtrC8& aSegment) const;
sl@0
    72
sl@0
    73
	IMPORT_C TBool Eos() const;
sl@0
    74
sl@0
    75
	IMPORT_C TBool FrontDelimiter() const;
sl@0
    76
sl@0
    77
	IMPORT_C TBool BackDelimiter() const;
sl@0
    78
sl@0
    79
	IMPORT_C const TDesC8& Des() const;
sl@0
    80
sl@0
    81
	IMPORT_C TInt Remainder(TPtrC8& aRemainder) const;
sl@0
    82
sl@0
    83
protected:	// Methods
sl@0
    84
sl@0
    85
	IMPORT_C TDelimitedParserBase8();
sl@0
    86
sl@0
    87
	IMPORT_C void Parse(const TDesC8& aData);
sl@0
    88
sl@0
    89
	IMPORT_C void ParseReverse(const TDesC8& aData);
sl@0
    90
sl@0
    91
	IMPORT_C void SetDelimiter(TChar aDelimiter);
sl@0
    92
sl@0
    93
private:	// Methods
sl@0
    94
sl@0
    95
	void DoParse(const TDesC8& aData);
sl@0
    96
sl@0
    97
	TInt FindNextSegment(TInt aStartPos) const;
sl@0
    98
sl@0
    99
	TInt FindPrevSegment(TInt aStartPos) const;
sl@0
   100
sl@0
   101
private:	// Attributes
sl@0
   102
sl@0
   103
	/** Descriptor with the string
sl@0
   104
	 */
sl@0
   105
	TPtrC8						iDataDes;
sl@0
   106
sl@0
   107
	/** Descriptor with the current segment.
sl@0
   108
	 */
sl@0
   109
	mutable TPtrC8				iCurrentSegment;
sl@0
   110
sl@0
   111
	/** Position of next segment.
sl@0
   112
	 */
sl@0
   113
	mutable TInt				iNextSegmentPos;
sl@0
   114
sl@0
   115
	/** Direction of parsing.
sl@0
   116
	 */
sl@0
   117
	TDelimitedDataParseMode		iMode;
sl@0
   118
sl@0
   119
	/** Delimiting character
sl@0
   120
	*/
sl@0
   121
	TInt						iDelimiter;
sl@0
   122
sl@0
   123
/**
sl@0
   124
	A friend class.
sl@0
   125
	@see		CDelimitedDataBase8
sl@0
   126
	@since		6.0
sl@0
   127
 */
sl@0
   128
	friend class CDelimitedDataBase8;
sl@0
   129
sl@0
   130
	};
sl@0
   131
sl@0
   132
/**
sl@0
   133
Dependencies : CBase, TDelimitedParserBase8
sl@0
   134
Comments : Provides functionality for creating and editing a delimited data object.
sl@0
   135
Uses 8-bit descriptors
sl@0
   136
sl@0
   137
The object contains a descriptor buffer with the data. Functionality is provided 
sl@0
   138
to allow segments to be added or removed from the data. There is access to the 
sl@0
   139
internal delimited data parser to provide parsing functionality to be excercised 
sl@0
   140
on the created data.
sl@0
   141
sl@0
   142
This a base class that cannot be instantiated. It should be derived. The derived 
sl@0
   143
class must set the delimited data parser, which is an object derived from 
sl@0
   144
TDelimitedParserBase. This helper class must set the delimiting object
sl@0
   145
sl@0
   146
If the delimiting character has not been set, then calling any of the functionality 
sl@0
   147
will cause a panic KDelimitedParserErrNoDelimiter.
sl@0
   148
@publishedAll
sl@0
   149
@released
sl@0
   150
@since 6.0
sl@0
   151
*/
sl@0
   152
class CDelimitedDataBase8 : public CBase
sl@0
   153
	{
sl@0
   154
public: // Methods
sl@0
   155
sl@0
   156
	IMPORT_C ~CDelimitedDataBase8();
sl@0
   157
sl@0
   158
	IMPORT_C void InsertCurrentL(const TDesC8& aSegment);
sl@0
   159
sl@0
   160
	IMPORT_C void RemoveCurrentL();
sl@0
   161
sl@0
   162
	IMPORT_C void PushBackL(const TDesC8& aSegment);
sl@0
   163
sl@0
   164
	IMPORT_C void PopBackL();
sl@0
   165
sl@0
   166
	IMPORT_C void PushFrontL(const TDesC8& aSegment);
sl@0
   167
sl@0
   168
	IMPORT_C void PopFrontL();
sl@0
   169
sl@0
   170
	IMPORT_C void TrimFrontDelimiterL();
sl@0
   171
sl@0
   172
	IMPORT_C void AddFrontDelimiterL();
sl@0
   173
sl@0
   174
	IMPORT_C void TrimBackDelimiterL();
sl@0
   175
sl@0
   176
	IMPORT_C void AddBackDelimiterL();
sl@0
   177
sl@0
   178
	IMPORT_C void Parse();
sl@0
   179
sl@0
   180
	IMPORT_C void ParseReverse();
sl@0
   181
sl@0
   182
	IMPORT_C const TDelimitedParserBase8& Parser() const;
sl@0
   183
sl@0
   184
protected:	// Methods
sl@0
   185
sl@0
   186
	IMPORT_C CDelimitedDataBase8();
sl@0
   187
sl@0
   188
	IMPORT_C void ConstructL(const TDesC8& aData);
sl@0
   189
sl@0
   190
	IMPORT_C void SetDelimiter(TChar aDelimiter);
sl@0
   191
sl@0
   192
private:	// Methods
sl@0
   193
sl@0
   194
sl@0
   195
	void SetDataL(const TDesC8& aData);
sl@0
   196
sl@0
   197
	void SetData(HBufC8* aDataBuf);
sl@0
   198
sl@0
   199
	void DoInsertL(const TDesC8& aSegment);
sl@0
   200
sl@0
   201
	void DoRemoveL();
sl@0
   202
sl@0
   203
private:	// Attributes
sl@0
   204
sl@0
   205
	/** Descriptor buffer.
sl@0
   206
	 */
sl@0
   207
	HBufC8*					iDataBuf;
sl@0
   208
sl@0
   209
	/** Parser object
sl@0
   210
	 */
sl@0
   211
	TDelimitedParserBase8	iParser;
sl@0
   212
sl@0
   213
	};
sl@0
   214
sl@0
   215
#endif	// __DELIMITEDPARSER8_H__