1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sql/SRC/Server/SqlBur.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,229 @@
1.4 +// Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef __SQLBUR_H__
1.20 +#define __SQLBUR_H__
1.21 +
1.22 +#include <e32base.h>
1.23 +#include <f32file.h>
1.24 +#include <f32file64.h>
1.25 +#include <e32property.h>
1.26 +#include <connect/abclient.h> // MactiveBackupDataClient
1.27 +#include "SqlSrvBurInterface.h"
1.28 +
1.29 +//Forward declarations
1.30 +class CSqlBurCallback;
1.31 +
1.32 +#ifdef SQL_BUR_PROPERTY_MONITOR_TEST
1.33 +
1.34 +const TInt32 KSqlBurPropertyCategory = 0x10281e17;//the SQL server secure id (the bur tests have the same id,
1.35 + //in order to be able to operate with the property)
1.36 +const TUint KSqlBurBackupRestoreKeyValue = 0x1234DDD1;
1.37 +
1.38 +extern TInt TestModeSqlBurError;
1.39 +#define SQL_BUR_TEST_SET_ERROR(err) TestModeSqlBurError = err
1.40 +//This macro is called at the end of CSqlBurEventMonitor::RunL()and CSqlBurEventMonitor::RunError()
1.41 +//CActiveScheduler::Stop() is called here to return the execution control back to the test code.
1.42 +#define SQL_BUR_TEST_STOP() CActiveScheduler::Stop()
1.43 +
1.44 +#else
1.45 +
1.46 +const TInt32 KSqlBurPropertyCategory = KUidSystemCategoryValue;
1.47 +const TUint KSqlBurBackupRestoreKeyValue = conn::KUidBackupRestoreKey;
1.48 +
1.49 +#define SQL_BUR_TEST_SET_ERROR(err) (void)0
1.50 +#define SQL_BUR_TEST_STOP() (void)0
1.51 +
1.52 +#endif
1.53 +
1.54 +/**
1.55 +The system category of the backup and restore property, that is used for notifying active backup clients
1.56 +regarding beginning or the end of backup or restore process.
1.57 +Different value is used in SQL tests, because only the secure backup server can set or get the value of
1.58 +the {KUidSystemCategoryValue, conn::KUidBackupRestoreKey} property.
1.59 +@internalComponent
1.60 +*/
1.61 +const TUid KSqlBurPropertyCategoryUid = {KSqlBurPropertyCategory};
1.62 +
1.63 +/**
1.64 +The backup and restore property key, that is used for notifying active backup clients
1.65 +regarding beginning or the end of backup or restore process.
1.66 +Different value is used in SQL tests, because only the secure backup server can set or get the value of
1.67 +the {KUidSystemCategoryValue, conn::KUidBackupRestoreKey} property.
1.68 +@internalComponent
1.69 +*/
1.70 +const TUint KSqlBurBackupRestoreKey = KSqlBurBackupRestoreKeyValue;
1.71 +
1.72 +///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1.73 +////////////// Backup database file header format ///////////////////
1.74 +///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1.75 +
1.76 +////// No version (Version 0)
1.77 +// 8 chars 8 chars 8 chars up to 256 characters (512 bytes)
1.78 +// <32-bit checksum><32-bit filesize><32-bit filenamelen><filename - UTF16 encoded>
1.79 +
1.80 +////// Version 2
1.81 +// 8 chars 8 chars 4 chars 16 chars 8 chars up to 256 characters (512 bytes)
1.82 +// <32-bit checksum><FFFFAA55><Version N#><64-bit filesize><32-bit filenamelen><filename - UTF16 encoded>
1.83 +
1.84 +const TInt KSqlBurHeaderVersion = 2; //Current backup database file header version
1.85 +
1.86 +const TUint32 KSqlBurMagicNum = 0xFFFFAA55; //Magic number. If the "old database file size" field in the header
1.87 + //has this value, then the header version is 2+
1.88 +const TInt KSqlBurMaxHeaderSize = 256 + KMaxFileName; //The size of the buffer used for the operations on the header
1.89 +
1.90 +///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1.91 +
1.92 +/**
1.93 +An object of this class is created to monitor the backup & restore property
1.94 +{KUidSystemCategory, KUidBackupRestoreKey}.
1.95 +If the property gets set, the CSqlBurEventMonitor object will create a CSqlBurClient
1.96 +instance to handle the backup or restore.
1.97 +
1.98 +@internalComponent
1.99 +*/
1.100 +class CSqlBurEventMonitor : public CActive
1.101 + {
1.102 +public:
1.103 + static CSqlBurEventMonitor* NewL(MSqlSrvBurInterface& aBufInterface);
1.104 + virtual ~CSqlBurEventMonitor();
1.105 +#ifdef SQL_BUR_PROPERTY_MONITOR_TEST
1.106 + inline conn::CActiveBackupClient* ActiveBackupClient();
1.107 + inline CSqlBurCallback* SqlBurCallback();
1.108 +#endif
1.109 +
1.110 +private:
1.111 + CSqlBurEventMonitor(MSqlSrvBurInterface& aInterface);
1.112 + void ConstructL();
1.113 + virtual void RunL();
1.114 + virtual void DoCancel();
1.115 + virtual TInt RunError(TInt aError);
1.116 + void CreateContentL();
1.117 + void DestroyContent();
1.118 +
1.119 +private:
1.120 + RProperty iBurProperty;//B&R property published by the B&R server. SQL server subscribes for notifications
1.121 + MSqlSrvBurInterface& iBurInterface;//Provided by the SQL server
1.122 + conn::CActiveBackupClient* iActiveBackupClient;//The connection with the B&R server
1.123 + CSqlBurCallback* iSqlBurCallback;//A "Database file list" interface provided by the SQL server
1.124 +
1.125 + };
1.126 +
1.127 +#ifdef SQL_BUR_PROPERTY_MONITOR_TEST
1.128 +
1.129 +inline conn::CActiveBackupClient* CSqlBurEventMonitor::ActiveBackupClient()
1.130 + {
1.131 + return iActiveBackupClient;
1.132 + }
1.133 +
1.134 +inline CSqlBurCallback* CSqlBurEventMonitor::SqlBurCallback()
1.135 + {
1.136 + return iSqlBurCallback;
1.137 + }
1.138 +
1.139 +#endif
1.140 +
1.141 +/**
1.142 +This class is called by the Backup and Restore Framework
1.143 +when a backup or restore is requested by the user
1.144 +It implements the active proxy backup and restore as
1.145 +defined in the MActiveBackupDataClient interface.
1.146 +
1.147 +@internalComponent
1.148 +*/
1.149 +class CSqlBurCallback : public CBase, public conn::MActiveBackupDataClient
1.150 + {
1.151 +public:
1.152 + static CSqlBurCallback* NewL(MSqlSrvBurInterface& aBufInterface);
1.153 + virtual ~CSqlBurCallback();
1.154 +
1.155 + //Implementations of virtuals from MActiveBackupDataClient - full backup
1.156 + virtual void InitialiseGetProxyBackupDataL(TSecureId aSid, TDriveNumber aDrive);
1.157 + virtual TUint GetExpectedDataSize(TDriveNumber aDrive);
1.158 + virtual void GetBackupDataSectionL(TPtr8& aBuffer, TBool& aFinished);
1.159 +
1.160 + //Implementations of virtuals from MActiveBackupDataClient - full restore
1.161 + virtual void InitialiseRestoreProxyBaseDataL(TSecureId aSid, TDriveNumber aDrive);
1.162 + virtual void RestoreComplete(TDriveNumber aDrive);
1.163 + virtual void RestoreBaseDataSectionL(TDesC8& aBuffer, TBool aFinished);
1.164 +
1.165 + virtual void TerminateMultiStageOperation();
1.166 + virtual TUint GetDataChecksum(TDriveNumber aDrive);
1.167 +
1.168 + //Implementations of virtuals from MActiveBackupDataClient - incremental backup & restore - not supported
1.169 + virtual void AllSnapshotsSuppliedL();
1.170 + virtual void ReceiveSnapshotDataL(TDriveNumber aDrive, TDesC8& aBuffer, TBool aLastSection);
1.171 + virtual void GetSnapshotDataL(TDriveNumber aDrive, TPtr8& aBuffer, TBool& aFinished);
1.172 + virtual void InitialiseGetBackupDataL(TDriveNumber aDrive);
1.173 + virtual void InitialiseRestoreBaseDataL(TDriveNumber aDrive);
1.174 + virtual void InitialiseRestoreIncrementDataL(TDriveNumber aDrive);
1.175 + virtual void RestoreIncrementDataSectionL(TDesC8& aBuffer, TBool aFinished);
1.176 +
1.177 + // to validate successful BUR
1.178 + TInt CheckSum(const RFile64 &aOpenFile, TUint64& aCheckSum) const;
1.179 +
1.180 +private:
1.181 + CSqlBurCallback(MSqlSrvBurInterface& aInterface);
1.182 + void CopyBufData(const TDesC8& aInBuf, TInt& aInBufReadPos, TDes& aOutBuf, TInt aDataLen);
1.183 + void BackupCleanup();
1.184 + TInt RestoreCleanup();
1.185 + void SetBackupError(TInt aError);
1.186 +
1.187 +private:
1.188 +
1.189 + // state machine for backup
1.190 + enum
1.191 + {
1.192 + EBackupNoFileOpen=0, // not currently processing a file
1.193 + EBackupOpenNothingSent, // file open and ready, but nothing sent yet
1.194 + EBackupOpenPartHeaderSent, // part of the header is sent, but more remains
1.195 + EBackupOpenAllHeaderSent, // all of the header is sent, ready to send the data
1.196 + EBackupEndOfFile // all done, tidy up after backup
1.197 + };
1.198 +
1.199 + // state machine for restore
1.200 + // this is more complicated because we are driven by the backup engine
1.201 + // and have incomplete information most of the time
1.202 + enum
1.203 + {
1.204 + ERestoreExpectChecksum=0, // checksum marks the start of the next file
1.205 + ERestoreExpectOldFileSize, // the size of the file - backup file header version 0
1.206 + ERestoreExpectVersion, // backup header version
1.207 + ERestoreExpectFileSize, // the size of the file, backup file header version 2+
1.208 + ERestoreExpectFileNameSize, // the size of the file name
1.209 + ERestoreExpectFileName, // the name of the file to restore
1.210 + ERestoreExpectData, // now for the data
1.211 + ERestoreComplete // tidy up after restore
1.212 + };
1.213 +
1.214 + MSqlSrvBurInterface& iInterface; //A "Database file list" interface provided by the SQL server
1.215 + RArray<HBufC*> iFileList; //An array with database file names for backup, provided by the SQL server
1.216 + RFile64 iFile; //A handle to file being backup/restored.
1.217 + TInt iFileIndex; //The index of the file name in iFileList being processed at the moment
1.218 + TUint iState; //Backup or restore state machine - current state
1.219 + TBuf<KSqlBurMaxHeaderSize> iBuffer; //Used for the header data
1.220 + TInt iHeaderSent; //How many header bytes sent so far
1.221 + TUint32 iChecksum; //Database archive checksum - used by the restore.
1.222 + TInt64 iFileSize; //Restored database file size - used by the restore.
1.223 + TUint32 iFileNameSize; //Restored database file name size - used by the restore.
1.224 + TDriveNumber iRestoreDrive; //The drive where the data is currently restored to.
1.225 + TSecureId iRestoreId; //The secure id of the client which data is being restored at the moment
1.226 + TInt iBackupError; //An error occured during the backup processing
1.227 + TFileName iRestoreDir; //The directory where temporary files will be created during restore.
1.228 + TParse iParse;
1.229 +
1.230 + };
1.231 +
1.232 +#endif // __SQLBUR_H__