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 |
@released
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#include "abclient.h"
|
sl@0
|
24 |
#include "abclientsession.h"
|
sl@0
|
25 |
#include "abachandler.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
namespace conn
|
sl@0
|
28 |
{
|
sl@0
|
29 |
|
sl@0
|
30 |
CActiveBackupClient::CActiveBackupClient() : iClientSession(NULL), iABCallbackHandler(NULL)
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
Class constructor.
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
{
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
EXPORT_C CActiveBackupClient* CActiveBackupClient::NewL()
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
This method creates a CActiveBackupClient, connects to the Secure Backup Server
|
sl@0
|
41 |
and does not wish to be called back so does not supply an implementation of
|
sl@0
|
42 |
MActiveBackupDataClient.
|
sl@0
|
43 |
|
sl@0
|
44 |
If this is called when the Secure Backup Server is not active then it will leave
|
sl@0
|
45 |
with KErrNotSupported.
|
sl@0
|
46 |
|
sl@0
|
47 |
@return Pointer to a created CActiveBackupClient object
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
{
|
sl@0
|
50 |
CActiveBackupClient* self = new (ELeave) CActiveBackupClient();
|
sl@0
|
51 |
CleanupStack::PushL(self);
|
sl@0
|
52 |
self->ConstructL();
|
sl@0
|
53 |
CleanupStack::Pop(self);
|
sl@0
|
54 |
return self;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
EXPORT_C CActiveBackupClient* CActiveBackupClient::NewL(MActiveBackupDataClient* aClient)
|
sl@0
|
58 |
/**
|
sl@0
|
59 |
This method creates a CActiveBackupClient, connects to the Secure Backup Server
|
sl@0
|
60 |
and supplies a pointer to a MActiveBackupDataClient implementation.
|
sl@0
|
61 |
|
sl@0
|
62 |
If this is called when the Secure Backup Server is not active then it will leave
|
sl@0
|
63 |
with KErrNotSupported.
|
sl@0
|
64 |
|
sl@0
|
65 |
@param aClient pointer to an object that implements the MActiveBackupDataClient
|
sl@0
|
66 |
mixin. If this is NULL then the data owner does not take part in
|
sl@0
|
67 |
active backup or restore.
|
sl@0
|
68 |
|
sl@0
|
69 |
@panic KErrNotFound Debug only - If an ActiveScheduler is not installed
|
sl@0
|
70 |
@leave Release only - If an ActiveScheduler is not installed
|
sl@0
|
71 |
@return Pointer to a created CActiveBackupClient object
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
{
|
sl@0
|
74 |
CActiveBackupClient* self = new (ELeave) CActiveBackupClient();
|
sl@0
|
75 |
CleanupStack::PushL(self);
|
sl@0
|
76 |
self->ConstructL(aClient);
|
sl@0
|
77 |
CleanupStack::Pop(self);
|
sl@0
|
78 |
return self;
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
void CActiveBackupClient::ConstructL()
|
sl@0
|
82 |
/**
|
sl@0
|
83 |
Construct this instance of CActiveBackupClient
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
{
|
sl@0
|
86 |
iClientSession = new (ELeave) RABClientSession;
|
sl@0
|
87 |
|
sl@0
|
88 |
User::LeaveIfError(iClientSession->Connect());
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
void CActiveBackupClient::ConstructL(MActiveBackupDataClient* aClient)
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
Construct this instance of CActiveBackupClient
|
sl@0
|
94 |
|
sl@0
|
95 |
@param aClient Pointer to a concrete instance of MActiveBackupDataClient
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
{
|
sl@0
|
98 |
ConstructL();
|
sl@0
|
99 |
|
sl@0
|
100 |
iABCallbackHandler = CActiveBackupCallbackHandler::NewL(aClient, *iClientSession);
|
sl@0
|
101 |
iABCallbackHandler->StartListeningForServerMessagesL();
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
|
sl@0
|
105 |
EXPORT_C CActiveBackupClient::~CActiveBackupClient()
|
sl@0
|
106 |
/**
|
sl@0
|
107 |
Standard destructor.
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
{
|
sl@0
|
110 |
delete iABCallbackHandler;
|
sl@0
|
111 |
if (iClientSession)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
iClientSession->Close();
|
sl@0
|
114 |
}
|
sl@0
|
115 |
delete iClientSession;
|
sl@0
|
116 |
iClientSession = NULL;
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
EXPORT_C void CActiveBackupClient::BURModeInfoL(TDriveList& aDriveList, TBURPartType& aBackupType, TBackupIncType& aIncBackupType)
|
sl@0
|
120 |
/**
|
sl@0
|
121 |
This method returns the type(s) of backup / restore operation currently active
|
sl@0
|
122 |
|
sl@0
|
123 |
@param aDriveList list of drives involved in backup and restore
|
sl@0
|
124 |
@param aBackupType enumerated type indicating whether a backup or restore
|
sl@0
|
125 |
is in progress and whether full or partial.
|
sl@0
|
126 |
@param aIncBackupType enumerated type indicating whetherr a backup is base
|
sl@0
|
127 |
or incremental.
|
sl@0
|
128 |
*/
|
sl@0
|
129 |
{
|
sl@0
|
130 |
iClientSession->BURModeInfoL(aDriveList, aBackupType, aIncBackupType);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
|
sl@0
|
134 |
EXPORT_C TBool CActiveBackupClient::DoesPartialBURAffectMeL()
|
sl@0
|
135 |
/**
|
sl@0
|
136 |
This method can be called when a partial backup or restore is active and will indicate
|
sl@0
|
137 |
whether the calling process is expected to take part. If a full backup or restore is
|
sl@0
|
138 |
active then this method will return ETrue for all data owners. If no backup or restore
|
sl@0
|
139 |
is active then this method will return EFalse for all data owners.
|
sl@0
|
140 |
|
sl@0
|
141 |
@return ETrue if the calling data owner is involved in the current backup or restore
|
sl@0
|
142 |
operation.
|
sl@0
|
143 |
*/
|
sl@0
|
144 |
{
|
sl@0
|
145 |
return iClientSession->DoesPartialBURAffectMeL();
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
|
sl@0
|
149 |
EXPORT_C void CActiveBackupClient::ConfirmReadyForBURL(TInt aErrorCode)
|
sl@0
|
150 |
/**
|
sl@0
|
151 |
This method is called to indicate to the Secure Backup Server that the data owner is ready
|
sl@0
|
152 |
to participate in backup or restore. The data owner must call this method to indicate
|
sl@0
|
153 |
readiness or the Secure Backup Server will not request or supply backup data.
|
sl@0
|
154 |
|
sl@0
|
155 |
N.B. The Secure Backup Server will supply snapshot data (if relevant) before a data
|
sl@0
|
156 |
owner indicates readiness as it assumes that the data owner requires snapshot data in
|
sl@0
|
157 |
order to prepare for a backp or restore.
|
sl@0
|
158 |
|
sl@0
|
159 |
@param aErrorCode this should be set to KErrNone when the client is ready for
|
sl@0
|
160 |
backup or restore. If it is set to any other value then it indicates that the client
|
sl@0
|
161 |
cannot continue with the backup or restore and the error code will be supplied to
|
sl@0
|
162 |
the remote backup client.
|
sl@0
|
163 |
*/
|
sl@0
|
164 |
{
|
sl@0
|
165 |
iClientSession->ConfirmReadyForBURL(aErrorCode);
|
sl@0
|
166 |
}
|
sl@0
|
167 |
|
sl@0
|
168 |
} // end of conn namespace
|
sl@0
|
169 |
|
sl@0
|
170 |
|