os/ossrv/genericservices/activebackupclient/src/abclientsession.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericservices/activebackupclient/src/abclientsession.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,315 @@
     1.4 +// Copyright (c) 2004-2009 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 +// Implementation of RABClientSession class.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 + @file
    1.23 +*/
    1.24 +
    1.25 +#include "abclientsession.h"
    1.26 +#include "abclientserver.h"
    1.27 +#include "panic.h"
    1.28 +
    1.29 +namespace conn
    1.30 +	{
    1.31 +	HBufC8* RABClientSession::GetDataFromServerLC(const TInt aDataLength, 
    1.32 +		TABCallbackCommands aCallbackRequestingData)
    1.33 +	/**
    1.34 +	Following a callback call to the Active Backup Callback Handler, this method requests the data 
    1.35 +	from the server. aDataLength will have been supplied by the original callback call from the server 
    1.36 +	and all that remains is to make a synchronous call to get it copied over
    1.37 +	
    1.38 +	@param aDataLength The length of the data that will be received
    1.39 +	@param aCallbackRequestingData The callback enum identifying the callback requesting this data
    1.40 +	@return Pointer to a heap allocated descriptor containing data from the server
    1.41 +	*/
    1.42 +		{
    1.43 +		HBufC8* pReturnedData = HBufC8::NewLC(aDataLength);
    1.44 +		
    1.45 +		TPtr8 returnedData(pReturnedData->Des());
    1.46 +		
    1.47 +		// Request that the server returns the promised data to the client for the specified callback 
    1.48 +		User::LeaveIfError(SendReceive(EABMsgGetDataSync, 
    1.49 +			TIpcArgs(static_cast<TInt>(aCallbackRequestingData), &returnedData)));
    1.50 +		
    1.51 +		return pReturnedData;
    1.52 +		}
    1.53 +
    1.54 +	HBufC8* RABClientSession::GetDataFromServerLC(const TInt aDataLength, 
    1.55 +		TABCallbackCommands aCallbackRequestingData, TDriveNumber& aDriveNum)
    1.56 +	/**
    1.57 +	Following a callback call to the Active Backup Callback Handler, this method requests the data 
    1.58 +	from the server. aDataLength will have been supplied by the original callback call from the server 
    1.59 +	and all that remains is to make a synchronous call to get it copied over. This should only be called 
    1.60 +	from a ReceiveSnapshot callback
    1.61 +	
    1.62 +	@param aDataLength The length of the data that will be received
    1.63 +	@param aCallbackRequestingData The callback enum identifying the callback requesting this data
    1.64 +	@param aDriveNum The drive number
    1.65 +
    1.66 +	@return Pointer to a heap allocated descriptor containing data from the server
    1.67 +	*/
    1.68 +		{
    1.69 +		TPckg<TDriveNumber> drvPkg(aDriveNum);
    1.70 +		HBufC8* pReturnedData = HBufC8::NewLC(aDataLength);
    1.71 +		
    1.72 +		TPtr8 returnedData(pReturnedData->Des());
    1.73 +		
    1.74 +		// Request that the server returns the promised data to the client for the specified callback 
    1.75 +		User::LeaveIfError(SendReceive(EABMsgGetDataSync, 
    1.76 +			TIpcArgs(static_cast<TInt>(aCallbackRequestingData), &returnedData)));
    1.77 +		
    1.78 +		// Request that the server returns the drive number to the client for the specified callback 
    1.79 +		TInt retVal = SendReceive(EABMsgGetDriveNumForSuppliedSnapshot);
    1.80 +		
    1.81 +		User::LeaveIfError(retVal);
    1.82 +		
    1.83 +		aDriveNum = static_cast<TDriveNumber>(retVal);
    1.84 +		
    1.85 +		return pReturnedData;
    1.86 +		}
    1.87 +
    1.88 +	void RABClientSession::SendDataLengthToServerL(TDesC8& aData, TBool aFinished, 
    1.89 +		TABCallbackCommands aCallbackSendingData)
    1.90 +	/**
    1.91 +	Send the length and finished flag back to the server. Limitations of IPC mean that we can only send 
    1.92 +	fixed size data to the server, hence the length and finished flag are sent first so that the server 
    1.93 +	may allocate the appropriate amount of space prior to the response containing the data
    1.94 +	
    1.95 +	@param aData 		Descriptor containing the data to send back to the server. Only the length of this 
    1.96 +						is sent in this message
    1.97 +	@param aFinished 	Flag indicating that this is the last transfer from the client to server. If EFalse, 
    1.98 +						the server must call the callback again
    1.99 +	@param aCallbackSendingData This 
   1.100 +	*/
   1.101 +		{
   1.102 +		// Make the synchronous call back to the server telling it to allocate a big enough buffer
   1.103 +		// to handle the data transfer that will follow this 
   1.104 +		User::LeaveIfError(SendReceive(EABMsgSendDataLength, TIpcArgs(
   1.105 +										static_cast<TInt>(aData.Size()),
   1.106 +										static_cast<TInt>(aFinished),
   1.107 +										static_cast<TInt>(aCallbackSendingData))));
   1.108 +		}
   1.109 +
   1.110 +	void RABClientSession::PrimeServerForCallbackL(TPckgBuf<TABCallbackCommands>& aCallback, 
   1.111 +		TPckgBuf<TInt>& aArg1, TPckgBuf<TInt>& aArg2, TRequestStatus& aStatus)
   1.112 +	/** 
   1.113 +	Send an async message to the server so that it can call us back when it's ready to make callback's
   1.114 +	
   1.115 +	@param aCallback This modifiable package buf is set by the server to indicate which callback to call
   1.116 +	@param aArg1 This is the first argument for the callback, set by the server
   1.117 +	@param aArg2 This is the second argument for the callback, set by the server
   1.118 +	@param aStatus The status 
   1.119 +	*/
   1.120 +		{
   1.121 +		SendReceive(EABMsgPrimeForCallback, TIpcArgs(&aCallback, &aArg1, &aArg2), aStatus);
   1.122 +		}
   1.123 +		
   1.124 +	void RABClientSession::PrimeServerForCallbackWithResponseL(TPckgBuf<TABCallbackCommands>& aCallback, 
   1.125 +		TPckgBuf<TInt>& aArg1, TPckgBuf<TInt>& aArg2, TInt aResult, TRequestStatus& aStatus)
   1.126 +	/** 
   1.127 +	Send an async message to the server so that it can call us back when it's ready to make callback's.
   1.128 +	This call also returns a result from the previous callback for the server to respond to/return to the PC etc.
   1.129 +	
   1.130 +	@param aCallback This modifiable package buf is set by the server to indicate which callback to call
   1.131 +	@param aArg1 This is the first argument for the callback, set by the server
   1.132 +	@param aArg2 This is the second argument for the callback, set by the server
   1.133 +	@param aResult The return value of the previous callback to pass back to the server
   1.134 +	@param aStatus The status 
   1.135 +	*/
   1.136 +		{
   1.137 +		SendReceive(EABMsgPrimeForCallbackAndResponse, TIpcArgs(&aCallback, &aArg1, &aArg2, aResult), aStatus);
   1.138 +		}
   1.139 +
   1.140 +	void RABClientSession::PrimeServerForCallbackWithResponseL(TPckgBuf<TABCallbackCommands>& aCallback, 
   1.141 +		TPckgBuf<TInt>& aArg1, TPckgBuf<TInt>& aArg2, TDesC8& aResult, TRequestStatus& aStatus)
   1.142 +	/** 
   1.143 +	Send an async message to the server so that it can call us back when it's ready to make callback's.
   1.144 +	This call also returns a result from the previous callback for the server to respond to/return to the PC etc.
   1.145 +	
   1.146 +	@param aCallback This modifiable package buf is set by the server to indicate which callback to call
   1.147 +	@param aArg1 This is the first argument for the callback, set by the server
   1.148 +	@param aArg2 This is the second argument for the callback, set by the server
   1.149 +	@param aResult Data to send back to the server
   1.150 +	@param aStatus The status 
   1.151 +	
   1.152 +	@pre A call to SendDataLengthToServerL must have preceeded this call so that the server may prepare to receive data
   1.153 +	*/
   1.154 +		{
   1.155 +		SendReceive(EABMsgPrimeForCallbackAndResponseDes, TIpcArgs(&aCallback, &aArg1, &aArg2, &aResult), aStatus);
   1.156 +		}
   1.157 +
   1.158 +	void RABClientSession::PropagateLeave(TInt aLeaveCode)		
   1.159 +	/**
   1.160 +	Send a synchronous IPC message to the server indicating that a leave has ocurred whilst executing a callback
   1.161 +	
   1.162 +	@param aLeaveCode The code to leave back to the server with
   1.163 +	@param aStatus The status 
   1.164 +	*/
   1.165 +		{
   1.166 +		SendReceive(EABMsgPropagateLeave, TIpcArgs(aLeaveCode));
   1.167 +		}
   1.168 +		
   1.169 +    void RABClientSession::BURModeInfoL(TDriveList& aDriveList, TBURPartType& aBackupType, TBackupIncType& aIncBackupType)
   1.170 +    /**
   1.171 +    This method returns the type(s) of backup / restore operation currently active
   1.172 +
   1.173 +    @param aDriveList list of drives involved in backup and restore
   1.174 +    @param aBackupType enumerated type indicating whether a backup or restore
   1.175 +    is in progress and whether full or partial.
   1.176 +    @param aIncBackupType enumerated type indicating whetherr a backup is base
   1.177 +    or incremental.
   1.178 +    */
   1.179 +		{
   1.180 +		TPckg<TBURPartType> partTypePkg(aBackupType);
   1.181 +		TPckg<TBackupIncType> incTypePkg(aIncBackupType);
   1.182 +		
   1.183 +		User::LeaveIfError(SendReceive(EABMsgBURModeInfo, TIpcArgs(&aDriveList, &partTypePkg, &incTypePkg)));
   1.184 +		}
   1.185 +
   1.186 +
   1.187 +    TBool RABClientSession::DoesPartialBURAffectMeL()
   1.188 +    /**
   1.189 +    This method can be called when a partial backup or restore is active and will indicate
   1.190 +    whether the calling process is expected to take part.  If a full backup or restore is 
   1.191 +    active then this method will return ETrue for all data owners.  If no backup or restore
   1.192 +    is active then this method will return EFalse for all data owners.
   1.193 +
   1.194 +    @return ETrue if the calling data owner is involved in the current backup or restore
   1.195 +    operation.
   1.196 +    */
   1.197 +		{
   1.198 +		TPckgBuf<TBool> partialAffectsMe;
   1.199 +		
   1.200 +		User::LeaveIfError(SendReceive(EABMsgDoesPartialAffectMe, TIpcArgs(&partialAffectsMe)));
   1.201 +		
   1.202 +		return partialAffectsMe();
   1.203 +		}
   1.204 +
   1.205 +
   1.206 +    void RABClientSession::ConfirmReadyForBURL(TInt aErrorCode)
   1.207 +    /**
   1.208 +    This method is called to indicate to the Secure Backup Server that the data owner is ready
   1.209 +    to participate in backup or restore.  The data owner must call this method to indicate
   1.210 +    readiness or the Secure Backup Server will not request or supply backup data.
   1.211 +
   1.212 +    N.B. The Secure Backup Server will supply snapshot data (if relevant) before a data 
   1.213 +    owner indicates readiness as it assumes that the data owner requires snapshot data in
   1.214 +    order to prepare for a backp or restore.
   1.215 +
   1.216 +    @param aErrorCode this should be set to KErrNone when the client is ready for
   1.217 +    backup or restore. If it is set to any other value then it indicates that the client
   1.218 +    cannot continue with the backup or restore and the error code will be supplied to
   1.219 +    the remote backup client.
   1.220 +    */
   1.221 +		{
   1.222 +		User::LeaveIfError(SendReceive(EABMsgConfirmReadyForBUR, TIpcArgs(aErrorCode)));
   1.223 +		}
   1.224 +		
   1.225 +	void RABClientSession::CancelServerCallbackL()
   1.226 +	/**
   1.227 +	Inform the server that it can no longer call callbacks on the client
   1.228 +	*/
   1.229 +		{
   1.230 +		User::LeaveIfError(SendReceive(EABMsgClosingDownCallback));
   1.231 +		}
   1.232 +		
   1.233 +	RABClientSession::RABClientSession()
   1.234 +	/** Class constructor. */
   1.235 +		{
   1.236 +		}
   1.237 +
   1.238 +	void RABClientSession::Close()
   1.239 +	/** Closes the Secure Backup Engine handle. */
   1.240 +		{
   1.241 +		RSessionBase::Close();
   1.242 +		}
   1.243 +
   1.244 +	TInt RABClientSession::Connect()
   1.245 +	/** Connects the handle to the Secure Backup Engine.
   1.246 +
   1.247 +	@return KErrNone if successful, KErrCouldNotConnect otherwise
   1.248 +	*/
   1.249 +		{
   1.250 +		TInt nRetry = KABRetryCount;
   1.251 +		TInt nRet = KErrNotFound;
   1.252 +
   1.253 +		while(nRetry > 0 && nRet != KErrNone)
   1.254 +			{
   1.255 +		    const TSecurityPolicy policy(static_cast<TSecureId>(KSBServerUID3));
   1.256 +			nRet = CreateSession(KABServerName, Version(), KABASyncMessageSlots, EIpcSession_Unsharable,&policy);
   1.257 +			if(nRet == KErrNotFound || nRet == KErrServerTerminated)
   1.258 +				{
   1.259 +				StartServer();
   1.260 +				}
   1.261 +			nRetry--;
   1.262 +			}
   1.263 +
   1.264 +		return nRet;
   1.265 +		}
   1.266 +
   1.267 +	TVersion RABClientSession::Version() const
   1.268 +	/** Returns the version of this API
   1.269 +
   1.270 +	@return The version of this API
   1.271 +	*/
   1.272 +		{
   1.273 +	    return TVersion (KABMajorVersionNumber,
   1.274 +							KABMinorVersionNumber,
   1.275 +							KABBuildVersionNumber);
   1.276 +	  	}
   1.277 +
   1.278 +	//
   1.279 +	// Server startup code
   1.280 +	TInt RABClientSession::StartServer()
   1.281 +	/** Start the server as a thread on WINS or a process on ARM.
   1.282 +	
   1.283 +	Called by Connect when the kernel is unable to create a session
   1.284 +	with the AB server (if the process hosting it is not running).
   1.285 +
   1.286 +	@return Standard Symbian OS code from RProcess/RThread create.
   1.287 +	*/
   1.288 +		{
   1.289 +		//
   1.290 +		// Servers UID
   1.291 +		const TUidType serverUid(KNullUid, KNullUid, KSBServerUID3);
   1.292 +		
   1.293 +	
   1.294 +		RProcess server;
   1.295 +    	TInt nRet=server.Create(KSBImageName,KNullDesC,serverUid);
   1.296 +    	if (nRet != KErrNone)
   1.297 +    	    {
   1.298 +    		return nRet;
   1.299 +    		}
   1.300 +    		
   1.301 +    	TRequestStatus stat;
   1.302 +    	server.Rendezvous(stat);
   1.303 +    	if (stat != KRequestPending)
   1.304 +    	{
   1.305 +    		server.Kill(0);
   1.306 +    	}
   1.307 +    	else
   1.308 +    	{
   1.309 +    		server.Resume();
   1.310 +    	}
   1.311 +    	User::WaitForRequest(stat);
   1.312 +    	return (server.ExitType() == EExitPanic) ? KErrGeneral : stat.Int();
   1.313 +		
   1.314 +		}
   1.315 +
   1.316 +
   1.317 +
   1.318 +	} // conn namespace