epoc32/include/mw/sipcontactheader.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
williamr@2
     1
/*
williamr@2
     2
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
williamr@2
     3
* All rights reserved.
williamr@2
     4
* This component and the accompanying materials are made available
williamr@4
     5
* under the terms of "Eclipse Public License v1.0"
williamr@2
     6
* which accompanies this distribution, and is available
williamr@4
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
williamr@2
     8
*
williamr@2
     9
* Initial Contributors:
williamr@2
    10
* Nokia Corporation - initial contribution.
williamr@2
    11
*
williamr@2
    12
* Contributors:
williamr@2
    13
*
williamr@2
    14
* Description:
williamr@2
    15
* Name        : sipcontactheader.h
williamr@2
    16
* Part of     : SIP Codec
williamr@2
    17
* Interface   : SDK API, SIP Codec API
williamr@2
    18
* Version     : SIP/4.0 
williamr@2
    19
*
williamr@2
    20
*/
williamr@2
    21
williamr@2
    22
williamr@2
    23
williamr@2
    24
williamr@2
    25
#ifndef CSIPCONTACTHEADER_H
williamr@2
    26
#define CSIPCONTACTHEADER_H
williamr@2
    27
williamr@2
    28
//  INCLUDES
williamr@2
    29
#include "sipparameterheaderbase.h"
williamr@2
    30
williamr@2
    31
// FORWARD DECLARATIONS
williamr@2
    32
class CSIPAddress;
williamr@2
    33
class CSIPContactHeaderParams;
williamr@2
    34
williamr@2
    35
// CLASS DECLARATION
williamr@2
    36
/**
williamr@2
    37
* @publishedAll
williamr@2
    38
* @released
williamr@2
    39
*
williamr@2
    40
* Class provides functions for setting and getting SIP "Contact"
williamr@2
    41
* header fields.
williamr@2
    42
*
williamr@2
    43
*  @lib sipcodec.lib
williamr@2
    44
*/
williamr@2
    45
