telephonyserverplugins/simatktsy/src/CSatNotifySimSessionEnd.cpp
branchopencode
changeset 24 6638e7f4bd8f
parent 0 3553901f7fa8
--- a/telephonyserverplugins/simatktsy/src/CSatNotifySimSessionEnd.cpp	Mon May 03 13:37:20 2010 +0300
+++ b/telephonyserverplugins/simatktsy/src/CSatNotifySimSessionEnd.cpp	Thu May 06 15:10:38 2010 +0100
@@ -1,171 +1,171 @@
-// Copyright (c) 2005-2009 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:
-// Name        : CSatNotifySimSessonEnd.cpp
-// Part of     : Common SIM ATK TSY / commonsimatktsy
-// Sim session end notification functionality of Sat Tsy
-// Version     : 1.0
-//
-
-
-
-//INCLUDES
-#include "CSatTsy.h"                    // Main tsy class header
-#include "CSatNotifySimSessionEnd.h"    // Class header
-#include "CSatNotificationsTsy.h"       // Tsy class header
-#include "CSatDataPackage.h"            // Parameter packing 
-#include "TfLogger.h"                   // For TFLOGSTRING
-#include "CSatTsyReqHandleStore.h"      // Request handle class
-#include "CBerTlv.h"                    // Ber Tlv data handling
-#include "TSatUtility.h"                // (U)SIM Status constants
-
-// -----------------------------------------------------------------------------
-// CSatNotifySimSessionEnd::NewL
-// Two-phased constructor.
-// -----------------------------------------------------------------------------
-//  
-CSatNotifySimSessionEnd* CSatNotifySimSessionEnd::NewL
-        ( 
-        CSatNotificationsTsy* aNotificationsTsy 
-        )
-    {
-    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::NewL");
-   	CSatNotifySimSessionEnd* const satNotifySimSessionEnd = 
-        new ( ELeave ) CSatNotifySimSessionEnd( aNotificationsTsy );
-    CleanupStack::PushL( satNotifySimSessionEnd );
-    satNotifySimSessionEnd->ConstructL();
-    CleanupStack::Pop( satNotifySimSessionEnd );
-    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::NewL, end of method");
-    return satNotifySimSessionEnd;
-    }
-
-// -----------------------------------------------------------------------------
-// CSatNotifySimSessionEnd::~CSatNotifySimSessionEnd
-// Destructor
-// -----------------------------------------------------------------------------
-//  
-CSatNotifySimSessionEnd::~CSatNotifySimSessionEnd
-        ( 
-		// None
-        )
-    {
-    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::~CSatNotifySimSessionEnd");
-    }
-    
-// -----------------------------------------------------------------------------
-// CSatNotifySimSessionEnd::CSatNotifySimSessionEnd
-// Default C++ constructor
-// -----------------------------------------------------------------------------
-//  
-CSatNotifySimSessionEnd::CSatNotifySimSessionEnd
-        ( 
-        CSatNotificationsTsy* aNotificationsTsy 
-        ) : iNotificationsTsy ( aNotificationsTsy )
-    {
-    // None
-    }
-
-// -----------------------------------------------------------------------------
-// CSatNotifySimSessionEnd::ConstructL
-// Symbian 2nd phase constructor
-// -----------------------------------------------------------------------------
-//  
-void CSatNotifySimSessionEnd::ConstructL
-        (
-        // None
-        )
-    {
-    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::ConstructL, does nothing");
-    }
-
-// -----------------------------------------------------------------------------
-// CSatNotifySimSessionEnd::Notify
-// Save the request handle type for notification requested by ETel server
-// -----------------------------------------------------------------------------
-// 
-TInt CSatNotifySimSessionEnd::Notify
-        ( 
-        const TTsyReqHandle aTsyReqHandle,
-        const TDataPackage& /*aPackage*/   
-        )
-    {
-    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::Notify");
-    // Save the request handle
-    iNotificationsTsy->iSatTsy->SaveReqHandle( aTsyReqHandle, 
-		CSatTsy::ESatNotifyProactiveSimSessionEndReqType );
-    // Check if requested notification is already pending
-    iNotificationsTsy->NotifySatReadyForNotification( 
-        KEndOfTheProactiveSession );   
-
-    return KErrNone; 
-    }
-
-// -----------------------------------------------------------------------------
-// CSatNotifySimSessionEnd::CancelNotification
-// This method cancels an outstanding asynchronous 
-// NotifySimSessionEnd request.
-// -----------------------------------------------------------------------------
-//
-TInt CSatNotifySimSessionEnd::CancelNotification
-        (
-        const TTsyReqHandle aTsyReqHandle
-        )
-    {
-    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::CancelNotification"); 
-    
-    // Reset the request handle
-    TTsyReqHandle reqHandle = 
-        iNotificationsTsy->iSatReqHandleStore->ResetTsyReqHandle( 
-        CSatTsy::ESatNotifyProactiveSimSessionEndReqType );
-	// Complete the request with KErrCancel
-	iNotificationsTsy->iSatTsy->ReqCompleted( aTsyReqHandle, KErrCancel );
-    return KErrNone;    
-    }
-
-// -----------------------------------------------------------------------------
-// CSatNotifySimSessionEnd::CompleteNotifyL
-// Complete Sim Session End notification to the client
-// -----------------------------------------------------------------------------
-// 
-TInt CSatNotifySimSessionEnd::CompleteNotifyL
-        ( 
-        CSatDataPackage* aDataPackage, 
-        TInt aErrorCode  
-        ) 
-    {
-    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::CompleteNotifyL");
-    
-    // Unpack data
-    TUint8 sw1;
-    TUint8 sw2;
-    aDataPackage->UnPackData( sw1, sw2 );
-    if ( KSw1NormalEnding == sw1 && KSw2NormalEnding == sw2 )
-        {
-	    // Reset req handle. Returns the deleted req handle
-	    TTsyReqHandle reqHandle = 
-	        iNotificationsTsy->iSatReqHandleStore->ResetTsyReqHandle( 
-	        CSatTsy::ESatNotifyProactiveSimSessionEndReqType );
-	           
-	    // In case the request was ongoing, complete the request to the client.
-	    if ( CSatTsy::ESatReqHandleUnknown != reqHandle )
-	        {
-            TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::CompleteNotifyL, \
-            	SIM SESSION END");
-	        iNotificationsTsy->iSatTsy->ReqCompleted( reqHandle, aErrorCode );
-	        }
-        }
-
-    return KErrNone;
-    }
-
-// End of file
+// Copyright (c) 2005-2009 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:
+// Name        : CSatNotifySimSessonEnd.cpp
+// Part of     : Common SIM ATK TSY / commonsimatktsy
+// Sim session end notification functionality of Sat Tsy
+// Version     : 1.0
+//
+
+
+
+//INCLUDES
+#include "CSatTsy.h"                    // Main tsy class header
+#include "CSatNotifySimSessionEnd.h"    // Class header
+#include "CSatNotificationsTsy.h"       // Tsy class header
+#include "CSatDataPackage.h"            // Parameter packing 
+#include "TfLogger.h"                   // For TFLOGSTRING
+#include "CSatTsyReqHandleStore.h"      // Request handle class
+#include "CBerTlv.h"                    // Ber Tlv data handling
+#include "TSatUtility.h"                // (U)SIM Status constants
+
+// -----------------------------------------------------------------------------
+// CSatNotifySimSessionEnd::NewL
+// Two-phased constructor.
+// -----------------------------------------------------------------------------
+//  
+CSatNotifySimSessionEnd* CSatNotifySimSessionEnd::NewL
+        ( 
+        CSatNotificationsTsy* aNotificationsTsy 
+        )
+    {
+    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::NewL");
+   	CSatNotifySimSessionEnd* const satNotifySimSessionEnd = 
+        new ( ELeave ) CSatNotifySimSessionEnd( aNotificationsTsy );
+    CleanupStack::PushL( satNotifySimSessionEnd );
+    satNotifySimSessionEnd->ConstructL();
+    CleanupStack::Pop( satNotifySimSessionEnd );
+    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::NewL, end of method");
+    return satNotifySimSessionEnd;
+    }
+
+// -----------------------------------------------------------------------------
+// CSatNotifySimSessionEnd::~CSatNotifySimSessionEnd
+// Destructor
+// -----------------------------------------------------------------------------
+//  
+CSatNotifySimSessionEnd::~CSatNotifySimSessionEnd
+        ( 
+		// None
+        )
+    {
+    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::~CSatNotifySimSessionEnd");
+    }
+    
+// -----------------------------------------------------------------------------
+// CSatNotifySimSessionEnd::CSatNotifySimSessionEnd
+// Default C++ constructor
+// -----------------------------------------------------------------------------
+//  
+CSatNotifySimSessionEnd::CSatNotifySimSessionEnd
+        ( 
+        CSatNotificationsTsy* aNotificationsTsy 
+        ) : iNotificationsTsy ( aNotificationsTsy )
+    {
+    // None
+    }
+
+// -----------------------------------------------------------------------------
+// CSatNotifySimSessionEnd::ConstructL
+// Symbian 2nd phase constructor
+// -----------------------------------------------------------------------------
+//  
+void CSatNotifySimSessionEnd::ConstructL
+        (
+        // None
+        )
+    {
+    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::ConstructL, does nothing");
+    }
+
+// -----------------------------------------------------------------------------
+// CSatNotifySimSessionEnd::Notify
+// Save the request handle type for notification requested by ETel server
+// -----------------------------------------------------------------------------
+// 
+TInt CSatNotifySimSessionEnd::Notify
+        ( 
+        const TTsyReqHandle aTsyReqHandle,
+        const TDataPackage& /*aPackage*/   
+        )
+    {
+    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::Notify");
+    // Save the request handle
+    iNotificationsTsy->iSatTsy->SaveReqHandle( aTsyReqHandle, 
+		CSatTsy::ESatNotifyProactiveSimSessionEndReqType );
+    // Check if requested notification is already pending
+    iNotificationsTsy->NotifySatReadyForNotification( 
+        KEndOfTheProactiveSession );   
+
+    return KErrNone; 
+    }
+
+// -----------------------------------------------------------------------------
+// CSatNotifySimSessionEnd::CancelNotification
+// This method cancels an outstanding asynchronous 
+// NotifySimSessionEnd request.
+// -----------------------------------------------------------------------------
+//
+TInt CSatNotifySimSessionEnd::CancelNotification
+        (
+        const TTsyReqHandle aTsyReqHandle
+        )
+    {
+    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::CancelNotification"); 
+    
+    // Reset the request handle
+    TTsyReqHandle reqHandle = 
+        iNotificationsTsy->iSatReqHandleStore->ResetTsyReqHandle( 
+        CSatTsy::ESatNotifyProactiveSimSessionEndReqType );
+	// Complete the request with KErrCancel
+	iNotificationsTsy->iSatTsy->ReqCompleted( aTsyReqHandle, KErrCancel );
+    return KErrNone;    
+    }
+
+// -----------------------------------------------------------------------------
+// CSatNotifySimSessionEnd::CompleteNotifyL
+// Complete Sim Session End notification to the client
+// -----------------------------------------------------------------------------
+// 
+TInt CSatNotifySimSessionEnd::CompleteNotifyL
+        ( 
+        CSatDataPackage* aDataPackage, 
+        TInt aErrorCode  
+        ) 
+    {
+    TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::CompleteNotifyL");
+    
+    // Unpack data
+    TUint8 sw1;
+    TUint8 sw2;
+    aDataPackage->UnPackData( sw1, sw2 );
+    if ( KSw1NormalEnding == sw1 && KSw2NormalEnding == sw2 )
+        {
+	    // Reset req handle. Returns the deleted req handle
+	    TTsyReqHandle reqHandle = 
+	        iNotificationsTsy->iSatReqHandleStore->ResetTsyReqHandle( 
+	        CSatTsy::ESatNotifyProactiveSimSessionEndReqType );
+	           
+	    // In case the request was ongoing, complete the request to the client.
+	    if ( CSatTsy::ESatReqHandleUnknown != reqHandle )
+	        {
+            TFLOGSTRING("CSAT: CSatNotifySimSessionEnd::CompleteNotifyL, \
+            	SIM SESSION END");
+	        iNotificationsTsy->iSatTsy->ReqCompleted( reqHandle, aErrorCode );
+	        }
+        }
+
+    return KErrNone;
+    }
+
+// End of file