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