class CSIPContactHeader : public CSIPParameterHeaderBase
williamr@2
    46
	{
williamr@2
    47
	public: // Constructors and destructor
williamr@2
    48
williamr@2
    49
		/**
williamr@2
    50
		* Constructs a CSIPContactHeader from textual representation 
williamr@2
    51
		* of the header's value part.
williamr@2
    52
		* Note that "Contact: *" can be only created using this function.
williamr@2
    53
		* @param aValue a value part of a "Contact"-header
williamr@2
    54
		* @return an array containing 1..n instances of CSIPContactHeader
williamr@2
    55
		*/
williamr@2
    56
		IMPORT_C static RPointerArray<CSIPContactHeader> 
williamr@2
    57
			DecodeL(const TDesC8& aValue);
williamr@2
    58
williamr@2
    59
		/**
williamr@2
    60
		* Creates a new instance of CSIPContactHeader
williamr@2
    61
		* @pre aSIPAddress != 0
williamr@2
    62
		* @param aSIPAddress a name-address, the ownership is transferred 
williamr@2
    63
		* @return a new instance of CSIPContactHeader
williamr@2
    64
		*/
williamr@2
    65
		IMPORT_C static CSIPContactHeader* NewL(CSIPAddress* aSIPAddress);
williamr@2
    66
williamr@2
    67
		/**
williamr@2
    68
		* Creates a new instance of CSIPContactHeader and puts it to CleanupStack
williamr@2
    69
		* @pre aSIPAddress != 0
williamr@2
    70
		* @param aSIPAddress a name-address, the ownership is transferred 
williamr@2
    71
		* @return a new instance of CSIPContactHeader
williamr@2
    72
		*/
williamr@2
    73
		IMPORT_C static CSIPContactHeader* NewLC(CSIPAddress* aSIPAddress);
williamr@2
    74
williamr@2
    75
		/**
williamr@2
    76
		* Destructor, deletes the resources of CSIPContactHeader.
williamr@2
    77
		*/
williamr@2
    78
		IMPORT_C ~CSIPContactHeader();
williamr@2
    79
williamr@2
    80
	
williamr@2
    81
	public: // New functions
williamr@2
    82
williamr@2
    83
		/**
williamr@2
    84
		* Compares this object to another instance of CSIPContactHeader
williamr@2
    85
		* @param aHeader a CSIPContactHeader header to compare to
williamr@2
    86
		* @return ETrue if the objects are equal otherwise EFalse
williamr@2
    87
		*/
williamr@2
    88
		IMPORT_C TBool operator==(const CSIPContactHeader& aHeader) const;
williamr@2
    89
williamr@2
    90
		/**
williamr@2
    91
		* Checks if the address is set to a STAR ("*")
williamr@2
    92
		* @return ETrue, if the address is a "*" otherwise EFalse
williamr@2
    93
		*/
williamr@2
    94
		IMPORT_C TBool Star() const;
williamr@2
    95
williamr@2
    96
		/**
williamr@2
    97
		* Gets the value of the "expires"-parameter
williamr@2
    98
		* @return the "expires"-parameter, or 
williamr@2
    99
		*         KErrNotFound if the parameter is not present.
williamr@2
   100
		*/
williamr@2
   101
		IMPORT_C TInt ExpiresParameter() const;
williamr@2
   102
williamr@2
   103
		/**
williamr@2
   104
		* Sets the "expires"-parameter
williamr@2
   105
		* @pre aExpiresParam >= 0
williamr@2
   106
		* @param aExpiresParam a "expires"-parameter value to set
williamr@2
   107
		*/
williamr@2
   108
		IMPORT_C void SetExpiresParameterL(TInt aExpiresParam);
williamr@2
   109
williamr@2
   110
		/**
williamr@2
   111
		* Gets the value of "q"-parameter
williamr@2
   112
		* @pre Star() == EFalse
williamr@2
   113
		* @return the "q"-parameter value, 
williamr@2
   114
		*         or zero if the parameter is not present.
williamr@2
   115
		*/
williamr@2
   116
		IMPORT_C TReal QParameter() const;
williamr@2
   117
williamr@2
   118
		/**
williamr@2
   119
		* Sets the "q"-parameter value in the "Contact" header
williamr@2
   120
		* @pre Star() == EFalse
williamr@2
   121
		* @param aQValue a "q"-parameter value to set
williamr@2
   122
		*/
williamr@2
   123
		IMPORT_C void SetQParameterL(TReal aQValue);
williamr@2
   124
williamr@2
   125
		/**
williamr@2
   126
		* Gets the name-address as const
williamr@2
   127
		* @return name-address or 0 if not present
williamr@2
   128
		*         The ownership is NOT transferred.
williamr@2
   129
		*/
williamr@2
   130
		IMPORT_C const CSIPAddress* SIPAddress() const;
williamr@2
   131
williamr@2
   132
		/**
williamr@2
   133
		* Gets the name-address
williamr@2
   134
		* @return name-address or 0 if not present
williamr@2
   135
		*         The ownership is NOT transferred.
williamr@2
   136
		*/
williamr@2
   137
		IMPORT_C CSIPAddress* SIPAddress();
williamr@2
   138
williamr@2
   139
		/**
williamr@2
   140
		* Sets the name-address
williamr@2
   141
		* @pre Star() == EFalse
williamr@2
   142
		* @pre aSIPAddress != 0
williamr@2
   143
		* @param aSIPAddress a name-address to set, the ownership is transferred
williamr@2
   144
		*/
williamr@2
   145
		IMPORT_C void SetSIPAddressL(CSIPAddress* aSIPAddress);
williamr@2
   146
williamr@2
   147
		/**
williamr@2
   148
		* Constructs an instance of a CSIPContactHeader from a RReadStream
williamr@2
   149
		* @param aReadStream a stream containing the value of the
williamr@2
   150
		*        externalized object (header name not included). 
williamr@2
   151
		* @return an instance of a CSIPContactHeader
williamr@2
   152
		*/
williamr@2
   153
		IMPORT_C static CSIPHeaderBase* 
williamr@2
   154
			InternalizeValueL(RReadStream& aReadStream);
williamr@2
   155
williamr@2
   156
	public: // From CSIPHeaderBase
williamr@2
   157
		
williamr@2
   158
		/**
williamr@2
   159
		* From CSIPHeaderBase CloneL
williamr@2
   160
		*/
williamr@2
   161
		IMPORT_C CSIPHeaderBase* CloneL() const;
williamr@2
   162
williamr@2
   163
		/**
williamr@2
   164
		* From CSIPHeaderBase Name
williamr@2
   165
		*/
williamr@2
   166
		IMPORT_C RStringF Name() const;
williamr@4
   167
		
williamr@4
   168
	public: //New Function
williamr@4
   169
		
williamr@4
   170
		/**
williamr@4
   171
		* Removes the "expires"-parameter
williamr@4
   172
		*/
williamr@4
   173
		IMPORT_C void RemoveExpiresParam();
williamr@2
   174
williamr@2
   175
williamr@2
   176
	public: // From CSIPHeaderBase, for internal use
williamr@2
   177
williamr@2
   178
        /**
williamr@2
   179
        * @internalComponent
williamr@2
   180
        */
williamr@2
   181
		TBool MoreThanOneAllowed() const;
williamr@2
   182
		
williamr@2
   183
        /**
williamr@2
   184
        * @internalComponent
williamr@2
   185
        */		
williamr@2
   186
		TBool HasCompactName() const;
williamr@2
   187
		
williamr@2
   188
        /**
williamr@2
   189
        * @internalComponent
williamr@2
   190
        */		
williamr@2
   191
		RStringF CompactName() const;
williamr@2
   192
		
williamr@2
   193
        /**
williamr@2
   194
        * @internalComponent
williamr@2
   195
        */		
williamr@2
   196
		TPreferredPlace PreferredPlaceInMessage() const;
williamr@2
   197
williamr@2
   198
	public: // New functions, for internal use
williamr@2
   199
williamr@2
   200
		static RPointerArray<CSIPHeaderBase> BaseDecodeL(const TDesC8& aValue);
williamr@2
   201
williamr@2
   202
	private: // From CSIPHeaderBase
williamr@2
   203
williamr@2
   204
		void ExternalizeValueL(RWriteStream& aWriteStream) const;
williamr@2
   205
williamr@2
   206
	private: // From CSIPParameterHeaderBase
williamr@2
   207
williamr@2
   208
		TBool ParamInsertionAllowed() const;
williamr@2
   209
		HBufC8* ToTextMandatoryPartLC() const;
williamr@2
   210
		void ParseMandatoryPartL(const TDesC8& aMandatoryPart);
williamr@2
   211
		const CSIPParamContainerBase& Params() const;
williamr@2
   212
		CSIPParamContainerBase& Params();
williamr@2
   213
williamr@2
   214
	private: // Constructors
williamr@2
   215
williamr@2
   216
		CSIPContactHeader(TBool aIsStar=EFalse);
williamr@2
   217
		void ConstructL();
williamr@2
   218
		void ConstructL(CSIPAddress* aSIPAddress);
williamr@2
   219
		void ConstructL(const CSIPContactHeader& aContactHeader);
williamr@2
   220
williamr@2
   221
	private: // New functions 
williamr@2
   222
williamr@2
   223
		void DoInternalizeValueL(RReadStream& aReadStream);
williamr@2
   224
williamr@2
   225
	private: // Data
williamr@2
   226
williamr@2
   227
		CSIPAddress* iSIPAddress;
williamr@2
   228
		CSIPContactHeaderParams* iParams;
williamr@2
   229
		TBool iIsStar;
williamr@2
   230
williamr@2
   231
	private: // For testing purposes
williamr@4
   232
#ifdef CPPUNIT_TEST	
williamr@4
   233
		friend class CSIPContactHeaderTest;
williamr@4
   234
#endif
williamr@2
   235
	};
williamr@2
   236
williamr@2
   237
#endif // CSIPCONTACTHEADER_H
williamr@2
   238
williamr@2
   239
// End of File