os/ossrv/genericservices/httputils/inc/Uri16.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 TUriC16 and 
sl@0
    15
// CUri16. These classes provide non-modifying (TUriC16) and modifying
sl@0
    16
// (CUri16) 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 Uri16.h
sl@0
    23
 @publishedAll
sl@0
    24
 @deprecated Deprecated in 9.1
sl@0
    25
*/
sl@0
    26
sl@0
    27
#ifndef __URI16_H__
sl@0
    28
#define __URI16_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
class TUriC16
sl@0
    38
/**
sl@0
    39
	Dependencies : TUriComponent.
sl@0
    40
	Comments : Provides non-modifying functionality on the components of a uri object as
sl@0
    41
	defined in RFC2396. There are 5 components; scheme, authority, path, query and fragment.
sl@0
    42
sl@0
    43
The	object holds descriptor pointers to the parsed uri components and a descriptor pointer 
sl@0
    44
to the uri. It is non-owning. It uses 16-bit descriptors.
sl@0
    45
sl@0
    46
	The functionality provided by this API allows the uri components to be extracted from the 
sl@0
    47
	parsed uri, checked for their presence in the uri and be compared with those in another 
sl@0
    48
	TUriC16 object.
sl@0
    49
	@publishedAll
sl@0
    50
	@deprecated Deprecated in 9.1
sl@0
    51
	@since 6.0
sl@0
    52
*/
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
	IMPORT_C const TDesC16& Extract(TUriComponent aComponent) const;
sl@0
    59
	IMPORT_C void UriWithoutFragment(TPtrC16& aUriNoFrag) const;
sl@0
    60
sl@0
    61
	IMPORT_C TBool IsPresent(TUriComponent aComponent) const;
sl@0
    62
	IMPORT_C TBool IsSchemeValid() const;
sl@0
    63
sl@0
    64
	IMPORT_C TInt Compare(const TUriC16& aUri, TUriComponent aComponent) const;
sl@0
    65
sl@0
    66
	IMPORT_C const TDesC16& UriDes() const;
sl@0
    67
sl@0
    68
	IMPORT_C TInt Validate() const;
sl@0
    69
	IMPORT_C TInt Equivalent(const TUriC16& 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 TUriC16();
sl@0
    75
sl@0
    76
	void Reset();
sl@0
    77
	
sl@0
    78
private:	// Methods
sl@0
    79
	
sl@0
    80
	TInt ValidateL() const;
sl@0
    81
	TInt EquivalentL(const TDesC16& aUri) const;
sl@0
    82
sl@0
    83
protected:	// Attributes
sl@0
    84
sl@0
    85
	/** The array of descriptor pointers to the uri components.
sl@0
    86
	 */
sl@0
    87
	TPtrC16		iComponent[EUriMaxComponents];
sl@0
    88
sl@0
    89
	/** The descriptor pointer to the uri.
sl@0
    90
	 */
sl@0
    91
	TPtrC16		iUriDes;
sl@0
    92
sl@0
    93
/**
sl@0
    94
	A friend class.
sl@0
    95
	@see		CUri16 
sl@0
    96
	@since		6.0
sl@0
    97
 */
sl@0
    98
	friend class CUri16;
sl@0
    99
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   100
/**
sl@0
   101
	A friend class used for testing.
sl@0
   102
	@see		TUriC16StateAccessor
sl@0
   103
	@since		6.0	
sl@0
   104
 */
sl@0
   105
#else
sl@0
   106
/**
sl@0
   107
	A friend class used for testing.
sl@0
   108
	@see		TUriC16StateAccessor
sl@0
   109
	@since		6.0
sl@0
   110
	@internalComponent
sl@0
   111
 */
sl@0
   112
#endif	//SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   113
	friend class TUriC16StateAccessor;
sl@0
   114
sl@0
   115
	};
sl@0
   116
sl@0
   117
/**
sl@0
   118
Dependencies : TUriC16
sl@0
   119
Comments : Provides functionality to parse a descriptor into the components of a uri as 
sl@0
   120
defined in RFC2396. There are 5 components; scheme, authority, path, query and fragment.
sl@0
   121
sl@0
   122
It uses 16-bit descriptors.
sl@0
   123
sl@0
   124
Format of a uri is; scheme://authority path?query\#fragment
sl@0
   125
sl@0
   126
@warning The descriptor that is parsed by an object of this class will be referenced 
sl@0
   127
by that object. If the original descriptor is no longer in scope there will be undefined 
sl@0
   128
behaviour.
sl@0
   129
@publishedAll
sl@0
   130
@deprecated Deprecated in 9.1. Use UriUtils::CreateUriL() instead
sl@0
   131
@since 6.0
sl@0
   132
*/
sl@0
   133
