os/ossrv/genericservices/activebackupclient/inc/abclientsession.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericservices/activebackupclient/inc/abclientsession.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,74 @@
     1.4 +/**
     1.5 +* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:
    1.18 +* Declaration of RABClientSession
    1.19 +* 
    1.20 +*
    1.21 +*/
    1.22 +
    1.23 +
    1.24 +
    1.25 +/**
    1.26 + @file
    1.27 +*/
    1.28 +#ifndef __ABCLIENTSESSION_H__
    1.29 +#define __ABCLIENTSESSION_H__
    1.30 +
    1.31 +#include <e32std.h>
    1.32 +#include <e32cmn.h>
    1.33 +#include <connect/sbdefs.h>
    1.34 +#include <connect/abclientserver.h>
    1.35 +
    1.36 +namespace conn
    1.37 +	{ 
    1.38 +
    1.39 +	class TServerStart;
    1.40 +	class RABClientSession : public RSessionBase
    1.41 +    /** The active backup client to the Secure Backup Engine.
    1.42 +
    1.43 +	@internalComponent
    1.44 +    */
    1.45 +    {
    1.46 +public:
    1.47 +	RABClientSession();
    1.48 +	TInt Connect();
    1.49 +	void Close();
    1.50 +	TVersion Version() const;
    1.51 +	
    1.52 +	// IPC calls for the callbacks
    1.53 +	HBufC8* GetDataFromServerLC(const TInt aDataLength, TABCallbackCommands aCallbackRequestingData);
    1.54 +	HBufC8* GetDataFromServerLC(const TInt aDataLength, TABCallbackCommands aCallbackRequestingData, TDriveNumber& aDriveNum);
    1.55 +	void SendDataLengthToServerL(TDesC8& aData, TBool aFinished, TABCallbackCommands aCallbackSendingData);
    1.56 +	void PrimeServerForCallbackL(TPckgBuf<TABCallbackCommands>& aCallback, TPckgBuf<TInt>& aArg1, 
    1.57 +		TPckgBuf<TInt>& aArg2, TRequestStatus& aStatus);
    1.58 +	void PrimeServerForCallbackWithResponseL(TPckgBuf<TABCallbackCommands>& aCallback, TPckgBuf<TInt>& aArg1, 
    1.59 +		TPckgBuf<TInt>& aArg2, TInt aResult, TRequestStatus& aStatus);
    1.60 +	void PrimeServerForCallbackWithResponseL(TPckgBuf<TABCallbackCommands>& aCallback, TPckgBuf<TInt>& aArg1, 
    1.61 +		TPckgBuf<TInt>& aArg2, TDesC8& aResult, TRequestStatus& aStatus);
    1.62 +	void PropagateLeave(TInt aLeaveCode);
    1.63 +	
    1.64 +	// IPC calls on the ABClient interface
    1.65 +	void BURModeInfoL(TDriveList& aDriveList, TBURPartType& aBackupType, TBackupIncType& aIncBackupType);
    1.66 +	TBool DoesPartialBURAffectMeL();
    1.67 +	void ConfirmReadyForBURL(TInt aErrorCode);
    1.68 +	void CancelServerCallbackL();
    1.69 +
    1.70 +private:
    1.71 +	static TInt StartServer();
    1.72 +
    1.73 +    };
    1.74 +
    1.75 +  } // end namespace
    1.76 +
    1.77 +#endif // __ABCLIENTSESSION_H__