1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/activebackupclient/inc/abclient.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,311 @@
1.4 +/**
1.5 +* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +* Declaration of MActiveBackupDataClient and CActiveBackupClient
1.19 +*
1.20 +*
1.21 +*/
1.22 +
1.23 +
1.24 +
1.25 +/**
1.26 + @file
1.27 + @released
1.28 +*/
1.29 +#ifndef __ACTIVEBACKUPCLIENT_H__
1.30 +#define __ACTIVEBACKUPCLIENT_H__
1.31 +
1.32 +#include <e32base.h>
1.33 +#include <f32file.h>
1.34 +#include <e32cmn.h>
1.35 +#include <connect/sbdefs.h>
1.36 +
1.37 +namespace conn
1.38 + {
1.39 +
1.40 + class MActiveBackupDataClient
1.41 + /**
1.42 + MActiveBackupDataClient is a Mixin to be implemented by an Active Backup client.
1.43 + The client connects to the Secure Backup Server using the CActiveBackupClient
1.44 + class and provides an instance of MActiveBackupDataClient to be called for a
1.45 + range of functions.
1.46 +
1.47 + The bulk transfer of data and snapshots is expected to be by means of shared
1.48 + heaps for performance reasons so the API is expected to change in these areas.
1.49 +
1.50 + @released
1.51 + @publishedAll
1.52 + */
1.53 + {
1.54 + public:
1.55 +
1.56 + /**
1.57 + Empty virtual destructor to avoid memory leaks
1.58 + */
1.59 + virtual ~MActiveBackupDataClient() {}
1.60 +
1.61 + ///// Backup Methods /////
1.62 +
1.63 + /**
1.64 + This method informs the active backup data client that all snapshots have
1.65 + been supplied. If the client has not received a snapshot then it should
1.66 + perform a base backup.
1.67 + */
1.68 + virtual void AllSnapshotsSuppliedL() = 0;
1.69 +
1.70 + /**
1.71 + This method receives all or part of a snapshot of data to allow calculation of an
1.72 + incremental backup. The snapshot is one that was previously supplied by the data
1.73 + owner. The snapshot data should be read from the location supplied.
1.74 + The snapshot data may be larger than the location supplied in which case the routine will
1.75 + be called repeatedly until all data has been supplied.
1.76 +
1.77 + Snapshot data will also be supplied as part of a restore operation.
1.78 +
1.79 + @param aDrive the drive being backed up
1.80 + @param aBuffer a pointer to the base of the location from whence data can be copied.
1.81 + @param aLastSection ETrue if this is the last section of snapshot data, else EFalse.
1.82 + @leave KErrNotSupported if the data owner does not support incremental backups.
1.83 + */
1.84 + virtual void ReceiveSnapshotDataL(TDriveNumber aDrive, TDesC8& aBuffer, TBool aLastSection) = 0;
1.85 +
1.86 + /**
1.87 + This method returns the expected size of backup data that will be supplied. If an
1.88 + incremental backup is underway then this method will not be called until after
1.89 + ReceiveSnapshotDataL(). The size data will be used for the purpose of tracking progess
1.90 + during a backup. If it is inaccurate then the user may see irregular progress but the
1.91 + actual backup data will not be affected so it is acceptable to return an estimated
1.92 + value.
1.93 +
1.94 + @param aDrive the drive being backed up.
1.95 + @return the size of the data that will be returned
1.96 + */
1.97 + virtual TUint GetExpectedDataSize(TDriveNumber aDrive) = 0;
1.98 +
1.99 + /**
1.100 + This method returns a snapshot of data to accompany a backup. The snapshot is expected
1.101 + to contain details on files / data being backed up. The format of the snapshot is only
1.102 + meaningful to the data owner. The snapshot will be supplied if the data owner is asked
1.103 + for an incremental backup and for a restore operation. The snapshot data should be
1.104 + copied to the location supplied.
1.105 + The snapshot data may be larger than the location supplied in which case the routine will
1.106 + be called repeatedly until all data has been retrieved.
1.107 +
1.108 + @param aDrive the drive being backed up
1.109 + @param aBuffer a pointer to the base of the location where data can be copied.
1.110 + @param aFinished on return ETrue if all data has been returned for this drive, else EFalse.
1.111 + @leave KErrNotSupported if the data owner does not support incremental backups.
1.112 + */
1.113 + virtual void GetSnapshotDataL(TDriveNumber aDrive, TPtr8& aBuffer, TBool& aFinished) = 0;
1.114 +
1.115 + /**
1.116 + This method prepares the implementor to return backup data. It will be followed by a
1.117 + sequence of calls to request the actual data.
1.118 +
1.119 + @param aDrive the drive being backed up.
1.120 + */
1.121 + virtual void InitialiseGetBackupDataL(TDriveNumber aDrive) = 0;
1.122 +
1.123 + /**
1.124 + This method requests a section of backup data. InitialiseGetBackupDataL() will have been
1.125 + called prevously to specify the drive concerned. The data returned may be base or
1.126 + incremental depending on the type of backup and the capability of the data owner.
1.127 +
1.128 + @param aBuffer a pointer to the base of the location where data can be copied.
1.129 + @param aFinished on return ETrue if all data has been returned for this drive, else EFalse.
1.130 + */
1.131 + virtual void GetBackupDataSectionL(TPtr8& aBuffer, TBool& aFinished) = 0;
1.132 +
1.133 + ///// Restore Methods /////
1.134 +
1.135 + /**
1.136 + This method prepares the implementor to receive base restore data for a drive.
1.137 + It will be followed by a sequence of calls to supply the actual data.
1.138 +
1.139 + @param aDrive the drive being restored.
1.140 + */
1.141 + virtual void InitialiseRestoreBaseDataL(TDriveNumber aDrive) = 0;
1.142 +
1.143 + /**
1.144 + This method receives a section of base restore data.
1.145 + InitialiseRestoreBaseDataL() will have been called prevously to specify the drive concerned.
1.146 +
1.147 + @param aBuffer a pointer to the base of the location whence data can be read.
1.148 + @param aFinished ETrue if all data has been returned for this drive, else EFalse.
1.149 + */
1.150 + virtual void RestoreBaseDataSectionL(TDesC8& aBuffer, TBool aFinished) = 0;
1.151 +
1.152 + /**
1.153 + This method prepares the implementor to receive incremental restore data for a drive.
1.154 + It will be followed by a sequence of calls to supply the actual data. If multiple
1.155 + increments are supplied then this methid will be called before each increment.
1.156 +
1.157 + @param aDrive the drive being restored.
1.158 + */
1.159 + virtual void InitialiseRestoreIncrementDataL(TDriveNumber aDrive) = 0;
1.160 +
1.161 + /**
1.162 + This method receives a section of increment restore data.
1.163 + InitialiseRestoreIncrementDataL() will have been called prevously to specify the
1.164 + drive concerned.
1.165 +
1.166 + @param aBuffer a pointer to the base of the location whence data can be read.
1.167 + @param aFinished ETrue if all data has been returned for this increment, else EFalse.
1.168 + */
1.169 + virtual void RestoreIncrementDataSectionL(TDesC8& aBuffer, TBool aFinished) = 0;
1.170 +
1.171 + /**
1.172 + This method is called when all data to be restored has been supplied.
1.173 +
1.174 + @param aDrive the drive being restored.
1.175 + */
1.176 + virtual void RestoreComplete(TDriveNumber aDrive) = 0;
1.177 +
1.178 + /**
1.179 + This method prepares the implementor to return backup data on behalf of another data owner.
1.180 + It will be followed by a sequence of calls to request the actual data. This method is only
1.181 + for use by a proxy data manager that backs up data on behalf of other data owners. There
1.182 + is no corresponding method for snapshots as it is assumed that a proxy data manager will
1.183 + only handle base data.
1.184 +
1.185 + @param aSID the data owner whose data is to be backed up
1.186 + @param aDrive the drive being backed up.
1.187 + */
1.188 + virtual void InitialiseGetProxyBackupDataL(TSecureId aSID, TDriveNumber aDrive);
1.189 +
1.190 + /**
1.191 + This method prepares the implementor to receive base restore data for another data owner
1.192 + for a drive. It will be followed by a sequence of calls to supply the actual data.
1.193 + This method is only for use by a proxy data manager that restores up data on behalf of
1.194 + other data owners. There is no corresponding method for incremental data as it is assumed
1.195 + that a proxy data manager will only handle base data.
1.196 +
1.197 + @param aSID the data owner whose data is to be restored
1.198 + @param aDrive the drive being restored.
1.199 + */
1.200 + virtual void InitialiseRestoreProxyBaseDataL(TSecureId aSID, TDriveNumber aDrive);
1.201 +
1.202 + ///// General Methods /////
1.203 +
1.204 + /**
1.205 + This method is called if copying of data is terminated prematurely to allow the
1.206 + implementor to tidy up. The same method applies to all types of data and to backup
1.207 + and restore
1.208 + */
1.209 + virtual void TerminateMultiStageOperation() = 0;
1.210 +
1.211 + /**
1.212 + Gets an extended interface based on a supplied uid.
1.213 +
1.214 + @param aUid Uid which identifies an extended interface
1.215 + @return Pointer to an extended interface
1.216 + */
1.217 + virtual TAny* GetExtendedInterface(const TInt32 aUid);
1.218 +
1.219 + ///// Test Methods /////
1.220 + /**
1.221 + Gets a 32-bit checksum for its private data.
1.222 + This routine is for test purposes. It must be implemented but an invariant checksum
1.223 + value can be provided. Some tests may cause checksum values to be compared.
1.224 +
1.225 + @param aDrive the drive containing data being checksummed
1.226 + @return the 32-bit checksum
1.227 + */
1.228 + virtual TUint GetDataChecksum(TDriveNumber aDrive) = 0;
1.229 + };
1.230 +
1.231 + inline void MActiveBackupDataClient::InitialiseGetProxyBackupDataL(TSecureId /*aSID*/, TDriveNumber /*aDrive*/)
1.232 + /** Initialises the proxy backup data
1.233 +
1.234 + This is not supported here.
1.235 +
1.236 + @param aSID the secure Id
1.237 + @param aDrive the driver number
1.238 + @leave KErrNotSupported Always.
1.239 + */
1.240 + {
1.241 + User::Leave(KErrNotSupported);
1.242 + }
1.243 +
1.244 + inline void MActiveBackupDataClient::InitialiseRestoreProxyBaseDataL(TSecureId /*aSID*/, TDriveNumber /*aDrive*/)
1.245 + {
1.246 + /** Initialises the proxy backup base data
1.247 +
1.248 + This is not supported here.
1.249 +
1.250 + @param aSID the secure Id
1.251 + @param aDrive the driver number
1.252 + @leave KErrNotSupported Always.
1.253 + */
1.254 + User::Leave(KErrNotSupported);
1.255 + }
1.256 +
1.257 + inline TAny* MActiveBackupDataClient::GetExtendedInterface(const TInt32 /*aUid*/)
1.258 + {
1.259 + return NULL;
1.260 + }
1.261 +
1.262 +
1.263 + class RABClientSession;
1.264 + class CActiveBackupCallbackHandler;
1.265 +
1.266 + class CActiveBackupClient : public CBase
1.267 + /**
1.268 + CActiveBackupClient provides a connection to the Secure Backup Server for a data owning
1.269 + process.
1.270 +
1.271 + It can be used to obtain information about an active backup or restore operation.
1.272 + It can also be used to signal to the Secure Backup Server when the data owner is ready
1.273 + for backup or restore.
1.274 +
1.275 + It is also used by data owners that implement active backup or restore to provide a
1.276 + MActiveBackupDataClient implementation.
1.277 +
1.278 + This class owns a RActiveBackupSessionImpl instance and publishes the
1.279 + public API to the outside world. The reason for this facade class is twofold:
1.280 +
1.281 + @li Hiding the implementation details of RActiveBackupSessionImpl
1.282 +
1.283 + @li Future binary compatibility
1.284 +
1.285 + @released
1.286 + @publishedAll
1.287 + */
1.288 + {
1.289 + public:
1.290 + IMPORT_C static CActiveBackupClient* NewL();
1.291 +
1.292 + IMPORT_C static CActiveBackupClient* NewL(MActiveBackupDataClient* aClient);
1.293 + IMPORT_C ~CActiveBackupClient();
1.294 + IMPORT_C void BURModeInfoL(TDriveList& aDriveList, TBURPartType& aBackupType, TBackupIncType& aIncBackupType);
1.295 + IMPORT_C TBool DoesPartialBURAffectMeL();
1.296 + IMPORT_C void ConfirmReadyForBURL(TInt aErrorCode);
1.297 +
1.298 + private:
1.299 + CActiveBackupClient();
1.300 + void ConstructL();
1.301 + void ConstructL(MActiveBackupDataClient* aClient);
1.302 +
1.303 + private:
1.304 + /** Pointer to the client session R class that's wrapped up by this class */
1.305 + RABClientSession* iClientSession;
1.306 +
1.307 + /** Pointer to the Active Backup Callback Handler */
1.308 + CActiveBackupCallbackHandler* iABCallbackHandler;
1.309 + };
1.310 +
1.311 + } // end namespace
1.312 +
1.313 +#endif // __ACTIVEBACKUPCLIENT_H__
1.314 +