os/ossrv/genericservices/httputils/inc/WSPDecoder.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
 @file WSPDecoder.h
sl@0
    18
 @publishedAll
sl@0
    19
 @deprecated
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef	__WSPDECODER_H__
sl@0
    23
#define	__WSPDECODER_H__
sl@0
    24
sl@0
    25
#include <e32base.h>
sl@0
    26
#include <stringpool.h>
sl@0
    27
sl@0
    28
sl@0
    29
/** 
sl@0
    30
* This file contains the following classes:
sl@0
    31
*	TWspField 
sl@0
    32
*	TWspHeaderSegmenter 
sl@0
    33
*	TWspPrimitiveDecoder  
sl@0
    34
*	
sl@0
    35
*/
sl@0
    36
sl@0
    37
sl@0
    38
/**
sl@0
    39
enum DecoderPanic
sl@0
    40
@publishedAll
sl@0
    41
@deprecated
sl@0
    42
*/
sl@0
    43
enum TWspDecoderPanic
sl@0
    44
	{
sl@0
    45
	/**
sl@0
    46
	LongIntOverflow
sl@0
    47
	*/
sl@0
    48
	EWspDecoderLongIntOverflow,
sl@0
    49
	/**
sl@0
    50
	DateOverflow
sl@0
    51
	*/
sl@0
    52
	EWspDecoderDateOverflow
sl@0
    53
	};
sl@0
    54
sl@0
    55
/**
sl@0
    56
TWspField class holds the pair <HeaderName, ValueBuffer>
sl@0
    57
This is a simple class that associates these values.
sl@0
    58
No ownership is handed to this class.  It is up to user of this class to
sl@0
    59
open and close all resources used.
sl@0
    60
@publishedAll
sl@0
    61
@deprecated
sl@0
    62
*/
sl@0
    63
class TWspField 
sl@0
    64
	{
sl@0
    65
public:
sl@0
    66
sl@0
    67
	inline TWspField();
sl@0
    68
sl@0
    69
	inline TWspField(RStringF aHdrName, TPtrC8 aValBuf);
sl@0
    70
sl@0
    71
	/**
sl@0
    72
	The header name of a opened RStringF - *Not Owned*
sl@0
    73
	This is externally opened.  It must be externally 
sl@0
    74
	closed.
sl@0
    75
	*/
sl@0
    76
	RStringF iHdrName;
sl@0
    77
	
sl@0
    78
	/** The raw value buffer - Note: Not owned by this */
sl@0
    79
	TPtrC8	 iValBuffer;
sl@0
    80
	};
sl@0
    81
sl@0
    82
/** 
sl@0
    83
TWspHeaderSegmenter segments a WSP buffer into WSP header/value pairs.  
sl@0
    84
It detects boundaries between header/values based on the WAP-WSP spec.
sl@0
    85
	- To construct, buffer and string pool is passed in
sl@0
    86
	- Call to NextL() to iterate through the buffer - this returns a TWspField
sl@0
    87
	- NextL() returns KErrNotFound when done
sl@0
    88
sl@0
    89
@publishedAll
sl@0
    90
@deprecated
sl@0
    91
*/ 
sl@0
    92
class TWspHeaderSegmenter
sl@0
    93
	{
sl@0
    94
public:
sl@0
    95
sl@0
    96
	inline TWspHeaderSegmenter(RStringPool aPool, const TStringTable& aStringTable, TPtrC8 aBuffer); 
sl@0
    97
sl@0
    98
	IMPORT_C TInt NextL(TWspField& aWspHeader);
sl@0
    99
sl@0
   100
	inline TInt Offset() const;
sl@0
   101
sl@0
   102
private:
sl@0
   103
	/** Raw buffer that will be segmented - Not Owned */
sl@0
   104
	TPtrC8		iBuffer;
sl@0
   105
sl@0
   106
	/** Segment offset into the buffer. */
sl@0
   107
	TInt		iOffset;
sl@0
   108
sl@0
   109
	/** Opened string pool to use with the string table already loaded - Not Owned */
sl@0
   110
	RStringPool iPool;
sl@0
   111
sl@0
   112
	/** The string table to use in the string pool - Not Owned */
sl@0
   113
	const TStringTable& iStringTable;
sl@0
   114
	};
sl@0
   115
sl@0
   116
/** 
sl@0
   117
Decoder for WSP Primitves - WAP-WSP Section 8.4.1
sl@0
   118
@publishedAll
sl@0
   119
@deprecated
sl@0
   120
*/ 
sl@0
   121
