telephonyprotocols/pdplayer/umts/spudfsm/src/tpdpstateclosing.cpp
branchRCL_3
changeset 19 630d2f34d719
parent 0 3553901f7fa8
child 20 07a122eea281
equal deleted inserted replaced
18:17af172ffa5f 19:630d2f34d719
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
    18 /**
    18 /**
    19  @file 
    19  @file 
    20  @internalComponent
    20  @internalComponent
    21 */
    21 */
    22  
    22  
       
    23 
       
    24 
       
    25 #include "OstTraceDefinitions.h"
       
    26 #ifdef OST_TRACE_COMPILER_IN_USE
       
    27 #include "tpdpstateclosingTraces.h"
       
    28 #endif
       
    29 
    23 #include <networking/umtsnifcontrolif.h>
    30 #include <networking/umtsnifcontrolif.h>
    24 #include "tpdpstates.h"
    31 #include "tpdpstates.h"
    25 #include "spudfsmdebuglogger.h"
       
    26 #include "pdpfsmnmspace.h"
    32 #include "pdpfsmnmspace.h"
    27 #include "PDPFSM.h"
    33 #include "PDPFSM.h"
    28 #include "cpdpfsm.h"
    34 #include "cpdpfsm.h"
    29 
    35 
    30 TInt TPdpStateClosing::Input (CPdpFsm& aFsm, const TInt aOperation, const TInt aErrorCode)
    36 TInt TPdpStateClosing::Input (CPdpFsm& aFsm, const TInt aOperation, const TInt aErrorCode)
    31 {
    37 {
    32 	SPUDFSMVERBOSE_FNLOG("TPdpStateClosing::Input()");
    38 	OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECLOSING_INPUT_1, "<<TPdpStateClosing::Input()");
    33 	SPUDFSMVERBOSE_LOG2(_L("aOperation : %S(%d)"), LogOperation(aFsm, aOperation), aOperation);
    39 	OstTraceDefExt2(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECLOSING_INPUT_2, "aOperation : %S(%d)", *(LogOperation(aFsm, aOperation)), aOperation);
    34 
    40 
    35 	switch (aOperation)
    41 	switch (aOperation)
    36 	{
    42 	{
    37 	case PdpFsm::EContextDeleted:
    43 	case PdpFsm::EContextDeleted:
    38 		aFsm.ChangeStateToInitialised();
    44 		aFsm.ChangeStateToInitialised();
    39 		SpudManNotify (aFsm, KContextDeleteEvent, KErrNone);
    45 		SpudManNotify (aFsm, KContextDeleteEvent, KErrNone);
       
    46 		OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECLOSING_INPUT_3, ">>TPdpStateClosing::Input()");
    40 		return KErrNone;			
    47 		return KErrNone;			
    41 	case PdpFsm::EContextDeletedFailed:
    48 	case PdpFsm::EContextDeletedFailed:
    42 		// There isn't any corrective action that can be taken here. 
    49 		// There isn't any corrective action that can be taken here. 
    43 		// It is assumed when this context is used again, there will be a failure 
    50 		// It is assumed when this context is used again, there will be a failure 
    44 		// or a failure elsewhere down the line that will correct the situation, ultimately
    51 		// or a failure elsewhere down the line that will correct the situation, ultimately
    45 		// involving the user. FSM and ETelDriver are not in a position to take any corrective action.
    52 		// involving the user. FSM and ETelDriver are not in a position to take any corrective action.
    46 		SPUDFSMVERBOSE_LOG(_L("**** DELETE FAILURE ****"));
    53 		OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECLOSING_INPUT_4, "**** DELETE FAILURE ****");
    47 		aFsm.ChangeStateToInitialised();
    54 		aFsm.ChangeStateToInitialised();
    48 		SpudManNotify (aFsm, KContextDeleteEvent, aErrorCode);
    55 		SpudManNotify (aFsm, KContextDeleteEvent, aErrorCode);
       
    56 		OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECLOSING_INPUT_5, ">>TPdpStateClosing::Input()");
    49 		return KErrNone;			
    57 		return KErrNone;			
    50 	case SpudMan::EContextDelete:
    58 	case SpudMan::EContextDelete:
    51 		// already doing this and don't want default action
    59 		// already doing this and don't want default action
       
    60 	    OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECLOSING_INPUT_6, ">>TPdpStateClosing::Input()");
    52 		return KErrInUse;
    61 		return KErrInUse;
    53 	}
    62 	}
    54 
    63 
    55 	// default error handling
    64 	// default error handling
       
    65 	OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECLOSING_INPUT_7, ">>TPdpStateClosing::Input()");
    56 	return TPdpState::Input(aFsm, aOperation, aErrorCode);
    66 	return TPdpState::Input(aFsm, aOperation, aErrorCode);
    57 }
    67 }
    58 
    68 
    59 
    69