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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Implementation of CActiveBackupClient class.
22 #include "abachandler.h"
23 #include "abclientsession.h"
28 CActiveBackupCallbackHandler* CActiveBackupCallbackHandler::NewL(MActiveBackupDataClient* aABDC,
29 RABClientSession& aClientSession)
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
37 CActiveBackupCallbackHandler* self = new (ELeave) CActiveBackupCallbackHandler(aABDC, aClientSession);
38 CleanupStack::PushL(self);
40 CleanupStack::Pop(self);
44 CActiveBackupCallbackHandler::CActiveBackupCallbackHandler(MActiveBackupDataClient* aABDC,
45 RABClientSession& aClientSession) : CActive(EPriorityNormal), iActiveBackupDataClient(aABDC),
46 iClientSession(aClientSession), iTransferBuffer(NULL)
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
54 __ASSERT_DEBUG(aABDC, Panic(KErrArgument));
57 CActiveBackupCallbackHandler::~CActiveBackupCallbackHandler()
62 // Cancel any outstanding Async requests (i.e. close down the callback interface)
64 delete iTransferBuffer;
68 void CActiveBackupCallbackHandler::RunL()
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
75 if (iStatus == KErrNone)
77 switch(iCallbackCommand())
79 case EABCallbackAllSnapshotsSupplied:
81 iActiveBackupDataClient->AllSnapshotsSuppliedL();
83 PrimeServerForCallbackL();
85 case EABCallbackReceiveSnapshotData:
87 TDriveNumber driveNum = EDriveC; // Initialise to keep the compiler happy
89 HBufC8* pReceivedData = iClientSession.GetDataFromServerLC(iCallbackArg1(),
90 EABCallbackReceiveSnapshotData, driveNum);
92 // Call the client method for handling receipt of the snapshot
93 iActiveBackupDataClient->ReceiveSnapshotDataL(driveNum,
94 *pReceivedData, static_cast<TBool>(iCallbackArg2()));
97 PrimeServerForCallbackL();
99 CleanupStack::PopAndDestroy(pReceivedData);
101 case EABCallbackGetExpectedDataSize:
103 TUint dataSize = iActiveBackupDataClient->GetExpectedDataSize(static_cast<TDriveNumber>(iCallbackArg1()));
105 // Reprime the server
106 PrimeServerForCallbackWithResponseL(dataSize);
108 case EABCallbackGetSnapshotData:
110 // Create an empty TPtr8 to point at the buffer to fill
111 TPtr8 bufferToSend(CreateFixedBufferL());
113 TBool finished = ETrue;
115 // Zero our descriptor so that it can be refilled
118 // Callback the AB client to populate our descriptor
119 iActiveBackupDataClient->GetSnapshotDataL(static_cast<TDriveNumber>(iCallbackArg1()),
120 bufferToSend, finished);
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);
125 iTransferBuffer->Des().SetLength(bufferToSend.Length());
127 // Send the actual data back to the server and prime for the next callback
128 PrimeServerForCallbackWithResponseL(*iTransferBuffer);
130 case EABCallbackInitialiseGetBackupData:
132 iActiveBackupDataClient->InitialiseGetBackupDataL(static_cast<TDriveNumber>(iCallbackArg1()));
134 // Reprime the server
135 PrimeServerForCallbackL();
137 case EABCallbackGetBackupDataSection:
139 // Create an empty TPtr8 to point at the buffer to fill
140 TPtr8 bufferToSend(CreateFixedBufferL());
142 TBool finished = ETrue;
144 // Zero our descriptor so that it can be refilled
147 // Callback the AB client to populate our descriptor
148 iActiveBackupDataClient->GetBackupDataSectionL(bufferToSend, finished);
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);
153 iTransferBuffer->Des().SetLength(bufferToSend.Length());
155 // Send the actual data back to the server and prime for the next callback
156 PrimeServerForCallbackWithResponseL(*iTransferBuffer);
158 case EABCallbackInitialiseRestoreBaseDataSection:
160 iActiveBackupDataClient->InitialiseRestoreBaseDataL(static_cast<TDriveNumber>(iCallbackArg1()));
162 // Reprime the server
163 PrimeServerForCallbackL();
165 case EABCallbackRestoreBaseDataSection:
167 HBufC8* pReceivedData = iClientSession.GetDataFromServerLC(iCallbackArg1(),
168 EABCallbackRestoreBaseDataSection);
170 // Call the client method for handling receipt of the snapshot
171 iActiveBackupDataClient->RestoreBaseDataSectionL(*pReceivedData,
172 static_cast<TBool>(iCallbackArg2()));
174 // Reprime the server
175 PrimeServerForCallbackL();
177 CleanupStack::PopAndDestroy(pReceivedData);
179 case EABCallbackInitialiseRestoreIncrementData:
181 iActiveBackupDataClient->InitialiseRestoreIncrementDataL(static_cast<TDriveNumber>(iCallbackArg1()));
183 // Reprime the server
184 PrimeServerForCallbackL();
186 case EABCallbackRestoreIncrementDataSection:
188 HBufC8* pReceivedData = iClientSession.GetDataFromServerLC(iCallbackArg1(),
189 EABCallbackRestoreIncrementDataSection);
191 // Call the client method for handling receipt of the snapshot
192 iActiveBackupDataClient->RestoreIncrementDataSectionL(*pReceivedData,
193 static_cast<TBool>(iCallbackArg2()));
195 // Reprime the server
196 PrimeServerForCallbackL();
198 CleanupStack::PopAndDestroy(pReceivedData);
200 case EABCallbackRestoreComplete:
202 iActiveBackupDataClient->RestoreComplete(static_cast<TDriveNumber>(iCallbackArg1()));
204 // Reprime the server
205 PrimeServerForCallbackL();
207 case EABCallbackTerminateMultiStageOperation:
209 iActiveBackupDataClient->TerminateMultiStageOperation();
211 // Reprime the server
212 PrimeServerForCallbackL();
214 case EABCallbackGetDataChecksum:
216 iActiveBackupDataClient->GetDataChecksum(static_cast<TDriveNumber>(iCallbackArg1()));
218 // Reprime the server
219 PrimeServerForCallbackL();
221 case EABCallbackInitialiseGetProxyBackupData:
223 iActiveBackupDataClient->InitialiseGetProxyBackupDataL(static_cast<TSecureId>(iCallbackArg1()),
224 static_cast<TDriveNumber>(iCallbackArg2()));
226 // Reprime the server
227 PrimeServerForCallbackL();
229 case EABCallbackInitialiseRestoreProxyBaseData:
231 iActiveBackupDataClient->InitialiseRestoreProxyBaseDataL(static_cast<TSecureId>(
232 iCallbackArg1()), static_cast<TDriveNumber>(iCallbackArg2()));
234 // Reprime the server
235 PrimeServerForCallbackL();
239 // Call the server to leave with KErrNotSupported
240 User::Leave(KErrNotSupported);
244 // Set us up for another call
250 void CActiveBackupCallbackHandler::PrimeServerForCallbackL()
252 Reprime the server with a new IPC message to respond to
255 iClientSession.PrimeServerForCallbackL(iCallbackCommand, iCallbackArg1, iCallbackArg2, iStatus);
258 void CActiveBackupCallbackHandler::PrimeServerForCallbackWithResponseL(TInt aResponse)
260 Reprime the server with a new IPC message to respond to, sending the result of the previous callback
262 @param aResponse The response to send back to the server i.e. the result of the last callback made
265 iClientSession.PrimeServerForCallbackWithResponseL(iCallbackCommand, iCallbackArg1, iCallbackArg2, aResponse, iStatus);
268 void CActiveBackupCallbackHandler::PrimeServerForCallbackWithResponseL(TDesC8& aResponse)
270 Reprime the server with a new IPC message to respond to, sending the result of the previous callback
272 @param aResponse The response to send back to the server i.e. the result of the last callback made
275 iClientSession.PrimeServerForCallbackWithResponseL(iCallbackCommand, iCallbackArg1, iCallbackArg2, aResponse, iStatus);
278 TInt CActiveBackupCallbackHandler::RunError(TInt aError)
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
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
288 iClientSession.PropagateLeave(aError);
290 PrimeServerForCallbackL();
293 return KErrNone; // Is this correct or do we return the error code even though it's been handled?
296 void CActiveBackupCallbackHandler::DoCancel()
298 Immediately cancel any outstanding calls to the backup engine
301 // we can't do anything with the error code here
302 TRAP_IGNORE(iClientSession.CancelServerCallbackL());
305 void CActiveBackupCallbackHandler::ConstructL()
307 Add this object to the scheduler
309 @panic KErrNotFound Debug only - If an ActiveScheduler is not installed
310 @leave Release only - If an ActiveScheduler is not installed
313 if (!CActiveScheduler::Current())
315 __ASSERT_DEBUG(0, Panic(KErrNotFound));
318 // Add this AO to the scheduler
319 CActiveScheduler::Add(this);
323 void CActiveBackupCallbackHandler::StartListeningForServerMessagesL()
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
330 // Prime the server with the first prime for callback IPC message
331 PrimeServerForCallbackL();
334 TPtr8 CActiveBackupCallbackHandler::CreateFixedBufferL()
336 Creates a buffer of the exact size.
339 delete iTransferBuffer;
340 iTransferBuffer = NULL;
342 iTransferBuffer = HBufC8::NewL(iCallbackArg1());
344 return TPtr8(const_cast<TUint8*>(iTransferBuffer->Ptr()), iCallbackArg1());