Update contrib.
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #ifndef __WSPDECODER_H__
23 #define __WSPDECODER_H__
26 #include <stringpool.h>
30 * This file contains the following classes:
33 * TWspPrimitiveDecoder
48 EWspDecoderLongIntOverflow,
52 EWspDecoderDateOverflow
56 TWspField class holds the pair <HeaderName, ValueBuffer>
57 This is a simple class that associates these values.
58 No ownership is handed to this class. It is up to user of this class to
59 open and close all resources used.
69 inline TWspField(RStringF aHdrName, TPtrC8 aValBuf);
72 The header name of a opened RStringF - *Not Owned*
73 This is externally opened. It must be externally
78 /** The raw value buffer - Note: Not owned by this */
83 TWspHeaderSegmenter segments a WSP buffer into WSP header/value pairs.
84 It detects boundaries between header/values based on the WAP-WSP spec.
85 - To construct, buffer and string pool is passed in
86 - Call to NextL() to iterate through the buffer - this returns a TWspField
87 - NextL() returns KErrNotFound when done
92 class TWspHeaderSegmenter
96 inline TWspHeaderSegmenter(RStringPool aPool, const TStringTable& aStringTable, TPtrC8 aBuffer);
98 IMPORT_C TInt NextL(TWspField& aWspHeader);
100 inline TInt Offset() const;
103 /** Raw buffer that will be segmented - Not Owned */
106 /** Segment offset into the buffer. */
109 /** Opened string pool to use with the string table already loaded - Not Owned */
112 /** The string table to use in the string pool - Not Owned */
113 const TStringTable& iStringTable;
117 Decoder for WSP Primitves - WAP-WSP Section 8.4.1
121 class TWspPrimitiveDecoder
126 * TWspHeaderType describe the types from WAP-WSP Section 8.4.1.2
131 The type has not been set
135 0-31 - octet is a value length
139 34 - value is a quoted text string, terminated by a Null
143 32-127 - value is a text string, terminated by a Null
147 128-255 - encoded 7 bit value, this header has no more data
153 inline TWspPrimitiveDecoder(TPtrC8 aBuffer);
155 IMPORT_C TWspHeaderType VarType() const;
157 IMPORT_C TInt LengthVal(TInt& aVal);
159 IMPORT_C TInt String(TPtrC8& aString);
162 IMPORT_C TInt Val7Bit(TUint8& aVal);
164 IMPORT_C TInt Integer(TUint32& aVal);
166 IMPORT_C TInt LongInt(TUint32& aVal);
168 IMPORT_C TInt UintVar(TUint32& aVal);
170 IMPORT_C TInt VersionL(RStringPool aPool, RStringF& aVer);
172 IMPORT_C TInt Date(TDateTime& aDateTime);
175 /** The raw buffer */
178 /** The current offset */
186 inline TWspField::TWspField()
193 @param aHdrName In - The Header Name. This must be an opened RStringF
194 @param aValBuf In - the Buffer containing the header value in its raw format
196 inline TWspField::TWspField(RStringF aHdrName, TPtrC8 aValBuf) :
205 @param aPool In - an opened RStringPool - owned by the caller
206 @param aStringTable In - the string table in the string pool to use
207 @param aBuffer In - the buffer containing the WSP header data - owned by the caller
208 @pre The string table must be opened with the WSP Sting constants table
210 inline TWspHeaderSegmenter::TWspHeaderSegmenter(RStringPool aPool, const TStringTable& aStringTable, TPtrC8 aBuffer) :
214 iStringTable(aStringTable)
219 Offset returns the current offset into the buffer being parsed.
221 @return TInt offset value. It will point to beginning of next segmented field.
222 If NextL has not been called it will be set to 0. The beginning of the buffer.
223 If buffer has been completely parsed, will return KErrNotFound.
225 inline TInt TWspHeaderSegmenter::Offset() const
227 return (iOffset < iBuffer.Length()) ? iOffset : KErrNotFound;
233 @param aBuffer In - the buffer containing the value in its raw format
235 inline TWspPrimitiveDecoder::TWspPrimitiveDecoder(TPtrC8 aBuffer) :
242 #endif // __WSPDECODER_H__