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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Implements the object that waits for notification of
15 // Backup/Restore events from the SymbianOS
19 #include "BackupNotifier.h"
20 #include "TestUtilities.h" // For __FILE__LINE__
22 const TInt KRetryDelayPeriod = 15000000; // 15 second delay before retry
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.
31 class CBackupNotifier::CRetryTimer : public CTimer
35 @fn NewL(CBackupNotifier& aBackupNotifier)
36 Intended Usage : Standardised safe construction which leaves nothing
38 Error Condition : Not enough memory available.
41 @param aBackupNotifier A reference to the owning CBackupNotifier
42 @return CRetryTimer* a pointer to the new class
44 @post CRetryTimer is fully constructed, and initialised.
46 static CRetryTimer* NewL(CBackupNotifier& aBackupNotifier);
49 @fn virtual ~CRetryTimer()
50 Intended Usage : Standard default d'tor
51 Error Condition : None
53 @pre CRetryTimer is fully constructed.
54 @post CRetryTimer is totally destroyed
56 virtual ~CRetryTimer();
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
65 @param aBackupNotifier A reference to its owning class instance.
67 @post CRetryTimer is fully constructed
69 explicit CRetryTimer(CBackupNotifier& aBackupNotifier);
73 Intended Usage : Standardised 2nd, (Initialisation) phase of two phase construction.
74 Error Condition : Leaves with error code : usually KErrNoMemory.
78 @pre CRetryTimer is fully constructed.
79 @post CRetryTimer is fully initialised.
85 Intended Usage : The cancel action called by CActive::Cancel().
86 Error Condition : None
88 @pre CRetryTimer is fully constructed.
89 @post CRetryTimer is no longer active on the current scheduler.
95 Intended Usage : When the object activates, this method calls
96 the CBackupNotifier to attempt a reconnection to the backup service notifier.
99 @pre CRetryTimer is fully constructed.
100 @post The notification service has been sccessfully connected.
105 @fn RunError(TInt aError)
106 Intended Usage : Called when the backup notification connection
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.
114 TInt RunError(TInt aError);
117 /** A reference to its owning class instance */
118 CBackupNotifier& iNotifier;
121 // __________________________________________________________________________
124 The timer Active object for providing backup service connection retry attempts.
126 CBackupNotifier::CRetryTimer* CBackupNotifier::CRetryTimer::NewL(CBackupNotifier& aBackupNotifier)
128 CRetryTimer* self = new(ELeave) CRetryTimer(aBackupNotifier);
129 CleanupStack::PushL(self);
131 CleanupStack::Pop(self);
135 CBackupNotifier::CRetryTimer::CRetryTimer(CBackupNotifier& aBackupNotifier)
136 : CTimer(CActive::EPriorityIdle), iNotifier(aBackupNotifier)
138 // Safe because it cannot fail
139 CActiveScheduler::Add(this);
142 void CBackupNotifier::CRetryTimer::ConstructL()
144 CTimer::ConstructL();
147 CBackupNotifier::CRetryTimer::~CRetryTimer()
152 void CBackupNotifier::CRetryTimer::DoCancel()
154 // Call the base class to ensure the timer is cancelled
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.
164 iNotifier.RegisterForNotificationsL();
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.
172 After(KRetryDelayPeriod);
173 return KErrNone; // Do not pass error back, as retry will happen
177 //___________________________________________________________________________
179 CBackupNotifier* CBackupNotifier::NewL(MBackupNotifierObserver& aObserver)
181 CBackupNotifier* self = new(ELeave) CBackupNotifier(aObserver);
182 CleanupStack::PushL(self);
184 CleanupStack::Pop(self);
188 CBackupNotifier::CBackupNotifier(MBackupNotifierObserver& aObserver)
189 : CBase(), iObserver(aObserver)
194 CBackupNotifier::~CBackupNotifier()
199 iBackupSession->DeRegisterBackupOperationObserver(*this);
200 delete iBackupSession;
205 void CBackupNotifier::HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes)
207 switch(aBackupOperationAttributes.iOperation)
220 void CBackupNotifier::ConstructL()
222 iRetryTimer = CRetryTimer::NewL(*this);
223 iRetryTimer->After(KRetryDelayPeriod);
227 void CBackupNotifier::RegisterForNotificationsL()
230 iBackupSession = CBaBackupSessionWrapper::NewL();
232 iBackupSession->RegisterBackupOperationObserverL(*this);
233 iIsRegistered = ETrue;