sl@0: // Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __SQLBUR_H__ sl@0: #define __SQLBUR_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include // MactiveBackupDataClient sl@0: #include "SqlSrvBurInterface.h" sl@0: sl@0: //Forward declarations sl@0: class CSqlBurCallback; sl@0: sl@0: #ifdef SQL_BUR_PROPERTY_MONITOR_TEST sl@0: sl@0: const TInt32 KSqlBurPropertyCategory = 0x10281e17;//the SQL server secure id (the bur tests have the same id, sl@0: //in order to be able to operate with the property) sl@0: const TUint KSqlBurBackupRestoreKeyValue = 0x1234DDD1; sl@0: sl@0: extern TInt TestModeSqlBurError; sl@0: #define SQL_BUR_TEST_SET_ERROR(err) TestModeSqlBurError = err sl@0: //This macro is called at the end of CSqlBurEventMonitor::RunL()and CSqlBurEventMonitor::RunError() sl@0: //CActiveScheduler::Stop() is called here to return the execution control back to the test code. sl@0: #define SQL_BUR_TEST_STOP() CActiveScheduler::Stop() sl@0: sl@0: #else sl@0: sl@0: const TInt32 KSqlBurPropertyCategory = KUidSystemCategoryValue; sl@0: const TUint KSqlBurBackupRestoreKeyValue = conn::KUidBackupRestoreKey; sl@0: sl@0: #define SQL_BUR_TEST_SET_ERROR(err) (void)0 sl@0: #define SQL_BUR_TEST_STOP() (void)0 sl@0: sl@0: #endif sl@0: sl@0: /** sl@0: The system category of the backup and restore property, that is used for notifying active backup clients sl@0: regarding beginning or the end of backup or restore process. sl@0: Different value is used in SQL tests, because only the secure backup server can set or get the value of sl@0: the {KUidSystemCategoryValue, conn::KUidBackupRestoreKey} property. sl@0: @internalComponent sl@0: */ sl@0: const TUid KSqlBurPropertyCategoryUid = {KSqlBurPropertyCategory}; sl@0: sl@0: /** sl@0: The backup and restore property key, that is used for notifying active backup clients sl@0: regarding beginning or the end of backup or restore process. sl@0: Different value is used in SQL tests, because only the secure backup server can set or get the value of sl@0: the {KUidSystemCategoryValue, conn::KUidBackupRestoreKey} property. sl@0: @internalComponent sl@0: */ sl@0: const TUint KSqlBurBackupRestoreKey = KSqlBurBackupRestoreKeyValue; sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: ////////////// Backup database file header format /////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: ////// No version (Version 0) sl@0: // 8 chars 8 chars 8 chars up to 256 characters (512 bytes) sl@0: // <32-bit checksum><32-bit filesize><32-bit filenamelen> sl@0: sl@0: ////// Version 2 sl@0: // 8 chars 8 chars 4 chars 16 chars 8 chars up to 256 characters (512 bytes) sl@0: // <32-bit checksum><64-bit filesize><32-bit filenamelen> sl@0: sl@0: const TInt KSqlBurHeaderVersion = 2; //Current backup database file header version sl@0: sl@0: const TUint32 KSqlBurMagicNum = 0xFFFFAA55; //Magic number. If the "old database file size" field in the header sl@0: //has this value, then the header version is 2+ sl@0: const TInt KSqlBurMaxHeaderSize = 256 + KMaxFileName; //The size of the buffer used for the operations on the header sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: /** sl@0: An object of this class is created to monitor the backup & restore property sl@0: {KUidSystemCategory, KUidBackupRestoreKey}. sl@0: If the property gets set, the CSqlBurEventMonitor object will create a CSqlBurClient sl@0: instance to handle the backup or restore. sl@0: sl@0: @internalComponent sl@0: */ sl@0: class CSqlBurEventMonitor : public CActive sl@0: { sl@0: public: sl@0: static CSqlBurEventMonitor* NewL(MSqlSrvBurInterface& aBufInterface); sl@0: virtual ~CSqlBurEventMonitor(); sl@0: #ifdef SQL_BUR_PROPERTY_MONITOR_TEST sl@0: inline conn::CActiveBackupClient* ActiveBackupClient(); sl@0: inline CSqlBurCallback* SqlBurCallback(); sl@0: #endif sl@0: sl@0: private: sl@0: CSqlBurEventMonitor(MSqlSrvBurInterface& aInterface); sl@0: void ConstructL(); sl@0: virtual void RunL(); sl@0: virtual void DoCancel(); sl@0: virtual TInt RunError(TInt aError); sl@0: void CreateContentL(); sl@0: void DestroyContent(); sl@0: sl@0: private: sl@0: RProperty iBurProperty;//B&R property published by the B&R server. SQL server subscribes for notifications sl@0: MSqlSrvBurInterface& iBurInterface;//Provided by the SQL server sl@0: conn::CActiveBackupClient* iActiveBackupClient;//The connection with the B&R server sl@0: CSqlBurCallback* iSqlBurCallback;//A "Database file list" interface provided by the SQL server sl@0: sl@0: }; sl@0: sl@0: #ifdef SQL_BUR_PROPERTY_MONITOR_TEST sl@0: sl@0: inline conn::CActiveBackupClient* CSqlBurEventMonitor::ActiveBackupClient() sl@0: { sl@0: return iActiveBackupClient; sl@0: } sl@0: sl@0: inline CSqlBurCallback* CSqlBurEventMonitor::SqlBurCallback() sl@0: { sl@0: return iSqlBurCallback; sl@0: } sl@0: sl@0: #endif sl@0: sl@0: /** sl@0: This class is called by the Backup and Restore Framework sl@0: when a backup or restore is requested by the user sl@0: It implements the active proxy backup and restore as sl@0: defined in the MActiveBackupDataClient interface. sl@0: sl@0: @internalComponent sl@0: */ sl@0: class CSqlBurCallback : public CBase, public conn::MActiveBackupDataClient sl@0: { sl@0: public: sl@0: static CSqlBurCallback* NewL(MSqlSrvBurInterface& aBufInterface); sl@0: virtual ~CSqlBurCallback(); sl@0: sl@0: //Implementations of virtuals from MActiveBackupDataClient - full backup sl@0: virtual void InitialiseGetProxyBackupDataL(TSecureId aSid, TDriveNumber aDrive); sl@0: virtual TUint GetExpectedDataSize(TDriveNumber aDrive); sl@0: virtual void GetBackupDataSectionL(TPtr8& aBuffer, TBool& aFinished); sl@0: sl@0: //Implementations of virtuals from MActiveBackupDataClient - full restore sl@0: virtual void InitialiseRestoreProxyBaseDataL(TSecureId aSid, TDriveNumber aDrive); sl@0: virtual void RestoreComplete(TDriveNumber aDrive); sl@0: virtual void RestoreBaseDataSectionL(TDesC8& aBuffer, TBool aFinished); sl@0: sl@0: virtual void TerminateMultiStageOperation(); sl@0: virtual TUint GetDataChecksum(TDriveNumber aDrive); sl@0: sl@0: //Implementations of virtuals from MActiveBackupDataClient - incremental backup & restore - not supported sl@0: virtual void AllSnapshotsSuppliedL(); sl@0: virtual void ReceiveSnapshotDataL(TDriveNumber aDrive, TDesC8& aBuffer, TBool aLastSection); sl@0: virtual void GetSnapshotDataL(TDriveNumber aDrive, TPtr8& aBuffer, TBool& aFinished); sl@0: virtual void InitialiseGetBackupDataL(TDriveNumber aDrive); sl@0: virtual void InitialiseRestoreBaseDataL(TDriveNumber aDrive); sl@0: virtual void InitialiseRestoreIncrementDataL(TDriveNumber aDrive); sl@0: virtual void RestoreIncrementDataSectionL(TDesC8& aBuffer, TBool aFinished); sl@0: sl@0: // to validate successful BUR sl@0: TInt CheckSum(const RFile64 &aOpenFile, TUint64& aCheckSum) const; sl@0: sl@0: private: sl@0: CSqlBurCallback(MSqlSrvBurInterface& aInterface); sl@0: void CopyBufData(const TDesC8& aInBuf, TInt& aInBufReadPos, TDes& aOutBuf, TInt aDataLen); sl@0: void BackupCleanup(); sl@0: TInt RestoreCleanup(); sl@0: void SetBackupError(TInt aError); sl@0: sl@0: private: sl@0: sl@0: // state machine for backup sl@0: enum sl@0: { sl@0: EBackupNoFileOpen=0, // not currently processing a file sl@0: EBackupOpenNothingSent, // file open and ready, but nothing sent yet sl@0: EBackupOpenPartHeaderSent, // part of the header is sent, but more remains sl@0: EBackupOpenAllHeaderSent, // all of the header is sent, ready to send the data sl@0: EBackupEndOfFile // all done, tidy up after backup sl@0: }; sl@0: sl@0: // state machine for restore sl@0: // this is more complicated because we are driven by the backup engine sl@0: // and have incomplete information most of the time sl@0: enum sl@0: { sl@0: ERestoreExpectChecksum=0, // checksum marks the start of the next file sl@0: ERestoreExpectOldFileSize, // the size of the file - backup file header version 0 sl@0: ERestoreExpectVersion, // backup header version sl@0: ERestoreExpectFileSize, // the size of the file, backup file header version 2+ sl@0: ERestoreExpectFileNameSize, // the size of the file name sl@0: ERestoreExpectFileName, // the name of the file to restore sl@0: ERestoreExpectData, // now for the data sl@0: ERestoreComplete // tidy up after restore sl@0: }; sl@0: sl@0: MSqlSrvBurInterface& iInterface; //A "Database file list" interface provided by the SQL server sl@0: RArray iFileList; //An array with database file names for backup, provided by the SQL server sl@0: RFile64 iFile; //A handle to file being backup/restored. sl@0: TInt iFileIndex; //The index of the file name in iFileList being processed at the moment sl@0: TUint iState; //Backup or restore state machine - current state sl@0: TBuf iBuffer; //Used for the header data sl@0: TInt iHeaderSent; //How many header bytes sent so far sl@0: TUint32 iChecksum; //Database archive checksum - used by the restore. sl@0: TInt64 iFileSize; //Restored database file size - used by the restore. sl@0: TUint32 iFileNameSize; //Restored database file name size - used by the restore. sl@0: TDriveNumber iRestoreDrive; //The drive where the data is currently restored to. sl@0: TSecureId iRestoreId; //The secure id of the client which data is being restored at the moment sl@0: TInt iBackupError; //An error occured during the backup processing sl@0: TFileName iRestoreDir; //The directory where temporary files will be created during restore. sl@0: TParse iParse; sl@0: sl@0: }; sl@0: sl@0: #endif // __SQLBUR_H__