os/ossrv/genericservices/activebackupclient/inc/abclientserver.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
* Contains defines shared between the Active Backup client and Server.
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
*/
sl@0
    25
sl@0
    26
#ifndef __ABCLIENTSERVER_H__
sl@0
    27
#define __ABCLIENTSERVER_H__
sl@0
    28
sl@0
    29
#include <connect/tserverstart.h>
sl@0
    30
sl@0
    31
namespace conn
sl@0
    32
	{
sl@0
    33
	/** The name of the AB server.
sl@0
    34
	@ingroup Client
sl@0
    35
	@internalComponent
sl@0
    36
	*/
sl@0
    37
	_LIT(KABServerName,"!ABServer");
sl@0
    38
sl@0
    39
	/** Number of times to attempt connection to server.
sl@0
    40
	@ingroup Client
sl@0
    41
	@internalComponent
sl@0
    42
	*/
sl@0
    43
	const TInt KABRetryCount = 4;
sl@0
    44
sl@0
    45
	/** Number of async message slots.
sl@0
    46
	@ingroup Client
sl@0
    47
	@internalComponent
sl@0
    48
	*/
sl@0
    49
	const TInt KABASyncMessageSlots = 1;
sl@0
    50
sl@0
    51
sl@0
    52
	/** The AB major version number.
sl@0
    53
	@ingroup Client
sl@0
    54
	@internalComponent
sl@0
    55
	*/
sl@0
    56
	const TUint KABMajorVersionNumber = 1;
sl@0
    57
sl@0
    58
    /** The AB minor version number.
sl@0
    59
	@ingroup Client
sl@0
    60
	@internalComponent
sl@0
    61
	*/
sl@0
    62
	const TUint KABMinorVersionNumber = 0;
sl@0
    63
sl@0
    64
    /** The AB build number
sl@0
    65
	@ingroup Client
sl@0
    66
	@internalComponent
sl@0
    67
	*/
sl@0
    68
	const TUint KABBuildVersionNumber = 0;
sl@0
    69
	
sl@0
    70
	/** Size of data blocks to send back to the PC from the ABClient
sl@0
    71
	@ingroup Client
sl@0
    72
	@internalComponent
sl@0
    73
	*/
sl@0
    74
	const TInt KABMaxSendDataBlock = 65536;
sl@0
    75
sl@0
    76
	enum TABMessages
sl@0
    77
	/** AB Client/Server Messages
sl@0
    78
	@internalComponent
sl@0
    79
	*/
sl@0
    80
		{
sl@0
    81
		EABMsgBURModeInfo,					/*!< Get info about the backup/restore mode */
sl@0
    82
		EABMsgDoesPartialAffectMe,			/*!< Query whether or not this client is being operated on */
sl@0
    83
		EABMsgConfirmReadyForBUR,			/*!< Confirm to the SBEngine that all data has now been prepared */
sl@0
    84
		EABMsgPrimeForCallback,				/*!< This is the first msg that primes server for callbacks */
sl@0
    85
		EABMsgPrimeForCallbackAndResponse,	/*!< Re-prime the server, sending a response from the last call */
sl@0
    86
		EABMsgPrimeForCallbackAndResponseDes, /*!< As for PrimeForCallbackAndResponse but for sending a descriptor */
sl@0
    87
		EABMsgPropagateLeave,				/*!< Propagate a leave from the callback, back to the engine */
sl@0
    88
		EABMsgGetDataSync,					/*!< Synchronous call to get data from the server */
sl@0
    89
		EABMsgSendDataLength,				/*!< Synchronous call to send the length of data to the server */
sl@0
    90
		EABMsgClosingDownCallback,			/*!< Inform the server that we're closing down the callback interface */
sl@0
    91
		EABMsgGetDriveNumForSuppliedSnapshot /*!< Called from within the ReceiveSnapshot callback to return the drive num */
sl@0
    92
		};
sl@0
    93
sl@0
    94
	enum TABCallbackCommands
sl@0
    95
	/**
sl@0
    96
	List of commands that the server requests the client to call on it's callback interface
sl@0
    97
	@internalComponent
sl@0
    98
	*/
sl@0
    99
		{
sl@0
   100
		EABCallbackAllSnapshotsSupplied,
sl@0
   101
		EABCallbackReceiveSnapshotData,
sl@0
   102
		EABCallbackGetExpectedDataSize,
sl@0
   103
		EABCallbackGetSnapshotData,
sl@0
   104
		EABCallbackInitialiseGetBackupData,
sl@0
   105
		EABCallbackGetBackupDataSection,
sl@0
   106
		EABCallbackInitialiseRestoreBaseDataSection,
sl@0
   107
		EABCallbackRestoreBaseDataSection,
sl@0
   108
		EABCallbackInitialiseRestoreIncrementData,
sl@0
   109
		EABCallbackRestoreIncrementDataSection,
sl@0
   110
		EABCallbackRestoreComplete,
sl@0
   111
		EABCallbackInitialiseGetProxyBackupData,
sl@0
   112
		EABCallbackInitialiseRestoreProxyBaseData,
sl@0
   113
		EABCallbackTerminateMultiStageOperation,
sl@0
   114
		EABCallbackGetDataChecksum
sl@0
   115
		};
sl@0
   116
		
sl@0
   117
	/** The maximum size of descriptor data passed with each IPC call 
sl@0
   118
	@internalComponent
sl@0
   119
	*/
sl@0
   120
	const TInt KIPCMessageSize = 4096;
sl@0
   121
sl@0
   122
	}
sl@0
   123
sl@0
   124
#endif //__ABCLIENTSERVER_H__