sl@0
|
1 |
// Copyright (c) 1997-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <e32debug.h>
|
sl@0
|
17 |
#include <e32test.h>
|
sl@0
|
18 |
#include <babackup.h>
|
sl@0
|
19 |
#include "T_backupSrv.h"
|
sl@0
|
20 |
LOCAL_D RTest MainTest(_L(" T_BackupSrv.cpp"));
|
sl@0
|
21 |
|
sl@0
|
22 |
_LIT(KFileName1, "FileName1");
|
sl@0
|
23 |
_LIT(KFileName2, "FileName2");
|
sl@0
|
24 |
_LIT(KFileName3, "FileName3");
|
sl@0
|
25 |
_LIT(KFileName4, "FileName4");
|
sl@0
|
26 |
|
sl@0
|
27 |
// Nasty global convenience function
|
sl@0
|
28 |
LOCAL_D void LogThread()
|
sl@0
|
29 |
{
|
sl@0
|
30 |
TBuf<150> buf((RThread().Name()));
|
sl@0
|
31 |
RDebug::Print(_L("*** Currently in thread : "));
|
sl@0
|
32 |
RDebug::Print(buf);
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
//
|
sl@0
|
36 |
// class CBackupOperationObserver
|
sl@0
|
37 |
//
|
sl@0
|
38 |
CBackupOperationObserver* CBackupOperationObserver::NewL(TInt aObserverNumber)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
LogThread();
|
sl@0
|
41 |
RDebug::Print(_L("CBackupOperationObserver::NewL"));
|
sl@0
|
42 |
|
sl@0
|
43 |
CBackupOperationObserver* self = new (ELeave) CBackupOperationObserver();
|
sl@0
|
44 |
CleanupStack::PushL(self);
|
sl@0
|
45 |
self->ConstructL(aObserverNumber);
|
sl@0
|
46 |
CleanupStack::Pop();
|
sl@0
|
47 |
return self;
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
CBackupOperationObserver::CBackupOperationObserver()
|
sl@0
|
51 |
: CActive(0)
|
sl@0
|
52 |
{ ; }
|
sl@0
|
53 |
|
sl@0
|
54 |
CBackupOperationObserver::~CBackupOperationObserver()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
LogThread();
|
sl@0
|
57 |
RDebug::Print(_L("CBackupOperationObserver::~CBackupOperationObserver"));
|
sl@0
|
58 |
|
sl@0
|
59 |
iBackupSession->DeRegisterBackupOperationObserver(*this);
|
sl@0
|
60 |
delete iBackupSession;
|
sl@0
|
61 |
|
sl@0
|
62 |
delete iLocalRTest;
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
void CBackupOperationObserver::ConstructL(TInt aObserverNumber)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
// Set up the AO callback
|
sl@0
|
68 |
CActiveScheduler::Add(this);
|
sl@0
|
69 |
SetActive();
|
sl@0
|
70 |
iStatus = KRequestPending;
|
sl@0
|
71 |
|
sl@0
|
72 |
// Create a new session for this backup notification observer
|
sl@0
|
73 |
iBackupSession = CBaBackupSessionWrapper::NewL();
|
sl@0
|
74 |
iBackupSession->RegisterBackupOperationObserverL(*this);
|
sl@0
|
75 |
iObserverNumber = aObserverNumber;
|
sl@0
|
76 |
iLocalRTest = new (ELeave) RTest(_L("BackupOperationObserver"));
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
void CBackupOperationObserver::HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes)
|
sl@0
|
80 |
{
|
sl@0
|
81 |
LogThread();
|
sl@0
|
82 |
RDebug::Print(_L("CBackupOperationObserver::HandleBackupOperationEventL"));
|
sl@0
|
83 |
|
sl@0
|
84 |
TBuf<150> buf;
|
sl@0
|
85 |
buf.Format(_L("Backup observer number %d received a notification of operation type %d and file lock type: %d\n"),iObserverNumber, aBackupOperationAttributes.iOperation, aBackupOperationAttributes.iFileFlag);
|
sl@0
|
86 |
RDebug::Print(buf);
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
void CBackupOperationObserver::DoCancel()
|
sl@0
|
90 |
{ ; }
|
sl@0
|
91 |
|
sl@0
|
92 |
void CBackupOperationObserver::RunL()
|
sl@0
|
93 |
{
|
sl@0
|
94 |
// Okay - we're back in the right thread!
|
sl@0
|
95 |
LogThread();
|
sl@0
|
96 |
RDebug::Print(_L("CBackupOperationObserver::RunL"));
|
sl@0
|
97 |
|
sl@0
|
98 |
// Finished with this object
|
sl@0
|
99 |
delete this;
|
sl@0
|
100 |
|
sl@0
|
101 |
// And the active scheduler in this thread
|
sl@0
|
102 |
CActiveScheduler::Current()->Stop();
|
sl@0
|
103 |
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
void CBackupOperationObserver::Kill(RThread* aThread)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
LogThread();
|
sl@0
|
109 |
RDebug::Print(_L("CBackupFileObserver::Kill"));
|
sl@0
|
110 |
|
sl@0
|
111 |
// Trigger the Active Object locally - in a different thread!
|
sl@0
|
112 |
TRequestStatus* tempStatus=(&iStatus);
|
sl@0
|
113 |
aThread->RequestComplete(tempStatus, KErrNone);
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
//
|
sl@0
|
117 |
// class CBackupFileObserver
|
sl@0
|
118 |
//
|
sl@0
|
119 |
|
sl@0
|
120 |
CBackupFileObserver::CBackupFileObserver()
|
sl@0
|
121 |
: CActive(0)
|
sl@0
|
122 |
{ ; }
|
sl@0
|
123 |
|
sl@0
|
124 |
void CBackupFileObserver::ConstructL(TInt aFileObserverNumber)
|
sl@0
|
125 |
{
|
sl@0
|
126 |
// Set up the AO callback
|
sl@0
|
127 |
CActiveScheduler::Add(this);
|
sl@0
|
128 |
SetActive();
|
sl@0
|
129 |
iStatus = KRequestPending;
|
sl@0
|
130 |
|
sl@0
|
131 |
// Create a new session for this file lock observer
|
sl@0
|
132 |
iBackupSession = CBaBackupSessionWrapper::NewL();
|
sl@0
|
133 |
iFileObserverNumber = aFileObserverNumber;
|
sl@0
|
134 |
iFileLocksChanged = 0;
|
sl@0
|
135 |
iFileLockState = ELocked;
|
sl@0
|
136 |
iLocalRTest = new (ELeave) RTest(_L("BackupFileObserver"));
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
CBackupFileObserver* CBackupFileObserver::NewL(TInt aFileObserverNumber)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
LogThread();
|
sl@0
|
142 |
RDebug::Print(_L("CBackupFileObserver::NewL"));
|
sl@0
|
143 |
|
sl@0
|
144 |
CBackupFileObserver* self=new(ELeave) CBackupFileObserver();
|
sl@0
|
145 |
CleanupStack::PushL(self);
|
sl@0
|
146 |
self->ConstructL(aFileObserverNumber);
|
sl@0
|
147 |
CleanupStack::Pop();
|
sl@0
|
148 |
return self;
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
CBackupFileObserver::~CBackupFileObserver()
|
sl@0
|
152 |
{
|
sl@0
|
153 |
LogThread();
|
sl@0
|
154 |
RDebug::Print(_L("CBackupFileObserver::~CBackupFileObserver"));
|
sl@0
|
155 |
|
sl@0
|
156 |
delete iBackupSession;
|
sl@0
|
157 |
|
sl@0
|
158 |
delete iLocalRTest;
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
void CBackupFileObserver::AddFileL(TInt aFileNumber)
|
sl@0
|
162 |
{
|
sl@0
|
163 |
LogThread();
|
sl@0
|
164 |
RDebug::Print(_L("CBackupFileObserver::AddFileL"));
|
sl@0
|
165 |
|
sl@0
|
166 |
// We base the filename of the number of thread in the RArray
|
sl@0
|
167 |
iFileName.Format(_L("FileName%d"), aFileNumber);
|
sl@0
|
168 |
|
sl@0
|
169 |
iBackupSession->RegisterFileL(iFileName,*this);
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
TInt CBackupFileObserver::GetFileLocksChanged()
|
sl@0
|
173 |
{
|
sl@0
|
174 |
return iFileLocksChanged;
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
void CBackupFileObserver::ZeroFileLocksChanged()
|
sl@0
|
178 |
{
|
sl@0
|
179 |
iFileLocksChanged = 0;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
void CBackupFileObserver::SetDelay(TBool aDelay)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
iDelay = aDelay;
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
void CBackupFileObserver::ChangeFileLockL(const TDesC& aFileName,TFileLockFlags aFlags)
|
sl@0
|
188 |
{
|
sl@0
|
189 |
LogThread();
|
sl@0
|
190 |
RDebug::Print(_L("BackupFileObserver::ChangeFileLockL"));
|
sl@0
|
191 |
|
sl@0
|
192 |
// Keep a count of how many release notifications there have been
|
sl@0
|
193 |
if (aFlags != MBackupObserver::ETakeLock)
|
sl@0
|
194 |
{
|
sl@0
|
195 |
iFileLocksChanged++;
|
sl@0
|
196 |
}
|
sl@0
|
197 |
|
sl@0
|
198 |
// If delay is set then insert wait now
|
sl@0
|
199 |
if (iDelay && (!(aFileName.Compare(KFileName1))))
|
sl@0
|
200 |
{
|
sl@0
|
201 |
User::After(10000000);
|
sl@0
|
202 |
}
|
sl@0
|
203 |
|
sl@0
|
204 |
// Check this file is the one for this observer - if not fail test;
|
sl@0
|
205 |
if (iFileName.Compare(aFileName))
|
sl@0
|
206 |
{
|
sl@0
|
207 |
RDebug::Print(_L("\nReceived notification for non-registered file!"));
|
sl@0
|
208 |
(*iLocalRTest)(EFalse);
|
sl@0
|
209 |
}
|
sl@0
|
210 |
|
sl@0
|
211 |
// Update the local file lock array
|
sl@0
|
212 |
CBackupFileObserver::TFileLock flag = (CBackupFileObserver::TFileLock) aFlags;
|
sl@0
|
213 |
iFileLockState = flag;
|
sl@0
|
214 |
|
sl@0
|
215 |
// Test output
|
sl@0
|
216 |
TBuf<150> buf;
|
sl@0
|
217 |
buf.Format(_L("File backup observer number %d was notified for file %S of file lock type: %d\n"),iFileObserverNumber, &aFileName, flag);
|
sl@0
|
218 |
RDebug::Print(buf);
|
sl@0
|
219 |
}
|
sl@0
|
220 |
|
sl@0
|
221 |
void CBackupFileObserver::DoCancel()
|
sl@0
|
222 |
{ ; }
|
sl@0
|
223 |
|
sl@0
|
224 |
void CBackupFileObserver::RunL()
|
sl@0
|
225 |
{
|
sl@0
|
226 |
// Okay - we're back in the right thread!
|
sl@0
|
227 |
LogThread();
|
sl@0
|
228 |
RDebug::Print(_L("CBackupFileObserver::RunL"));
|
sl@0
|
229 |
|
sl@0
|
230 |
// Finished with this object
|
sl@0
|
231 |
delete this;
|
sl@0
|
232 |
|
sl@0
|
233 |
// And the active scheduler in this thread
|
sl@0
|
234 |
CActiveScheduler::Current()->Stop();
|
sl@0
|
235 |
|
sl@0
|
236 |
}
|
sl@0
|
237 |
|
sl@0
|
238 |
void CBackupFileObserver::Kill(RThread* aThread)
|
sl@0
|
239 |
{
|
sl@0
|
240 |
LogThread();
|
sl@0
|
241 |
RDebug::Print(_L("CBackupFileObserver::Kill"));
|
sl@0
|
242 |
|
sl@0
|
243 |
// Trigger the Active Object locally - in a different thread!
|
sl@0
|
244 |
TRequestStatus* tempStatus=(&iStatus);
|
sl@0
|
245 |
aThread->RequestComplete(tempStatus, KErrNone);
|
sl@0
|
246 |
}
|
sl@0
|
247 |
|
sl@0
|
248 |
//
|
sl@0
|
249 |
// class CBackupTestsStateMachine
|
sl@0
|
250 |
//
|
sl@0
|
251 |
|
sl@0
|
252 |
CBackupTestsStateMachine* CBackupTestsStateMachine::NewL()
|
sl@0
|
253 |
{
|
sl@0
|
254 |
CBackupTestsStateMachine* self = new (ELeave) CBackupTestsStateMachine();
|
sl@0
|
255 |
CleanupStack::PushL(self);
|
sl@0
|
256 |
self->ConstructL();
|
sl@0
|
257 |
CleanupStack::Pop();
|
sl@0
|
258 |
return self;
|
sl@0
|
259 |
}
|
sl@0
|
260 |
|
sl@0
|
261 |
CBackupTestsStateMachine::CBackupTestsStateMachine()
|
sl@0
|
262 |
: CActive(0)
|
sl@0
|
263 |
{ ; }
|
sl@0
|
264 |
|
sl@0
|
265 |
void CBackupTestsStateMachine::ConstructL()
|
sl@0
|
266 |
{
|
sl@0
|
267 |
// Set up the RTest for this thread and display we're started
|
sl@0
|
268 |
iLocalRTest = new (ELeave) RTest(_L("T_BACKUP_SRV"));
|
sl@0
|
269 |
iLocalRTest->Title();
|
sl@0
|
270 |
|
sl@0
|
271 |
// Set the ititial state
|
sl@0
|
272 |
iState = EStateMachineStart;
|
sl@0
|
273 |
|
sl@0
|
274 |
// Zero the EndBackupRecursionCount (see below)
|
sl@0
|
275 |
iEndBackupRecursionCount = 0;
|
sl@0
|
276 |
|
sl@0
|
277 |
// Add this to the Active Scheduler and set us active
|
sl@0
|
278 |
CActiveScheduler::Add(this);
|
sl@0
|
279 |
SetActive();
|
sl@0
|
280 |
|
sl@0
|
281 |
// Create the backup "command" session
|
sl@0
|
282 |
iBackupSession = CBaBackupSessionWrapper::NewL();
|
sl@0
|
283 |
|
sl@0
|
284 |
// Set up the mutex
|
sl@0
|
285 |
iMutex.CreateLocal();
|
sl@0
|
286 |
}
|
sl@0
|
287 |
|
sl@0
|
288 |
// Observers need to have their own thread
|
sl@0
|
289 |
void CBackupTestsStateMachine::CreateObserversThreadsL()
|
sl@0
|
290 |
{
|
sl@0
|
291 |
RDebug::Print(_L("Starting observers threads"));
|
sl@0
|
292 |
|
sl@0
|
293 |
TInt i;
|
sl@0
|
294 |
TBuf<30> newThreadNames;
|
sl@0
|
295 |
TInt error;
|
sl@0
|
296 |
for (i = 0; i<4 ; i++)
|
sl@0
|
297 |
{
|
sl@0
|
298 |
// Backup observer
|
sl@0
|
299 |
iBackupObserverThreads.AppendL(new (ELeave) RThread);
|
sl@0
|
300 |
newThreadNames.Format(_L("Backup Observer Thread %d"), i+1);
|
sl@0
|
301 |
error = iBackupObserverThreads[i]->Create(newThreadNames, CBackupTestsStateMachine::BackupObserversThreadStartL, 0x2000, NULL, (TAny*)this);
|
sl@0
|
302 |
(*iLocalRTest)(error==KErrNone);
|
sl@0
|
303 |
iBackupObserverThreads[i]->Resume();
|
sl@0
|
304 |
|
sl@0
|
305 |
// File observer
|
sl@0
|
306 |
iFileObserverThreads.AppendL(new (ELeave) RThread);
|
sl@0
|
307 |
newThreadNames.Format(_L("File Observer Thread %d"), i+1);
|
sl@0
|
308 |
error = iFileObserverThreads[i]->Create(newThreadNames, CBackupTestsStateMachine::FileObserversThreadStartL, 0x2000, NULL, (TAny*)this);
|
sl@0
|
309 |
|
sl@0
|
310 |
(*iLocalRTest)(error==KErrNone);
|
sl@0
|
311 |
iFileObserverThreads[i]->Resume();
|
sl@0
|
312 |
|
sl@0
|
313 |
// Brief delay to let the observer threads get started
|
sl@0
|
314 |
User::After(1000000);
|
sl@0
|
315 |
}
|
sl@0
|
316 |
|
sl@0
|
317 |
}
|
sl@0
|
318 |
|
sl@0
|
319 |
// Static starting function for the backup observers threads
|
sl@0
|
320 |
TInt CBackupTestsStateMachine::BackupObserversThreadStartL(TAny* aPtr)
|
sl@0
|
321 |
{
|
sl@0
|
322 |
// Create the Cleanup Stack and Active Scheduler for this thread
|
sl@0
|
323 |
|
sl@0
|
324 |
CTrapCleanup* theTrapCleanup = CTrapCleanup::New();
|
sl@0
|
325 |
CActiveScheduler *activeScheduler = new CActiveScheduler;
|
sl@0
|
326 |
CActiveScheduler::Install(activeScheduler);
|
sl@0
|
327 |
|
sl@0
|
328 |
// Create the observer instances
|
sl@0
|
329 |
CBackupTestsStateMachine* objectPtr = static_cast<CBackupTestsStateMachine*>(aPtr);
|
sl@0
|
330 |
TRAPD(error, objectPtr->CreateBackupObserverInstanceL());
|
sl@0
|
331 |
User::LeaveIfError(error);
|
sl@0
|
332 |
|
sl@0
|
333 |
// Go to Active Scheduler main loop for this thread
|
sl@0
|
334 |
CActiveScheduler::Start();
|
sl@0
|
335 |
|
sl@0
|
336 |
// And we're done
|
sl@0
|
337 |
delete activeScheduler;
|
sl@0
|
338 |
delete theTrapCleanup;
|
sl@0
|
339 |
|
sl@0
|
340 |
return KErrNone;
|
sl@0
|
341 |
}
|
sl@0
|
342 |
|
sl@0
|
343 |
// Static starting function for the file observers threads
|
sl@0
|
344 |
TInt CBackupTestsStateMachine::FileObserversThreadStartL(TAny* aPtr)
|
sl@0
|
345 |
{
|
sl@0
|
346 |
// Create the Cleanup Stack and Active Scheduler for this thread
|
sl@0
|
347 |
CTrapCleanup* theTrapCleanup = CTrapCleanup::New();
|
sl@0
|
348 |
CActiveScheduler* activeScheduler = new CActiveScheduler;
|
sl@0
|
349 |
CActiveScheduler::Install(activeScheduler);
|
sl@0
|
350 |
|
sl@0
|
351 |
// Create the observer instances
|
sl@0
|
352 |
CBackupTestsStateMachine* objectPtr = static_cast<CBackupTestsStateMachine*>(aPtr);
|
sl@0
|
353 |
TRAPD(error, objectPtr->CreateFileObserverInstanceL());
|
sl@0
|
354 |
User::LeaveIfError(error);
|
sl@0
|
355 |
|
sl@0
|
356 |
// Go to Active Scheduler main loop for this thread
|
sl@0
|
357 |
CActiveScheduler::Start();
|
sl@0
|
358 |
|
sl@0
|
359 |
// And we're done
|
sl@0
|
360 |
delete activeScheduler;
|
sl@0
|
361 |
delete theTrapCleanup;
|
sl@0
|
362 |
|
sl@0
|
363 |
return KErrNone;
|
sl@0
|
364 |
}
|
sl@0
|
365 |
|
sl@0
|
366 |
void CBackupTestsStateMachine::CreateBackupObserverInstanceL()
|
sl@0
|
367 |
{
|
sl@0
|
368 |
iMutex.Wait();
|
sl@0
|
369 |
|
sl@0
|
370 |
TInt count = iBackupObserverThreads.Count();
|
sl@0
|
371 |
|
sl@0
|
372 |
// Create the new object instance (one object per thread)
|
sl@0
|
373 |
// We base the thread number of the number of thread in the RArray
|
sl@0
|
374 |
CBackupOperationObserver* newObserver = CBackupOperationObserver::NewL(count);
|
sl@0
|
375 |
iBackupObservers.AppendL(newObserver);
|
sl@0
|
376 |
|
sl@0
|
377 |
iMutex.Signal();
|
sl@0
|
378 |
}
|
sl@0
|
379 |
|
sl@0
|
380 |
void CBackupTestsStateMachine::CreateFileObserverInstanceL()
|
sl@0
|
381 |
{
|
sl@0
|
382 |
iMutex.Wait();
|
sl@0
|
383 |
|
sl@0
|
384 |
TInt count = iBackupFileObservers.Count();
|
sl@0
|
385 |
|
sl@0
|
386 |
// Create the new object instance (one object per thread)
|
sl@0
|
387 |
CBackupFileObserver* newObserver = CBackupFileObserver::NewL(count + 1);
|
sl@0
|
388 |
iBackupFileObservers.AppendL(newObserver);
|
sl@0
|
389 |
|
sl@0
|
390 |
// Register the file for this thread / instance
|
sl@0
|
391 |
iBackupFileObservers[count]->AddFileL(count + 1);
|
sl@0
|
392 |
|
sl@0
|
393 |
iMutex.Signal();
|
sl@0
|
394 |
}
|
sl@0
|
395 |
|
sl@0
|
396 |
// State Machine destructor
|
sl@0
|
397 |
CBackupTestsStateMachine::~CBackupTestsStateMachine()
|
sl@0
|
398 |
{
|
sl@0
|
399 |
// Close our session into the backup server
|
sl@0
|
400 |
delete iBackupSession;
|
sl@0
|
401 |
|
sl@0
|
402 |
// Delete all the observers (only 3 of each of by this point)
|
sl@0
|
403 |
TInt i;
|
sl@0
|
404 |
|
sl@0
|
405 |
for (i = 0; i<3 ; i++)
|
sl@0
|
406 |
{
|
sl@0
|
407 |
iBackupObservers[i]->Kill(iBackupObserverThreads[i]);
|
sl@0
|
408 |
iBackupFileObservers[i]->Kill(iFileObserverThreads[i]);
|
sl@0
|
409 |
User::After(50000000);
|
sl@0
|
410 |
}
|
sl@0
|
411 |
iBackupObservers.Close();
|
sl@0
|
412 |
iBackupFileObservers.Close();
|
sl@0
|
413 |
|
sl@0
|
414 |
// Kill the observer threads
|
sl@0
|
415 |
for (i = 0; i<3 ; i++)
|
sl@0
|
416 |
|
sl@0
|
417 |
{
|
sl@0
|
418 |
iBackupObserverThreads[i]->Kill(KErrNone);
|
sl@0
|
419 |
delete iBackupObserverThreads[i];
|
sl@0
|
420 |
iFileObserverThreads[i]->Kill(KErrNone);
|
sl@0
|
421 |
delete iFileObserverThreads[i];
|
sl@0
|
422 |
}
|
sl@0
|
423 |
iBackupObserverThreads.Close();
|
sl@0
|
424 |
iFileObserverThreads.Close();
|
sl@0
|
425 |
|
sl@0
|
426 |
// Display we're finished
|
sl@0
|
427 |
iLocalRTest->Close();
|
sl@0
|
428 |
delete iLocalRTest;
|
sl@0
|
429 |
|
sl@0
|
430 |
// Cancel this is it's active
|
sl@0
|
431 |
if (IsActive())
|
sl@0
|
432 |
{
|
sl@0
|
433 |
Cancel();
|
sl@0
|
434 |
}
|
sl@0
|
435 |
}
|
sl@0
|
436 |
|
sl@0
|
437 |
// Common starting function for all test-related calls to CloseAll
|
sl@0
|
438 |
void CBackupTestsStateMachine::CloseAllStartL(StateMachineState aNextState, MBackupObserver::TFileLockFlags aFlag)
|
sl@0
|
439 |
{
|
sl@0
|
440 |
StartBackupL();
|
sl@0
|
441 |
iState = aNextState;
|
sl@0
|
442 |
iBackupSession->CloseAll(aFlag, iStatus);
|
sl@0
|
443 |
}
|
sl@0
|
444 |
|
sl@0
|
445 |
// Common ending function for all test-related calls to CloseAll
|
sl@0
|
446 |
void CBackupTestsStateMachine::CloseAllEndL(StateMachineState aNextState, TInt aExpectedNotifications)
|
sl@0
|
447 |
{
|
sl@0
|
448 |
iState = aNextState;
|
sl@0
|
449 |
SignalEndBackupL();
|
sl@0
|
450 |
EndBackup(aExpectedNotifications, ETrue);
|
sl@0
|
451 |
iLocalRTest->End();
|
sl@0
|
452 |
Complete();
|
sl@0
|
453 |
}
|
sl@0
|
454 |
|
sl@0
|
455 |
// State machine call back - get here by calls to Complete and returns for asynchronous server calls
|
sl@0
|
456 |
void CBackupTestsStateMachine::RunL()
|
sl@0
|
457 |
{
|
sl@0
|
458 |
switch(iState)
|
sl@0
|
459 |
{
|
sl@0
|
460 |
case EStateMachineStart:
|
sl@0
|
461 |
// Create observers threads
|
sl@0
|
462 |
CreateObserversThreadsL();
|
sl@0
|
463 |
iState = ECloseAllNormalReadOnly;
|
sl@0
|
464 |
Complete();
|
sl@0
|
465 |
break;
|
sl@0
|
466 |
case ECloseAllNormalReadOnly:
|
sl@0
|
467 |
iLocalRTest->Start(_L("\nCloseAllFiles normal ReadOnly\n"));
|
sl@0
|
468 |
CloseAllStartL(ECloseAllNormalReadOnlyReturned, MBackupObserver::EReleaseLockReadOnly);
|
sl@0
|
469 |
break;
|
sl@0
|
470 |
case ECloseAllNormalReadOnlyReturned:
|
sl@0
|
471 |
CloseAllEndL(ECloseAllNormalNoAccess, 4);
|
sl@0
|
472 |
break;
|
sl@0
|
473 |
case ECloseAllNormalNoAccess:
|
sl@0
|
474 |
iLocalRTest->Start(_L("\nCloseAllFiles normal NoAccess\n"));
|
sl@0
|
475 |
CloseAllStartL(ECloseAllNormalNoAccessReturned, MBackupObserver::EReleaseLockNoAccess);
|
sl@0
|
476 |
break;
|
sl@0
|
477 |
case ECloseAllNormalNoAccessReturned:
|
sl@0
|
478 |
CloseAllEndL(ECloseAllDelayReadOnly, 4);
|
sl@0
|
479 |
break;
|
sl@0
|
480 |
case ECloseAllDelayReadOnly:
|
sl@0
|
481 |
iLocalRTest->Start(_L("\nCloseAllFiles delay ReadOnly\n"));
|
sl@0
|
482 |
iBackupFileObservers[0]->SetDelay(ETrue);
|
sl@0
|
483 |
CloseAllStartL(ECloseAllDelayReadOnlyReturned, MBackupObserver::EReleaseLockReadOnly);
|
sl@0
|
484 |
break;
|
sl@0
|
485 |
case ECloseAllDelayReadOnlyReturned:
|
sl@0
|
486 |
iBackupFileObservers[0]->SetDelay(EFalse);
|
sl@0
|
487 |
CloseAllEndL(ECloseAllDelayNoAccess, 4);
|
sl@0
|
488 |
// Nice long wait for the timer to expire in the other thread
|
sl@0
|
489 |
User::After(10000000);
|
sl@0
|
490 |
break;
|
sl@0
|
491 |
case ECloseAllDelayNoAccess:
|
sl@0
|
492 |
iLocalRTest->Start(_L("\nCloseAllFiles delay NoAccess\n"));
|
sl@0
|
493 |
iBackupFileObservers[0]->SetDelay(ETrue);
|
sl@0
|
494 |
CloseAllStartL(ECloseAllDelayNoAccessReturned, MBackupObserver::EReleaseLockNoAccess);
|
sl@0
|
495 |
break;
|
sl@0
|
496 |
case ECloseAllDelayNoAccessReturned:
|
sl@0
|
497 |
iBackupFileObservers[0]->SetDelay(EFalse);
|
sl@0
|
498 |
CloseAllEndL(ECloseAllDropFileSession, 4);
|
sl@0
|
499 |
// Nice long wait for the timer to expire in the other thread
|
sl@0
|
500 |
User::After(10000000);
|
sl@0
|
501 |
break;
|
sl@0
|
502 |
case ECloseAllDropFileSession:
|
sl@0
|
503 |
iLocalRTest->Start(_L("\nCloseAllFiles dropping file session\n"));
|
sl@0
|
504 |
// Drop one of the file registration / observer sessions
|
sl@0
|
505 |
iBackupFileObservers[0]->Kill(iFileObserverThreads[0]);
|
sl@0
|
506 |
// Nice long wait for the observer to be killed in the other thread
|
sl@0
|
507 |
User::After(10000000);
|
sl@0
|
508 |
// Remove it from the list
|
sl@0
|
509 |
iBackupFileObservers.Remove(0);
|
sl@0
|
510 |
// Kill the thread
|
sl@0
|
511 |
iFileObserverThreads[0]->Kill(KErrNone);
|
sl@0
|
512 |
delete iFileObserverThreads[0];
|
sl@0
|
513 |
iFileObserverThreads.Remove(0);
|
sl@0
|
514 |
// All done - start this sub-test
|
sl@0
|
515 |
CloseAllStartL(ECloseAllDropFileSessionReturned, MBackupObserver::EReleaseLockReadOnly);
|
sl@0
|
516 |
break;
|
sl@0
|
517 |
case ECloseAllDropFileSessionReturned:
|
sl@0
|
518 |
CloseAllEndL(ECloseAllDropBackupObserverSession, 3);
|
sl@0
|
519 |
break;
|
sl@0
|
520 |
case ECloseAllDropBackupObserverSession:
|
sl@0
|
521 |
iLocalRTest->Start(_L("\nCloseAllFiles dropping backup session\n"));
|
sl@0
|
522 |
// Drop one of the backup observer sessions
|
sl@0
|
523 |
iBackupObservers[0]->Kill(iBackupObserverThreads[0]);
|
sl@0
|
524 |
// Nice long wait for the observer to be killed in the other thread
|
sl@0
|
525 |
User::After(10000000);
|
sl@0
|
526 |
// Remove it from the list
|
sl@0
|
527 |
iBackupObservers.Remove(0);
|
sl@0
|
528 |
// Kill the thread
|
sl@0
|
529 |
iBackupObserverThreads[0]->Kill(KErrNone);
|
sl@0
|
530 |
delete iBackupObserverThreads[0];
|
sl@0
|
531 |
iBackupObserverThreads.Remove(0);
|
sl@0
|
532 |
// All done - start this sub-test
|
sl@0
|
533 |
CloseAllStartL(ECloseAllDropBackupObserverSessionReturned, MBackupObserver::EReleaseLockReadOnly);
|
sl@0
|
534 |
break;
|
sl@0
|
535 |
case ECloseAllDropBackupObserverSessionReturned:
|
sl@0
|
536 |
CloseAllEndL(ESingleFileTests, 3);
|
sl@0
|
537 |
break;
|
sl@0
|
538 |
case ESingleFileTests:
|
sl@0
|
539 |
iLocalRTest->Start(_L("\nSingle file lock tests\n"));
|
sl@0
|
540 |
StartBackupL();
|
sl@0
|
541 |
SingleFileLockTestsL();
|
sl@0
|
542 |
SignalEndBackupL();
|
sl@0
|
543 |
// Can call EndBackup synchronously here as nothing in SingleFileLockTests is asynchronous
|
sl@0
|
544 |
EndBackup(3, EFalse);
|
sl@0
|
545 |
iLocalRTest->End();
|
sl@0
|
546 |
iState = ENoBackupSessionSingleFileTests;
|
sl@0
|
547 |
Complete();
|
sl@0
|
548 |
break;
|
sl@0
|
549 |
// Required to cover the situation when the backup server is used purely for message signalling
|
sl@0
|
550 |
// For example in the LogEng compnent
|
sl@0
|
551 |
case ENoBackupSessionSingleFileTests:
|
sl@0
|
552 |
iLocalRTest->Start(_L("\nNo backup session single file lock tests\n"));
|
sl@0
|
553 |
SingleFileLockTestsL();
|
sl@0
|
554 |
// Can call EndBackup synchronously here as nothing in SingleFileLockTests is asynchronous
|
sl@0
|
555 |
EndBackup(3, EFalse);
|
sl@0
|
556 |
iLocalRTest->End();
|
sl@0
|
557 |
iState = EStateMachineEnd;
|
sl@0
|
558 |
Complete();
|
sl@0
|
559 |
break;
|
sl@0
|
560 |
case EStateMachineEnd:
|
sl@0
|
561 |
RDebug::Print(_L("\nEnd of state machine\n"));
|
sl@0
|
562 |
End();
|
sl@0
|
563 |
break;
|
sl@0
|
564 |
default:
|
sl@0
|
565 |
RDebug::Print(_L("\nCBackupTestsStateMachine::RunL problem"));
|
sl@0
|
566 |
break;
|
sl@0
|
567 |
}
|
sl@0
|
568 |
if (!IsActive())
|
sl@0
|
569 |
{
|
sl@0
|
570 |
SetActive();
|
sl@0
|
571 |
}
|
sl@0
|
572 |
}
|
sl@0
|
573 |
|
sl@0
|
574 |
void CBackupTestsStateMachine::DoCancel()
|
sl@0
|
575 |
{
|
sl@0
|
576 |
Complete();
|
sl@0
|
577 |
}
|
sl@0
|
578 |
|
sl@0
|
579 |
void CBackupTestsStateMachine::RunError()
|
sl@0
|
580 |
{ ; }
|
sl@0
|
581 |
|
sl@0
|
582 |
// Common function to start a backup
|
sl@0
|
583 |
void CBackupTestsStateMachine::StartBackupL()
|
sl@0
|
584 |
{
|
sl@0
|
585 |
TBackupOperationAttributes attribs;
|
sl@0
|
586 |
attribs.iFileFlag=MBackupObserver::EReleaseLockNoAccess;
|
sl@0
|
587 |
attribs.iOperation=MBackupOperationObserver::EStart;
|
sl@0
|
588 |
iBackupSession->NotifyBackupOperationL(attribs);
|
sl@0
|
589 |
RDebug::Print(_L("\nStarting backup\n"));
|
sl@0
|
590 |
}
|
sl@0
|
591 |
|
sl@0
|
592 |
void CBackupTestsStateMachine::SignalEndBackupL()
|
sl@0
|
593 |
{
|
sl@0
|
594 |
// Tell the server the backup is over
|
sl@0
|
595 |
TBackupOperationAttributes attribs;
|
sl@0
|
596 |
attribs.iFileFlag=MBackupObserver::EReleaseLockNoAccess;
|
sl@0
|
597 |
attribs.iOperation=MBackupOperationObserver::EEnd;
|
sl@0
|
598 |
iBackupSession->NotifyBackupOperationL(attribs);
|
sl@0
|
599 |
}
|
sl@0
|
600 |
|
sl@0
|
601 |
// This function works in two ways. If oneTimeOnly is ETrue then all file lock
|
sl@0
|
602 |
// change notifications must have been received before this function is called.
|
sl@0
|
603 |
// If oneTimeOnly is EFalse this function recursively calls itself (a finate number
|
sl@0
|
604 |
// of times) until all notifications have arrived (this happens with single file testing)
|
sl@0
|
605 |
void CBackupTestsStateMachine::EndBackup(TInt aFileLockChangesExpected, TBool oneTimeOnly)
|
sl@0
|
606 |
{
|
sl@0
|
607 |
// Get the total notification count so far
|
sl@0
|
608 |
TInt numberOfObservers = iBackupFileObservers.Count();
|
sl@0
|
609 |
TInt totalNotificationCount = 0;
|
sl@0
|
610 |
for (TInt i=0; i<numberOfObservers ; i++)
|
sl@0
|
611 |
{
|
sl@0
|
612 |
totalNotificationCount += iBackupFileObservers[i]->GetFileLocksChanged();
|
sl@0
|
613 |
}
|
sl@0
|
614 |
if (aFileLockChangesExpected == totalNotificationCount)
|
sl@0
|
615 |
{
|
sl@0
|
616 |
// Reset the recursion count
|
sl@0
|
617 |
iEndBackupRecursionCount = 0;
|
sl@0
|
618 |
|
sl@0
|
619 |
// Zero the notification counts in the file lock observers
|
sl@0
|
620 |
for (TInt i = 0 ; i<numberOfObservers ; i++)
|
sl@0
|
621 |
{
|
sl@0
|
622 |
iBackupFileObservers[i]->ZeroFileLocksChanged();
|
sl@0
|
623 |
}
|
sl@0
|
624 |
|
sl@0
|
625 |
// Debug output
|
sl@0
|
626 |
TBuf<100> buf;
|
sl@0
|
627 |
buf.Format(_L("\nBackup finished sucsessfully on recusion count %d of EndBackup\n"), iEndBackupRecursionCount);
|
sl@0
|
628 |
RDebug::Print(buf);
|
sl@0
|
629 |
}
|
sl@0
|
630 |
else if (oneTimeOnly)
|
sl@0
|
631 |
{
|
sl@0
|
632 |
// No second chances - fail here
|
sl@0
|
633 |
(*iLocalRTest)(EFalse);
|
sl@0
|
634 |
}
|
sl@0
|
635 |
else
|
sl@0
|
636 |
{
|
sl@0
|
637 |
// Give it 5 more seconds (in 10 .5 second iterations) for the notifications to arrive
|
sl@0
|
638 |
User::After(500000);
|
sl@0
|
639 |
// 5 seconds is more than enough (timeouts in server should have gone off by now anyway)
|
sl@0
|
640 |
iEndBackupRecursionCount++;
|
sl@0
|
641 |
if (iEndBackupRecursionCount > 10)
|
sl@0
|
642 |
{
|
sl@0
|
643 |
(*iLocalRTest)(EFalse);
|
sl@0
|
644 |
}
|
sl@0
|
645 |
// Recursively calling isn't great but it needs to leave the function so the AO can run
|
sl@0
|
646 |
EndBackup(aFileLockChangesExpected, EFalse);
|
sl@0
|
647 |
}
|
sl@0
|
648 |
|
sl@0
|
649 |
}
|
sl@0
|
650 |
|
sl@0
|
651 |
void CBackupTestsStateMachine::Complete()
|
sl@0
|
652 |
{
|
sl@0
|
653 |
// Trigger the Active Object locally
|
sl@0
|
654 |
TRequestStatus* tempStatus=(&iStatus);
|
sl@0
|
655 |
User::RequestComplete(tempStatus, KErrNone);
|
sl@0
|
656 |
}
|
sl@0
|
657 |
|
sl@0
|
658 |
void CBackupTestsStateMachine::Start()
|
sl@0
|
659 |
{
|
sl@0
|
660 |
// Time to start testing
|
sl@0
|
661 |
RDebug::Print(_L("\nCBackupTestsStateMachine::Start"));
|
sl@0
|
662 |
Complete();
|
sl@0
|
663 |
}
|
sl@0
|
664 |
|
sl@0
|
665 |
void CBackupTestsStateMachine::End()
|
sl@0
|
666 |
{
|
sl@0
|
667 |
// We're done testing - kill the Active Scheduler
|
sl@0
|
668 |
RDebug::Print(_L("\nAll test complete\n"));
|
sl@0
|
669 |
Cancel();
|
sl@0
|
670 |
CActiveScheduler::Current()->Stop();
|
sl@0
|
671 |
}
|
sl@0
|
672 |
|
sl@0
|
673 |
void CBackupTestsStateMachine::SingleFileLockTestsL()
|
sl@0
|
674 |
{
|
sl@0
|
675 |
TFileName file;
|
sl@0
|
676 |
|
sl@0
|
677 |
// File 1
|
sl@0
|
678 |
file.Copy(KFileName1);
|
sl@0
|
679 |
iLocalRTest->Next(file);
|
sl@0
|
680 |
|
sl@0
|
681 |
iBackupSession->CloseFileL(KFileName1, MBackupObserver::EReleaseLockReadOnly);
|
sl@0
|
682 |
iBackupSession->RestartFile(file);
|
sl@0
|
683 |
|
sl@0
|
684 |
// iBackupSession->CloseFileL(KFileName1, MBackupObserver::EReleaseLockNoAccess);
|
sl@0
|
685 |
// iBackupSession->RestartFile(file);
|
sl@0
|
686 |
|
sl@0
|
687 |
// File 2
|
sl@0
|
688 |
file.Copy(KFileName2);
|
sl@0
|
689 |
iLocalRTest->Next(file);
|
sl@0
|
690 |
|
sl@0
|
691 |
iBackupSession->CloseFileL(KFileName2, MBackupObserver::EReleaseLockReadOnly);
|
sl@0
|
692 |
iBackupSession->RestartFile(file);
|
sl@0
|
693 |
|
sl@0
|
694 |
// iBackupSession->CloseFileL(KFileName2, MBackupObserver::EReleaseLockNoAccess);
|
sl@0
|
695 |
// iBackupSession->RestartFile(file);
|
sl@0
|
696 |
|
sl@0
|
697 |
// File 3
|
sl@0
|
698 |
file.Copy(KFileName3);
|
sl@0
|
699 |
iLocalRTest->Next(file);
|
sl@0
|
700 |
|
sl@0
|
701 |
iBackupSession->CloseFileL(KFileName3, MBackupObserver::EReleaseLockReadOnly);
|
sl@0
|
702 |
iBackupSession->RestartFile(file);
|
sl@0
|
703 |
|
sl@0
|
704 |
// iBackupSession->CloseFileL(KFileName3, MBackupObserver::EReleaseLockNoAccess);
|
sl@0
|
705 |
// iBackupSession->RestartFile(file);
|
sl@0
|
706 |
|
sl@0
|
707 |
// File 3
|
sl@0
|
708 |
file.Copy(KFileName4);
|
sl@0
|
709 |
iLocalRTest->Next(file);
|
sl@0
|
710 |
|
sl@0
|
711 |
iBackupSession->CloseFileL(KFileName4, MBackupObserver::EReleaseLockReadOnly);
|
sl@0
|
712 |
iBackupSession->RestartFile(file);
|
sl@0
|
713 |
|
sl@0
|
714 |
// iBackupSession->CloseFileL(KFileName4, MBackupObserver::EReleaseLockNoAccess);
|
sl@0
|
715 |
// iBackupSession->RestartFile(file);
|
sl@0
|
716 |
}
|
sl@0
|
717 |
|
sl@0
|
718 |
/**
|
sl@0
|
719 |
@SYMTestCaseID SYSLIB-BAFL-CT-0467
|
sl@0
|
720 |
@SYMTestCaseDesc Tests the functionality of CBaBackupSessionWrapper class
|
sl@0
|
721 |
@SYMTestPriority High
|
sl@0
|
722 |
@SYMTestActions Tests for the enabling backup of files
|
sl@0
|
723 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
724 |
@SYMREQ REQ0000
|
sl@0
|
725 |
*/
|
sl@0
|
726 |
LOCAL_D void StartTestsL()
|
sl@0
|
727 |
{
|
sl@0
|
728 |
// For the sake of logging let's start off by renaming the main "command" thread
|
sl@0
|
729 |
RThread().RenameMe(_L("Main thread"));
|
sl@0
|
730 |
|
sl@0
|
731 |
// Create state machine
|
sl@0
|
732 |
CBackupTestsStateMachine* stateMachine = CBackupTestsStateMachine::NewL();
|
sl@0
|
733 |
|
sl@0
|
734 |
// Kick it off
|
sl@0
|
735 |
stateMachine->Start();
|
sl@0
|
736 |
|
sl@0
|
737 |
// Start the Active Scheduler
|
sl@0
|
738 |
CActiveScheduler::Start();
|
sl@0
|
739 |
|
sl@0
|
740 |
// Clean up the state machine
|
sl@0
|
741 |
delete stateMachine;
|
sl@0
|
742 |
}
|
sl@0
|
743 |
|
sl@0
|
744 |
TInt E32Main()
|
sl@0
|
745 |
{
|
sl@0
|
746 |
MainTest.Title();
|
sl@0
|
747 |
MainTest.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0467 Loading Device"));
|
sl@0
|
748 |
|
sl@0
|
749 |
__UHEAP_MARK;
|
sl@0
|
750 |
|
sl@0
|
751 |
CTrapCleanup* theTrapCleanup=CTrapCleanup::New();
|
sl@0
|
752 |
CActiveScheduler *activeScheduler=new CActiveScheduler;
|
sl@0
|
753 |
CActiveScheduler::Install(activeScheduler);
|
sl@0
|
754 |
|
sl@0
|
755 |
TRAPD(error, StartTestsL());
|
sl@0
|
756 |
User::LeaveIfError(error);
|
sl@0
|
757 |
|
sl@0
|
758 |
delete activeScheduler;
|
sl@0
|
759 |
delete theTrapCleanup;
|
sl@0
|
760 |
|
sl@0
|
761 |
__UHEAP_MARKEND;
|
sl@0
|
762 |
|
sl@0
|
763 |
MainTest.End();
|
sl@0
|
764 |
|
sl@0
|
765 |
|
sl@0
|
766 |
return(KErrNone);
|
sl@0
|
767 |
}
|