class TUriParser16 : public TUriC16
sl@0
   134
	{
sl@0
   135
public:	// Methods
sl@0
   136
sl@0
   137
	IMPORT_C TUriParser16();
sl@0
   138
	IMPORT_C TInt Parse(const TDesC16& aUri);
sl@0
   139
	};
sl@0
   140
sl@0
   141
/**
sl@0
   142
	Dependencies : CBase, TUriC16.
sl@0
   143
	Comments : Provides modifying functionality on the components of a uri object, as
sl@0
   144
	defined in RFC2396. There are 5 components; scheme. authority, path, query and fragment.
sl@0
   145
sl@0
   146
	The	object holds parsed uri information. It is owning. It uses 16-bit descriptors.
sl@0
   147
sl@0
   148
	The functionality provided by this API allows the uri components to be set or removed 
sl@0
   149
	from this parsed uri. Also, it provides a reference to TUriC16 object so that the non-modifying 
sl@0
   150
	functionality can be used.
sl@0
   151
	@publishedAll
sl@0
   152
	@deprecated Deprecated in 9.1
sl@0
   153
	@since 6.0
sl@0
   154
*/
sl@0
   155
class CUri16 : public CBase
sl@0
   156
	{
sl@0
   157
public: // Methods
sl@0
   158
	IMPORT_C static CUri16* CreateFileUriL(const TDesC& aFullFileName, TUint aFlags = 0);
sl@0
   159
	IMPORT_C static CUri16* CreatePrivateFileUriL(const TDesC& aRelativeFileName, TDriveNumber aDrive, TInt aFlags = 0);
sl@0
   160
sl@0
   161
	IMPORT_C static CUri16* NewL(const TUriC16& aUri);
sl@0
   162
	IMPORT_C static CUri16* NewLC(const TUriC16& aUri);
sl@0
   163
	IMPORT_C static CUri16* NewL();
sl@0
   164
	IMPORT_C static CUri16* NewLC();
sl@0
   165
sl@0
   166
	IMPORT_C static CUri16* ResolveL(const TUriC16& aBaseUri, const TUriC16& aRefUri);
sl@0
   167
sl@0
   168
	IMPORT_C ~CUri16();
sl@0
   169
	IMPORT_C const TUriC16& Uri() const;
sl@0
   170
	IMPORT_C void SetComponentL(const TDesC16& 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
	CUri16(const TUriC16& 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
	HBufC16*	iUriBuf;
sl@0
   185
sl@0
   186
	/** The parsed uri object.
sl@0
   187
	 */
sl@0
   188
	TUriC16	iUri;
sl@0
   189
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   190
/**
sl@0
   191
	A friend class used for testing.
sl@0
   192
	@see		TUri16StateAccessor
sl@0
   193
	@since		6.0	
sl@0
   194
 */
sl@0
   195
#else
sl@0
   196
/**
sl@0
   197
	A friend class used for testing.
sl@0
   198
	@see		TUri16StateAccessor
sl@0
   199
	@since		6.0
sl@0
   200
	@internalComponent
sl@0
   201
 */
sl@0
   202
#endif	//SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   203
	friend class TUri16StateAccessor;
sl@0
   204
sl@0
   205
	};
sl@0
   206
sl@0
   207
/** 	
sl@0
   208
Do not use. Use TUriC8 instead
sl@0
   209
@publishedAll
sl@0
   210
@deprecated Deprecated in 9.1 
sl@0
   211
 */
sl@0
   212
typedef TUriC16			TUriC;
sl@0
   213
sl@0
   214
/** 
sl@0
   215
Do not use. Use TUriParser8 instead
sl@0
   216
@publishedAll
sl@0
   217
@deprecated Deprecated in 9.1 
sl@0
   218
 */
sl@0
   219
typedef TUriParser16	TUriParser;
sl@0
   220
sl@0
   221
/** 
sl@0
   222
Do not use. Use CUri8 instead
sl@0
   223
@publishedAll
sl@0
   224
@deprecated Deprecated in 9.1 
sl@0
   225
 */
sl@0
   226
typedef CUri16			CUri;
sl@0
   227
sl@0
   228
#endif	// __URI16_H__