os/persistentdata/persistentstorage/sql/SRC/Server/SqlBur.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) 2006-2010 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
//
sl@0
    15
sl@0
    16
#ifndef __SQLBUR_H__
sl@0
    17
#define __SQLBUR_H__
sl@0
    18
sl@0
    19
#include <e32base.h>
sl@0
    20
#include <f32file.h>
sl@0
    21
#include <f32file64.h>
sl@0
    22
#include <e32property.h>
sl@0
    23
#include <connect/abclient.h> // MactiveBackupDataClient
sl@0
    24
#include "SqlSrvBurInterface.h"
sl@0
    25
sl@0
    26
//Forward declarations
sl@0
    27
class CSqlBurCallback;
sl@0
    28
sl@0
    29
#ifdef SQL_BUR_PROPERTY_MONITOR_TEST
sl@0
    30
sl@0
    31
const TInt32 KSqlBurPropertyCategory = 0x10281e17;//the SQL server secure id (the bur tests have the same id, 
sl@0
    32
                                                  //in order to be able to operate with the property)
sl@0
    33
const TUint KSqlBurBackupRestoreKeyValue = 0x1234DDD1;
sl@0
    34
sl@0
    35
extern TInt TestModeSqlBurError;
sl@0
    36
#define SQL_BUR_TEST_SET_ERROR(err) TestModeSqlBurError = err 
sl@0
    37
//This macro is called at the end of CSqlBurEventMonitor::RunL()and CSqlBurEventMonitor::RunError() 
sl@0
    38
//CActiveScheduler::Stop() is called here to return the execution control back to the test code.
sl@0
    39
#define SQL_BUR_TEST_STOP() CActiveScheduler::Stop() 
sl@0
    40
sl@0
    41
#else
sl@0
    42
sl@0
    43
const TInt32 KSqlBurPropertyCategory = KUidSystemCategoryValue;
sl@0
    44
const TUint KSqlBurBackupRestoreKeyValue = conn::KUidBackupRestoreKey;
sl@0
    45
sl@0
    46
#define SQL_BUR_TEST_SET_ERROR(err) (void)0 
sl@0
    47
#define SQL_BUR_TEST_STOP() (void)0 
sl@0
    48
sl@0
    49
#endif
sl@0
    50
sl@0
    51
/**
sl@0
    52
The system category of the backup and restore property, that is used for notifying active backup clients
sl@0
    53
regarding beginning or the end of backup or restore process.
sl@0
    54
Different value is used in SQL tests, because only the secure backup server can set or get the value of
sl@0
    55
the  {KUidSystemCategoryValue, conn::KUidBackupRestoreKey} property. 
sl@0
    56
@internalComponent
sl@0
    57
*/
sl@0
    58
const TUid KSqlBurPropertyCategoryUid = {KSqlBurPropertyCategory};
sl@0
    59
sl@0
    60
/**
sl@0
    61
The backup and restore property key, that is used for notifying active backup clients
sl@0
    62
regarding beginning or the end of backup or restore process. 
sl@0
    63
Different value is used in SQL tests, because only the secure backup server can set or get the value of
sl@0
    64
the  {KUidSystemCategoryValue, conn::KUidBackupRestoreKey} property. 
sl@0
    65
@internalComponent
sl@0
    66
*/
sl@0
    67
const TUint KSqlBurBackupRestoreKey = KSqlBurBackupRestoreKeyValue;
sl@0
    68
sl@0
    69
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    70
//////////////                     Backup database file header format                           ///////////////////
sl@0
    71
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    72
sl@0
    73
////// No version (Version 0)
sl@0
    74
//  8 chars          8 chars          8 chars             up to 256 characters (512 bytes)
sl@0
    75
// <32-bit checksum><32-bit filesize><32-bit filenamelen><filename - UTF16 encoded>
sl@0
    76
sl@0
    77
//////             Version 2
sl@0
    78
//  8 chars          8 chars   4 chars     16 chars         8 chars             up to 256 characters (512 bytes)
sl@0
    79
// <32-bit checksum><FFFFAA55><Version N#><64-bit filesize><32-bit filenamelen><filename - UTF16 encoded>
sl@0
    80
sl@0
    81
const TInt KSqlBurHeaderVersion = 2;             //Current backup database file header version
sl@0
    82
sl@0
    83
const TUint32 KSqlBurMagicNum = 0xFFFFAA55;      //Magic number. If the "old database file size" field in the header
sl@0
    84
                                                 //has this value, then the header version is 2+
sl@0
    85
const TInt KSqlBurMaxHeaderSize = 256 + KMaxFileName; //The size of the buffer used for the operations on the header
sl@0
    86
