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 // Defines the object that waits for notification of
15 // Backup/Restore events from the EPOC OS
19 #ifndef __BACKUPNOTIFIER_H__
20 #define __BACKUPNOTIFIER_H__
24 #include "BackupNotifierObserver.h"
29 The notification object which waits for a signal that backup has begun/ended.
30 When its RunL method is called, it notifies its owning CRegistrar class
31 object to suspend/resume persistant storage of the Interface Implementation
35 class CBackupNotifier : public CBase, private MBackupOperationObserver
39 @fn NewL(MBackupNotifierObserver& aObserver)
40 Intended Usage : Standardised safe construction which leaves nothing
42 Error Condition : Cannot fully construct because of memory limitations.
45 @param aRegistrar A reference to its owning class instance.
46 @return CBackupNotifier* A pointer to the new class
48 @post CBackupNotifier is fully constructed, and initialised.
51 static CBackupNotifier* NewL(MBackupNotifierObserver& aObserver);
54 @fn ~CBackupNotifier()
55 Intended Usage : Standard default d'tor
56 Error Condition : None
58 @pre CBackupNotifier is fully constructed.
59 @post CBackupNotifier is totally destroyed
62 virtual ~CBackupNotifier();
66 @fn CBackupNotifier(MBackupNotifierObserver& aObserver)
67 Intended Usage : Default c'tor
68 Error Condition : None
70 @param aRegistrar A reference to its owning class instance.
72 @post CBackupNotifier is fully constructed
75 CBackupNotifier(MBackupNotifierObserver& aObserver);
79 Intended Usage : Initialisation phase of two phase construction.
80 Error Condition : None
83 @pre CBackupNotifier is fully constructed.
84 @post CBackupNotifier is fully initialised.
90 @fn HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes)
91 Intended Usage : To allow a response to be made by an interested party fo a change in state of the
93 @leave : @see CBaBackupSessionWrapper::NewL
94 @leave : @see CBaBackupSessionWrapper::RegisterBackupOperationObserverL
96 @param aBackupOperationAttributes The current state of the backup operation.
98 @pre CBackupNotifier is fully constructed.
99 @post The aBackupOperationAttributes value will have been used
100 to drive the suspend and restore behaviours of the ECOM Server.
103 void HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes);
106 @fn RegisterForNotificationsL()
107 Intended Usage : To allow registration for notifications from the backup operation.
108 Error Condition : None
110 @pre CBackupNotifier is fully constructed.
111 @post CBackupNotifier is registered for notification messages.
114 void RegisterForNotificationsL();
117 /** A reference to its observer instance */
119 MBackupNotifierObserver& iObserver;
120 /** The owned notification control object */
122 CBaBackupSessionWrapper* iBackupSession;
123 // Forward declare the retry controller as a friend
125 friend class CRetryTimer;
126 /** The friendly timer for connection retries */
128 CRetryTimer* iRetryTimer;
130 /** The flag indicating that registration occurred sucessfully */
133 /** Friendship declaration for testing purposes */
134 friend class TBackupNotifier_StateAccessor;
137 #endif // __BACKUPNOTIFIER_H__