os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererStateAccessor.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Definition of the CDiscoverer State Accessor class
    15 // 
    16 //
    17 
    18 #ifndef __DISCOVERERSATEACCESSOR_H__
    19 #define __DISCOVERERSATEACCESSOR_H__
    20 
    21 #include <e32base.h>
    22 #include <f32file.h>
    23 #include <s32stor.h>
    24 #include <s32file.h>
    25 
    26 #include "TestUtilities.h"
    27 #include <test_bed/testbeddefinitions.h>
    28 #include "StateAccessor.h"
    29 #include "Discoverer.h"
    30 
    31 // ______________________________________________________________________________
    32 //
    33 /**
    34 	@internalComponent
    35 
    36 	Comments : State accessor for the CDiscoverer object under test.
    37  */
    38 class TDiscoverer_StateAccessor : public MStateAccessor
    39 	{
    40 public:
    41 	/**
    42 		@fn				InvariantTest(TAny* aTestObject)
    43 		Intended Usage	:	
    44 		@since			7.0
    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.
    49 	 */
    50 	inline virtual TInt InvariantTest(TAny* aTestObject);
    51 
    52 	/**
    53 		@fn				Internalize(TAny* aTestObject)
    54 		Intended Usage	: Implemented by the developer to set the state of the object under test.
    55 		@since			7.0
    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
    63 	 */
    64 	inline virtual TInt Internalize(TAny* aTestObject);
    65 
    66 	/**
    67 		@fn				Externalize(TAny* aTestObject)
    68 		Intended Usage	: Implemented by the developer to persist the state of the object under test.
    69 		@since			7.0
    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
    77 	 */
    78 	inline virtual TInt Externalize(TAny* aTestObject);
    79 
    80 	/**
    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.	
    84 		@since			7.0
    85 		@param			CDiscoverer* A pointer to the object under test.
    86 		@return			void.
    87 		@pre 			TDiscoverer_StateAccessor is fully constructed.
    88 		@post			The class under test is set to the state specified.
    89 	*/
    90 	inline virtual void InternalizeL(CDiscoverer* aDiscoverer);
    91 
    92 	/**
    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.	
    96 		@since			7.0
    97 		@param			CDiscoverer* A pointer to the object under test.
    98 		@return			None.
    99 		@pre 			TDiscoverer_StateAccessor is fully constructed.
   100 		@post			No change to the class under test.
   101 	*/
   102 	inline virtual void ExternalizeL(CDiscoverer* aDiscoverer);
   103 
   104 	// Now CDiscoverer private API accessors
   105 	/**
   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	
   110 		@since			7.0
   111 		@return			void 
   112 		@pre 			CDiscoverer is fully constructed.
   113 		@post			CDiscoverer has been notified that a re-scan of the 
   114 						ECom directories is required.
   115 	 */
   116 	void Notification(TAny* aTestObject);
   117 
   118 	// Methods used by the Incremental Directory Scanning mechanism
   119 	/**
   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.	
   123 		@leave	 		KErrNoMemory
   124 		@since			7.0
   125 		@return			void 
   126 		@pre 			CDiscoverer is fully constructed.
   127 		@post			CDiscoverer a re-scan of the 
   128 						ECom directories is complete.
   129 	 */
   130 	void ScanDirectoryL(TAny* aTestObject);
   131 
   132 	/**
   133 		@fn				void ScanDirectoryCancel(TAny* aTestObject)
   134 		Intended Usage	: Cancel any scan of the ECom directory in progress.
   135 		Error Condition	: None	
   136 		@since			7.0
   137 		@return			void 
   138 		@pre 			CDiscoverer is fully constructed.
   139 		@post			CDiscoverer a re-scan of the 
   140 						ECom directories is complete.
   141 	 */
   142 	void ScanDirectoryCancel(TAny* aTestObject);
   143 	
   144 	/**
   145 		@fn				void CompleteNotificationProcessing(TAny* aTestObject)
   146 		Intended Usage	: Signal the processing of a Directory Change notification
   147 						is complete.
   148 		Error Condition	: None	
   149 		@since			7.0
   150 		@return			void 
   151 		@pre 			CDiscoverer is fully constructed.
   152 		@post			CDiscoverer a re-scan of the 
   153 						ECom directories is complete.
   154 	 */
   155 	void CompleteNotificationProcessing(TAny* aTestObject);
   156 
   157 	/**
   158 		@fn				ValidateEntryL(TAny* aTestObject, const TEntry& anEntry, const TParse& aPath, TEntry*& anEntryToFill)
   159 		Intended Usage	: Verify that a ECom directory entry is valid
   160 						discovery.
   161 		Error Condition	: None	
   162 		@since			7.0
   163 		@param			aTestObject
   164 		@param			anEntry
   165 		@param			aPath
   166 		@param			anEntryToFill
   167 		@return			TBool ETrue indicates it is valid. 
   168 		@pre 			CDiscoverer is fully constructed.
   169 		@post			.
   170 	 */
   171 	void ValidateEntryL(TAny* aTestObject, const TEntry& anEntry, const TParse& aPath, TEntry*& anEntryToFill);
   172 
   173 	/**
   174 		@fn				ProcessEntryL(TAny* aTestObject, const TEntry& anEntry)
   175 		Intended Usage	: Verify that a ECom directory entry is valid
   176 						discovery.
   177 		Error Condition	: Depends on the observer implementation.	
   178 		@leave			Depends on the observer implementation. (@see CRegistrar).
   179 		@since			7.0
   180 		@param			anEntry
   181 		@return			void. 
   182 		@pre 			CDiscoverer is fully constructed.
   183 		@post			The directory entry has been processed by the observer.
   184 	 */
   185 	void ProcessEntryL(TAny* aTestObject, const TEntry& anEntry);
   186 
   187 	/**
   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.
   192 		@since			7.0
   193 		@param			aDrive	The drive to noted as available.
   194 		@return			void. 
   195 		@pre 			CDiscoverer is fully constructed.
   196 		@post			The drive mount is recorded.
   197 	 */
   198 	void DriveMountedL(TAny* aTestObject, TDriveUnit aDrive);
   199 
   200 	/**
   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
   205 		@since			7.0
   206 		@param			aDrive	The drive to noted as unavailable.
   207 		@return			void. 
   208 		@pre 			CDiscoverer is fully constructed.
   209 		@post			The drive dismount is recorded.
   210 	 */
   211 	void DriveUnmountedL(TAny* aTestObject, TDriveUnit aDrive);
   212 
   213 // Access to private members of CRegistrar
   214 
   215 	};	// TDiscoverer_StateAccessor
   216 
   217 #include "DiscovererStateAccessor.inl"
   218 
   219 #endif // __DISCOVERERSATEACCESSOR_H__