ximpfw/presence/srcpresenceoperations/presentitygroups/operationaddpresentitygroupmember.cpp
changeset 0 e6b17d312c8b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ximpfw/presence/srcpresenceoperations/presentitygroups/operationaddpresentitygroupmember.cpp	Thu Dec 17 08:54:49 2009 +0200
@@ -0,0 +1,152 @@
+/*
+* Copyright (c) 2006 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:  Add Presentity Group Member operation
+ *
+*/
+
+#include <s32mem.h>
+#include <ximpprotocolconnection.h>
+#include <protocolpresentitygroups.h>
+#include <protocolpresencefeatures.h>
+
+#include "operationaddpresentitygroupmember.h"
+#include "presentitygroupmemberinfoimp.h"
+#include "ximpidentityimp.h"
+#include "ximprbufhelpers.h"
+#include "ximprestrictedobjectcollectionimp.h"
+#include "protocolpresentitygroupsdatahostimp.h"
+#include "ximphost.h"
+#include "ximpstatusimp.h"
+#include "ximprequestcompleteeventimp.h"
+#include "ximpobjecthelpers.h"
+#include "protocolpresencedatahostimp.h"
+
+#include "ximptrace.h"
+
+// ======== MEMBER FUNCTIONS ========
+
+// ---------------------------------------------------------------------------
+// COperationAddPresentityGroupMember::COperationAddPresentityGroupMember()
+// ---------------------------------------------------------------------------
+//
+EXPORT_C COperationAddPresentityGroupMember::COperationAddPresentityGroupMember()
+    {
+    }
+
+
+// ---------------------------------------------------------------------------
+// COperationAddPresentityGroupMember::ConstructL
+// ---------------------------------------------------------------------------
+//
+void COperationAddPresentityGroupMember::ConstructL( const TDesC8& aParamPck )
+    {
+    RDesReadStream rs;
+    rs.Open( aParamPck ); // CSI: 65 # Does not return a value.
+    CleanupClosePushL( rs );
+
+    // group id
+    iGroupId = CXIMPIdentityImp::NewLC();
+    CleanupStack::Pop( iGroupId );
+    iGroupId->InternalizeL( rs );
+
+    // member id
+    CXIMPIdentityImp* memberId = CXIMPIdentityImp::NewLC();
+    memberId->InternalizeL( rs );
+
+    // member display name
+    RBuf16 dispName;
+    CleanupClosePushL( dispName );
+    XIMPRBuf16Helper::InternalizeL( dispName, rs );
+
+    iMemberInfo = CPresentityGroupMemberInfoImp::NewLC( *memberId, dispName );
+    CleanupStack::Pop( iMemberInfo );
+    CleanupStack::PopAndDestroy( 3 ); // dispName, memberId, rs
+    }
+
+// ---------------------------------------------------------------------------
+// COperationAddPresentityGroupMember::~COperationAddPresentityGroupMember()
+// ---------------------------------------------------------------------------
+//
+COperationAddPresentityGroupMember::~COperationAddPresentityGroupMember()
+    {
+    delete iGroupId;
+    delete iMemberInfo;
+    }
+
+// ---------------------------------------------------------------------------
+// COperationAddPresentityGroupMember::ProcessL()
+// ---------------------------------------------------------------------------
+//
+void COperationAddPresentityGroupMember::ProcessL()
+    {
+    TRACE(_L("COperationAddPresentityGroupMember::ProcessL()" ) );
+    CXIMPOperationBase::ProcessL();
+
+    MProtocolPresentityGroups& connection = iMyHost->GetConnection().ProtocolPresenceFeatures().PresentityGroups();
+
+    connection.DoAddPresentityGroupMemberL( *iGroupId,
+                                            iMemberInfo->GroupMemberId(),
+                                            iMemberInfo->GroupMemberDisplayName(),
+                                            iReqId );
+    }
+
+// ---------------------------------------------------------------------------
+// COperationAddPresentityGroupMember::RequestCompletedL()
+// ---------------------------------------------------------------------------
+//
+void COperationAddPresentityGroupMember::RequestCompletedL()
+    {
+    TRACE(_L("COperationAddPresentityGroupMember::RequestCompletedL()" ) );
+    CXIMPOperationBase::RequestCompletedL();
+
+    MXIMPBase* object = NULL;
+    iObjCollection->GetByType( object, MPresentityGroupMemberInfo::KInterfaceId );
+    if( object )
+        {
+        CPresentityGroupMemberInfoImp* memberInfo = 
+        TXIMPGetImpClassOrPanic< CPresentityGroupMemberInfoImp >::From( *object );            
+        
+        delete iMemberInfo;
+        iMemberInfo = memberInfo;
+        }
+
+    if ( iStatusObj->ResultCode() == KErrNone )
+        {
+        CXIMPIdentityImp* groupId = 
+                TXIMPObjectCloner< CXIMPIdentityImp >::CloneL( *iGroupId );
+        CleanupStack::PushL( groupId );
+        CPresentityGroupMemberInfoImp* memberInfo = 
+                TXIMPObjectCloner< CPresentityGroupMemberInfoImp >::CloneL( *iMemberInfo );
+        CleanupStack::PushL( memberInfo );
+        iMyHost->PresenceDataAccess().GroupsDataAccess().HandlePresentityGroupMemberAddedL( groupId, memberInfo );
+        CleanupStack::Pop( 2, groupId );
+        }
+
+    // Set information for request complete event.
+    iReqCompleteEvent->AppendParamL( iGroupId );
+    iGroupId = NULL;
+    iReqCompleteEvent->AppendParamL( iMemberInfo );
+    iMemberInfo = NULL;
+    }
+
+// ---------------------------------------------------------------------------
+// COperationAddPresentityGroupMember::Type()
+// ---------------------------------------------------------------------------
+//
+TInt COperationAddPresentityGroupMember::Type() const
+    {
+    return NPresenceOps::EPrAddPresentityGroupMember;
+    }
+
+// End of file