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.
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
// Definition of the CDiscoverer State Accessor class
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __DISCOVERERSATEACCESSOR_H__
sl@0
    19
#define __DISCOVERERSATEACCESSOR_H__
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
#include <f32file.h>
sl@0
    23
#include <s32stor.h>
sl@0
    24
#include <s32file.h>
sl@0
    25
sl@0
    26
#include "TestUtilities.h"
sl@0
    27
#include <test_bed/testbeddefinitions.h>
sl@0
    28
#include "StateAccessor.h"
sl@0
    29
#include "Discoverer.h"
sl@0
    30
sl@0
    31
// ______________________________________________________________________________
sl@0
    32
//
sl@0
    33
/**
sl@0
    34
	@internalComponent
sl@0
    35
sl@0
    36
	Comments : State accessor for the CDiscoverer object under test.
sl@0
    37
 */
sl@0
    38
class TDiscoverer_StateAccessor : public MStateAccessor
sl@0
    39
	{
sl@0
    40
public:
sl@0
    41
	/**
sl@0
    42
		@fn				InvariantTest(TAny* aTestObject)
sl@0
    43
		Intended Usage	:	
sl@0
    44
		@since			7.0
sl@0
    45
		@param			TAny* A pointer to the object under test.
sl@0
    46
		@return			TInt KErrNone if the invariants were valid, error code otherwise.
sl@0
    47
		@pre 			TDiscoverer_StateAccessor is fully constructed.
sl@0
    48
		@post			The class under test is set to the state specified.
sl@0
    49
	 */
sl@0
    50
	inline virtual TInt InvariantTest(TAny* aTestObject);
sl@0
    51
sl@0
    52
	/**
sl@0
    53
		@fn				Internalize(TAny* aTestObject)
sl@0
    54
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
    55
		@since			7.0
sl@0
    56
		@param			aTestObject The object to be tested
sl@0
    57
		@return			KErrNone if the internalize was successful.
sl@0
    58
		@return			One of the EPOC standard error codes indicating the reason 
sl@0
    59
						for the failure	to load the object state.
sl@0
    60
		@pre 			TDiscoverer_StateAccessor is fully constructed, and
sl@0
    61
						valid test object must be passed in.
sl@0
    62
		@post			The class under test is set to the state specified
sl@0
    63
	 */
sl@0
    64
	inline virtual TInt Internalize(TAny* aTestObject);
sl@0
    65
sl@0
    66
	/**
sl@0
    67
		@fn				Externalize(TAny* aTestObject)
sl@0
    68
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
    69
		@since			7.0
sl@0
    70
		@param			aTestObject The object to be tested
sl@0
    71
		@return			KErrNone if the internalize was successful.
sl@0
    72
		@return			One of the EPOC standard error codes indicating the reason 
sl@0
    73
						for the failure	to externalize the object.
sl@0
    74
		@pre 			TDiscoverer_StateAccessor is fully constructed, and
sl@0
    75
						valid test object must be passed in.
sl@0
    76
		@post			Returns an error code dependant on the result of the test
sl@0
    77
	 */
sl@0
    78
	inline virtual TInt Externalize(TAny* aTestObject);
sl@0
    79
sl@0
    80
	/**
sl@0
    81
		@fn				InternalizeL(CDiscoverer* aDiscoverer)
sl@0
    82
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
    83
		Error Condition	: Leaves with an error code.	
sl@0
    84
		@since			7.0
sl@0
    85
		@param			CDiscoverer* A pointer to the object under test.
sl@0
    86
		@return			void.
sl@0
    87
		@pre 			TDiscoverer_StateAccessor is fully constructed.
sl@0
    88
		@post			The class under test is set to the state specified.
sl@0
    89
	*/
sl@0
    90
	inline virtual void InternalizeL(CDiscoverer* aDiscoverer);
sl@0
    91
sl@0
    92
	/**
sl@0
    93
		@fn				ExternalizeL(CDiscoverer* aDiscoverer)
sl@0
    94
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
    95
		Error Condition	: Leaves with an error code.	
sl@0
    96
		@since			7.0
sl@0
    97
		@param			CDiscoverer* A pointer to the object under test.
sl@0
    98
		@return			None.
sl@0
    99
		@pre 			TDiscoverer_StateAccessor is fully constructed.
sl@0
   100
		@post			No change to the class under test.
sl@0
   101
	*/
sl@0
   102
	inline virtual void ExternalizeL(CDiscoverer* aDiscoverer);
sl@0
   103
sl@0
   104
	// Now CDiscoverer private API accessors
sl@0
   105
	/**
sl@0
   106
		@fn				void Notification(TAny* aTestObject)
sl@0
   107
		Intended Usage	: Caller by the CDirChangeNotifier object when the ECom
sl@0
   108
						directory has changed.
sl@0
   109
		Error Condition	: None	
sl@0
   110
		@since			7.0
sl@0
   111
		@return			void 
sl@0
   112
		@pre 			CDiscoverer is fully constructed.
sl@0
   113
		@post			CDiscoverer has been notified that a re-scan of the 
sl@0
   114
						ECom directories is required.
sl@0
   115
	 */
sl@0
   116
	void Notification(TAny* aTestObject);
sl@0
   117
sl@0
   118
	// Methods used by the Incremental Directory Scanning mechanism
sl@0
   119
	/**
sl@0
   120
		@fn				void ScanDirectoryL(TAny* aTestObject)
sl@0
   121
		Intended Usage	: Perform a non-incremental scan of the ECom directory.
sl@0
   122
		Error Condition	: Not enough memory available.	
sl@0
   123
		@leave	 		KErrNoMemory
sl@0
   124
		@since			7.0
sl@0
   125
		@return			void 
sl@0
   126
		@pre 			CDiscoverer is fully constructed.
sl@0
   127
		@post			CDiscoverer a re-scan of the 
sl@0
   128
						ECom directories is complete.
sl@0
   129
	 */
sl@0
   130
	void ScanDirectoryL(TAny* aTestObject);
sl@0
   131
sl@0
   132
	/**
sl@0
   133
		@fn				void ScanDirectoryCancel(TAny* aTestObject)
sl@0
   134
		Intended Usage	: Cancel any scan of the ECom directory in progress.
sl@0
   135
		Error Condition	: None	
sl@0
   136
		@since			7.0
sl@0
   137
		@return			void 
sl@0
   138
		@pre 			CDiscoverer is fully constructed.
sl@0
   139
		@post			CDiscoverer a re-scan of the 
sl@0
   140
						ECom directories is complete.
sl@0
   141
	 */
sl@0
   142
	void ScanDirectoryCancel(TAny* aTestObject);
sl@0
   143
	
sl@0
   144
	/**
sl@0
   145
		@fn				void CompleteNotificationProcessing(TAny* aTestObject)
sl@0
   146
		Intended Usage	: Signal the processing of a Directory Change notification
sl@0
   147
						is complete.
sl@0
   148
		Error Condition	: None	
sl@0
   149
		@since			7.0
sl@0
   150
		@return			void 
sl@0
   151
		@pre 			CDiscoverer is fully constructed.
sl@0
   152
		@post			CDiscoverer a re-scan of the 
sl@0
   153
						ECom directories is complete.
sl@0
   154
	 */
sl@0
   155
	void CompleteNotificationProcessing(TAny* aTestObject);
sl@0
   156
sl@0
   157
	/**
sl@0
   158
		@fn				ValidateEntryL(TAny* aTestObject, const TEntry& anEntry, const TParse& aPath, TEntry*& anEntryToFill)
sl@0
   159
		Intended Usage	: Verify that a ECom directory entry is valid
sl@0
   160
						discovery.
sl@0
   161
		Error Condition	: None	
sl@0
   162
		@since			7.0
sl@0
   163
		@param			aTestObject
sl@0
   164
		@param			anEntry
sl@0
   165
		@param			aPath
sl@0
   166
		@param			anEntryToFill
sl@0
   167
		@return			TBool ETrue indicates it is valid. 
sl@0
   168
		@pre 			CDiscoverer is fully constructed.
sl@0
   169
		@post			.
sl@0
   170
	 */
sl@0
   171
	void ValidateEntryL(TAny* aTestObject, const TEntry& anEntry, const TParse& aPath, TEntry*& anEntryToFill);
sl@0
   172
sl@0
   173
	/**
sl@0
   174
		@fn				ProcessEntryL(TAny* aTestObject, const TEntry& anEntry)
sl@0
   175
		Intended Usage	: Verify that a ECom directory entry is valid
sl@0
   176
						discovery.
sl@0
   177
		Error Condition	: Depends on the observer implementation.	
sl@0
   178
		@leave			Depends on the observer implementation. (@see CRegistrar).
sl@0
   179
		@since			7.0
sl@0
   180
		@param			anEntry
sl@0
   181
		@return			void. 
sl@0
   182
		@pre 			CDiscoverer is fully constructed.
sl@0
   183
		@post			The directory entry has been processed by the observer.
sl@0
   184
	 */
sl@0
   185
	void ProcessEntryL(TAny* aTestObject, const TEntry& anEntry);
sl@0
   186
sl@0
   187
	/**
sl@0
   188
		@fn				DriveMountedL(TAny* aTestObject, TDriveUnit aDrive)
sl@0
   189
		Intended Usage	: Signal a drive is available.
sl@0
   190
		Error Condition	: Depends on the observer implementation.	
sl@0
   191
		@leave			Depends on the observer implementation. @see CRegistrar.
sl@0
   192
		@since			7.0
sl@0
   193
		@param			aDrive	The drive to noted as available.
sl@0
   194
		@return			void. 
sl@0
   195
		@pre 			CDiscoverer is fully constructed.
sl@0
   196
		@post			The drive mount is recorded.
sl@0
   197
	 */
sl@0
   198
	void DriveMountedL(TAny* aTestObject, TDriveUnit aDrive);
sl@0
   199
sl@0
   200
	/**
sl@0
   201
		@fn				DriveUnmountedL(TAny* aTestObject, TDriveUnit aDrive)
sl@0
   202
		Intended Usage	: Signal a drive is unavailable.
sl@0
   203
		Error Condition	: Leaves with an error code.
sl@0
   204
		@leave			@see CDiscoverer::DriveUnmountedL
sl@0
   205
		@since			7.0
sl@0
   206
		@param			aDrive	The drive to noted as unavailable.
sl@0
   207
		@return			void. 
sl@0
   208
		@pre 			CDiscoverer is fully constructed.
sl@0
   209
		@post			The drive dismount is recorded.
sl@0
   210
	 */
sl@0
   211
	void DriveUnmountedL(TAny* aTestObject, TDriveUnit aDrive);
sl@0
   212
sl@0
   213
// Access to private members of CRegistrar
sl@0
   214
sl@0
   215
	};	// TDiscoverer_StateAccessor
sl@0
   216
sl@0
   217
#include "DiscovererStateAccessor.inl"
sl@0
   218
sl@0
   219
#endif // __DISCOVERERSATEACCESSOR_H__