os/ossrv/genericservices/httputils/inc/Authority16.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 TAuthorityC16 and
sl@0
    15
// CAuthority16. These classes provide non-modifying (TAuthorityC16) and 
sl@0
    16
// modifying (CAuthority16) functionality for the components of an
sl@0
    17
// Authority as described in RFC2396.
sl@0
    18
// 
sl@0
    19
//
sl@0
    20
sl@0
    21
/**
sl@0
    22
 @file Authority16.h
sl@0
    23
 @publishedAll
sl@0
    24
 @deprecated Deprecated in 9.1
sl@0
    25
*/
sl@0
    26
sl@0
    27
#ifndef __AUTHORITY16_H__
sl@0
    28
#define __AUTHORITY16_H__
sl@0
    29
sl@0
    30
// System includes
sl@0
    31
//
sl@0
    32
#include <e32base.h>
sl@0
    33
#include <authoritycommon.h>
sl@0
    34
sl@0
    35
sl@0
    36
/**
sl@0
    37
Dependencies : TAuthorityComponent.
sl@0
    38
Comments : Provides non-modifying functionality on the components of an authority 
sl@0
    39
object as defined in RFC2396. There are 3 components; userinfo, host and port.
sl@0
    40
sl@0
    41
The	object holds descriptor pointers to the parsed authority components and a descriptor 
sl@0
    42
pointer to the authority. It is non-owning. It uses 16-bit descriptors.
sl@0
    43
sl@0
    44
The functionality provided by this API allows the authority components to be extracted
sl@0
    45
from the parsed authority, checked for their presence in the authority and be compared 
sl@0
    46
with those in another TAuthorityC16 object.
sl@0
    47
@publishedAll
sl@0
    48
@deprecated Deprecated in 9.1
sl@0
    49
@since 6.0
sl@0
    50
*/
sl@0
    51
class TAuthorityC16
sl@0
    52
	{
sl@0
    53
public:	// Methods
sl@0
    54
sl@0
    55
	IMPORT_C const TDesC16& Extract(TAuthorityComponent aComponent) const;
sl@0
    56
	IMPORT_C TBool IsPresent(TAuthorityComponent aComponent) const;
sl@0
    57
	IMPORT_C TInt Compare(const TAuthorityC16& aAuthority, TAuthorityComponent aComponent) const;
sl@0
    58
	IMPORT_C const TDesC16& AuthorityDes() const;
sl@0
    59
	IMPORT_C HBufC* DisplayFormL(TAuthorityComponent aComponent = EAuthorityComplete ) const;
sl@0
    60
sl@0
    61
protected:	// Methods
sl@0
    62
sl@0
    63
sl@0
    64
	IMPORT_C TAuthorityC16();
sl@0
    65
sl@0
    66
	void Reset();
sl@0
    67
sl@0
    68
protected:	// Attributes
sl@0
    69
sl@0
    70
	/** 
sl@0
    71
		The array of descriptor pointers to the authority components.
sl@0
    72
	 */
sl@0
    73
	TPtrC16	iComponent[EAuthorityMaxComponents];
sl@0
    74
sl@0
    75
	/** 
sl@0
    76
		The descriptor pointer to the authority.
sl@0
    77
	 */
sl@0
    78
	TPtrC16	iAuthorityDes;
sl@0
    79
sl@0
    80
/**
sl@0
    81
	A friend class.
sl@0
    82
	@see		CAuthority16
sl@0
    83
	@since		6.0
sl@0
    84
 */
sl@0
    85
	friend class CAuthority16;
sl@0
    86
sl@0
    87
/**
sl@0
    88
	A friend class used for testing.
sl@0
    89
	@see		TAuthorityC16StateAccessor
sl@0
    90
	@since		6.0
sl@0
    91
 */
sl@0
    92
	friend class TAuthorityC16StateAccessor;	
sl@0
    93
sl@0
    94
	};
sl@0
    95
sl@0
    96
/**
sl@0
    97
Dependencies : TAuthorityC16
sl@0
    98
Comments : Provides functionality to parse a descriptor into the components of an 
sl@0
    99
authority as defined in RFC2396. There are 3 components; userinfo, host and port.
sl@0
   100
sl@0
   101
This uses 16-bit descriptors.
sl@0
   102
sl@0
   103
Format of an authority is; [userinfo@]host[:port]
sl@0
   104
sl@0
   105
@warning The descriptor that is parsed by an object of this class will be referenced 
sl@0
   106
by that object. If the original descriptor is no longer in scope there will be undefined 
sl@0
   107
behaviour.
sl@0
   108
@publishedAll
sl@0
   109
@deprecated Deprecated in 9.1. Use UriUtils::CreateAuthorityL() instead
sl@0
   110
@since 6.0
sl@0
   111
*/
sl@0
   112
