os/ossrv/genericservices/httputils/inc/DelimitedParser16.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
// This file contains the API definition for the classes TDelimitedParserBase16
sl@0
    15
// and CDelimitedData16.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file DelimitedParser16.h
sl@0
    21
 @publishedAll
sl@0
    22
 @released	
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __DELIMITEDPARSER16_H__
sl@0
    26
#define __DELIMITEDPARSER16_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 16-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 TDelimitedParserBase16
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(TPtrC16& 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(TPtrC16& 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 TDesC16& Des() const;
sl@0
    80
sl@0
    81
	IMPORT_C TInt Remainder(TPtrC16& aRemainder) const;
sl@0
    82
sl@0
    83
protected:	// Methods
sl@0
    84
sl@0
    85
	IMPORT_C TDelimitedParserBase16();
sl@0
    86
sl@0
    87
	IMPORT_C void Parse(const TDesC16& aData);
sl@0
    88
sl@0
    89
	IMPORT_C void ParseReverse(const TDesC16& 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 TDesC16& 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
	TPtrC16						iDataDes;
sl@0
   106
sl@0
   107
	/** Descriptor with the current segment.
sl@0
   108
	 */
sl@0
   109
	mutable TPtrC16				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		CDelimitedDataBase16
sl@0
   126
	@since		6.0
sl@0
   127
 */
sl@0
   128
	friend class CDelimitedDataBase16;
sl@0
   129
sl@0
   130
	};
sl@0
   131
sl@0
   132
/**
sl@0
   133
typedef 
sl@0
   134
@publishedAll
sl@0
   135
@released
sl@0
   136
*/
sl@0
   137
typedef TDelimitedParserBase16 TDelimitedParserBase;
sl@0
   138
sl@0
   139
/**
sl@0
   140
Dependencies : CBase, TDelimitedParserBase16
sl@0
   141
Comments : Provides functionality for creating and editing a delimited data object.
sl@0
   142
Uses 16-bit descriptors
sl@0
   143
sl@0
   144
The object contains a descriptor buffer with the data. Functionality is provided
sl@0
   145
to allow segments to be added or removed from the data. There is access to the
sl@0
   146
internal delimited data parser to provide parsing functionality to be excercised
sl@0
   147
on the created data.
sl@0
   148
sl@0
   149
This a base class that cannot be instantiated. It should be derived. The derived
sl@0
   150
class must set the delimited data parser, which is an object derived from
sl@0
   151
TDelimitedParserBase. This helper class must set the delimiting object
sl@0
   152
sl@0
   153
If the delimiting character has not been set, then calling any of the functionality
sl@0
   154
will cause a panic KDelimitedParserErrNoDelimiter.
sl@0
   155
@publishedAll
sl@0
   156
@released
sl@0
   157
@since 6.0
sl@0
   158
*/
sl@0
   159
class CDelimitedDataBase16 : public CBase
sl@0
   160
	{
sl@0
   161
public: // Methods
sl@0
   162
sl@0
   163
sl@0
   164
	IMPORT_C ~CDelimitedDataBase16();
sl@0
   165
sl@0
   166
	IMPORT_C void InsertCurrentL(const TDesC16& aSegment);
sl@0
   167
sl@0
   168
	IMPORT_C void RemoveCurrentL();
sl@0
   169
sl@0
   170
	IMPORT_C void PushBackL(const TDesC16& aSegment);
sl@0
   171
sl@0
   172
	IMPORT_C void PopBackL();
sl@0
   173
sl@0
   174
	IMPORT_C void PushFrontL(const TDesC16& aSegment);
sl@0
   175
sl@0
   176
	IMPORT_C void PopFrontL();
sl@0
   177
sl@0
   178
	IMPORT_C void TrimFrontDelimiterL();
sl@0
   179
sl@0
   180
	IMPORT_C void AddFrontDelimiterL();
sl@0
   181
sl@0
   182
	IMPORT_C void TrimBackDelimiterL();
sl@0
   183
sl@0
   184
	IMPORT_C void AddBackDelimiterL();
sl@0
   185
sl@0
   186
	IMPORT_C void Parse();
sl@0
   187
sl@0
   188
	IMPORT_C void ParseReverse();
sl@0
   189
sl@0
   190
	IMPORT_C const TDelimitedParserBase16& Parser() const;
sl@0
   191
sl@0
   192
protected:	// Methods
sl@0
   193
sl@0
   194
	IMPORT_C CDelimitedDataBase16();
sl@0
   195
sl@0
   196
	IMPORT_C void ConstructL(const TDesC16& aData);
sl@0
   197
sl@0
   198
	IMPORT_C void SetDelimiter(TChar aDelimiter);
sl@0
   199
sl@0
   200
private:	// Methods
sl@0
   201
sl@0
   202
	void SetDataL(const TDesC16& aData);
sl@0
   203
sl@0
   204
	void SetData(HBufC16* aDataBuf);
sl@0
   205
sl@0
   206
	void DoInsertL(const TDesC16& aSegment);
sl@0
   207
sl@0
   208
	void DoRemoveL();
sl@0
   209
sl@0
   210
private:	// Attributes
sl@0
   211
sl@0
   212
	/** Descriptor buffer.
sl@0
   213
	 */
sl@0
   214
	HBufC16*				iDataBuf;
sl@0
   215
sl@0
   216
	/** Parser object
sl@0
   217
	 */
sl@0
   218
	TDelimitedParserBase16	iParser;
sl@0
   219
sl@0
   220
	};
sl@0
   221
sl@0
   222
/**
sl@0
   223
typedef 
sl@0
   224
@publishedAll
sl@0
   225
@released
sl@0
   226
*/
sl@0
   227
typedef CDelimitedDataBase16 CDelimitedDataBase;
sl@0
   228
sl@0
   229
#endif	// __DELIMITEDPARSER16_H__