mmshplugins/mmshaoplugin/inc/muscallconferenceeventmonitor.h
changeset 22 496ad160a278
parent 0 f0cf47e981f9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mmshplugins/mmshaoplugin/inc/muscallconferenceeventmonitor.h	Fri Jun 11 13:36:18 2010 +0300
@@ -0,0 +1,131 @@
+/*
+* Copyright (c) 2005-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:  Monitor the status of the call.
+*
+*/
+
+
+
+#ifndef MUSCALLCONFERENCEEVENTMONITOR_H
+#define MUSCALLCONFERENCEEVENTMONITOR_H
+
+#include "musunittesting.h"
+#include "mussesseioninformationapi.h"
+#include <etelmm.h>
+#include <e32base.h>
+
+#include "muscallmonitor.h"
+
+/**
+ * Monitors the event of call and set the state to property. 
+ *
+ * @lib musaoplugin.dll
+ */
+class CMusCallConferenceEventMonitor : public CActive
+    {
+
+    public: 
+        /**
+         * Two-phased constructor. Leaves on failure.
+         * aCall is not owned.
+         * @return CMusCallConferenceEventMonitor object.
+         */
+        static CMusCallConferenceEventMonitor* NewL(
+                               RMobilePhone& aPhone, RMobileLine& aLine,
+                               RPointerArray<CMusCallMonitor>& aCallMonitorArray);
+                                
+        /**
+         * Destructor.
+         */
+        ~CMusCallConferenceEventMonitor();             
+
+    private:
+
+        /**
+         * C++ constructor.
+         */
+        CMusCallConferenceEventMonitor(
+                             RMobileLine& aLine,
+                             RPointerArray<CMusCallMonitor>& aCallMonitorArray );
+
+        /**
+         * Symbian 2nd-phase constructor.
+         */
+        void ConstructL(RMobilePhone& aPhone);       
+
+        /**
+          * Sets the multimediasharing propery key value
+          * if the value is same before then dont report it.
+          */
+        void SetStateL(NMusSessionInformationApi::TMusCallEvent aVal);
+
+        /**
+          * Add / Remove Call Monitors based on Mus criteria          
+          */
+        void MonitorCallL();
+
+    private:
+
+        /**
+         * Handles an active object's request completion event.
+         */
+        void RunL();
+        
+        /**
+         * cancels of an outstanding request
+         */        
+        void DoCancel();
+
+         /*
+         * Handles a leave occurring in the request completion 
+         * event handler RunL().
+         * Always return KErrNone since it must handle this error
+         * if it comes to this place.
+         */
+        TInt RunError( TInt aError );
+
+
+    private: 
+
+        /**
+         * Reference of RMobileLine.Not Owned.
+         */
+        
+        RMobileLine& iLine;
+       
+        /**
+         * Reference of RMobileConferenceCall.
+         */
+        RMobileConferenceCall iConfCall;
+
+        /**
+         * Conference Event.
+         */
+        RMobileConferenceCall::TMobileConferenceEvent iConfEvent;
+
+         /**
+         * Array of Call Monitors.Not Owned
+         */
+        RPointerArray<CMusCallMonitor>& iCallMonitorArray;  
+
+        /**
+         * Name of the call affected by this event
+         */
+        TName iCallName;      
+      
+        MUS_UNITTEST( UT_CMusCallConferenceEventMonitor )        
+        
+    };
+
+#endif // MUSCALLCONFERENCEEVENTMONITOR_H