sl@0
    87
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    88
sl@0
    89
/**
sl@0
    90
An object of this class is created to monitor the backup & restore property
sl@0
    91
{KUidSystemCategory, KUidBackupRestoreKey}.
sl@0
    92
If the property gets set, the CSqlBurEventMonitor object will create a CSqlBurClient
sl@0
    93
instance to handle the backup or restore.  
sl@0
    94
sl@0
    95
@internalComponent
sl@0
    96
*/
sl@0
    97
class CSqlBurEventMonitor : public CActive
sl@0
    98
	{
sl@0
    99
public:
sl@0
   100
	static CSqlBurEventMonitor* NewL(MSqlSrvBurInterface& aBufInterface);
sl@0
   101
	virtual ~CSqlBurEventMonitor();
sl@0
   102
#ifdef SQL_BUR_PROPERTY_MONITOR_TEST
sl@0
   103
	inline conn::CActiveBackupClient* ActiveBackupClient();
sl@0
   104
	inline CSqlBurCallback* SqlBurCallback();
sl@0
   105
#endif
sl@0
   106
		
sl@0
   107
private:
sl@0
   108
	CSqlBurEventMonitor(MSqlSrvBurInterface& aInterface);
sl@0
   109
	void ConstructL();
sl@0
   110
	virtual void RunL();
sl@0
   111
	virtual void DoCancel();
sl@0
   112
	virtual TInt RunError(TInt aError);
sl@0
   113
	void CreateContentL();
sl@0
   114
	void DestroyContent();
sl@0
   115
sl@0
   116
private:
sl@0
   117
	RProperty 					iBurProperty;//B&R property published by the B&R server. SQL server subscribes for notifications
sl@0
   118
	MSqlSrvBurInterface& 		iBurInterface;//Provided by the SQL server
sl@0
   119
	conn::CActiveBackupClient*	iActiveBackupClient;//The connection with the B&R server
sl@0
   120
	CSqlBurCallback*			iSqlBurCallback;//A "Database file list" interface provided by the SQL server
sl@0
   121
	
sl@0
   122
	};
sl@0
   123
sl@0
   124
#ifdef SQL_BUR_PROPERTY_MONITOR_TEST
sl@0
   125
sl@0
   126
inline conn::CActiveBackupClient* CSqlBurEventMonitor::ActiveBackupClient()
sl@0
   127
	{
sl@0
   128
	return iActiveBackupClient;
sl@0
   129
	}
sl@0
   130
sl@0
   131
inline CSqlBurCallback* CSqlBurEventMonitor::SqlBurCallback()
sl@0
   132
	{
sl@0
   133
	return iSqlBurCallback;
sl@0
   134
	}
sl@0
   135
sl@0
   136
#endif
sl@0
   137
sl@0
   138
/**
sl@0
   139
This class is called by the Backup and Restore Framework
sl@0
   140
when a backup or restore is requested by the user
sl@0
   141
It implements the active proxy backup and restore as
sl@0
   142
defined in the MActiveBackupDataClient interface.
sl@0
   143
sl@0
   144
@internalComponent
sl@0
   145
*/
sl@0
   146
