os/ossrv/genericservices/httputils/inc/Uri8.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
// This file contains the API definition for the classes TUriC8 and 
sl@0
    15
// CUri8. These classes provide non-modifying (TUriC8) and modifying
sl@0
    16
// (CUri8) functionality for the components of a Uri as described in 
sl@0
    17
// RFC2396.
sl@0
    18
// 
sl@0
    19
//
sl@0
    20
sl@0
    21
/**
sl@0
    22
 @file Uri8.h
sl@0
    23
 @publishedAll
sl@0
    24
 @released
sl@0
    25
*/
sl@0
    26
sl@0
    27
#ifndef __URI8_H__
sl@0
    28
#define __URI8_H__
sl@0
    29
sl@0
    30
// System includes
sl@0
    31
//
sl@0
    32
#include <e32base.h>
sl@0
    33
#include <f32file.h>
sl@0
    34
#include <uricommon.h>
sl@0
    35
sl@0
    36
sl@0
    37
/**
sl@0
    38
Dependencies : TUriComponent.
sl@0
    39
Comments : Provides non-modifying functionality on the components of a uri object as
sl@0
    40
defined in RFC2396. There are 5 components; scheme, authority, path, query and fragment.
sl@0
    41
sl@0
    42
The	object holds descriptor pointers to the parsed uri components and a descriptor pointer 
sl@0
    43
to the uri. It is non-owning. It uses 8-bit descriptors.
sl@0
    44
sl@0
    45
The functionality provided by this API allows the uri components to be extracted from the 
sl@0
    46
parsed uri, checked for their presence in the uri and be compared with those in another 
sl@0
    47
TUriC8 object.
sl@0
    48
@publishedAll
sl@0
    49
@released
sl@0
    50
@since 6.0
sl@0
    51
*/
sl@0
    52
class TUriC8
sl@0
    53
	{
sl@0
    54
public:	// Methods
sl@0
    55
sl@0
    56
	IMPORT_C HBufC* GetFileNameL() const;
sl@0
    57
	IMPORT_C HBufC* GetFileNameL(TUriFileName aType) const;
sl@0
    58
sl@0
    59
	IMPORT_C const TDesC8& Extract(TUriComponent aComponent) const;
sl@0
    60
	IMPORT_C void UriWithoutFragment(TPtrC8& aUriNoFrag) const;
sl@0
    61
sl@0
    62
	IMPORT_C TBool IsPresent(TUriComponent aComponent) const;
sl@0
    63
	IMPORT_C TBool IsSchemeValid() const;
sl@0
    64
	IMPORT_C TInt Compare(const TUriC8& aUri, TUriComponent aComponent) const;
sl@0
    65
sl@0
    66
	IMPORT_C const TDesC8& UriDes() const;
sl@0
    67
sl@0
    68
	IMPORT_C TInt Validate() const;
sl@0
    69
	IMPORT_C TInt Equivalent(const TUriC8& aUri) const;
sl@0
    70
	IMPORT_C HBufC* DisplayFormL(TUriComponent aComponent = EUriComplete) const;
sl@0
    71
sl@0
    72
protected:	// Methods
sl@0
    73
sl@0
    74
	IMPORT_C TUriC8();
sl@0
    75
	void Reset();
sl@0
    76
sl@0
    77
protected:	// Attributes
sl@0
    78
sl@0
    79
	/** The array of descriptor pointers to the uri components.
sl@0
    80
	*/
sl@0
    81
	TPtrC8		iComponent[EUriMaxComponents];
sl@0
    82
sl@0
    83
	/** The descriptor pointer to the uri.
sl@0
    84
	*/
sl@0
    85
	TPtrC8		iUriDes;
sl@0
    86
sl@0
    87
/**
sl@0
    88
	A friend class.
sl@0
    89
	@see		CUri8 
sl@0
    90
	@since		6.0
sl@0
    91
 */
sl@0
    92
	friend class CUri8;
sl@0
    93
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    94
/**
sl@0
    95
	A friend class used for testing.
sl@0
    96
	@see		TUriC8StateAccessor
sl@0
    97
	@since		6.0	
sl@0
    98
 */
sl@0
    99
#else
sl@0
   100
/**
sl@0
   101
	A friend class used for testing.
sl@0
   102
	@see		TUriC8StateAccessor
sl@0
   103
	@since		6.0
sl@0
   104
	@internalComponent
sl@0
   105
 */
sl@0
   106
#endif	//SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   107
	friend class TUriC8StateAccessor;
sl@0
   108
sl@0
   109
	};
sl@0
   110
sl@0
   111
