telephonyprotocols/pdplayer/src/pdptiermanager.cpp
changeset 73 70d75957b98f
parent 69 b982c3e940f3
--- a/telephonyprotocols/pdplayer/src/pdptiermanager.cpp	Tue Sep 14 17:55:14 2010 +0100
+++ b/telephonyprotocols/pdplayer/src/pdptiermanager.cpp	Thu Sep 23 14:44:40 2010 +0100
@@ -75,6 +75,7 @@
 	:CCoreTierManager(aFactory,aActivityMap)
 	{
 	LOG_NODE_CREATE(KPDPTierMgrTag, CPDPTierManager);
+	OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CPDPTIERMANAGER_CONSTRUCTOR_1, "Constructor");
 	}
 
 /**
@@ -83,7 +84,7 @@
 CPDPTierManager::~CPDPTierManager()
 	{
 	LOG_NODE_DESTROY(KPDPTierMgrTag, CPDPTierManager);
-
+	OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CPDPTIERMANAGER_DESTRUCTOR_1, "Destructor");
 #ifdef SYMBIAN_NETWORKING_CONTENTION_MANAGEMENT
 	delete iPdpContentionManager;
 	iPdpContentionManager = NULL;
@@ -124,8 +125,8 @@
 */
 void CPDPTierManager::PacketServiceAttachedCallbackL()
 	{
-    
 #ifdef SYMBIAN_NETWORKING_CONTENTION_MANAGEMENT
+	OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CPDPTIERMANAGER_PACKETSERVICEATTACHEDCALLBACKL_1, "Starting PDP Contention Manager");
 	if (!iPdpContentionManager)
 		{
 		iPdpContentionManager = CPdpContentionManager::NewL(*this, iMBMSEngine->GetRPacketService());
@@ -142,9 +143,11 @@
 */
 void CPDPTierManager::ReceivedL(const TRuntimeCtxId& aSender, const TNodeId& aRecipient, TSignatureBase& aMessage)
 	{
+    OstTraceDefExt2(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CPDPTIERMANAGER_RECEIVEDL_1, "Realm Id [%u] Message Id [%u]", aMessage.MessageId().Realm(), aMessage.MessageId().MessageId());
 	//TODO I think that the generic TCancel handling will do this - so perhaps remove this and CancelAndRemoveFromRequestList!
 	if (aMessage.IsMessage<TEBase::TCancel>())
 		{
+        OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CPDPTIERMANAGER_RECEIVEDL_2, "Received Message Type: TEBase::TCancel");
 		TRAPD(err, iMBMSEngine->CancelAndRemoveFromRequestListL(aSender));
 		if (err == KErrNone)
 			{
@@ -161,6 +164,7 @@
 
 	if (aMessage.IsMessage<TCFTierStatusProvider::TTierNotificationRegistration>())
 		{
+        OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CPDPTIERMANAGER_RECEIVEDL_3, "Received Message Type: TCFTierStatusProvider::TTierNotificationRegistration");
 		TCFTierStatusProvider::TTierNotificationRegistration* msgTNR = message_cast<TCFTierStatusProvider::TTierNotificationRegistration>(&aMessage);
 
 		const Messages::TNodeSignal::TMessageId requestType = TCFTierStatusProvider::TTierNotificationRegistration::Id();
@@ -189,6 +193,7 @@
 
 TBool CPDPTierManager::HandleContentionL(ESock::CMetaConnectionProviderBase* aMcpr, Messages::TNodeId& aPendingCprId, TUint aPriority)
 	{
+    OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, CPDPTIERMANAGER_HANDLECONTENTIONL_1, "Handle Contention Request");
 	User::LeaveIfNull(iMBMSEngine);
 	if (!iPdpContentionManager)
 		{