os/ossrv/genericservices/activebackupclient/inc/abclient.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/**
sl@0
     2
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
* Declaration of MActiveBackupDataClient and CActiveBackupClient
sl@0
    16
* 
sl@0
    17
*
sl@0
    18
*/
sl@0
    19
sl@0
    20
sl@0
    21
sl@0
    22
/**
sl@0
    23
 @file
sl@0
    24
 @released
sl@0
    25
*/
sl@0
    26
#ifndef __ACTIVEBACKUPCLIENT_H__
sl@0
    27
#define __ACTIVEBACKUPCLIENT_H__
sl@0
    28
sl@0
    29
#include <e32base.h>
sl@0
    30
#include <f32file.h>
sl@0
    31
#include <e32cmn.h>
sl@0
    32
#include <connect/sbdefs.h>
sl@0
    33
sl@0
    34
namespace conn
sl@0
    35
	{
sl@0
    36
	
sl@0
    37
	class MActiveBackupDataClient
sl@0
    38
		/**
sl@0
    39
		MActiveBackupDataClient is a Mixin to be implemented by an Active Backup client.
sl@0
    40
		The client connects to the Secure Backup Server using the CActiveBackupClient
sl@0
    41
		class and provides an instance of MActiveBackupDataClient to be called for a
sl@0
    42
		range of functions.
sl@0
    43
sl@0
    44
		The bulk transfer of data and snapshots is expected to be by means of shared
sl@0
    45
		heaps for performance reasons so the API is expected to change in these areas.
sl@0
    46
sl@0
    47
		@released
sl@0
    48
		@publishedAll
sl@0
    49
		*/
sl@0
    50
		{
sl@0
    51
	public:
sl@0
    52
sl@0
    53
		/** 
sl@0
    54
		Empty virtual destructor to avoid memory leaks
sl@0
    55
		*/
sl@0
    56
		virtual ~MActiveBackupDataClient() {}
sl@0
    57
sl@0
    58
		///// Backup Methods /////
sl@0
    59
sl@0
    60
		/**
sl@0
    61
		This method informs the active backup data client that all snapshots have
sl@0
    62
		been supplied. If the client has not received a snapshot then it should
sl@0
    63
		perform a base backup.
sl@0
    64
		*/
sl@0
    65
		virtual void AllSnapshotsSuppliedL() = 0;
sl@0
    66
sl@0
    67
		/**
sl@0
    68
		This method receives all or part of a snapshot of data to allow calculation of an
sl@0
    69
		incremental backup.  The snapshot is one that was previously supplied by the data
sl@0
    70
		owner.  The snapshot data should be read from the location supplied.
sl@0
    71
		The snapshot data may be larger than the location supplied in which case the routine will
sl@0
    72
		be called repeatedly until all data has been supplied.
sl@0
    73
sl@0
    74
		Snapshot data will also be supplied as part of a restore operation.
sl@0
    75
sl@0
    76
		@param aDrive the drive being backed up
sl@0
    77
		@param aBuffer a pointer to the base of the location from whence data can be copied.
sl@0
    78
		@param aLastSection ETrue if this is the last section of snapshot data, else EFalse.
sl@0
    79
		@leave KErrNotSupported if the data owner does not support incremental backups.
sl@0
    80
		*/
sl@0
    81
		virtual void ReceiveSnapshotDataL(TDriveNumber aDrive, TDesC8& aBuffer, TBool aLastSection) = 0;
sl@0
    82
sl@0
    83
		/**
sl@0
    84
		This method returns the expected size of backup data that will be supplied.   If an
sl@0
    85
		incremental backup is underway then this method will not be called until after
sl@0
    86
		ReceiveSnapshotDataL().  The size data will be used for the purpose of tracking progess
sl@0
    87
		during a backup.  If it is inaccurate then the user may see irregular progress but the
sl@0
    88
		actual backup data will not be affected so it is acceptable to return an estimated
sl@0
    89
		value.
sl@0
    90
sl@0
    91
		@param aDrive the drive being backed up.
sl@0
    92
		@return the size of the data that will be returned
sl@0
    93
		*/
sl@0
    94
		virtual TUint GetExpectedDataSize(TDriveNumber aDrive) = 0;
sl@0
    95
sl@0
    96
		/**
sl@0
    97
		This method returns a snapshot of data to accompany a backup.  The snapshot is expected
sl@0
    98
		to contain details on files / data being backed up.  The format of the snapshot is only
sl@0
    99
		meaningful to the data owner.  The snapshot will be supplied if the data owner is asked
sl@0
   100
		for an incremental backup and for a restore operation.  The snapshot data should be
sl@0
   101
		copied to the location supplied.
sl@0
   102
		The snapshot data may be larger than the location supplied in which case the routine will
sl@0
   103
		be called repeatedly until all data has been retrieved.
sl@0
   104
sl@0
   105
		@param aDrive the drive being backed up
sl@0
   106
		@param aBuffer a pointer to the base of the location where data can be copied.
sl@0
   107
		@param aFinished on return ETrue if all data has been returned for this drive, else EFalse.
sl@0
   108
		@leave KErrNotSupported if the data owner does not support  incremental backups.
sl@0
   109
		*/
sl@0
   110
		virtual void GetSnapshotDataL(TDriveNumber aDrive, TPtr8& aBuffer, TBool& aFinished) = 0;
sl@0
   111
sl@0
   112
		/**
sl@0
   113
		This method prepares the implementor to return backup data.  It will be followed by a
sl@0
   114
		sequence of calls to request the actual data.
sl@0
   115
sl@0
   116
		@param aDrive the drive being backed up.
sl@0
   117
		*/
sl@0
   118
		virtual void InitialiseGetBackupDataL(TDriveNumber aDrive) = 0;
sl@0
   119
sl@0
   120
		/**
sl@0
   121
		This method requests a section of backup data.  InitialiseGetBackupDataL() will have been
sl@0
   122
		called prevously to specify the drive concerned.  The data returned may be base or
sl@0
   123
		incremental depending on the type of backup and the capability of the data owner.
sl@0
   124
sl@0
   125
		@param aBuffer a pointer to the base of the location where data can be copied.
sl@0
   126
		@param aFinished on return ETrue if all data has been returned for this drive, else EFalse.
sl@0
   127
		*/
sl@0
   128
		virtual void GetBackupDataSectionL(TPtr8& aBuffer, TBool& aFinished) = 0;
sl@0
   129
sl@0
   130
		///// Restore Methods /////
sl@0
   131
sl@0
   132
		/**
sl@0
   133
		This method prepares the implementor to receive base restore data for a drive.
sl@0
   134
		It will be followed by a sequence of calls to supply the actual data.
sl@0
   135
sl@0
   136
		@param aDrive the drive being restored.
sl@0
   137
		*/
sl@0
   138
		virtual void InitialiseRestoreBaseDataL(TDriveNumber aDrive) = 0;
sl@0
   139
sl@0
   140
		/**
sl@0
   141
		This method receives a section of base restore data.
sl@0
   142
		InitialiseRestoreBaseDataL() will have been called prevously to specify the drive concerned.
sl@0
   143
sl@0
   144
		@param aBuffer a pointer to the base of the location whence data can be read.
sl@0
   145
		@param aFinished ETrue if all data has been returned for this drive, else EFalse.
sl@0
   146
		*/
sl@0
   147
		virtual void RestoreBaseDataSectionL(TDesC8& aBuffer, TBool aFinished) = 0;
sl@0
   148
sl@0
   149
		/**
sl@0
   150
		This method prepares the implementor to receive incremental restore data for a drive.
sl@0
   151
		It will be followed by a sequence of calls to supply the actual data.  If multiple
sl@0
   152
		increments are supplied then this methid will be called before each increment.
sl@0
   153
sl@0
   154
		@param aDrive the drive being restored.
sl@0
   155
		*/
sl@0
   156
		virtual void InitialiseRestoreIncrementDataL(TDriveNumber aDrive) = 0;
sl@0
   157
sl@0
   158
		/**
sl@0
   159
		This method receives a section of increment restore data.
sl@0
   160
		InitialiseRestoreIncrementDataL() will have been called prevously to specify the 
sl@0
   161
		drive concerned.
sl@0
   162
sl@0
   163
		@param aBuffer a pointer to the base of the location whence data can be read.
sl@0
   164
		@param aFinished ETrue if all data has been returned for this increment, else EFalse.
sl@0
   165
		*/
sl@0
   166
		virtual void RestoreIncrementDataSectionL(TDesC8& aBuffer, TBool aFinished) = 0;
sl@0
   167
sl@0
   168
		/**
sl@0
   169
		This method is called when all data to be restored has been supplied.
sl@0
   170
sl@0
   171
		@param aDrive the drive being restored.
sl@0
   172
		*/
sl@0
   173
		virtual void RestoreComplete(TDriveNumber aDrive) = 0;
sl@0
   174
sl@0
   175
		/**
sl@0
   176
		This method prepares the implementor to return backup data on behalf of another data owner.
sl@0
   177
		It will be followed by a sequence of calls to request the actual data. This method is only
sl@0
   178
		for use by a proxy data manager that backs up data on behalf of other data owners.  There
sl@0
   179
		is no corresponding method for snapshots as it is assumed that a proxy data manager will
sl@0
   180
		only handle base data.
sl@0
   181
sl@0
   182
		@param aSID the data owner whose data is to be backed up
sl@0
   183
		@param aDrive the drive being backed up.
sl@0
   184
		*/
sl@0
   185
		virtual void InitialiseGetProxyBackupDataL(TSecureId aSID, TDriveNumber aDrive);
sl@0
   186
sl@0
   187
		/**
sl@0
   188
		This method prepares the implementor to receive base restore data for another data owner
sl@0
   189
		for a drive. It will be followed by a sequence of calls to supply the actual data.
sl@0
   190
		This method is only for use by a proxy data manager that restores up data on behalf of
sl@0
   191
		other data owners.  There is no corresponding method for incremental data as it is assumed
sl@0
   192
		that a proxy data manager will only handle base data.
sl@0
   193
sl@0
   194
		@param aSID the data owner whose data is to be restored
sl@0
   195
		@param aDrive the drive being restored.
sl@0
   196
		*/
sl@0
   197
		virtual void InitialiseRestoreProxyBaseDataL(TSecureId aSID, TDriveNumber aDrive);
sl@0
   198
		
sl@0
   199
		///// General Methods /////
sl@0
   200
sl@0
   201
		/**
sl@0
   202
		This method is called if copying of data is terminated prematurely to allow the 
sl@0
   203
		implementor to tidy up.  The same method applies to all types of data and to backup
sl@0
   204
		and restore
sl@0
   205
		*/
sl@0
   206
		virtual void TerminateMultiStageOperation() = 0;
sl@0
   207
		
sl@0
   208
		/**
sl@0
   209
		Gets an extended interface based on a supplied uid.
sl@0
   210
		
sl@0
   211
		@param aUid Uid which identifies an extended interface
sl@0
   212
		@return Pointer to an extended interface
sl@0
   213
		*/
sl@0
   214
		virtual TAny* GetExtendedInterface(const TInt32 aUid);
sl@0
   215
sl@0
   216
		///// Test Methods /////
sl@0
   217
		/**
sl@0
   218
		Gets a 32-bit checksum for its private data.
sl@0
   219
		This routine is for test purposes.  It must be implemented but an invariant checksum 
sl@0
   220
		value can be provided.  Some tests may cause checksum values to be compared.
sl@0
   221
    
sl@0
   222
		@param aDrive the drive containing data being checksummed
sl@0
   223
		@return the 32-bit checksum
sl@0
   224
		*/
sl@0
   225
		virtual TUint GetDataChecksum(TDriveNumber aDrive) = 0;
sl@0
   226
		};
sl@0
   227
sl@0
   228
	inline void MActiveBackupDataClient::InitialiseGetProxyBackupDataL(TSecureId /*aSID*/, TDriveNumber /*aDrive*/)
sl@0
   229
	/** Initialises the proxy backup data
sl@0
   230
	
sl@0
   231
	This is not supported here.
sl@0
   232
	
sl@0
   233
	@param aSID the secure Id
sl@0
   234
	@param aDrive the driver number
sl@0
   235
	@leave KErrNotSupported Always.
sl@0
   236
	*/
sl@0
   237
		{
sl@0
   238
		User::Leave(KErrNotSupported);
sl@0
   239
		}
sl@0
   240
sl@0
   241
	inline void MActiveBackupDataClient::InitialiseRestoreProxyBaseDataL(TSecureId /*aSID*/, TDriveNumber /*aDrive*/)
sl@0
   242
		{
sl@0
   243
	/** Initialises the proxy backup base data
sl@0
   244
	
sl@0
   245
	This is not supported here.
sl@0
   246
	
sl@0
   247
	@param aSID the secure Id
sl@0
   248
	@param aDrive the driver number
sl@0
   249
	@leave KErrNotSupported Always.
sl@0
   250
	*/
sl@0
   251
		User::Leave(KErrNotSupported);
sl@0
   252
		}
sl@0
   253
		
sl@0
   254
	inline TAny* MActiveBackupDataClient::GetExtendedInterface(const TInt32 /*aUid*/)
sl@0
   255
		{
sl@0
   256
		return NULL;
sl@0
   257
		}
sl@0
   258
				
sl@0
   259
	
sl@0
   260
	class RABClientSession;
sl@0
   261
	class CActiveBackupCallbackHandler;
sl@0
   262
	
sl@0
   263
	class CActiveBackupClient : public CBase
sl@0
   264
		/**
sl@0
   265
		CActiveBackupClient provides a connection to the Secure Backup Server for a data owning
sl@0
   266
		process.
sl@0
   267
sl@0
   268
		It can be used to obtain information about an active backup or restore operation. 
sl@0
   269
		It can also be used to signal to the Secure Backup Server when the data owner is ready
sl@0
   270
		for backup or restore.
sl@0
   271
sl@0
   272
		It is also used by data owners that implement active backup or restore to provide a
sl@0
   273
		MActiveBackupDataClient implementation.
sl@0
   274
sl@0
   275
		This class owns a RActiveBackupSessionImpl instance and publishes the 
sl@0
   276
		public API to the outside world. The reason for this facade class is twofold:
sl@0
   277
sl@0
   278
		@li Hiding the implementation details of RActiveBackupSessionImpl 
sl@0
   279
sl@0
   280
		@li Future binary compatibility
sl@0
   281
sl@0
   282
		@released
sl@0
   283
		@publishedAll
sl@0
   284
		*/
sl@0
   285
		{
sl@0
   286
	public:
sl@0
   287
		IMPORT_C static CActiveBackupClient* NewL();
sl@0
   288
sl@0
   289
		IMPORT_C static CActiveBackupClient* NewL(MActiveBackupDataClient* aClient);
sl@0
   290
		IMPORT_C ~CActiveBackupClient();
sl@0
   291
		IMPORT_C void BURModeInfoL(TDriveList& aDriveList, TBURPartType& aBackupType, TBackupIncType& aIncBackupType);
sl@0
   292
		IMPORT_C TBool DoesPartialBURAffectMeL();
sl@0
   293
		IMPORT_C void ConfirmReadyForBURL(TInt aErrorCode);
sl@0
   294
sl@0
   295
	private:
sl@0
   296
		CActiveBackupClient();
sl@0
   297
		void ConstructL();
sl@0
   298
		void ConstructL(MActiveBackupDataClient* aClient);
sl@0
   299
sl@0
   300
	private:
sl@0
   301
		/** Pointer to the client session R class that's wrapped up by this class */
sl@0
   302
		RABClientSession* iClientSession;
sl@0
   303
		
sl@0
   304
		/** Pointer to the Active Backup Callback Handler */
sl@0
   305
		CActiveBackupCallbackHandler* iABCallbackHandler;
sl@0
   306
		};
sl@0
   307
sl@0
   308
	} // end namespace
sl@0
   309
sl@0
   310
#endif // __ACTIVEBACKUPCLIENT_H__
sl@0
   311