sl@0
|
1 |
/**
|
sl@0
|
2 |
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* Declaration of RABClientSession
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
@file
|
sl@0
|
24 |
*/
|
sl@0
|
25 |
#ifndef __ABCLIENTSESSION_H__
|
sl@0
|
26 |
#define __ABCLIENTSESSION_H__
|
sl@0
|
27 |
|
sl@0
|
28 |
#include <e32std.h>
|
sl@0
|
29 |
#include <e32cmn.h>
|
sl@0
|
30 |
#include <connect/sbdefs.h>
|
sl@0
|
31 |
#include <connect/abclientserver.h>
|
sl@0
|
32 |
|
sl@0
|
33 |
namespace conn
|
sl@0
|
34 |
{
|
sl@0
|
35 |
|
sl@0
|
36 |
class TServerStart;
|
sl@0
|
37 |
class RABClientSession : public RSessionBase
|
sl@0
|
38 |
/** The active backup client to the Secure Backup Engine.
|
sl@0
|
39 |
|
sl@0
|
40 |
@internalComponent
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
{
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
RABClientSession();
|
sl@0
|
45 |
TInt Connect();
|
sl@0
|
46 |
void Close();
|
sl@0
|
47 |
TVersion Version() const;
|
sl@0
|
48 |
|
sl@0
|
49 |
// IPC calls for the callbacks
|
sl@0
|
50 |
HBufC8* GetDataFromServerLC(const TInt aDataLength, TABCallbackCommands aCallbackRequestingData);
|
sl@0
|
51 |
HBufC8* GetDataFromServerLC(const TInt aDataLength, TABCallbackCommands aCallbackRequestingData, TDriveNumber& aDriveNum);
|
sl@0
|
52 |
void SendDataLengthToServerL(TDesC8& aData, TBool aFinished, TABCallbackCommands aCallbackSendingData);
|
sl@0
|
53 |
void PrimeServerForCallbackL(TPckgBuf<TABCallbackCommands>& aCallback, TPckgBuf<TInt>& aArg1,
|
sl@0
|
54 |
TPckgBuf<TInt>& aArg2, TRequestStatus& aStatus);
|
sl@0
|
55 |
void PrimeServerForCallbackWithResponseL(TPckgBuf<TABCallbackCommands>& aCallback, TPckgBuf<TInt>& aArg1,
|
sl@0
|
56 |
TPckgBuf<TInt>& aArg2, TInt aResult, TRequestStatus& aStatus);
|
sl@0
|
57 |
void PrimeServerForCallbackWithResponseL(TPckgBuf<TABCallbackCommands>& aCallback, TPckgBuf<TInt>& aArg1,
|
sl@0
|
58 |
TPckgBuf<TInt>& aArg2, TDesC8& aResult, TRequestStatus& aStatus);
|
sl@0
|
59 |
void PropagateLeave(TInt aLeaveCode);
|
sl@0
|
60 |
|
sl@0
|
61 |
// IPC calls on the ABClient interface
|
sl@0
|
62 |
void BURModeInfoL(TDriveList& aDriveList, TBURPartType& aBackupType, TBackupIncType& aIncBackupType);
|
sl@0
|
63 |
TBool DoesPartialBURAffectMeL();
|
sl@0
|
64 |
void ConfirmReadyForBURL(TInt aErrorCode);
|
sl@0
|
65 |
void CancelServerCallbackL();
|
sl@0
|
66 |
|
sl@0
|
67 |
private:
|
sl@0
|
68 |
static TInt StartServer();
|
sl@0
|
69 |
|
sl@0
|
70 |
};
|
sl@0
|
71 |
|
sl@0
|
72 |
} // end namespace
|
sl@0
|
73 |
|
sl@0
|
74 |
#endif // __ABCLIENTSESSION_H__
|