os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverStateAccessor.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
// The definition of the accessor class for the CResolver tests.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __RESOLVERSTATEACCESSOR_H__
sl@0
    19
#define __RESOLVERSTATEACCESSOR_H__
sl@0
    20
sl@0
    21
#include <s32file.h>
sl@0
    22
sl@0
    23
// ______________________________________________________________________________
sl@0
    24
//
sl@0
    25
/**
sl@0
    26
	@internalComponent
sl@0
    27
sl@0
    28
	Comments : State accessor for the CDefaultResolver object under test.
sl@0
    29
 */
sl@0
    30
class TDefaultResolver_StateAccessor : public MStateAccessor
sl@0
    31
	{
sl@0
    32
public:
sl@0
    33
	/**
sl@0
    34
		@fn				InvariantTest(TAny* aTestObject)
sl@0
    35
		Intended Usage	: Checks if CDefaultResolver has violated its invariants.	
sl@0
    36
		@since			7.0
sl@0
    37
		@param			TAny* A pointer to the object under test.
sl@0
    38
		@return			TInt KErrNone if the invariants were valid, error code otherwise.
sl@0
    39
		@pre 			TDefaultResolver_StateAccessor is fully constructed.
sl@0
    40
		@post			The class under test is set to the state specified.
sl@0
    41
	 */
sl@0
    42
	inline TInt InvariantTest(TAny* aTestObject);
sl@0
    43
sl@0
    44
	/**
sl@0
    45
		@fn				Internalize(TAny* aTestObject)
sl@0
    46
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
    47
		@since			7.0
sl@0
    48
		@param			aTestObject The object to be tested
sl@0
    49
		@return			KErrNone if the internalize was successful.
sl@0
    50
		@return			One of the EPOC standard error codes indicating the reason
sl@0
    51
						for the failure	to load the object state.
sl@0
    52
		@pre 			TDefaultResolver_StateAccessor is fully constructed, and
sl@0
    53
						valid test object must be passed in.
sl@0
    54
		@post			The class under test is set to the state specified
sl@0
    55
	 */
sl@0
    56
	inline virtual TInt Internalize(TAny* aTestObject);
sl@0
    57
sl@0
    58
	/**
sl@0
    59
		@fn				Externalize(TAny* aTestObject)
sl@0
    60
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
    61
		@since			7.0
sl@0
    62
		@param			aTestObject The object to be tested
sl@0
    63
		@return			KErrNone if the internalize was successful.
sl@0
    64
		@return			One of the EPOC standard error codes indicating the reason
sl@0
    65
						for the failure	to externalize the object.
sl@0
    66
		@pre 			TDefaultResolver_StateAccessor is fully constructed, and
sl@0
    67
						valid test object must be passed in.
sl@0
    68
		@post			Returns an error code dependant on the result of the test
sl@0
    69
	 */
sl@0
    70
	inline virtual TInt Externalize(TAny* aTestObject);
sl@0
    71
sl@0
    72
	/**
sl@0
    73
		@fn				InternalizeL(RFileReadStream& aStream, CDefaultResolver* aDefaultResolver)
sl@0
    74
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
    75
		Error Condition	: Leaves with an error code.
sl@0
    76
		@since			7.0
sl@0
    77
		@param			aStream The filestream to read from .
sl@0
    78
		@param			aDefaultResolver A pointer to the CDefaultResolver object under test.
sl@0
    79
		@return			None.
sl@0
    80
		@pre 			TDefaultResolver_StateAccessor is fully constructed.
sl@0
    81
		@post			The class under test is set to the state specified.
sl@0
    82
	 */
sl@0
    83
		inline void InternalizeL(RFileReadStream& aStream, CDefaultResolver* aDefaultResolver);
sl@0
    84
sl@0
    85
	/**
sl@0
    86
		@fn				ExternalizeL(RFileWriteStream& aStream, CDefaultResolver* aDefaultResolver)
sl@0
    87
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
    88
		Error Condition	: Leaves with an error code.
sl@0
    89
		@since			7.0
sl@0
    90
		@param			aStream The filestream to persist into.
sl@0
    91
		@param			aDefaultResolver A pointer to the CDefaultResolver object under test.
sl@0
    92
		@return			None.
sl@0
    93
		@pre 			TDefaultResolver_StateAccessor is fully constructed.
sl@0
    94
		@post			No change to the class under test, its internal state.
sl@0
    95
						is persisted.
sl@0
    96
	*/
sl@0
    97
	inline void ExternalizeL(RFileWriteStream& aStream, CDefaultResolver* aDefaultResolver);
sl@0
    98
sl@0
    99
/**
sl@0
   100
	@fn				TBool CDefaultResolver::Match(const TDesC8& aImplementationType, 
sl@0
   101
												  const TDesC8& aMatchType, 
sl@0
   102
												  TBool aUseWildcards) const
sl@0
   103
	Intended Usage	:	
sl@0
   104
	Error Condition	:	
sl@0
   105
	@since			7.0
sl@0
   106
	@param			aImplementationType " "
sl@0
   107
	@param			aMatchType " "
sl@0
   108
	@param			aUseWildcards " "
sl@0
   109
	@return			TBool ETrue if a match has been found
sl@0
   110
	@pre 			The object is fully constructed
sl@0
   111
 */
sl@0
   112
	TBool Match(CDefaultResolver& aResolver,
sl@0
   113
				const TDesC8& aImplementationType, 
sl@0
   114
				const TDesC8& aMatchType, 
sl@0
   115
				TBool aUseWildcards) const;
sl@0
   116
sl@0
   117
/**
sl@0
   118
	@fn				Resolve(CDefaultResolver& aResolver,
sl@0
   119
							RImplInfoArray& aImplementationData, 
sl@0
   120
							const TEComResolverParams& aAdditionalParameters) const
sl@0
   121
	Intended Usage	:	
sl@0
   122
	Error Condition	:	
sl@0
   123
	@since			7.0
sl@0
   124
	@param			aResolver " "
sl@0
   125
	@param			aImplementationData " "
sl@0
   126
	@param			aAdditionalParameters " "
sl@0
   127
	@return			The Uid of a suitable implementation
sl@0
   128
	@pre 			The object is fully constructed
sl@0
   129
 */
sl@0
   130
	TUid Resolve(CDefaultResolver& aResolver,
sl@0
   131
				 RImplInfoArray& aImplementationData, 
sl@0
   132
				 const TEComResolverParams& aAdditionalParameters) const;
sl@0
   133
sl@0
   134
private:
sl@0
   135
	/**
sl@0
   136
		@fn				InternalizeL(CDefaultResolver* aDefaultResolver)
sl@0
   137
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
   138
		Error Condition	: Leaves with an error code.
sl@0
   139
		@since			7.0
sl@0
   140
		@param			TAny* A pointer to the object under test.
sl@0
   141
		@return			None.
sl@0
   142
		@pre 			TDefaultResolver_StateAccessor is fully constructed.
sl@0
   143
		@post			The class under test is set to the state specified.
sl@0
   144
	*/
sl@0
   145
	inline void InternalizeL(CDefaultResolver* aDefaultResolver);
sl@0
   146
sl@0
   147
	/**
sl@0
   148
		@fn				ExternalizeL(CDefaultResolver* aDefaultResolver)
sl@0
   149
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
   150
		Error Condition	: Leaves with an error code.
sl@0
   151
		@since			7.0
sl@0
   152
		@param			TAny* A pointer to the object under test.
sl@0
   153
		@return			None.
sl@0
   154
		@pre 			TDefaultResolver_StateAccessor is fully constructed.
sl@0
   155
		@post			No change to the class under test, its internal state.
sl@0
   156
						is persisted.
sl@0
   157
	*/
sl@0
   158
	inline void ExternalizeL(CDefaultResolver* aDefaultResolver);
sl@0
   159
	};	// TDefaultResolver_StateAccessor
sl@0
   160
sl@0
   161
#include "ResolverStateAccessor.inl"
sl@0
   162
sl@0
   163
#endif		// __RESOLVERSTATEACCESSOR_H__