class CSqlBurCallback : public CBase, public conn::MActiveBackupDataClient
sl@0
   147
	{
sl@0
   148
public:
sl@0
   149
	static CSqlBurCallback* NewL(MSqlSrvBurInterface& aBufInterface);
sl@0
   150
	virtual ~CSqlBurCallback();
sl@0
   151
	
sl@0
   152
	//Implementations of virtuals from MActiveBackupDataClient - full backup
sl@0
   153
	virtual void InitialiseGetProxyBackupDataL(TSecureId aSid, TDriveNumber aDrive);
sl@0
   154
	virtual TUint GetExpectedDataSize(TDriveNumber aDrive);
sl@0
   155
	virtual void GetBackupDataSectionL(TPtr8& aBuffer, TBool& aFinished);
sl@0
   156
sl@0
   157
	//Implementations of virtuals from MActiveBackupDataClient - full restore
sl@0
   158
	virtual void InitialiseRestoreProxyBaseDataL(TSecureId aSid, TDriveNumber aDrive);
sl@0
   159
	virtual void RestoreComplete(TDriveNumber aDrive);
sl@0
   160
	virtual void RestoreBaseDataSectionL(TDesC8& aBuffer, TBool aFinished);
sl@0
   161
sl@0
   162
	virtual void TerminateMultiStageOperation();
sl@0
   163
	virtual TUint GetDataChecksum(TDriveNumber aDrive);	
sl@0
   164
	
sl@0
   165
	//Implementations of virtuals from MActiveBackupDataClient - incremental backup & restore - not supported
sl@0
   166
	virtual void AllSnapshotsSuppliedL();
sl@0
   167
	virtual void ReceiveSnapshotDataL(TDriveNumber aDrive, TDesC8& aBuffer, TBool aLastSection);
sl@0
   168
	virtual void GetSnapshotDataL(TDriveNumber aDrive, TPtr8& aBuffer, TBool& aFinished);
sl@0
   169
	virtual void InitialiseGetBackupDataL(TDriveNumber aDrive);
sl@0
   170
	virtual void InitialiseRestoreBaseDataL(TDriveNumber aDrive);
sl@0
   171
	virtual void InitialiseRestoreIncrementDataL(TDriveNumber aDrive);
sl@0
   172
	virtual void RestoreIncrementDataSectionL(TDesC8& aBuffer, TBool aFinished);
sl@0
   173
	
sl@0
   174
	// to validate successful BUR
sl@0
   175
	TInt CheckSum(const RFile64 &aOpenFile, TUint64& aCheckSum) const;
sl@0
   176
	
sl@0
   177
private:
sl@0
   178
	CSqlBurCallback(MSqlSrvBurInterface& aInterface);
sl@0
   179
	void CopyBufData(const TDesC8& aInBuf, TInt& aInBufReadPos, TDes& aOutBuf, TInt aDataLen);
sl@0
   180
	void BackupCleanup();
sl@0
   181
	TInt RestoreCleanup();
sl@0
   182
	void SetBackupError(TInt aError);
sl@0
   183
	
sl@0
   184
private:
sl@0
   185
sl@0
   186
	// state machine for backup
sl@0
   187
	enum
sl@0
   188
		{
sl@0
   189
		EBackupNoFileOpen=0, // not currently processing a file
sl@0
   190
		EBackupOpenNothingSent, // file open and ready, but nothing sent yet
sl@0
   191
		EBackupOpenPartHeaderSent, // part of the header is sent, but more remains
sl@0
   192
		EBackupOpenAllHeaderSent, // all of the header is sent, ready to send the data
sl@0
   193
		EBackupEndOfFile // all done, tidy up after backup
sl@0
   194
		};
sl@0
   195
sl@0
   196
	// state machine for restore
sl@0
   197
	// this is more complicated because we are driven by the backup engine
sl@0
   198
	// and have incomplete information most of the time
sl@0
   199
	enum
sl@0
   200
		{
sl@0
   201
		ERestoreExpectChecksum=0, 		// checksum marks the start of the next file
sl@0
   202
		ERestoreExpectOldFileSize, 		// the size of the file - backup file header version 0
sl@0
   203
		ERestoreExpectVersion, 			// backup header version
sl@0
   204
		ERestoreExpectFileSize, 		// the size of the file, backup file header version 2+
sl@0
   205
		ERestoreExpectFileNameSize, 	// the size of the file name
sl@0
   206
		ERestoreExpectFileName, 		// the name of the file to restore
sl@0
   207
		ERestoreExpectData, 			// now for the data
sl@0
   208
		ERestoreComplete 				// tidy up after restore
sl@0
   209
		};
sl@0
   210
		
sl@0
   211
	MSqlSrvBurInterface& iInterface;	//A "Database file list" interface provided by the SQL server
sl@0
   212
	RArray<HBufC*> iFileList; 			//An array with database file names for backup, provided by the SQL server 
sl@0
   213
	RFile64 iFile;						//A handle to file being backup/restored.
sl@0
   214
	TInt iFileIndex;					//The index of the file name in iFileList being processed at the moment 
sl@0
   215
	TUint iState;						//Backup or restore state machine - current state
sl@0
   216
	TBuf<KSqlBurMaxHeaderSize> iBuffer; //Used for the header data
sl@0
   217
	TInt iHeaderSent; 					//How many header bytes sent so far
sl@0
   218
	TUint32 iChecksum; 					//Database archive checksum - used by the restore.
sl@0
   219
	TInt64 iFileSize; 					//Restored database file size - used by the restore.
sl@0
   220
	TUint32 iFileNameSize; 				//Restored database file name size - used by the restore.
sl@0
   221
	TDriveNumber iRestoreDrive;			//The drive where the data is currently restored to.
sl@0
   222
	TSecureId iRestoreId;				//The secure id of the client which data is being restored at the moment
sl@0
   223
	TInt iBackupError;					//An error occured during the backup processing
sl@0
   224
	TFileName iRestoreDir;				//The directory where temporary files will be created during restore.
sl@0
   225
	TParse iParse;
sl@0
   226
sl@0
   227
	};
sl@0
   228
sl@0
   229
#endif // __SQLBUR_H__