class TWspPrimitiveDecoder 
sl@0
   122
	{
sl@0
   123
  public:
sl@0
   124
sl@0
   125
	/**
sl@0
   126
	* TWspHeaderType describe the types from WAP-WSP Section 8.4.1.2
sl@0
   127
	*/
sl@0
   128
	 enum TWspHeaderType
sl@0
   129
		{
sl@0
   130
		/**
sl@0
   131
		The type has not been set 
sl@0
   132
		*/
sl@0
   133
		ENotSet,		
sl@0
   134
		/**
sl@0
   135
		0-31 -  octet is a value length 
sl@0
   136
		*/
sl@0
   137
		ELengthVal,		
sl@0
   138
		/**
sl@0
   139
		34 - value is a quoted text string, terminated by a Null
sl@0
   140
		*/
sl@0
   141
		EQuotedString,	
sl@0
   142
		/** 
sl@0
   143
		32-127 - value is a text string, terminated by a Null
sl@0
   144
		*/
sl@0
   145
		EString,		
sl@0
   146
		/**
sl@0
   147
		128-255 - encoded 7 bit value, this header has no more data	
sl@0
   148
		*/
sl@0
   149
		E7BitVal		
sl@0
   150
		};
sl@0
   151
sl@0
   152
			
sl@0
   153
	inline TWspPrimitiveDecoder(TPtrC8 aBuffer);
sl@0
   154
	
sl@0
   155
	IMPORT_C TWspHeaderType VarType() const;
sl@0
   156
	
sl@0
   157
	IMPORT_C TInt LengthVal(TInt& aVal);
sl@0
   158
	
sl@0
   159
	IMPORT_C TInt String(TPtrC8& aString);
sl@0
   160
sl@0
   161
sl@0
   162
	IMPORT_C TInt Val7Bit(TUint8& aVal);
sl@0
   163
	
sl@0
   164
	IMPORT_C TInt Integer(TUint32& aVal);
sl@0
   165
sl@0
   166
	IMPORT_C TInt LongInt(TUint32& aVal);
sl@0
   167
sl@0
   168
	IMPORT_C TInt UintVar(TUint32& aVal);
sl@0
   169
sl@0
   170
	IMPORT_C TInt VersionL(RStringPool aPool, RStringF& aVer);
sl@0
   171
sl@0
   172
	IMPORT_C TInt Date(TDateTime& aDateTime);
sl@0
   173
  
sl@0
   174
  private:
sl@0
   175
	/** The raw buffer */
sl@0
   176
	TPtrC8 iBuffer;
sl@0
   177
sl@0
   178
	/** The current offset */
sl@0
   179
	TInt   iOffset;
sl@0
   180
	};
sl@0
   181
sl@0
   182
/**
sl@0
   183
  Constructor
sl@0
   184
  
sl@0
   185
 */
sl@0
   186
inline TWspField::TWspField()
sl@0
   187
	{
sl@0
   188
	}
sl@0
   189
sl@0
   190
/**
sl@0
   191
  Constructor
sl@0
   192
  
sl@0
   193
  @param aHdrName In - The Header Name.  This must be an opened RStringF
sl@0
   194
  @param aValBuf In - the Buffer containing the header value in its raw format
sl@0
   195
*/
sl@0
   196
inline TWspField::TWspField(RStringF aHdrName, TPtrC8 aValBuf) : 
sl@0
   197
		iHdrName(aHdrName), 
sl@0
   198
		iValBuffer(aValBuf) 
sl@0
   199
	{
sl@0
   200
	}
sl@0
   201
sl@0
   202
/**
sl@0
   203
  Constructor
sl@0
   204
sl@0
   205
  @param aPool In - an opened RStringPool - owned by the caller
sl@0
   206
  @param aStringTable In - the string table in the string pool to use
sl@0
   207
  @param aBuffer In - the buffer containing the WSP header data - owned by the caller
sl@0
   208
  @pre The string table must be opened with the WSP Sting constants table
sl@0
   209
*/
sl@0
   210
inline TWspHeaderSegmenter::TWspHeaderSegmenter(RStringPool aPool, const TStringTable& aStringTable, TPtrC8 aBuffer) : 
sl@0
   211
		iBuffer(aBuffer), 
sl@0
   212
		iOffset(0),
sl@0
   213
		iPool(aPool),
sl@0
   214
		iStringTable(aStringTable)
sl@0
   215
	{
sl@0
   216
	}
sl@0
   217
sl@0
   218
/**
sl@0
   219
  Offset	returns the current offset into the buffer being parsed.
sl@0
   220
  
sl@0
   221
  @return	TInt offset value. It will point to beginning of next segmented field.
sl@0
   222
 			If NextL has not been called it will be set to 0. The beginning of the buffer.
sl@0
   223
 			If buffer has been completely parsed, will return KErrNotFound.
sl@0
   224
*/
sl@0
   225
inline TInt TWspHeaderSegmenter::Offset() const
sl@0
   226
	{
sl@0
   227
	return (iOffset < iBuffer.Length()) ? iOffset : KErrNotFound;	
sl@0
   228
	}
sl@0
   229
sl@0
   230
/**
sl@0
   231
  Constructor
sl@0
   232
  
sl@0
   233
  @param aBuffer In - the buffer containing the value in its raw format
sl@0
   234
*/
sl@0
   235
inline TWspPrimitiveDecoder::TWspPrimitiveDecoder(TPtrC8 aBuffer) : 
sl@0
   236
		iBuffer(aBuffer), 
sl@0
   237
		iOffset(0) 
sl@0
   238
	{
sl@0
   239
	}
sl@0
   240
sl@0
   241
sl@0
   242
#endif // __WSPDECODER_H__
sl@0
   243
sl@0
   244