telephonyprotocols/pdplayer/umts/spudfsm/src/tpdpstatecreatingSecondary.cpp
branchRCL_3
changeset 66 07a122eea281
parent 65 630d2f34d719
equal deleted inserted replaced
65:630d2f34d719 66:07a122eea281
     1 // Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 2004-2009 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 "tpdpstatecreatingSecondaryTraces.h"
       
    28 #endif
       
    29 
       
    30 #include <networking/umtsnifcontrolif.h>
    23 #include <networking/umtsnifcontrolif.h>
    31 #include "tpdpstates.h"
    24 #include "tpdpstates.h"
       
    25 #include "spudfsmdebuglogger.h"
    32 #include "pdpfsmnmspace.h"
    26 #include "pdpfsmnmspace.h"
    33 #include "PDPFSM.h"
    27 #include "PDPFSM.h"
    34 #include "cpdpfsm.h"
    28 #include "cpdpfsm.h"
    35 
    29 
    36 TInt TPdpStateCreatingSecondary::Input (CPdpFsm& aFsm, const TInt aOperation, const TInt aErrorCode)
    30 TInt TPdpStateCreatingSecondary::Input (CPdpFsm& aFsm, const TInt aOperation, const TInt aErrorCode)
    37 {
    31 {
    38 	OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECREATINGSECONDARY_INPUT_1, ">>TPdpStateCreatingSecondary::Input()");
    32 	SPUDFSMVERBOSE_FNLOG("TPdpStateCreatingSecondary::Input()");
    39 	OstTraceDefExt2(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECREATINGSECONDARY_INPUT_2, "aOperation : %S(%d)", *(LogOperation(aFsm, aOperation)), aOperation);
    33 	SPUDFSMVERBOSE_LOG2(_L("aOperation : %S(%d)"), LogOperation(aFsm, aOperation), aOperation);
    40 
    34 
    41 	switch (aOperation)
    35 	switch (aOperation)
    42 	{
    36 	{
    43 	case PdpFsm::E2ryPdpContextCreated:
    37 	case PdpFsm::E2ryPdpContextCreated:
    44 		aFsm.ChangeStateToCreatedSecondary();
    38 		aFsm.ChangeStateToCreatedSecondary();
    45 		SpudManNotify(aFsm, KSecondaryContextCreated, KErrNone);
    39 		SpudManNotify(aFsm, KSecondaryContextCreated, KErrNone);
    46 		OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECREATINGSECONDARY_INPUT_3, "<<TPdpStateCreatingSecondary::Input()");
       
    47 		return KErrNone;
    40 		return KErrNone;
    48 	case PdpFsm::E2ryPdpContextCreatedFailed:
    41 	case PdpFsm::E2ryPdpContextCreatedFailed:
    49 		iErrorCode = aErrorCode;
    42 		iErrorCode = aErrorCode;
    50 		EtelDriverInput(aFsm, EtelDriver::EContextDelete);
    43 		EtelDriverInput(aFsm, EtelDriver::EContextDelete);
    51 		OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECREATINGSECONDARY_INPUT_4, "<<TPdpStateCreatingSecondary::Input()");
       
    52 		return KErrNone;
    44 		return KErrNone;
    53 
    45 
    54 	case PdpFsm::EContextDeletedFailed:
    46 	case PdpFsm::EContextDeletedFailed:
    55 		OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECREATINGSECONDARY_INPUT_5, "**** DELETE FAILURE ****");
    47 		SPUDFSMVERBOSE_LOG(_L("**** DELETE FAILURE ****"));
    56 		// fall through
    48 		// fall through
    57 	case PdpFsm::EContextDeleted:
    49 	case PdpFsm::EContextDeleted:
    58 		aFsm.ChangeStateToInitialised();
    50 		aFsm.ChangeStateToInitialised();
    59 		SpudManNotify(aFsm, KSecondaryContextCreated, iErrorCode);
    51 		SpudManNotify(aFsm, KSecondaryContextCreated, iErrorCode);
    60 		iErrorCode = KErrNone;
    52 		iErrorCode = KErrNone;
    61 		OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECREATINGSECONDARY_INPUT_6, "<<TPdpStateCreatingSecondary::Input()");
       
    62 		return KErrNone;
    53 		return KErrNone;
    63 	}
    54 	}
    64 	
    55 	
    65 	// default error handling
    56 	// default error handling
    66 	OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECREATINGSECONDARY_INPUT_7, "<<TPdpStateCreatingSecondary::Input()");
       
    67 	return TPdpState::Input(aFsm, aOperation, aErrorCode);
    57 	return TPdpState::Input(aFsm, aOperation, aErrorCode);
    68 }
    58 }
    69 
    59