os/ossrv/genericservices/activebackupclient/src/abachandler.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Implementation of CActiveBackupClient class.
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20 */
    21 
    22 #include "abachandler.h"
    23 #include "abclientsession.h"
    24 #include "panic.h"
    25 
    26 namespace conn
    27 	{
    28 	CActiveBackupCallbackHandler* CActiveBackupCallbackHandler::NewL(MActiveBackupDataClient* aABDC,
    29 		RABClientSession& aClientSession)
    30 	/**
    31 	Symbian first phase constructor
    32 	@param aABDC pointer to the client's callback implementation
    33 	@param aClientSession reference to the client's session
    34 	@return Pointer to a created CActiveBackupCallbackHandler object
    35 	*/
    36 		{
    37 		CActiveBackupCallbackHandler* self = new (ELeave) CActiveBackupCallbackHandler(aABDC, aClientSession);
    38 		CleanupStack::PushL(self);
    39 		self->ConstructL();
    40 		CleanupStack::Pop(self);
    41 		return self;
    42 		}
    43 	
    44 	CActiveBackupCallbackHandler::CActiveBackupCallbackHandler(MActiveBackupDataClient* aABDC,
    45 		RABClientSession& aClientSession) : CActive(EPriorityNormal), iActiveBackupDataClient(aABDC), 
    46 		iClientSession(aClientSession), iTransferBuffer(NULL)
    47 	/**
    48 	C++ Constructor
    49 	@param aABDC pointer to the client's callback implementation
    50 	@param aClientSession reference to the client's session
    51 	@panic KErrArgument if the pointer aABDC is NULL
    52 	*/
    53 		{
    54 		__ASSERT_DEBUG(aABDC, Panic(KErrArgument));
    55 		}
    56 
    57 	CActiveBackupCallbackHandler::~CActiveBackupCallbackHandler()
    58 	/**
    59 	C++ Destructor
    60 	*/
    61 		{
    62 		// Cancel any outstanding Async requests (i.e. close down the callback interface)
    63 		Cancel();
    64 		delete iTransferBuffer;
    65 		iTransferBuffer = 0;
    66 		}
    67 		
    68 	void CActiveBackupCallbackHandler::RunL()
    69 	/**
    70 	Handle messages "initiated" by the server. Because of IPC limitations, the client primes the 
    71 	server with a message containing modifiable package buffers that are filled with identifiers 
    72 	and arguments for the callback interface
    73 	*/
    74 		{
    75 		if (iStatus == KErrNone)
    76 			{
    77 			switch(iCallbackCommand())
    78 				{
    79 				case EABCallbackAllSnapshotsSupplied:
    80 					{
    81   					iActiveBackupDataClient->AllSnapshotsSuppliedL();
    82 				
    83 					PrimeServerForCallbackL();
    84 					} break;
    85 				case EABCallbackReceiveSnapshotData:
    86 					{
    87 					TDriveNumber driveNum = EDriveC;		// Initialise to keep the compiler happy
    88 
    89 					HBufC8* pReceivedData = iClientSession.GetDataFromServerLC(iCallbackArg1(),
    90 						EABCallbackReceiveSnapshotData, driveNum);
    91 						
    92 					// Call the client method for handling receipt of the snapshot
    93 					iActiveBackupDataClient->ReceiveSnapshotDataL(driveNum, 
    94 						*pReceivedData, static_cast<TBool>(iCallbackArg2()));
    95 						
    96 					// Reprime the server
    97 					PrimeServerForCallbackL();
    98 					
    99 					CleanupStack::PopAndDestroy(pReceivedData);
   100 					} break;
   101 				case EABCallbackGetExpectedDataSize:
   102 					{
   103 					TUint dataSize = iActiveBackupDataClient->GetExpectedDataSize(static_cast<TDriveNumber>(iCallbackArg1()));
   104 					
   105 					// Reprime the server
   106 					PrimeServerForCallbackWithResponseL(dataSize);
   107 					} break;
   108 				case EABCallbackGetSnapshotData:
   109 					{
   110 					// Create an empty TPtr8 to point at the buffer to fill
   111 					TPtr8 bufferToSend(CreateFixedBufferL());
   112 					
   113 					TBool finished = ETrue;
   114 					
   115 					// Zero our descriptor so that it can be refilled
   116 					bufferToSend.Zero();
   117 					
   118 					// Callback the AB client to populate our descriptor
   119 					iActiveBackupDataClient->GetSnapshotDataL(static_cast<TDriveNumber>(iCallbackArg1()), 
   120 						bufferToSend, finished);
   121 					
   122 					// Send the length and some other info to the server to allow it to prepare for the actual transfer
   123 					iClientSession.SendDataLengthToServerL(bufferToSend, finished, EABCallbackGetSnapshotData);
   124 					
   125 					iTransferBuffer->Des().SetLength(bufferToSend.Length());
   126 					
   127 					// Send the actual data back to the server and prime for the next callback
   128 					PrimeServerForCallbackWithResponseL(*iTransferBuffer);
   129 					} break;
   130 				case EABCallbackInitialiseGetBackupData:
   131 					{
   132 					iActiveBackupDataClient->InitialiseGetBackupDataL(static_cast<TDriveNumber>(iCallbackArg1()));
   133 
   134 					// Reprime the server
   135 					PrimeServerForCallbackL();
   136 					} break;
   137 				case EABCallbackGetBackupDataSection:
   138 					{
   139 					// Create an empty TPtr8 to point at the buffer to fill
   140 					TPtr8 bufferToSend(CreateFixedBufferL());
   141 					
   142 					TBool finished = ETrue;
   143 
   144 					// Zero our descriptor so that it can be refilled
   145 					bufferToSend.Zero();
   146 					
   147 					// Callback the AB client to populate our descriptor
   148 					iActiveBackupDataClient->GetBackupDataSectionL(bufferToSend, finished);
   149 					
   150 					// Send the length and some other info to the server to allow it to prepare for the actual transfer
   151 					iClientSession.SendDataLengthToServerL(bufferToSend, finished, EABCallbackGetBackupDataSection);
   152 					
   153 					iTransferBuffer->Des().SetLength(bufferToSend.Length());
   154 					
   155 					// Send the actual data back to the server and prime for the next callback
   156 					PrimeServerForCallbackWithResponseL(*iTransferBuffer);
   157 					} break;
   158 				case EABCallbackInitialiseRestoreBaseDataSection:
   159 					{
   160 					iActiveBackupDataClient->InitialiseRestoreBaseDataL(static_cast<TDriveNumber>(iCallbackArg1()));
   161 
   162 					// Reprime the server
   163 					PrimeServerForCallbackL();
   164 					} break;
   165 				case EABCallbackRestoreBaseDataSection:
   166 					{
   167 					HBufC8* pReceivedData = iClientSession.GetDataFromServerLC(iCallbackArg1(),
   168 						EABCallbackRestoreBaseDataSection);
   169 					
   170 					// Call the client method for handling receipt of the snapshot
   171 					iActiveBackupDataClient->RestoreBaseDataSectionL(*pReceivedData, 
   172 						static_cast<TBool>(iCallbackArg2()));
   173 						
   174 					// Reprime the server
   175 					PrimeServerForCallbackL();
   176 					
   177 					CleanupStack::PopAndDestroy(pReceivedData);
   178 					} break;
   179 				case EABCallbackInitialiseRestoreIncrementData:
   180 					{
   181 					iActiveBackupDataClient->InitialiseRestoreIncrementDataL(static_cast<TDriveNumber>(iCallbackArg1()));
   182 
   183 					// Reprime the server
   184 					PrimeServerForCallbackL();
   185 					} break;
   186 				case EABCallbackRestoreIncrementDataSection:
   187 					{
   188 					HBufC8* pReceivedData = iClientSession.GetDataFromServerLC(iCallbackArg1(),
   189 						EABCallbackRestoreIncrementDataSection);
   190 					
   191 					// Call the client method for handling receipt of the snapshot
   192 					iActiveBackupDataClient->RestoreIncrementDataSectionL(*pReceivedData, 
   193 						static_cast<TBool>(iCallbackArg2()));
   194 						
   195 					// Reprime the server
   196 					PrimeServerForCallbackL();
   197 					
   198 					CleanupStack::PopAndDestroy(pReceivedData);
   199 					} break;
   200 				case EABCallbackRestoreComplete:
   201 					{
   202 					iActiveBackupDataClient->RestoreComplete(static_cast<TDriveNumber>(iCallbackArg1()));
   203 
   204 					// Reprime the server
   205 					PrimeServerForCallbackL();
   206 					} break;
   207 				case EABCallbackTerminateMultiStageOperation:
   208 					{
   209 					iActiveBackupDataClient->TerminateMultiStageOperation();
   210 
   211 					// Reprime the server
   212 					PrimeServerForCallbackL();
   213 					} break;
   214 				case EABCallbackGetDataChecksum:
   215 					{
   216 					iActiveBackupDataClient->GetDataChecksum(static_cast<TDriveNumber>(iCallbackArg1()));
   217 
   218 					// Reprime the server
   219 					PrimeServerForCallbackL();
   220 					} break;
   221 				case EABCallbackInitialiseGetProxyBackupData:
   222 					{
   223 					iActiveBackupDataClient->InitialiseGetProxyBackupDataL(static_cast<TSecureId>(iCallbackArg1()),
   224 						static_cast<TDriveNumber>(iCallbackArg2()));
   225 					
   226 					// Reprime the server
   227 					PrimeServerForCallbackL();
   228 					} break;
   229 				case EABCallbackInitialiseRestoreProxyBaseData:
   230 					{
   231 					iActiveBackupDataClient->InitialiseRestoreProxyBaseDataL(static_cast<TSecureId>(
   232 						iCallbackArg1()), static_cast<TDriveNumber>(iCallbackArg2()));
   233 
   234 					// Reprime the server				
   235 					PrimeServerForCallbackL();
   236 					} break;
   237 				default:
   238 					{
   239 					// Call the server to leave with KErrNotSupported
   240 					User::Leave(KErrNotSupported);
   241 					}
   242 				}
   243 				
   244 			// Set us up for another call
   245 			SetActive();
   246 
   247 			}
   248 		}
   249 		
   250 	void CActiveBackupCallbackHandler::PrimeServerForCallbackL()
   251 	/**
   252 	Reprime the server with a new IPC message to respond to
   253 	*/
   254 		{
   255 		iClientSession.PrimeServerForCallbackL(iCallbackCommand, iCallbackArg1, iCallbackArg2, iStatus);
   256 		}
   257 		
   258 	void CActiveBackupCallbackHandler::PrimeServerForCallbackWithResponseL(TInt aResponse)
   259 	/**
   260 	Reprime the server with a new IPC message to respond to, sending the result of the previous callback
   261 	
   262 	@param aResponse The response to send back to the server i.e. the result of the last callback made
   263 	*/
   264 		{
   265 		iClientSession.PrimeServerForCallbackWithResponseL(iCallbackCommand, iCallbackArg1, iCallbackArg2, aResponse, iStatus);
   266 		}
   267 
   268 	void CActiveBackupCallbackHandler::PrimeServerForCallbackWithResponseL(TDesC8& aResponse)
   269 	/**
   270 	Reprime the server with a new IPC message to respond to, sending the result of the previous callback
   271 	
   272 	@param aResponse The response to send back to the server i.e. the result of the last callback made
   273 	*/
   274 		{
   275 		iClientSession.PrimeServerForCallbackWithResponseL(iCallbackCommand, iCallbackArg1, iCallbackArg2, aResponse, iStatus);
   276 		}
   277 	
   278 	TInt CActiveBackupCallbackHandler::RunError(TInt aError)
   279 	/**
   280 	Handle any leaves that occur from within the RunL and hence from the callback methods. In order 
   281 	to propagate leaves over to the PC client, they must be sent to the backup engine to leave to the 
   282 	client
   283 	
   284 	@param aError The leave code that has been trapped from within the RunL. Propagate this code to the engine
   285 	@return Any unhandled leave code
   286 	*/
   287 		{
   288 		iClientSession.PropagateLeave(aError);
   289 		
   290 		PrimeServerForCallbackL();
   291 		SetActive();
   292 		
   293 		return KErrNone;	// Is this correct or do we return the error code even though it's been handled?
   294 		}
   295 		
   296 	void CActiveBackupCallbackHandler::DoCancel()
   297 	/**
   298 	Immediately cancel any outstanding calls to the backup engine
   299 	*/
   300 		{
   301 		// we can't do anything with the error code here
   302 		TRAP_IGNORE(iClientSession.CancelServerCallbackL());
   303 		}
   304 		
   305 	void CActiveBackupCallbackHandler::ConstructL()
   306 	/**
   307 	Add this object to the scheduler
   308 	
   309 	@panic KErrNotFound Debug only - If an ActiveScheduler is not installed
   310 	@leave Release only - If an ActiveScheduler is not installed
   311 	*/
   312 		{
   313 		if (!CActiveScheduler::Current())
   314 			{
   315 			__ASSERT_DEBUG(0, Panic(KErrNotFound));
   316 			}
   317 		
   318 		// Add this AO to the scheduler
   319 		CActiveScheduler::Add(this);
   320 		SetActive();
   321 		}
   322 		
   323 	void CActiveBackupCallbackHandler::StartListeningForServerMessagesL()
   324 	/**
   325 	Send an asynchronous IPC message to the server in order that it has a vehicle for "initiating" 
   326 	a callback on iActiveBackupDataClient. This should only be called once as it will start the 
   327 	active scheduler
   328 	*/
   329 		{
   330 		// Prime the server with the first prime for callback IPC message
   331 		PrimeServerForCallbackL();
   332 		}
   333 
   334 	TPtr8 CActiveBackupCallbackHandler::CreateFixedBufferL()
   335 	/**
   336 	Creates a buffer of the exact size.
   337 	*/
   338 		{
   339 		delete iTransferBuffer;
   340 		iTransferBuffer = NULL;
   341 					
   342 		iTransferBuffer = HBufC8::NewL(iCallbackArg1());
   343 		
   344 		return TPtr8(const_cast<TUint8*>(iTransferBuffer->Ptr()), iCallbackArg1());
   345 		}
   346 	}
   347