telephonyprotocols/pdplayer/umts/spudtel/src/cqoschangenotifier.cpp
author hgs
Tue, 22 Jun 2010 11:02:32 +0100
changeset 44 8b72faa1200f
parent 0 3553901f7fa8
child 66 07a122eea281
child 69 b982c3e940f3
permissions -rw-r--r--
201024_02

// Copyright (c) 2004-2010 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:
// QoS change notifier implementation
// 
//

/**
 @file 
 @internalComponent
*/



#include "OstTraceDefinitions.h"
#ifdef OST_TRACE_COMPILER_IN_USE
#include "cqoschangenotifierTraces.h"
#endif

#include "cqoschangenotifier.h"
#include <pcktcs.h>


/** c'tor 

@param aId - pdp context id
@param aPacketQoS - etel packet QoS 
@param aPdpFsmInterface - pdp fsm interface
*/
CQoSChangeNotifier::CQoSChangeNotifier(TContextId aId, 
									RPacketQoS& aPacketQoS, 
									CPdpFsmInterface& aPdpFsmInterface)
: CEtelDriverNotifier(aPdpFsmInterface),
  iId(aId),
  iPacketQoS(aPacketQoS),
  iProfilePckg(iProfileBuffer)
  
	{
	OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CQOSCHANGENOTIFIER_CTOR_1, "CQoSChangeNotifier::CQoSChangeNotifier()");
	}
	
CQoSChangeNotifier::~CQoSChangeNotifier()
	{
	OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CQOSCHANGENOTIFIER_DTOR_1, "CQoSChangeNotifier::~CQoSChangeNotifier()");
	Cancel();
	}
	
/** starts notification */
void CQoSChangeNotifier::Start()
	{
	OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CQOSCHANGENOTIFIER_START_1, "CQoSChangeNotifier::Start()");
	if (!IsActive())
		{ 
		iPacketQoS.NotifyProfileChanged(iStatus, iProfilePckg); 
		SetActive();
		OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CQOSCHANGENOTIFIER_START_2, "CQoSChangeNotifier::Start(), iPacketQoS.NotifyProfileChanged()");
		}
	}
	
/** stops notification */	
void CQoSChangeNotifier::DoCancel()
	{
	if (IsActive())
		{ 
		OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CQOSCHANGENOTIFIER_DOCANCEL_1, "CQoSChangeNotifier::DoCancel EPacketQoSNotifyProfileChanged");
		iPacketQoS.CancelAsyncRequest(EPacketQoSNotifyProfileChanged);
		}
	}

/** notifies pdp fsm 

@param aStatus - request status
*/
void CQoSChangeNotifier::Notify(const TRequestStatus& aStatus)
	{
	if(aStatus == KErrNone)
		{
		OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CQOSCHANGENOTIFIER_NOTIFY_1, "FSM set QoSProfile");

#ifdef SYMBIAN_NETWORKING_UMTSR5
        iPdpFsmInterface.Set(iId, iProfileBuffer.NegotiatedQoSR5());

#else
// !SYMBIAN_NETWORKING_UMTSR5

        iPdpFsmInterface.Set(iId, iProfileBuffer.NegotiatedQoSR99_R4());
#endif
// SYMBIAN_NETWORKING_UMTSR5

		OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CQOSCHANGENOTIFIER_NOTIFY_2, "FSM input EQoSProfileChangeNetwork");
		iPdpFsmInterface.Input(iId, PdpFsm::EQoSProfileChangeNetwork);
		}
	else
		{ 
		OstTraceDef1(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CQOSCHANGENOTIFIER_NOTIFY_3, "CQoSChangeNotifier::Notify(), error: %d", aStatus.Int());
		ASSERT(aStatus == KErrCancel); 
		}
	}