Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 #include "cauthentication.h"
24 Creates a new instance of CAuthentication.
26 @param aName The new user name. A local copy of descriptor is created. Can be a null descriptor.
27 @param aPassword The new password. A local copy of descriptor is created. Can be a null descriptor.
28 @param aMethod the method type of either basic or digest. Defaults to digest.
29 @return A pointer to the newly created CAuthentication object.
32 EXPORT_C CAuthentication* CAuthentication::NewL(const TDesC8& aName, const TDesC8& aPassword, TMethod aMethod)
34 CAuthentication* me = new (ELeave) CAuthentication(aMethod);
35 CleanupStack::PushL(me);
36 me->ConstructL(aName, aPassword);
37 CleanupStack::Pop(me);
42 Creates a new instance of CAuthentication.
44 @param aUri The URI with a userinfo component.
45 @param aMethod the method type of either basic or digest. Defaults to digest.
46 @return A pointer to the newly created CAuthentication object.
47 @leave KErrNotFound If there is no userinfo component.
50 EXPORT_C CAuthentication* CAuthentication::NewL(const TUriC8& aUri, TMethod aMethod)
52 CAuthentication* me = new (ELeave) CAuthentication(aMethod);
53 CleanupStack::PushL(me);
55 CleanupStack::Pop(me);
61 @param aMethod enum value of type TMethod.
63 CAuthentication::CAuthentication(TMethod aMethod):iMethodType(aMethod)
68 Second phase of two-phase construction method. Does any allocations required to fully construct
71 @param aName A descriptor to be allocated initialised with.
72 @param aPassword A descriptor to be allocated initialised with.
73 @pre First phase of construction is complete.
74 @post The object is fully constructed and initialized.
76 void CAuthentication::ConstructL(const TDesC8& aName, const TDesC8& aPassword)
78 iName = aName.AllocL();
79 iPassword = aPassword.AllocL();
83 Second phase of two-phase construction method. Does any allocations required to fully construct
84 the object. Must set both user name and password to at least an empty string.
86 @param aUri The URI with a userinfo component.
87 @pre First phase of construction is complete.
88 @post The object is fully constructed and initialized.
90 void CAuthentication::ConstructL(const TUriC8& aUri)
92 // Check if user info component present.
93 if(!aUri.IsPresent(EUriUserinfo))
95 User::Leave(KErrNotFound);
97 // Set name and pwd. Note that these could be empty strings.
98 TPtrC8 userInfo(aUri.Extract(EUriUserinfo));
99 TInt colPos = userInfo.Locate(':');
100 if(KErrNotFound == colPos) // 'name@' or '@' case
102 iName = userInfo.AllocL();
103 iPassword = KNullDesC8().AllocL();
107 iName = userInfo.Left(colPos).AllocL();
108 iPassword = userInfo.Right(userInfo.Length()-colPos-1).AllocL();
115 EXPORT_C CAuthentication::~CAuthentication()
124 @return Reference to the user name descriptor.
126 EXPORT_C const TDesC8& CAuthentication::Name() const
134 @return Reference to the password descriptor.
136 EXPORT_C const TDesC8& CAuthentication::Password() const
142 Gets the method type.
144 @return The authentication method type.
146 EXPORT_C CAuthentication::TMethod CAuthentication::Method() const
154 @param aName Reference to the new username descriptor.
157 EXPORT_C void CAuthentication::SetNameL(const TDesC8& aName)
159 HBufC8* temp = iName;
160 iName = aName.AllocL();
167 @param aPassword Reference to the new password descriptor.
170 EXPORT_C void CAuthentication::SetPasswordL(const TDesC8& aPassword)
172 HBufC8* temp = iPassword;
173 iPassword = aPassword.AllocL();
178 Sets the method type.
180 @param aMethod The new authentication method type.
182 EXPORT_C void CAuthentication::SetMethod(TMethod aMethod)
184 iMethodType = aMethod;