os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererStateAccessor.h
Update contrib.
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 // Definition of the CDiscoverer State Accessor class
18 #ifndef __DISCOVERERSATEACCESSOR_H__
19 #define __DISCOVERERSATEACCESSOR_H__
26 #include "TestUtilities.h"
27 #include <test_bed/testbeddefinitions.h>
28 #include "StateAccessor.h"
29 #include "Discoverer.h"
31 // ______________________________________________________________________________
36 Comments : State accessor for the CDiscoverer object under test.
38 class TDiscoverer_StateAccessor : public MStateAccessor
42 @fn InvariantTest(TAny* aTestObject)
45 @param TAny* A pointer to the object under test.
46 @return TInt KErrNone if the invariants were valid, error code otherwise.
47 @pre TDiscoverer_StateAccessor is fully constructed.
48 @post The class under test is set to the state specified.
50 inline virtual TInt InvariantTest(TAny* aTestObject);
53 @fn Internalize(TAny* aTestObject)
54 Intended Usage : Implemented by the developer to set the state of the object under test.
56 @param aTestObject The object to be tested
57 @return KErrNone if the internalize was successful.
58 @return One of the EPOC standard error codes indicating the reason
59 for the failure to load the object state.
60 @pre TDiscoverer_StateAccessor is fully constructed, and
61 valid test object must be passed in.
62 @post The class under test is set to the state specified
64 inline virtual TInt Internalize(TAny* aTestObject);
67 @fn Externalize(TAny* aTestObject)
68 Intended Usage : Implemented by the developer to persist the state of the object under test.
70 @param aTestObject The object to be tested
71 @return KErrNone if the internalize was successful.
72 @return One of the EPOC standard error codes indicating the reason
73 for the failure to externalize the object.
74 @pre TDiscoverer_StateAccessor is fully constructed, and
75 valid test object must be passed in.
76 @post Returns an error code dependant on the result of the test
78 inline virtual TInt Externalize(TAny* aTestObject);
81 @fn InternalizeL(CDiscoverer* aDiscoverer)
82 Intended Usage : Implemented by the developer to set the state of the object under test.
83 Error Condition : Leaves with an error code.
85 @param CDiscoverer* A pointer to the object under test.
87 @pre TDiscoverer_StateAccessor is fully constructed.
88 @post The class under test is set to the state specified.
90 inline virtual void InternalizeL(CDiscoverer* aDiscoverer);
93 @fn ExternalizeL(CDiscoverer* aDiscoverer)
94 Intended Usage : Implemented by the developer to persist the state of the object under test.
95 Error Condition : Leaves with an error code.
97 @param CDiscoverer* A pointer to the object under test.
99 @pre TDiscoverer_StateAccessor is fully constructed.
100 @post No change to the class under test.
102 inline virtual void ExternalizeL(CDiscoverer* aDiscoverer);
104 // Now CDiscoverer private API accessors
106 @fn void Notification(TAny* aTestObject)
107 Intended Usage : Caller by the CDirChangeNotifier object when the ECom
108 directory has changed.
109 Error Condition : None
112 @pre CDiscoverer is fully constructed.
113 @post CDiscoverer has been notified that a re-scan of the
114 ECom directories is required.
116 void Notification(TAny* aTestObject);
118 // Methods used by the Incremental Directory Scanning mechanism
120 @fn void ScanDirectoryL(TAny* aTestObject)
121 Intended Usage : Perform a non-incremental scan of the ECom directory.
122 Error Condition : Not enough memory available.
126 @pre CDiscoverer is fully constructed.
127 @post CDiscoverer a re-scan of the
128 ECom directories is complete.
130 void ScanDirectoryL(TAny* aTestObject);
133 @fn void ScanDirectoryCancel(TAny* aTestObject)
134 Intended Usage : Cancel any scan of the ECom directory in progress.
135 Error Condition : None
138 @pre CDiscoverer is fully constructed.
139 @post CDiscoverer a re-scan of the
140 ECom directories is complete.
142 void ScanDirectoryCancel(TAny* aTestObject);
145 @fn void CompleteNotificationProcessing(TAny* aTestObject)
146 Intended Usage : Signal the processing of a Directory Change notification
148 Error Condition : None
151 @pre CDiscoverer is fully constructed.
152 @post CDiscoverer a re-scan of the
153 ECom directories is complete.
155 void CompleteNotificationProcessing(TAny* aTestObject);
158 @fn ValidateEntryL(TAny* aTestObject, const TEntry& anEntry, const TParse& aPath, TEntry*& anEntryToFill)
159 Intended Usage : Verify that a ECom directory entry is valid
161 Error Condition : None
167 @return TBool ETrue indicates it is valid.
168 @pre CDiscoverer is fully constructed.
171 void ValidateEntryL(TAny* aTestObject, const TEntry& anEntry, const TParse& aPath, TEntry*& anEntryToFill);
174 @fn ProcessEntryL(TAny* aTestObject, const TEntry& anEntry)
175 Intended Usage : Verify that a ECom directory entry is valid
177 Error Condition : Depends on the observer implementation.
178 @leave Depends on the observer implementation. (@see CRegistrar).
182 @pre CDiscoverer is fully constructed.
183 @post The directory entry has been processed by the observer.
185 void ProcessEntryL(TAny* aTestObject, const TEntry& anEntry);
188 @fn DriveMountedL(TAny* aTestObject, TDriveUnit aDrive)
189 Intended Usage : Signal a drive is available.
190 Error Condition : Depends on the observer implementation.
191 @leave Depends on the observer implementation. @see CRegistrar.
193 @param aDrive The drive to noted as available.
195 @pre CDiscoverer is fully constructed.
196 @post The drive mount is recorded.
198 void DriveMountedL(TAny* aTestObject, TDriveUnit aDrive);
201 @fn DriveUnmountedL(TAny* aTestObject, TDriveUnit aDrive)
202 Intended Usage : Signal a drive is unavailable.
203 Error Condition : Leaves with an error code.
204 @leave @see CDiscoverer::DriveUnmountedL
206 @param aDrive The drive to noted as unavailable.
208 @pre CDiscoverer is fully constructed.
209 @post The drive dismount is recorded.
211 void DriveUnmountedL(TAny* aTestObject, TDriveUnit aDrive);
213 // Access to private members of CRegistrar
215 }; // TDiscoverer_StateAccessor
217 #include "DiscovererStateAccessor.inl"
219 #endif // __DISCOVERERSATEACCESSOR_H__