First public contribution.
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 RABClientSession class.
22 #include "abclientsession.h"
23 #include "abclientserver.h"
28 HBufC8* RABClientSession::GetDataFromServerLC(const TInt aDataLength,
29 TABCallbackCommands aCallbackRequestingData)
31 Following a callback call to the Active Backup Callback Handler, this method requests the data
32 from the server. aDataLength will have been supplied by the original callback call from the server
33 and all that remains is to make a synchronous call to get it copied over
35 @param aDataLength The length of the data that will be received
36 @param aCallbackRequestingData The callback enum identifying the callback requesting this data
37 @return Pointer to a heap allocated descriptor containing data from the server
40 HBufC8* pReturnedData = HBufC8::NewLC(aDataLength);
42 TPtr8 returnedData(pReturnedData->Des());
44 // Request that the server returns the promised data to the client for the specified callback
45 User::LeaveIfError(SendReceive(EABMsgGetDataSync,
46 TIpcArgs(static_cast<TInt>(aCallbackRequestingData), &returnedData)));
51 HBufC8* RABClientSession::GetDataFromServerLC(const TInt aDataLength,
52 TABCallbackCommands aCallbackRequestingData, TDriveNumber& aDriveNum)
54 Following a callback call to the Active Backup Callback Handler, this method requests the data
55 from the server. aDataLength will have been supplied by the original callback call from the server
56 and all that remains is to make a synchronous call to get it copied over. This should only be called
57 from a ReceiveSnapshot callback
59 @param aDataLength The length of the data that will be received
60 @param aCallbackRequestingData The callback enum identifying the callback requesting this data
61 @param aDriveNum The drive number
63 @return Pointer to a heap allocated descriptor containing data from the server
66 TPckg<TDriveNumber> drvPkg(aDriveNum);
67 HBufC8* pReturnedData = HBufC8::NewLC(aDataLength);
69 TPtr8 returnedData(pReturnedData->Des());
71 // Request that the server returns the promised data to the client for the specified callback
72 User::LeaveIfError(SendReceive(EABMsgGetDataSync,
73 TIpcArgs(static_cast<TInt>(aCallbackRequestingData), &returnedData)));
75 // Request that the server returns the drive number to the client for the specified callback
76 TInt retVal = SendReceive(EABMsgGetDriveNumForSuppliedSnapshot);
78 User::LeaveIfError(retVal);
80 aDriveNum = static_cast<TDriveNumber>(retVal);
85 void RABClientSession::SendDataLengthToServerL(TDesC8& aData, TBool aFinished,
86 TABCallbackCommands aCallbackSendingData)
88 Send the length and finished flag back to the server. Limitations of IPC mean that we can only send
89 fixed size data to the server, hence the length and finished flag are sent first so that the server
90 may allocate the appropriate amount of space prior to the response containing the data
92 @param aData Descriptor containing the data to send back to the server. Only the length of this
93 is sent in this message
94 @param aFinished Flag indicating that this is the last transfer from the client to server. If EFalse,
95 the server must call the callback again
96 @param aCallbackSendingData This
99 // Make the synchronous call back to the server telling it to allocate a big enough buffer
100 // to handle the data transfer that will follow this
101 User::LeaveIfError(SendReceive(EABMsgSendDataLength, TIpcArgs(
102 static_cast<TInt>(aData.Size()),
103 static_cast<TInt>(aFinished),
104 static_cast<TInt>(aCallbackSendingData))));
107 void RABClientSession::PrimeServerForCallbackL(TPckgBuf<TABCallbackCommands>& aCallback,
108 TPckgBuf<TInt>& aArg1, TPckgBuf<TInt>& aArg2, TRequestStatus& aStatus)
110 Send an async message to the server so that it can call us back when it's ready to make callback's
112 @param aCallback This modifiable package buf is set by the server to indicate which callback to call
113 @param aArg1 This is the first argument for the callback, set by the server
114 @param aArg2 This is the second argument for the callback, set by the server
115 @param aStatus The status
118 SendReceive(EABMsgPrimeForCallback, TIpcArgs(&aCallback, &aArg1, &aArg2), aStatus);
121 void RABClientSession::PrimeServerForCallbackWithResponseL(TPckgBuf<TABCallbackCommands>& aCallback,
122 TPckgBuf<TInt>& aArg1, TPckgBuf<TInt>& aArg2, TInt aResult, TRequestStatus& aStatus)
124 Send an async message to the server so that it can call us back when it's ready to make callback's.
125 This call also returns a result from the previous callback for the server to respond to/return to the PC etc.
127 @param aCallback This modifiable package buf is set by the server to indicate which callback to call
128 @param aArg1 This is the first argument for the callback, set by the server
129 @param aArg2 This is the second argument for the callback, set by the server
130 @param aResult The return value of the previous callback to pass back to the server
131 @param aStatus The status
134 SendReceive(EABMsgPrimeForCallbackAndResponse, TIpcArgs(&aCallback, &aArg1, &aArg2, aResult), aStatus);
137 void RABClientSession::PrimeServerForCallbackWithResponseL(TPckgBuf<TABCallbackCommands>& aCallback,
138 TPckgBuf<TInt>& aArg1, TPckgBuf<TInt>& aArg2, TDesC8& aResult, TRequestStatus& aStatus)
140 Send an async message to the server so that it can call us back when it's ready to make callback's.
141 This call also returns a result from the previous callback for the server to respond to/return to the PC etc.
143 @param aCallback This modifiable package buf is set by the server to indicate which callback to call
144 @param aArg1 This is the first argument for the callback, set by the server
145 @param aArg2 This is the second argument for the callback, set by the server
146 @param aResult Data to send back to the server
147 @param aStatus The status
149 @pre A call to SendDataLengthToServerL must have preceeded this call so that the server may prepare to receive data
152 SendReceive(EABMsgPrimeForCallbackAndResponseDes, TIpcArgs(&aCallback, &aArg1, &aArg2, &aResult), aStatus);
155 void RABClientSession::PropagateLeave(TInt aLeaveCode)
157 Send a synchronous IPC message to the server indicating that a leave has ocurred whilst executing a callback
159 @param aLeaveCode The code to leave back to the server with
160 @param aStatus The status
163 SendReceive(EABMsgPropagateLeave, TIpcArgs(aLeaveCode));
166 void RABClientSession::BURModeInfoL(TDriveList& aDriveList, TBURPartType& aBackupType, TBackupIncType& aIncBackupType)
168 This method returns the type(s) of backup / restore operation currently active
170 @param aDriveList list of drives involved in backup and restore
171 @param aBackupType enumerated type indicating whether a backup or restore
172 is in progress and whether full or partial.
173 @param aIncBackupType enumerated type indicating whetherr a backup is base
177 TPckg<TBURPartType> partTypePkg(aBackupType);
178 TPckg<TBackupIncType> incTypePkg(aIncBackupType);
180 User::LeaveIfError(SendReceive(EABMsgBURModeInfo, TIpcArgs(&aDriveList, &partTypePkg, &incTypePkg)));
184 TBool RABClientSession::DoesPartialBURAffectMeL()
186 This method can be called when a partial backup or restore is active and will indicate
187 whether the calling process is expected to take part. If a full backup or restore is
188 active then this method will return ETrue for all data owners. If no backup or restore
189 is active then this method will return EFalse for all data owners.
191 @return ETrue if the calling data owner is involved in the current backup or restore
195 TPckgBuf<TBool> partialAffectsMe;
197 User::LeaveIfError(SendReceive(EABMsgDoesPartialAffectMe, TIpcArgs(&partialAffectsMe)));
199 return partialAffectsMe();
203 void RABClientSession::ConfirmReadyForBURL(TInt aErrorCode)
205 This method is called to indicate to the Secure Backup Server that the data owner is ready
206 to participate in backup or restore. The data owner must call this method to indicate
207 readiness or the Secure Backup Server will not request or supply backup data.
209 N.B. The Secure Backup Server will supply snapshot data (if relevant) before a data
210 owner indicates readiness as it assumes that the data owner requires snapshot data in
211 order to prepare for a backp or restore.
213 @param aErrorCode this should be set to KErrNone when the client is ready for
214 backup or restore. If it is set to any other value then it indicates that the client
215 cannot continue with the backup or restore and the error code will be supplied to
216 the remote backup client.
219 User::LeaveIfError(SendReceive(EABMsgConfirmReadyForBUR, TIpcArgs(aErrorCode)));
222 void RABClientSession::CancelServerCallbackL()
224 Inform the server that it can no longer call callbacks on the client
227 User::LeaveIfError(SendReceive(EABMsgClosingDownCallback));
230 RABClientSession::RABClientSession()
231 /** Class constructor. */
235 void RABClientSession::Close()
236 /** Closes the Secure Backup Engine handle. */
238 RSessionBase::Close();
241 TInt RABClientSession::Connect()
242 /** Connects the handle to the Secure Backup Engine.
244 @return KErrNone if successful, KErrCouldNotConnect otherwise
247 TInt nRetry = KABRetryCount;
248 TInt nRet = KErrNotFound;
250 while(nRetry > 0 && nRet != KErrNone)
252 const TSecurityPolicy policy(static_cast<TSecureId>(KSBServerUID3));
253 nRet = CreateSession(KABServerName, Version(), KABASyncMessageSlots, EIpcSession_Unsharable,&policy);
254 if(nRet == KErrNotFound || nRet == KErrServerTerminated)
264 TVersion RABClientSession::Version() const
265 /** Returns the version of this API
267 @return The version of this API
270 return TVersion (KABMajorVersionNumber,
271 KABMinorVersionNumber,
272 KABBuildVersionNumber);
276 // Server startup code
277 TInt RABClientSession::StartServer()
278 /** Start the server as a thread on WINS or a process on ARM.
280 Called by Connect when the kernel is unable to create a session
281 with the AB server (if the process hosting it is not running).
283 @return Standard Symbian OS code from RProcess/RThread create.
288 const TUidType serverUid(KNullUid, KNullUid, KSBServerUID3);
292 TInt nRet=server.Create(KSBImageName,KNullDesC,serverUid);
293 if (nRet != KErrNone)
299 server.Rendezvous(stat);
300 if (stat != KRequestPending)
308 User::WaitForRequest(stat);
309 return (server.ExitType() == EExitPanic) ? KErrGeneral : stat.Int();