os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/BackupNotifier.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Implements the object that waits for notification of 
    15 // Backup/Restore events from the SymbianOS
    16 // 
    17 //
    18 
    19 #include "BackupNotifier.h"
    20 #include "TestUtilities.h"	// For __FILE__LINE__
    21 
    22 const TInt KRetryDelayPeriod = 15000000;	// 15 second delay before retry
    23 
    24 /**
    25 	@since 7.0	
    26 	The timer Active object for providing backup server connection retries. 
    27 	Note that task execution is dependant upon the task priority
    28 	The default priority is idle time execution only.
    29 	It is first scheduled by the CBackupNotifier::ConstructL() call.
    30  */
    31 class CBackupNotifier::CRetryTimer : public CTimer
    32 	{
    33 public:
    34 	/**
    35 		@fn				NewL(CBackupNotifier& aBackupNotifier)
    36 		Intended Usage	: Standardised safe construction which leaves nothing
    37 						  on the cleanup stack.
    38 		Error Condition	: Not enough memory available.	
    39 		@leave			KErrNoMemory
    40 		@since			7.0
    41 		@param			aBackupNotifier A reference to the owning CBackupNotifier
    42 		@return			CRetryTimer* a pointer to the new class
    43 		@pre 			None
    44 		@post			CRetryTimer is fully constructed, and initialised.
    45 	 */	
    46 	static CRetryTimer* NewL(CBackupNotifier& aBackupNotifier);
    47 
    48 	/**
    49 		@fn				virtual ~CRetryTimer()
    50 		Intended Usage	: Standard default d'tor	
    51 		Error Condition	: None	
    52 		@since			7.0
    53 		@pre 			CRetryTimer is fully constructed.
    54 		@post			CRetryTimer is totally destroyed
    55 	 */
    56 	virtual ~CRetryTimer();
    57 
    58 private:
    59 	/**
    60 		@fn				CRetryTimer(CBackupNotifier& aBackupNotifier)
    61 		Intended Usage	: Standardised default c'tor made explicit to avoid unintentional
    62 						conversion construction by the compiler.	
    63 		Error Condition	: None	
    64 		@since			7.0
    65 		@param			aBackupNotifier A reference to its owning class instance.
    66 		@pre 			None
    67 		@post			CRetryTimer is fully constructed
    68 	 */
    69 	explicit CRetryTimer(CBackupNotifier& aBackupNotifier);
    70 
    71 	/**
    72 		@fn				void ConstructL()
    73 		Intended Usage	: Standardised 2nd, (Initialisation) phase of two phase construction.
    74 		Error Condition	: Leaves with error code : usually KErrNoMemory.
    75 		@leave			KErrNoMemory.
    76 		@since			7.0
    77 		@return			void 
    78 		@pre 			CRetryTimer is fully constructed.
    79 		@post			CRetryTimer is fully initialised.
    80 	 */
    81 	void ConstructL();
    82 
    83 	/**
    84 		@fn				DoCancel()
    85 		Intended Usage	: The cancel action called by CActive::Cancel(). 
    86 		Error Condition	: None	
    87 		@since			7.0
    88 		@pre 			CRetryTimer is fully constructed.
    89 		@post			CRetryTimer is no longer active on the current scheduler.
    90 	 */
    91 	void DoCancel();
    92 
    93 	/**
    94 		@fn				RunL()
    95 		Intended Usage	: When the object activates, this method calls
    96 						the CBackupNotifier to attempt a reconnection to the backup service notifier. 
    97 		@leave  		KErrNoMemory
    98 		@since			7.0
    99 		@pre 			CRetryTimer is fully constructed.
   100 		@post			The notification service has been sccessfully connected.
   101 	 */
   102 	void RunL();
   103 
   104 	/**
   105 		@fn				RunError(TInt aError)
   106 		Intended Usage	: Called when the backup notification connection
   107 						failed by leaving.
   108 		@since			7.0
   109 		@param			aError The error code that the RunL left with.
   110 		@return			TInt KErrNone. 
   111 		@pre 			CRetryTimer is fully constructed.
   112 		@post			CRetryTimer is re-activated.
   113 	 */
   114 	TInt RunError(TInt aError);
   115 
   116 private:
   117 	/** A reference to its owning class instance */
   118 	CBackupNotifier& iNotifier;	
   119 	};
   120 
   121 // __________________________________________________________________________
   122 //
   123 /*
   124 	The timer Active object for providing backup service connection retry attempts.
   125 */
   126 CBackupNotifier::CRetryTimer* CBackupNotifier::CRetryTimer::NewL(CBackupNotifier& aBackupNotifier)
   127 	{
   128 	CRetryTimer* self = new(ELeave) CRetryTimer(aBackupNotifier);
   129 	CleanupStack::PushL(self);
   130 	self->ConstructL();
   131 	CleanupStack::Pop(self);
   132 	return self;
   133 	}
   134 
   135 CBackupNotifier::CRetryTimer::CRetryTimer(CBackupNotifier& aBackupNotifier)
   136 	: CTimer(CActive::EPriorityIdle), iNotifier(aBackupNotifier)
   137 	{
   138 	// Safe because it cannot fail
   139 	CActiveScheduler::Add(this);
   140 	}
   141 
   142 void CBackupNotifier::CRetryTimer::ConstructL()
   143 	{	
   144 	CTimer::ConstructL();
   145 	}
   146 
   147 CBackupNotifier::CRetryTimer::~CRetryTimer()
   148 	{
   149 	Cancel();
   150 	}
   151 
   152 void CBackupNotifier::CRetryTimer::DoCancel()
   153 	{
   154 	// Call the base class to ensure the timer is cancelled
   155 	CTimer::DoCancel();
   156 	}
   157 
   158 void CBackupNotifier::CRetryTimer::RunL()
   159 //	When the object activates, this is method is called
   160 //  and delegates to the CBackupNotifier to re-attempt
   161 //  the service connection.
   162 //
   163 	{
   164 	iNotifier.RegisterForNotificationsL();
   165 	}
   166 
   167 TInt CBackupNotifier::CRetryTimer::RunError(TInt /*aError*/)
   168 // When the notification connection fails, the RunL of the retry timer
   169 // leaves. We trap this here and allow the BackupNotifier to clean up
   170 // and reset for a retry.
   171 	{
   172 	After(KRetryDelayPeriod);
   173 	return KErrNone;	// Do not pass error back, as retry will happen
   174 	}
   175 
   176 
   177 //___________________________________________________________________________
   178 //
   179 CBackupNotifier* CBackupNotifier::NewL(MBackupNotifierObserver& aObserver)
   180 	{
   181 	CBackupNotifier* self = new(ELeave) CBackupNotifier(aObserver);
   182 	CleanupStack::PushL(self);
   183 	self->ConstructL();
   184 	CleanupStack::Pop(self);
   185 	return self;
   186 	}
   187 
   188 CBackupNotifier::CBackupNotifier(MBackupNotifierObserver& aObserver)
   189 : CBase(), iObserver(aObserver)
   190 	{
   191 	// Do nothing
   192 	}
   193 
   194 CBackupNotifier::~CBackupNotifier()
   195 	{
   196 	if(iBackupSession)
   197 		{
   198 		if(iIsRegistered)
   199 			iBackupSession->DeRegisterBackupOperationObserver(*this);
   200 		delete iBackupSession;
   201 		}
   202 	delete iRetryTimer;
   203 	}
   204 
   205 void CBackupNotifier::HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes)
   206 	{
   207 	switch(aBackupOperationAttributes.iOperation)
   208 		{
   209 		case EStart:
   210 			iObserver.Suspend();
   211 			break;
   212 		case EEnd:
   213 			iObserver.Resume();
   214 			break;
   215 		default:
   216 			break;
   217 		}
   218 	}
   219 
   220 void CBackupNotifier::ConstructL()
   221 	{
   222 	iRetryTimer = CRetryTimer::NewL(*this);
   223 	iRetryTimer->After(KRetryDelayPeriod);
   224 	return;
   225 	}
   226 
   227 void CBackupNotifier::RegisterForNotificationsL()
   228 	{
   229 	if(!iBackupSession)
   230 		iBackupSession = CBaBackupSessionWrapper::NewL();
   231 
   232 	iBackupSession->RegisterBackupOperationObserverL(*this);
   233 	iIsRegistered = ETrue;
   234 	}