First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // class CBackupFileObserver
18 class CBackupFileObserver : public CActive, public MBackupObserver
22 {ELocked,EReadOnly,ENoAccess};
24 static CBackupFileObserver* NewL(TInt aFileObserverNumber);
25 ~CBackupFileObserver();
26 void AddFileL(TInt aFileNumber);
28 TInt GetFileLocksChanged();
29 void ZeroFileLocksChanged();
30 void SetDelay(TBool aDelay);
32 CBackupFileObserver();
33 void ConstructL(TInt aFileObserverNumber);
34 private: // from MBackupObserver
35 void ChangeFileLockL(const TDesC& aFileName,TFileLockFlags aFlags);
36 public: // From CActive
40 void Kill(RThread* aThread);
42 // File observer session into the server
43 CBaBackupSessionWrapper* iBackupSession;
44 // Instance number for this obsever
45 TInt iFileObserverNumber;
46 // Number of file lock notifications received this backup
47 TInt iFileLocksChanged;
48 // Whether we're testing with an introduced delay or not
50 // Local RTest for this class - needed because global RTest fails in multi-threaded environment
52 // Name of the file we're observing
54 // State of the file we're observing
55 TFileLock iFileLockState;
59 // class CBackupOperationObserver
61 class CBackupOperationObserver : public CActive, public MBackupOperationObserver
64 static CBackupOperationObserver* NewL(TInt aObserverNumber);
65 ~CBackupOperationObserver();
66 public: // From CActive
70 void Kill(RThread* aThread);
72 CBackupOperationObserver();
73 void ConstructL(TInt aObserverNumber);
75 // from MBackupOperationObserver
76 virtual void HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes);
78 // Every backup observer has their own session
79 CBaBackupSessionWrapper* iBackupSession;
80 // Every backup observer has their own identifying number
82 // Local RTest for this class - needed because global RTest fails in multi-threaded environment
87 // class CBackupTestsStateMachine
90 class CBackupTestsStateMachine : public CActive
93 static CBackupTestsStateMachine* NewL();
94 CBackupTestsStateMachine();
95 ~CBackupTestsStateMachine();
96 public: // From CActive
105 void EndBackup(TInt aFileLockChangesExpected, TBool oneTimeOnly);
106 void SignalEndBackupL();
107 void SingleFileLockTestsL();
109 void CreateObserversThreadsL();
110 static TInt BackupObserversThreadStartL(TAny* aPtr);
111 static TInt FileObserversThreadStartL(TAny* aPtr);
112 void CreateBackupObserverInstanceL();
113 void CreateFileObserverInstanceL();
115 enum StateMachineState
117 ESingleFileTests, ENoBackupSessionSingleFileTests,
118 ECloseAllNormalReadOnly, ECloseAllNormalReadOnlyReturned,
119 ECloseAllNormalNoAccess, ECloseAllNormalNoAccessReturned,
120 ECloseAllDelayReadOnly, ECloseAllDelayReadOnlyReturned,
121 ECloseAllDelayNoAccess, ECloseAllDelayNoAccessReturned,
122 ECloseAllDropFileSession, ECloseAllDropFileSessionReturned,
123 ECloseAllDropBackupObserverSession, ECloseAllDropBackupObserverSessionReturned,
126 void CloseAllStartL(StateMachineState aNextState, MBackupObserver::TFileLockFlags aFlag);
127 void CloseAllEndL(StateMachineState aNextState, TInt aExpectedNotifications);
131 // The RTest class for this thread
133 // The "command" session
134 CBaBackupSessionWrapper* iBackupSession;
135 // Safety for RArrays
137 // Array of backup observers
138 RPointerArray<CBackupOperationObserver> iBackupObservers;
139 // Array of file lock observers
140 RPointerArray<CBackupFileObserver> iBackupFileObservers;
141 // Used for single file tests
142 TInt iEndBackupRecursionCount;
143 // Current state of the State Machine
144 StateMachineState iState;
145 // Used for backup observer threads
146 RPointerArray<RThread> iBackupObserverThreads;
147 // Used for file observer threads
148 RPointerArray<RThread> iFileObserverThreads;