/**
sl@0
   112
Dependencies : TUriC8
sl@0
   113
Comments : Provides functionality to parse a descriptor into the components of a uri as 
sl@0
   114
defined in RFC2396. There are 5 components; scheme, authority, path, query and fragment.
sl@0
   115
sl@0
   116
It uses 8-bit descriptors.
sl@0
   117
sl@0
   118
Format of a uri is; scheme://authority path?query\#fragment
sl@0
   119
sl@0
   120
@warning The descriptor that is parsed by an object of this class will be referenced 
sl@0
   121
by that object. If the original descriptor is no longer in scope there will be undefined 
sl@0
   122
behaviour.
sl@0
   123
@publishedAll
sl@0
   124
@released
sl@0
   125
@since 6.0
sl@0
   126
*/
sl@0
   127
class TUriParser8 : public TUriC8
sl@0
   128
	{
sl@0
   129
public:	// Methods
sl@0
   130
sl@0
   131
	IMPORT_C TUriParser8();
sl@0
   132
sl@0
   133
	IMPORT_C TInt Parse(const TDesC8& aUri);
sl@0
   134
sl@0
   135
private:	// Methods	
sl@0
   136
	void RetrieveScheme(const TPtrC8& aUri, TPtrC8& aScheme);
sl@0
   137
	};
sl@0
   138
sl@0
   139
class CUri8 : public CBase
sl@0
   140
/**
sl@0
   141
Dependencies : CBase, TUriC8.
sl@0
   142
Comments : Provides modifying functionality on the components of a uri object, as
sl@0
   143
defined in RFC2396. There are 5 components; scheme. authority, path, query and fragment.
sl@0
   144
sl@0
   145
The	object holds parsed uri information. It is owning. It uses 8-bit descriptors.
sl@0
   146
sl@0
   147
The functionality provided by this API allows the uri components to be set or removed 
sl@0
   148
from this parsed uri. Also, it provides a reference to TUriC8 object so that the non-modifying 
sl@0
   149
functionality can be used.
sl@0
   150
@publishedAll
sl@0
   151
@released
sl@0
   152
@since 6.0
sl@0
   153
*/
sl@0
   154
	{
sl@0
   155
public: // Methods
sl@0
   156
sl@0
   157
	IMPORT_C static CUri8* CreateFileUriL(const TDesC& aFullFileName, TUint aFlags = 0); 
sl@0
   158
	IMPORT_C static CUri8* CreatePrivateFileUriL(const TDesC& aRelativeFileName, TDriveNumber aDrive, TInt aFlags = 0);
sl@0
   159
	
sl@0
   160
	IMPORT_C static CUri8* NewL(const TUriC8& aUri);
sl@0
   161
	IMPORT_C static CUri8* NewLC(const TUriC8& aUri);
sl@0
   162
	IMPORT_C static CUri8* NewL();
sl@0
   163
	IMPORT_C static CUri8* NewLC();
sl@0
   164
sl@0
   165
	IMPORT_C static CUri8* ResolveL(const TUriC8& aBaseUri, const TUriC8& aRefUri);
sl@0
   166
sl@0
   167
	IMPORT_C ~CUri8();
sl@0
   168
sl@0
   169
	IMPORT_C const TUriC8& Uri() const;
sl@0
   170
	IMPORT_C void SetComponentL(const TDesC8& aData, TUriComponent aComponent);
sl@0
   171
	IMPORT_C void RemoveComponentL(TUriComponent aComponent);
sl@0
   172
sl@0
   173
private:	// Methods
sl@0
   174
sl@0
   175
	CUri8(const TUriC8& aNewUri);
sl@0
   176
	void ConstructL();
sl@0
   177
	void FormUriL();
sl@0
   178
	void InitializeFileUriComponentsL(const TDesC& aFileName, TDriveNumber aDrive, TUint aFlags);
sl@0
   179
sl@0
   180
private:	// Attributes
sl@0
   181
sl@0
   182
	/** The descriptor buffer that contains the uri.
sl@0
   183
	 */
sl@0
   184
	HBufC8*	iUriBuf;
sl@0
   185
sl@0
   186
	/** The parsed uri object.
sl@0
   187
	 */
sl@0
   188
	TUriC8	iUri;
sl@0
   189
	
sl@0
   190
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   191
/**
sl@0
   192
	A friend class used for testing.
sl@0
   193
	@see		TUri8StateAccessor
sl@0
   194
	@since		6.0
sl@0
   195
	*/
sl@0
   196
#else
sl@0
   197
/**
sl@0
   198
	A friend class used for testing.
sl@0
   199
	@see		TUri8StateAccessor
sl@0
   200
	@since		6.0
sl@0
   201
	@internalComponent
sl@0
   202
 */
sl@0
   203
#endif	//SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   204
	friend class TUri8StateAccessor;
sl@0
   205
sl@0
   206
	};
sl@0
   207
sl@0
   208
#endif	// __URI8_H__