os/ossrv/genericservices/httputils/Authentication/cauthentication.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericservices/httputils/Authentication/cauthentication.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,185 @@
     1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// authentication.cpp
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include <e32base.h>
    1.22 +
    1.23 +#include "cauthentication.h"
    1.24 +
    1.25 +
    1.26 +/**
    1.27 +	Creates a new instance of CAuthentication.
    1.28 +
    1.29 +	@param aName The new user name. A local copy of descriptor is created. Can be a null descriptor.
    1.30 +	@param aPassword The new password. A local copy of descriptor is created. Can be a null descriptor.
    1.31 +	@param aMethod the method type of either basic or digest. Defaults to digest.
    1.32 +	@return A pointer to the newly created CAuthentication object.
    1.33 +	@leave KErrNoMemory
    1.34 + */
    1.35 +EXPORT_C CAuthentication* CAuthentication::NewL(const TDesC8& aName, const TDesC8& aPassword, TMethod aMethod)
    1.36 +	{
    1.37 +	CAuthentication* me = new (ELeave) CAuthentication(aMethod);
    1.38 +	CleanupStack::PushL(me);
    1.39 +	me->ConstructL(aName, aPassword);
    1.40 +	CleanupStack::Pop(me);
    1.41 +	return me;
    1.42 +	}
    1.43 +
    1.44 +/**
    1.45 +	Creates a new instance of CAuthentication.
    1.46 +
    1.47 +	@param aUri The URI with a userinfo component.
    1.48 +	@param aMethod the method type of either basic or digest. Defaults to digest.
    1.49 +	@return A pointer to the newly created CAuthentication object.
    1.50 +	@leave KErrNotFound If there is no userinfo component.
    1.51 +	@leave KErrNoMemory
    1.52 +*/
    1.53 +EXPORT_C CAuthentication* CAuthentication::NewL(const TUriC8& aUri, TMethod aMethod)
    1.54 +	{
    1.55 +	CAuthentication* me = new (ELeave) CAuthentication(aMethod);
    1.56 +	CleanupStack::PushL(me);
    1.57 +	me->ConstructL(aUri);
    1.58 +	CleanupStack::Pop(me);
    1.59 +	return me;
    1.60 +	}
    1.61 +
    1.62 +/**
    1.63 +	Constructor.
    1.64 +	@param aMethod enum value of type TMethod.
    1.65 + */
    1.66 +CAuthentication::CAuthentication(TMethod aMethod):iMethodType(aMethod)
    1.67 +	{
    1.68 +	}
    1.69 +
    1.70 +/**
    1.71 +	Second phase of two-phase construction method. Does any allocations required to fully construct 
    1.72 +	the object.
    1.73 +	
    1.74 +	@param			aName A descriptor to be allocated initialised with.
    1.75 +	@param			aPassword A descriptor to be allocated initialised with.
    1.76 +	@pre 			First phase of construction is complete.
    1.77 +	@post			The object is fully constructed and initialized.
    1.78 + */
    1.79 +void CAuthentication::ConstructL(const TDesC8& aName, const TDesC8& aPassword)
    1.80 +	{
    1.81 +	iName = aName.AllocL();
    1.82 +	iPassword = aPassword.AllocL();
    1.83 +	}
    1.84 +
    1.85 +/**
    1.86 +	Second phase of two-phase construction method. Does any allocations required to fully construct 
    1.87 +	the object. Must set both user name and password to at least an empty string.
    1.88 +	
    1.89 +	@param			aUri The URI with a userinfo component.
    1.90 +	@pre 			First phase of construction is complete.
    1.91 +	@post			The object is fully constructed and initialized.
    1.92 + */
    1.93 +void CAuthentication::ConstructL(const TUriC8& aUri)
    1.94 +	{
    1.95 +	// Check if user info component present.
    1.96 +	if(!aUri.IsPresent(EUriUserinfo))
    1.97 +		{
    1.98 +		User::Leave(KErrNotFound);
    1.99 +		}
   1.100 +	// Set name and pwd. Note that these could be empty strings.
   1.101 +	TPtrC8 userInfo(aUri.Extract(EUriUserinfo));
   1.102 +	TInt colPos = userInfo.Locate(':');
   1.103 +	if(KErrNotFound == colPos) // 'name@' or '@' case
   1.104 +		{
   1.105 +		iName = userInfo.AllocL();
   1.106 +		iPassword = KNullDesC8().AllocL();
   1.107 +		}	
   1.108 +	else // ':' found
   1.109 +		{
   1.110 +		iName = userInfo.Left(colPos).AllocL();
   1.111 +		iPassword = userInfo.Right(userInfo.Length()-colPos-1).AllocL();						
   1.112 +		}
   1.113 +	}
   1.114 +
   1.115 +/**
   1.116 +	Destructor
   1.117 + */
   1.118 +EXPORT_C CAuthentication::~CAuthentication()
   1.119 +	{
   1.120 +	delete iName;
   1.121 +	delete iPassword;
   1.122 +	}
   1.123 +
   1.124 +/**
   1.125 +	Gets the user name.
   1.126 +
   1.127 +	@return Reference to the user name descriptor.
   1.128 + */
   1.129 +EXPORT_C const TDesC8& CAuthentication::Name() const
   1.130 +	{
   1.131 +	return *iName;
   1.132 +	}
   1.133 +
   1.134 +/**
   1.135 +	Gets the password.
   1.136 +
   1.137 +	@return Reference to the password descriptor.
   1.138 + */
   1.139 +EXPORT_C const TDesC8& CAuthentication::Password() const
   1.140 +	{
   1.141 +	return *iPassword;
   1.142 +	}
   1.143 +
   1.144 +/**
   1.145 +	Gets the method type.
   1.146 +
   1.147 +	@return The authentication method type.
   1.148 + */
   1.149 +EXPORT_C CAuthentication::TMethod CAuthentication::Method() const
   1.150 +	{
   1.151 +	return iMethodType;
   1.152 +	}
   1.153 +
   1.154 +/**
   1.155 +	Sets the username.
   1.156 +
   1.157 +	@param aName Reference to the new username descriptor.
   1.158 +	@leave KErrNoMemory
   1.159 + */
   1.160 +EXPORT_C void CAuthentication::SetNameL(const TDesC8& aName)
   1.161 +	{
   1.162 +	HBufC8* temp = iName;
   1.163 +	iName = aName.AllocL();
   1.164 +	delete temp;
   1.165 +	}
   1.166 +
   1.167 +/**
   1.168 +	Sets the password.
   1.169 +
   1.170 +	@param aPassword Reference to the new password descriptor.
   1.171 +	@leave KErrNoMemory
   1.172 + */
   1.173 +EXPORT_C void CAuthentication::SetPasswordL(const TDesC8& aPassword)
   1.174 +	{
   1.175 +	HBufC8* temp = iPassword;
   1.176 +	iPassword = aPassword.AllocL();
   1.177 +	delete temp;
   1.178 +	}
   1.179 +
   1.180 +/**
   1.181 +	Sets the method type.
   1.182 +
   1.183 +	@param aMethod The new authentication method type.
   1.184 + */
   1.185 +EXPORT_C void CAuthentication::SetMethod(TMethod aMethod)
   1.186 +	{
   1.187 +	iMethodType = aMethod;
   1.188 +	}