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 "tpdpstatechangingqosTraces.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 "cpdpfsm.h" |
33 #include "cpdpfsm.h" |
28 |
34 |
29 TInt TPdpStateChangingQoS::Input (CPdpFsm& aFsm, const TInt aOperation, const TInt aErrorCode) |
35 TInt TPdpStateChangingQoS::Input (CPdpFsm& aFsm, const TInt aOperation, const TInt aErrorCode) |
30 { |
36 { |
31 SPUDFSMVERBOSE_FNLOG("TPdpStateChangingQoS::Input()"); |
37 OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECHANGINGQOS_INPUT_1, ">>TPdpStateChangingQoS::Input()"); |
32 SPUDFSMVERBOSE_LOG2(_L("aOperation : %S(%d)"), LogOperation(aFsm, aOperation), aOperation); |
38 OstTraceDefExt2(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECHANGINGQOS_INPUT_2, "aOperation : %S(%d)", *(LogOperation(aFsm, aOperation)), aOperation); |
33 |
39 |
34 switch (aOperation) |
40 switch (aOperation) |
35 { |
41 { |
36 case PdpFsm::EQoSSet: |
42 case PdpFsm::EQoSSet: |
37 aFsm.ChangeStateToOpen(); |
43 aFsm.ChangeStateToOpen(); |
38 SpudManNotify (aFsm, KContextQoSSetEvent, KErrNone); |
44 SpudManNotify (aFsm, KContextQoSSetEvent, KErrNone); |
|
45 OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECHANGINGQOS_INPUT_3, "<<TPdpStateChangingQoS::Input()"); |
39 return KErrNone; |
46 return KErrNone; |
40 case PdpFsm::EQoSSetFailed: |
47 case PdpFsm::EQoSSetFailed: |
41 aFsm.ChangeStateToOpen(); |
48 aFsm.ChangeStateToOpen(); |
42 SpudManNotify (aFsm, KContextQoSSetEvent, aErrorCode); |
49 SpudManNotify (aFsm, KContextQoSSetEvent, aErrorCode); |
|
50 OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECHANGINGQOS_INPUT_4, "<<TPdpStateChangingQoS::Input()"); |
43 return KErrNone; |
51 return KErrNone; |
44 |
52 |
45 // no default |
53 // no default |
46 } |
54 } |
47 |
55 |
48 // default error handling |
56 // default error handling |
|
57 OstTraceDef0(OST_TRACE_CATEGORY_DEBUG, TRACE_INTERNALS, TPDPSTATECHANGINGQOS_INPUT_5, "<<TPdpStateChangingQoS::Input()"); |
49 return TPdpState::Input(aFsm, aOperation, aErrorCode); |
58 return TPdpState::Input(aFsm, aOperation, aErrorCode); |
50 } |
59 } |
51 |
60 |
52 |
61 |