os/ossrv/genericservices/httputils/inc/WSPEncoder.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
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file WSPEncoder.h
sl@0
    18
 @publishedAll
sl@0
    19
 @deprecated
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef __WSPENCODER_H__
sl@0
    23
#define __WSPENCODER_H__
sl@0
    24
sl@0
    25
#include <e32base.h>
sl@0
    26
#include <f32file.h>		// RFs
sl@0
    27
#include <badesca.h>		// arrays etc.
sl@0
    28
#include <stringpool.h>
sl@0
    29
sl@0
    30
/**
sl@0
    31
enum CodecPanic
sl@0
    32
@publishedAll
sl@0
    33
@deprecated
sl@0
    34
*/
sl@0
    35
enum TWspCodecPanic
sl@0
    36
	{
sl@0
    37
	/**  Due to failure to call StartValueLength function */
sl@0
    38
	EWspCodecPanicStartValueLengthNotCalled=0,
sl@0
    39
	/** Due to failure to call EndValueLength matching a call to StartValueLength */
sl@0
    40
	EWspCodecPanicEndValueLengthNotCalled,
sl@0
    41
	/** Due to failure to call StartHeaderL function */
sl@0
    42
	EWspCodecPanicStartHeaderLNotCalled,
sl@0
    43
	/** Due to StartHeaderL function being called twice without EndHeaderL */
sl@0
    44
	EWspCodecPanicStartHeaderCalledTwice,
sl@0
    45
	/** Due to parameter Token not having the top bit set */
sl@0
    46
	EWspCodecPanicInvalidToken
sl@0
    47
	};
sl@0
    48
 
sl@0
    49
/** 
sl@0
    50
This class can be used to encode one header field at a time,
sl@0
    51
with all its values and parameters.
sl@0
    52
sl@0
    53
It has no knowledge of encoding the BNF of a particular header field, but
sl@0
    54
the functions provided can be used in combination, producing an 8-bit buffer 
sl@0
    55
containing the encoded header.
sl@0
    56
sl@0
    57
Intended usage would be to call a series of functions. The first one being StartHeader,
sl@0
    58
The final one being EndHeader, which would return a buffer containing 
sl@0
    59
the complete encoded header field.
sl@0
    60
eg:
sl@0
    61
	encoder->StartHeaderL();
sl@0
    62
	encoder->AddLongIntL();
sl@0
    63
	encoder->AddTextStringL();
sl@0
    64
	HBufC8* output = encoder->EndHeaderL();
sl@0
    65
@publishedAll
sl@0
    66
@deprecated
sl@0
    67
*/
sl@0
    68
class CWspHeaderEncoder : public CBase
sl@0
    69
	{
sl@0
    70
public:
sl@0
    71
	IMPORT_C static CWspHeaderEncoder* NewL();
sl@0
    72
sl@0
    73
	IMPORT_C static CWspHeaderEncoder* NewLC();
sl@0
    74
sl@0
    75
sl@0
    76
    IMPORT_C virtual ~CWspHeaderEncoder(); 
sl@0
    77
sl@0
    78
	IMPORT_C void StartHeaderL(TUint8 aToken);	
sl@0
    79
sl@0
    80
sl@0
    81
	IMPORT_C void StartHeaderL(const TDesC8& aString);	
sl@0
    82
sl@0
    83
	IMPORT_C void StartHeaderL(const RStringF aString);	
sl@0
    84
sl@0
    85
sl@0
    86
	IMPORT_C HBufC8* EndHeaderL();
sl@0
    87
sl@0
    88
sl@0
    89
sl@0
    90
	IMPORT_C void AddIntegerL(const TUint aInt);
sl@0
    91
sl@0
    92
	
sl@0
    93
	IMPORT_C void AddShortIntL(const TUint8 aValue);
sl@0
    94
sl@0
    95
	IMPORT_C void AddShortLengthL(const TUint8 aValue);
sl@0
    96
sl@0
    97
sl@0
    98
	IMPORT_C void AddLongIntL(const TUint32 aValue);
sl@0
    99
	
sl@0
   100
	
sl@0
   101
	IMPORT_C void AddUintVarL(const TUint aInt);
sl@0
   102
sl@0
   103
	
sl@0
   104
	IMPORT_C void AddTextStringL(const RString& aText);
sl@0
   105
sl@0
   106
	IMPORT_C void AddTextStringL(const TDesC8& aText);
sl@0
   107
sl@0
   108
	IMPORT_C void AddDateL(const TDateTime aDate);
sl@0
   109
sl@0
   110
	IMPORT_C void AddTokenL(const TUint8 aToken);
sl@0
   111
sl@0
   112
	IMPORT_C void AddTokenTextL(const TDesC8& aTokenText);
sl@0
   113
sl@0
   114
	IMPORT_C void AddDataL(const TDesC8& aData);
sl@0
   115
sl@0
   116
sl@0
   117
sl@0
   118
	IMPORT_C void StartValueLengthL();
sl@0
   119
sl@0
   120
	IMPORT_C void EndValueLengthL();
sl@0
   121
sl@0
   122
private:
sl@0
   123
sl@0
   124
	CWspHeaderEncoder();
sl@0
   125
sl@0
   126
	void Init();
sl@0
   127
sl@0
   128
sl@0
   129
	void ConstructL();
sl@0
   130
sl@0
   131
private:
sl@0
   132
	/**
sl@0
   133
	Array for storing the partial encoded header.
sl@0
   134
	Each time StartValueLength is called a new array
sl@0
   135
	element is used. When EndValueLength is called,
sl@0
   136
	the array is decremented, data from the last 
sl@0
   137
	element being added to the one before.
sl@0
   138
	*/
sl@0
   139
	RPointerArray<CDesC8Array> iArray;
sl@0
   140
sl@0
   141
	/**
sl@0
   142
	Value incremented as the encoded header increases in size.
sl@0
   143
	Used to allocate the buffer for storing the final	
sl@0
   144
	encoded header, output when EndHeader is called.
sl@0
   145
	*/
sl@0
   146
	TInt iTotalLength;
sl@0
   147
	};
sl@0
   148
sl@0
   149
/** 
sl@0
   150
Class encapsulating primitive encoding methods which are defined in the WSP standard.
sl@0
   151
Input will be encoded and returned in an 8 bit buffer.
sl@0
   152
@publishedAll
sl@0
   153
@deprecated
sl@0
   154
*/
sl@0
   155
class TWspPrimitiveEncoder
sl@0
   156
	{
sl@0
   157
public:
sl@0
   158
	IMPORT_C static TUint8  ShortInt(const TUint8 aValue);
sl@0
   159
sl@0
   160
	IMPORT_C static HBufC8* LongIntL(const TUint32 aValue);
sl@0
   161
sl@0
   162
	IMPORT_C static HBufC8* UintVarL(const TUint32 aInt);
sl@0
   163
sl@0
   164
	IMPORT_C static HBufC8* TextStringL(const RString aText);
sl@0
   165
sl@0
   166
	IMPORT_C static HBufC8* TextStringL(const TDesC8& aText);
sl@0
   167
sl@0
   168
	IMPORT_C static HBufC8* DateL(const TDateTime aDate);
sl@0
   169
	};
sl@0
   170
sl@0
   171
#endif	// __WSPENCODER_H__