sl@0: /** sl@0: * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Declaration of RABClientSession sl@0: * sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: /** sl@0: @file sl@0: */ sl@0: #ifndef __ABCLIENTSESSION_H__ sl@0: #define __ABCLIENTSESSION_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: namespace conn sl@0: { sl@0: sl@0: class TServerStart; sl@0: class RABClientSession : public RSessionBase sl@0: /** The active backup client to the Secure Backup Engine. sl@0: sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: RABClientSession(); sl@0: TInt Connect(); sl@0: void Close(); sl@0: TVersion Version() const; sl@0: sl@0: // IPC calls for the callbacks sl@0: HBufC8* GetDataFromServerLC(const TInt aDataLength, TABCallbackCommands aCallbackRequestingData); sl@0: HBufC8* GetDataFromServerLC(const TInt aDataLength, TABCallbackCommands aCallbackRequestingData, TDriveNumber& aDriveNum); sl@0: void SendDataLengthToServerL(TDesC8& aData, TBool aFinished, TABCallbackCommands aCallbackSendingData); sl@0: void PrimeServerForCallbackL(TPckgBuf& aCallback, TPckgBuf& aArg1, sl@0: TPckgBuf& aArg2, TRequestStatus& aStatus); sl@0: void PrimeServerForCallbackWithResponseL(TPckgBuf& aCallback, TPckgBuf& aArg1, sl@0: TPckgBuf& aArg2, TInt aResult, TRequestStatus& aStatus); sl@0: void PrimeServerForCallbackWithResponseL(TPckgBuf& aCallback, TPckgBuf& aArg1, sl@0: TPckgBuf& aArg2, TDesC8& aResult, TRequestStatus& aStatus); sl@0: void PropagateLeave(TInt aLeaveCode); sl@0: sl@0: // IPC calls on the ABClient interface sl@0: void BURModeInfoL(TDriveList& aDriveList, TBURPartType& aBackupType, TBackupIncType& aIncBackupType); sl@0: TBool DoesPartialBURAffectMeL(); sl@0: void ConfirmReadyForBURL(TInt aErrorCode); sl@0: void CancelServerCallbackL(); sl@0: sl@0: private: sl@0: static TInt StartServer(); sl@0: sl@0: }; sl@0: sl@0: } // end namespace sl@0: sl@0: #endif // __ABCLIENTSESSION_H__