os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/BackupNotifier.h
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
// Defines the object that waits for notification of 
sl@0
    15
// Backup/Restore events from the EPOC OS
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#ifndef __BACKUPNOTIFIER_H__
sl@0
    20
#define __BACKUPNOTIFIER_H__
sl@0
    21
sl@0
    22
#include <e32base.h>
sl@0
    23
#include <babackup.h>
sl@0
    24
#include "BackupNotifierObserver.h"
sl@0
    25
sl@0
    26
 /**
sl@0
    27
	@internalComponent
sl@0
    28
	@since 7.0
sl@0
    29
	The notification object which waits for a signal that backup has begun/ended.
sl@0
    30
	When its RunL method is called, it notifies its owning CRegistrar class
sl@0
    31
	object to suspend/resume persistant storage of the Interface Implementation
sl@0
    32
	registration details.
sl@0
    33
 */
sl@0
    34
sl@0
    35
class CBackupNotifier : public CBase, private MBackupOperationObserver
sl@0
    36
	{
sl@0
    37
public:
sl@0
    38
	/**
sl@0
    39
		@fn				NewL(MBackupNotifierObserver& aObserver)
sl@0
    40
		Intended Usage	: Standardised safe construction which leaves nothing 
sl@0
    41
						on the cleanup stack.
sl@0
    42
		Error Condition	: Cannot fully construct because of memory limitations.	
sl@0
    43
		@leave  		KErrNoMemory
sl@0
    44
		@since			7.0
sl@0
    45
		@param			aRegistrar A reference to its owning class instance.
sl@0
    46
		@return			CBackupNotifier* A pointer to the new class
sl@0
    47
		@pre 			None
sl@0
    48
		@post			CBackupNotifier is fully constructed, and initialised.
sl@0
    49
	 */
sl@0
    50
	
sl@0
    51
	static CBackupNotifier* NewL(MBackupNotifierObserver& aObserver);
sl@0
    52
sl@0
    53
	/**
sl@0
    54
		@fn				~CBackupNotifier()
sl@0
    55
		Intended Usage	: Standard default d'tor	
sl@0
    56
		Error Condition	: None	
sl@0
    57
		@since			7.0
sl@0
    58
		@pre 			CBackupNotifier is fully constructed.
sl@0
    59
		@post			CBackupNotifier is totally destroyed
sl@0
    60
	 */
sl@0
    61
	
sl@0
    62
	virtual ~CBackupNotifier();
sl@0
    63
sl@0
    64
private:
sl@0
    65
	/**
sl@0
    66
		@fn				CBackupNotifier(MBackupNotifierObserver& aObserver)
sl@0
    67
		Intended Usage	: Default c'tor	
sl@0
    68
		Error Condition	: None	
sl@0
    69
		@since			7.0
sl@0
    70
		@param			aRegistrar A reference to its owning class instance.
sl@0
    71
		@pre 			None
sl@0
    72
		@post			CBackupNotifier is fully constructed
sl@0
    73
	 */
sl@0
    74
	
sl@0
    75
	CBackupNotifier(MBackupNotifierObserver& aObserver);
sl@0
    76
sl@0
    77
	/**
sl@0
    78
		@fn				void ConstructL()
sl@0
    79
		Intended Usage	: Initialisation phase of two phase construction.
sl@0
    80
		Error Condition	: None
sl@0
    81
		@leave  		None
sl@0
    82
		@since			7.0
sl@0
    83
		@pre 			CBackupNotifier is fully constructed.
sl@0
    84
		@post			CBackupNotifier is fully initialised.
sl@0
    85
	 */
sl@0
    86
	
sl@0
    87
	void ConstructL();
sl@0
    88
sl@0
    89
	/**
sl@0
    90
		@fn				HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes)
sl@0
    91
		Intended Usage	: To allow a response to be made by an interested party fo a change in state of the 
sl@0
    92
						backup operation.
sl@0
    93
		@leave  		: @see CBaBackupSessionWrapper::NewL
sl@0
    94
		@leave  		: @see CBaBackupSessionWrapper::RegisterBackupOperationObserverL
sl@0
    95
		@since			7.0
sl@0
    96
		@param			aBackupOperationAttributes The current state of the backup operation.
sl@0
    97
		@return			void 
sl@0
    98
		@pre 			CBackupNotifier is fully constructed.
sl@0
    99
		@post			The aBackupOperationAttributes value will have been used
sl@0
   100
						to drive the suspend and restore behaviours of the ECOM Server.
sl@0
   101
	 */
sl@0
   102
	
sl@0
   103
	void HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes);
sl@0
   104
sl@0
   105
	/**
sl@0
   106
		@fn				RegisterForNotificationsL()
sl@0
   107
		Intended Usage	: To allow registration for notifications from the backup operation.
sl@0
   108
		Error Condition	: None
sl@0
   109
		@since			7.0
sl@0
   110
		@pre 			CBackupNotifier is fully constructed.
sl@0
   111
		@post			CBackupNotifier is registered for notification messages.
sl@0
   112
	 */
sl@0
   113
	
sl@0
   114
	void RegisterForNotificationsL();
sl@0
   115
sl@0
   116
private:
sl@0
   117
	/** A reference to its observer instance */
sl@0
   118
	
sl@0
   119
	MBackupNotifierObserver& iObserver;
sl@0
   120
	/** The owned notification control object */
sl@0
   121
	
sl@0
   122
	CBaBackupSessionWrapper* iBackupSession;
sl@0
   123
	// Forward declare the retry controller as a friend
sl@0
   124
	class CRetryTimer;
sl@0
   125
	friend class CRetryTimer;
sl@0
   126
	/** The friendly timer for connection retries */
sl@0
   127
	
sl@0
   128
	CRetryTimer* iRetryTimer;
sl@0
   129
sl@0
   130
	/** The flag indicating that registration occurred sucessfully */
sl@0
   131
	
sl@0
   132
	TBool iIsRegistered;
sl@0
   133
	/** Friendship declaration for testing purposes */
sl@0
   134
	friend class TBackupNotifier_StateAccessor;
sl@0
   135
	};
sl@0
   136
sl@0
   137
#endif	// __BACKUPNOTIFIER_H__