class TAuthorityParser16 : public TAuthorityC16
sl@0
   113
	{
sl@0
   114
public:	// Methods
sl@0
   115
sl@0
   116
	IMPORT_C TAuthorityParser16();
sl@0
   117
	IMPORT_C TInt Parse(const TDesC16& aAuthority);
sl@0
   118
sl@0
   119
	};
sl@0
   120
sl@0
   121
/**
sl@0
   122
Dependencies : CBase, TAuthorityC16.
sl@0
   123
Comments : Provides modifying functionality on the components of an authority object, as
sl@0
   124
defined in RFC2396. There are 3 components; userinfo, host and port.
sl@0
   125
sl@0
   126
The	object holds parsed authority information. It is owning. It uses 16-bit descriptors.
sl@0
   127
sl@0
   128
The functionality provided by this API allows the authority components to be set or removed 
sl@0
   129
from this parsed authority. Also, it provides a reference to TAuthorityC16 object so that 
sl@0
   130
the non-modifying functionality can be used.
sl@0
   131
@publishedAll
sl@0
   132
@deprecated Deprecated in 9.1
sl@0
   133
@since 6.0
sl@0
   134
*/
sl@0
   135
class CAuthority16 : public CBase
sl@0
   136
	{
sl@0
   137
public: // Methods
sl@0
   138
sl@0
   139
	IMPORT_C static CAuthority16* NewL(const TAuthorityC16& aAuthority);
sl@0
   140
	IMPORT_C static CAuthority16* NewLC(const TAuthorityC16& aAuthority);
sl@0
   141
	IMPORT_C static CAuthority16* NewL();
sl@0
   142
	IMPORT_C static CAuthority16* NewLC();
sl@0
   143
	IMPORT_C ~CAuthority16();
sl@0
   144
sl@0
   145
	IMPORT_C const TAuthorityC16& Authority() const;
sl@0
   146
	IMPORT_C void SetComponentL(const TDesC16& aData, TAuthorityComponent aComponent);
sl@0
   147
	IMPORT_C void SetAndEscapeComponentL(const TDesC16& aData, TAuthorityComponent aComponent);
sl@0
   148
	IMPORT_C void RemoveComponentL(TAuthorityComponent aComponent);
sl@0
   149
sl@0
   150
private:	// Methods
sl@0
   151
sl@0
   152
	CAuthority16(const TAuthorityC16& aAuthority);
sl@0
   153
sl@0
   154
	void ConstructL();
sl@0
   155
sl@0
   156
	void FormAuthorityL();
sl@0
   157
sl@0
   158
private:	// Attributes
sl@0
   159
sl@0
   160
	/** 
sl@0
   161
		The descriptor buffer that contains the authority.
sl@0
   162
	 */
sl@0
   163
	HBufC16*		iAuthorityBuf;
sl@0
   164
sl@0
   165
	/** 
sl@0
   166
		The parsed authority object.
sl@0
   167
	 */
sl@0
   168
	TAuthorityC16	iAuthority;
sl@0
   169
sl@0
   170
/**
sl@0
   171
	A friend class used for testing.
sl@0
   172
	@see		TAuthority16StateAccessor
sl@0
   173
	@since		6.0
sl@0
   174
 */
sl@0
   175
	friend class TAuthority16StateAccessor;
sl@0
   176
sl@0
   177
	};
sl@0
   178
/** 	
sl@0
   179
Do not use. Use TAuthorityC8 instead
sl@0
   180
@publishedAll
sl@0
   181
@deprecated Deprecated in 9.1
sl@0
   182
 */
sl@0
   183
typedef TAuthorityC16		TAuthorityC;
sl@0
   184
sl@0
   185
/** 	
sl@0
   186
Do not use. Use TAuthorityParser8 instead
sl@0
   187
@publishedAll
sl@0
   188
@deprecated Deprecated in 9.1
sl@0
   189
 */
sl@0
   190
typedef TAuthorityParser16	TAuthorityParser;
sl@0
   191
sl@0
   192
/**
sl@0
   193
Do not use. Use CAuthority8 instead
sl@0
   194
@publishedAll
sl@0
   195
@deprecated Deprecated in 9.1
sl@0
   196
 */
sl@0
   197
typedef CAuthority16 CAuthority;
sl@0
   198
sl@0
   199
#endif	// __AUTHORITY16_H__