multimediacommsengine/tsrc/testdriver/siptester/src/TCmdRemoveUserFromClientResolverCenRep.cpp
changeset 0 1bce908db942
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/multimediacommsengine/tsrc/testdriver/siptester/src/TCmdRemoveUserFromClientResolverCenRep.cpp	Tue Feb 02 01:04:58 2010 +0200
@@ -0,0 +1,91 @@
+/*
+* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  Implementation
+*
+*/
+
+#include <centralrepository.h>
+#include "TCmdRemoveUserFromClientResolverCenRep.h"
+#include "SIPConstants.h"
+#include "CTcSIPContext.h"
+#include "sipclientresolverconfigcrkeys.h"
+
+/**
+ * INPUT:
+ *   Headers:		-
+ *   Parameters:	ApplicationUid, ClientMatchType
+ *   IDs:			-
+ *
+ * OUTPUT:
+ *   Parameters:	-
+ *   IDs:			-
+ */
+void TCmdRemoveUserFromClientResolverCenRep::ExecuteL()
+	{
+	HBufC8* userNameBuf = ExtractHBufLC( KParamClientUserName );
+	TUid pluginUid = ExtractUidL( KParamPluginUid, ETrue );
+	TUid clientUid = ExtractUidL( KParamApplicationUid, ETrue );
+	
+	RArray<TUint32> keys;
+    CleanupClosePushL(keys);
+    TInt err = iContext.Repository().FindEqL(KSIPClientResolverUserNameMask,
+                                KSIPClientResolverFieldTypeMask,
+                                *userNameBuf,
+                                keys);
+
+	for (TInt i=0; !err && i < keys.Count(); i++)
+        {
+        TUint32 key = (KSIPClientResolverUserNameMask^(keys[i]));       
+        // Read the related plug-in UID
+        TUint32 uidKey = KSIPClientResolverPluginUIDMask|key;
+        TInt uidValue(0);
+        User::LeaveIfError(iContext.Repository().Get(uidKey,uidValue));
+        TUid uid;
+        uid.iUid = uidValue;
+        // Read the related client UID
+        TUint32 clientUidKey = KSIPClientResolverClientUIDMask|key;
+        TInt clientUidValue(0);
+        User::LeaveIfError(iContext.Repository().Get(clientUidKey,clientUidValue));
+        TUid cuid;
+        cuid.iUid = clientUidValue;
+        
+        if ( pluginUid == uid && clientUid == cuid )
+        	{
+        	iContext.Repository().Delete( clientUidKey );
+        	iContext.Repository().Delete( uidKey );
+        	iContext.Repository().Delete( KSIPClientResolverUserNameMask|key );
+        	}
+        }
+    CleanupStack::PopAndDestroy(&keys);
+    CleanupStack::PopAndDestroy( userNameBuf );
+	}
+
+// -----------------------------------------------------------------------------
+// TCmdRemoveUserFromClientResolverCenRep::Match
+// -----------------------------------------------------------------------------
+//	
+TBool TCmdRemoveUserFromClientResolverCenRep::Match( const TTcIdentifier& aId )
+	{
+	return TTcSIPCommandBase::Match( aId, _L8("RemoveUserFromClientResolverCenRep") );
+	}
+
+// -----------------------------------------------------------------------------
+// TCmdRemoveUserFromClientResolverCenRep::CreateL
+// -----------------------------------------------------------------------------
+//	
+TTcCommandBase* TCmdRemoveUserFromClientResolverCenRep::CreateL( MTcTestContext& aContext )
+	{
+	return new( ELeave ) TCmdRemoveUserFromClientResolverCenRep( aContext );
+	}
+