uiservicetab/vimpststorage/src/cvimpststorageactivehandler.cpp
branchRCL_3
changeset 28 3104fc151679
parent 27 2b7283837edb
child 29 9a48e301e94b
--- a/uiservicetab/vimpststorage/src/cvimpststorageactivehandler.cpp	Thu Aug 19 09:41:53 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,152 +0,0 @@
-/*
-* Copyright (c) 2008 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:  The CVIMPSTStorageActiveHandler class handles the waiting functionality 
-*
-*/
-
-
-// INCLUDE FILES
-#include "cvimpststorageactivehandler.h"
-#include "mvimpststorageactiveobserver.h"
-
-#include "uiservicetabtracer.h"
-#include <e32base.h>
-
-// CONSTANTS
-const TInt KTimeToWaitBeforeRefresh( 1000000 ); // 1 seconds in microseconds
-// ============================ MEMBER FUNCTIONS ===============================
-
-// -----------------------------------------------------------------------------
-// CVIMPSTStorageActiveHandler::CVIMPSTStorageActiveHandler
-// C++ default constructor can NOT contain any code, that
-// might leave.
-// -----------------------------------------------------------------------------
-//
-CVIMPSTStorageActiveHandler::CVIMPSTStorageActiveHandler( MVIMPSTStorageActiveObserver* aObserver ) : 
-    CTimer( EPriorityIdle ),
-    iObserver( aObserver )
-    {
-	CActiveScheduler::Add( this );
-    }
-
-// -----------------------------------------------------------------------------
-// CVIMPSTStorageActiveHandler::ConstructL
-// Symbian 2nd phase constructor can leave.
-// -----------------------------------------------------------------------------
-//
-void CVIMPSTStorageActiveHandler::ConstructL()
-    {
-	// the base class must be constructed explicitely
-	CTimer::ConstructL();
-    }
-
-// -----------------------------------------------------------------------------
-// CVIMPSTStorageActiveHandler::NewL
-// Two-phased constructor.
-// -----------------------------------------------------------------------------
-//
-CVIMPSTStorageActiveHandler* CVIMPSTStorageActiveHandler::NewL( 
-					MVIMPSTStorageActiveObserver* aObserver )
-    {
-	TRACER_AUTO;
-    CVIMPSTStorageActiveHandler* self = new( ELeave ) CVIMPSTStorageActiveHandler( aObserver );
-	CleanupStack::PushL( self );
-    self->ConstructL();
-    CleanupStack::Pop( self );
-	return self;
-    }
-
-// Destructor
-CVIMPSTStorageActiveHandler::~CVIMPSTStorageActiveHandler()
-    {
-	Cancel();
-    }
-
-// -----------------------------------------------------------------------------
-// CVIMPSTStorageActiveHandler::Start
-// -----------------------------------------------------------------------------
-
-void CVIMPSTStorageActiveHandler::IssueRequest(TVIMPSTEnums::TVIMPSTStorgaeEventType aType,
-											  MVIMPSTStorageContactList *aList,
-					                          MVIMPSTStorageContact* aContact,
-					                          TInt aContactIndex )
-	{
-	TRACER_AUTO;
-	
-	 if( IsActive() )
-        {
-        Cancel();
-        }
-    TTimeIntervalMicroSeconds32 waittime( KTimeToWaitBeforeRefresh );
-    CTimer::After( waittime );
-  
-	iEventType = aType ;
-	iList = aList ; 
-	iContact = aContact ;
-	iContactIndex = aContactIndex;
-	}
-
-// -----------------------------------------------------------------------------
-// CVIMPSTStorageActiveHandler::RunL
-// Derived from CActive
-// -----------------------------------------------------------------------------
-//
-void CVIMPSTStorageActiveHandler::RunL()
-	{
-	TRACER_AUTO;
-	if( iObserver )
-		{
-	TRACE( "send notification" );
-		TInt status( iStatus.Int() );
-	    if( status != KErrCancel )
-            {
-		    iObserver->HandleDelayedNotificationL(iEventType,
-											iList ,
-											iContact,
-											iContactIndex );
-            }
-            
-        
-	    TRACE( " notification sent" );
-		}
-	}
-
-// ---------------------------------------------------------
-// CVIMPSTStorageActiveHandler::RunError
-// Derived from CActive
-// ---------------------------------------------------------
-//
-TInt CVIMPSTStorageActiveHandler::RunError( TInt aError )
-	{
-	TRACER_AUTO;
-	if( iObserver )
-		{
-	    TRAP_IGNORE( iObserver->HandleDelayedNotificationL(iEventType,
-											iList ,
-											iContact,
-											iContactIndex ) );
-        }
-	return aError;
-	}
-// ---------------------------------------------------------
-// CVIMPSTStorageActiveHandler::DoCancel
-// Derived from CActive
-// ---------------------------------------------------------
-//
-void CVIMPSTStorageActiveHandler::DoCancel()
-	{
-	CTimer::DoCancel();// not required
-	}
-
-//  End of File