commsconfig/cscengine/src/cscengecommonitor.cpp
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:29:57 +0100
branchRCL_3
changeset 22 d38647835c2e
parent 0 a4daefaec16c
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* Copyright (c) 2007-2009 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:  For monitoring ecom events.
*
*/

#include "cscenglogger.h"
#include "cscengecommonitor.h"
#include "mcscengecomobserver.h"

// ======== MEMBER FUNCTIONS ========

// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
//
CCSCEngEcomMonitor::CCSCEngEcomMonitor( MCSCEngEcomObserver& aObserver ) 
    : CActive( EPriorityStandard ),
    iObserver( aObserver )
    {    
    }


// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
//
void CCSCEngEcomMonitor::ConstructL()
    {
    CSCENGDEBUG( "CCSCEngEcomMonitor::ConstructL - begin" ); 
    
    // Open ECom session and start monitoring count of implementations.
    CActiveScheduler::Add( this );
    iEcomSession = REComSession::OpenL();
    StartMonitoring();
    
    CSCENGDEBUG( "CCSCEngEcomMonitor::ConstructL - end" ); 
    }   
    
    
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
//
CCSCEngEcomMonitor* CCSCEngEcomMonitor::NewL( MCSCEngEcomObserver& aObserver )
    {    
    CCSCEngEcomMonitor* self = new ( ELeave ) CCSCEngEcomMonitor( aObserver );
    CleanupStack::PushL( self );
    self->ConstructL();
    CleanupStack::Pop( self );
    return self;
    }


// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
//
CCSCEngEcomMonitor::~CCSCEngEcomMonitor()
    {
    CSCENGDEBUG( "CCSCEngEcomMonitor::~CCSCEngEcomMonitor - begin" ); 

    Cancel();
    iEcomSession.Close();
    
    CSCENGDEBUG( "CCSCEngEcomMonitor::~CCSCEngEcomMonitor - end" ); 
    }


// ---------------------------------------------------------------------------
// From CActive
// CCSCEngEcomMonitor::RunL
// ---------------------------------------------------------------------------
//
void CCSCEngEcomMonitor::RunL()
    {
    CSCENGDEBUG( "CCSCEngEcomMonitor::RunL - begin" );
    
    iObserver.NotifyEcomEvent();
            
    // Start monitoring changed in ECom session again.    
    StartMonitoring();
    
    CSCENGDEBUG( "CCSCEngEcomMonitor::RunL - end" );
    }
    
    
// ---------------------------------------------------------------------------
// From CActive
// CCSCEngEcomMonitor::DoCancel
// ---------------------------------------------------------------------------
//
void CCSCEngEcomMonitor::DoCancel()
    {
    // Cancel ECom session notification service.
    iEcomSession.CancelNotifyOnChange( iStatus );
    }    


// ---------------------------------------------------------------------------
// CCSCEngEcomMonitor::StartMonitoring
// Starts monitoring about ECom notifications.
// ---------------------------------------------------------------------------
//
void CCSCEngEcomMonitor::StartMonitoring()
    {
    // Attach to ECom session notification service.
    if ( !IsActive() )
        {
        iEcomSession.NotifyOnChange( iStatus );
        SetActive();
        }
    }
    
// ---------------------------------------------------------------------------
// CCSCEngEcomMonitor::ResetAndDestroy
// Frees memory allocated by array in case of leave.
// ---------------------------------------------------------------------------
//
void CCSCEngEcomMonitor::ResetAndDestroy( TAny* aArray )
    {
    CSCENGDEBUG( "CCSCEngEcomMonitor::ResetAndDestroy" );	
    if ( aArray )
        {
        RImplInfoPtrArray* array = 
            reinterpret_cast<RImplInfoPtrArray*>( aArray );
        array->ResetAndDestroy();
        }
    }