phoneapp/phonemediatorcenter/src/cphonemediatormessagefactory.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 14 Sep 2010 21:18:17 +0300
branchRCL_3
changeset 69 8baf28733c3d
parent 62 5266b1f337bd
permissions -rw-r--r--
Revision: 201033 Kit: 201035

/*
* Copyright (c) 2008 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 of CPhoneMediatorMessageFactory class.
*
*/


// INCLUDE FILES
#include "pevirtualengine.h"
#include "phoneui.pan"
#include "cphonemediatormessagefactory.h"
#include "cphonedataportmessage.h"
#include "phonelogger.h"

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

// ---------------------------------------------------------
// CPhoneMediatorMessageFactory::CPhoneMediatorMessageFactory
// ---------------------------------------------------------
//
CPhoneMediatorMessageFactory::CPhoneMediatorMessageFactory( MPEEngineInfo& aEngineInfo ) : 
	iEngineInfo( aEngineInfo )
    {
    }

// ---------------------------------------------------------
// CPhoneMediatorMessageFactory::ConstructL
// ---------------------------------------------------------
//
void CPhoneMediatorMessageFactory::ConstructL()
    {
    }

// ---------------------------------------------------------
// CPhoneMediatorMessageFactory::NewL
// ---------------------------------------------------------
//
CPhoneMediatorMessageFactory* CPhoneMediatorMessageFactory::NewL( MPEEngineInfo& aEngineInfo )
    {
    CPhoneMediatorMessageFactory* self = new( ELeave ) CPhoneMediatorMessageFactory( aEngineInfo );
    
    CleanupStack::PushL( self );
    self->ConstructL();
    CleanupStack::Pop( self );

    return self;
    }
    
// ---------------------------------------------------------
// CPhoneMediatorMessageFactory::~CPhoneMediatorMessageFactory
// ---------------------------------------------------------
//
CPhoneMediatorMessageFactory::~CPhoneMediatorMessageFactory()
    {
    }

// ---------------------------------------------------------
// CPhoneMediatorMessageFactory::CreateMessageL
// ---------------------------------------------------------
//
MPhoneMediatorMessage* CPhoneMediatorMessageFactory::CreateMessageL( 
	const TInt aMessage, TInt aCallId )
	{
    __LOGMETHODSTARTEND( EPhoneMediatorCenter, "CPhoneMediatorMessageFactory::CreateMessageL( ) ");
    __PHONELOG2( EBasic, EPhoneMediatorCenter, 
    	"CPhoneMediatorMessageFactory::CreateMessageL - aMessage=%d, aCallId=%d", aMessage, aCallId );

	MPhoneMediatorMessage* message = NULL;

	switch( aMessage )
		{
		case MEngineMonitor::EPEMessageDataPortLoaned:
			message = CPhoneDataPortMessage::NewL( iEngineInfo );
			break;
			
		default:
			break;
		}
			
	return message;
	}

//  End of File