1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/httputils/inc/WSPEncoder.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,171 @@
1.4 +// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file WSPEncoder.h
1.21 + @publishedAll
1.22 + @deprecated
1.23 +*/
1.24 +
1.25 +#ifndef __WSPENCODER_H__
1.26 +#define __WSPENCODER_H__
1.27 +
1.28 +#include <e32base.h>
1.29 +#include <f32file.h> // RFs
1.30 +#include <badesca.h> // arrays etc.
1.31 +#include <stringpool.h>
1.32 +
1.33 +/**
1.34 +enum CodecPanic
1.35 +@publishedAll
1.36 +@deprecated
1.37 +*/
1.38 +enum TWspCodecPanic
1.39 + {
1.40 + /** Due to failure to call StartValueLength function */
1.41 + EWspCodecPanicStartValueLengthNotCalled=0,
1.42 + /** Due to failure to call EndValueLength matching a call to StartValueLength */
1.43 + EWspCodecPanicEndValueLengthNotCalled,
1.44 + /** Due to failure to call StartHeaderL function */
1.45 + EWspCodecPanicStartHeaderLNotCalled,
1.46 + /** Due to StartHeaderL function being called twice without EndHeaderL */
1.47 + EWspCodecPanicStartHeaderCalledTwice,
1.48 + /** Due to parameter Token not having the top bit set */
1.49 + EWspCodecPanicInvalidToken
1.50 + };
1.51 +
1.52 +/**
1.53 +This class can be used to encode one header field at a time,
1.54 +with all its values and parameters.
1.55 +
1.56 +It has no knowledge of encoding the BNF of a particular header field, but
1.57 +the functions provided can be used in combination, producing an 8-bit buffer
1.58 +containing the encoded header.
1.59 +
1.60 +Intended usage would be to call a series of functions. The first one being StartHeader,
1.61 +The final one being EndHeader, which would return a buffer containing
1.62 +the complete encoded header field.
1.63 +eg:
1.64 + encoder->StartHeaderL();
1.65 + encoder->AddLongIntL();
1.66 + encoder->AddTextStringL();
1.67 + HBufC8* output = encoder->EndHeaderL();
1.68 +@publishedAll
1.69 +@deprecated
1.70 +*/
1.71 +class CWspHeaderEncoder : public CBase
1.72 + {
1.73 +public:
1.74 + IMPORT_C static CWspHeaderEncoder* NewL();
1.75 +
1.76 + IMPORT_C static CWspHeaderEncoder* NewLC();
1.77 +
1.78 +
1.79 + IMPORT_C virtual ~CWspHeaderEncoder();
1.80 +
1.81 + IMPORT_C void StartHeaderL(TUint8 aToken);
1.82 +
1.83 +
1.84 + IMPORT_C void StartHeaderL(const TDesC8& aString);
1.85 +
1.86 + IMPORT_C void StartHeaderL(const RStringF aString);
1.87 +
1.88 +
1.89 + IMPORT_C HBufC8* EndHeaderL();
1.90 +
1.91 +
1.92 +
1.93 + IMPORT_C void AddIntegerL(const TUint aInt);
1.94 +
1.95 +
1.96 + IMPORT_C void AddShortIntL(const TUint8 aValue);
1.97 +
1.98 + IMPORT_C void AddShortLengthL(const TUint8 aValue);
1.99 +
1.100 +
1.101 + IMPORT_C void AddLongIntL(const TUint32 aValue);
1.102 +
1.103 +
1.104 + IMPORT_C void AddUintVarL(const TUint aInt);
1.105 +
1.106 +
1.107 + IMPORT_C void AddTextStringL(const RString& aText);
1.108 +
1.109 + IMPORT_C void AddTextStringL(const TDesC8& aText);
1.110 +
1.111 + IMPORT_C void AddDateL(const TDateTime aDate);
1.112 +
1.113 + IMPORT_C void AddTokenL(const TUint8 aToken);
1.114 +
1.115 + IMPORT_C void AddTokenTextL(const TDesC8& aTokenText);
1.116 +
1.117 + IMPORT_C void AddDataL(const TDesC8& aData);
1.118 +
1.119 +
1.120 +
1.121 + IMPORT_C void StartValueLengthL();
1.122 +
1.123 + IMPORT_C void EndValueLengthL();
1.124 +
1.125 +private:
1.126 +
1.127 + CWspHeaderEncoder();
1.128 +
1.129 + void Init();
1.130 +
1.131 +
1.132 + void ConstructL();
1.133 +
1.134 +private:
1.135 + /**
1.136 + Array for storing the partial encoded header.
1.137 + Each time StartValueLength is called a new array
1.138 + element is used. When EndValueLength is called,
1.139 + the array is decremented, data from the last
1.140 + element being added to the one before.
1.141 + */
1.142 + RPointerArray<CDesC8Array> iArray;
1.143 +
1.144 + /**
1.145 + Value incremented as the encoded header increases in size.
1.146 + Used to allocate the buffer for storing the final
1.147 + encoded header, output when EndHeader is called.
1.148 + */
1.149 + TInt iTotalLength;
1.150 + };
1.151 +
1.152 +/**
1.153 +Class encapsulating primitive encoding methods which are defined in the WSP standard.
1.154 +Input will be encoded and returned in an 8 bit buffer.
1.155 +@publishedAll
1.156 +@deprecated
1.157 +*/
1.158 +class TWspPrimitiveEncoder
1.159 + {
1.160 +public:
1.161 + IMPORT_C static TUint8 ShortInt(const TUint8 aValue);
1.162 +
1.163 + IMPORT_C static HBufC8* LongIntL(const TUint32 aValue);
1.164 +
1.165 + IMPORT_C static HBufC8* UintVarL(const TUint32 aInt);
1.166 +
1.167 + IMPORT_C static HBufC8* TextStringL(const RString aText);
1.168 +
1.169 + IMPORT_C static HBufC8* TextStringL(const TDesC8& aText);
1.170 +
1.171 + IMPORT_C static HBufC8* DateL(const TDateTime aDate);
1.172 + };
1.173 +
1.174 +#endif // __WSPENCODER_H__