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 |
#ifndef __DELIMITEDQUERY8_H__
|
sl@0
|
17 |
#define __DELIMITEDQUERY8_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file DelimitedQuery8.h
|
sl@0
|
21 |
Comments : This file contains the API definition for the classes TDelimitedQueryParser8
|
sl@0
|
22 |
and CDelimitedQuery8.
|
sl@0
|
23 |
@publishedAll
|
sl@0
|
24 |
@released
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
|
sl@0
|
27 |
// System includes
|
sl@0
|
28 |
//
|
sl@0
|
29 |
#include <e32base.h>
|
sl@0
|
30 |
#include <delimitedparser8.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
Dependencies : TDelimitedParserBase8
|
sl@0
|
35 |
Comments : Derived class from TDelimitedParserBase providing a class for parsing
|
sl@0
|
36 |
querys delimited by a '&' as defined in RFC2396.
|
sl@0
|
37 |
@publishedAll
|
sl@0
|
38 |
@released
|
sl@0
|
39 |
@since 6.0
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
class TDelimitedQueryParser8 : public TDelimitedParserBase8
|
sl@0
|
42 |
{
|
sl@0
|
43 |
public: // Methods
|
sl@0
|
44 |
|
sl@0
|
45 |
IMPORT_C TDelimitedQueryParser8();
|
sl@0
|
46 |
|
sl@0
|
47 |
IMPORT_C void Parse(const TDesC8& aQuery);
|
sl@0
|
48 |
|
sl@0
|
49 |
IMPORT_C void ParseReverse(const TDesC8& aQuery);
|
sl@0
|
50 |
};
|
sl@0
|
51 |
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
Dependencies : CDelimitedStringBase8
|
sl@0
|
54 |
Comments : Provides functionality to create a delimited query where components of the
|
sl@0
|
55 |
query delimited by '&' as defined in RFC2396.
|
sl@0
|
56 |
@publishedAll
|
sl@0
|
57 |
@released
|
sl@0
|
58 |
@since 6.0
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
class CDelimitedQuery8 : public CDelimitedDataBase8
|
sl@0
|
61 |
{
|
sl@0
|
62 |
public: // Methods
|
sl@0
|
63 |
|
sl@0
|
64 |
IMPORT_C static CDelimitedQuery8* NewL(const TDesC8& aQuery);
|
sl@0
|
65 |
|
sl@0
|
66 |
IMPORT_C static CDelimitedQuery8* NewLC(const TDesC8& aQuery);
|
sl@0
|
67 |
|
sl@0
|
68 |
IMPORT_C ~CDelimitedQuery8();
|
sl@0
|
69 |
|
sl@0
|
70 |
IMPORT_C void InsertAndEscapeCurrentL(const TDesC8& aSegment);
|
sl@0
|
71 |
|
sl@0
|
72 |
IMPORT_C void PushAndEscapeFrontL(const TDesC8& aSegment);
|
sl@0
|
73 |
|
sl@0
|
74 |
IMPORT_C void PushAndEscapeBackL(const TDesC8& aSegment);
|
sl@0
|
75 |
|
sl@0
|
76 |
private: // Methods
|
sl@0
|
77 |
|
sl@0
|
78 |
CDelimitedQuery8();
|
sl@0
|
79 |
|
sl@0
|
80 |
void ConstructL(const TDesC8& aQuery);
|
sl@0
|
81 |
|
sl@0
|
82 |
};
|
sl@0
|
83 |
|
sl@0
|
84 |
#endif // __DELIMITEDQUERY8_H__
|