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