os/ossrv/lowlevellibsandfws/pluginfw/Framework/ResolverTest/ResolverStateAccessor.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 // The definition of the accessor class for the CResolver tests.
18 #ifndef __RESOLVERSTATEACCESSOR_H__
19 #define __RESOLVERSTATEACCESSOR_H__
23 // ______________________________________________________________________________
28 Comments : State accessor for the CDefaultResolver object under test.
30 class TDefaultResolver_StateAccessor : public MStateAccessor
34 @fn InvariantTest(TAny* aTestObject)
35 Intended Usage : Checks if CDefaultResolver has violated its invariants.
37 @param TAny* A pointer to the object under test.
38 @return TInt KErrNone if the invariants were valid, error code otherwise.
39 @pre TDefaultResolver_StateAccessor is fully constructed.
40 @post The class under test is set to the state specified.
42 inline TInt InvariantTest(TAny* aTestObject);
45 @fn Internalize(TAny* aTestObject)
46 Intended Usage : Implemented by the developer to set the state of the object under test.
48 @param aTestObject The object to be tested
49 @return KErrNone if the internalize was successful.
50 @return One of the EPOC standard error codes indicating the reason
51 for the failure to load the object state.
52 @pre TDefaultResolver_StateAccessor is fully constructed, and
53 valid test object must be passed in.
54 @post The class under test is set to the state specified
56 inline virtual TInt Internalize(TAny* aTestObject);
59 @fn Externalize(TAny* aTestObject)
60 Intended Usage : Implemented by the developer to persist the state of the object under test.
62 @param aTestObject The object to be tested
63 @return KErrNone if the internalize was successful.
64 @return One of the EPOC standard error codes indicating the reason
65 for the failure to externalize the object.
66 @pre TDefaultResolver_StateAccessor is fully constructed, and
67 valid test object must be passed in.
68 @post Returns an error code dependant on the result of the test
70 inline virtual TInt Externalize(TAny* aTestObject);
73 @fn InternalizeL(RFileReadStream& aStream, CDefaultResolver* aDefaultResolver)
74 Intended Usage : Implemented by the developer to set the state of the object under test.
75 Error Condition : Leaves with an error code.
77 @param aStream The filestream to read from .
78 @param aDefaultResolver A pointer to the CDefaultResolver object under test.
80 @pre TDefaultResolver_StateAccessor is fully constructed.
81 @post The class under test is set to the state specified.
83 inline void InternalizeL(RFileReadStream& aStream, CDefaultResolver* aDefaultResolver);
86 @fn ExternalizeL(RFileWriteStream& aStream, CDefaultResolver* aDefaultResolver)
87 Intended Usage : Implemented by the developer to persist the state of the object under test.
88 Error Condition : Leaves with an error code.
90 @param aStream The filestream to persist into.
91 @param aDefaultResolver A pointer to the CDefaultResolver object under test.
93 @pre TDefaultResolver_StateAccessor is fully constructed.
94 @post No change to the class under test, its internal state.
97 inline void ExternalizeL(RFileWriteStream& aStream, CDefaultResolver* aDefaultResolver);
100 @fn TBool CDefaultResolver::Match(const TDesC8& aImplementationType,
101 const TDesC8& aMatchType,
102 TBool aUseWildcards) const
106 @param aImplementationType " "
107 @param aMatchType " "
108 @param aUseWildcards " "
109 @return TBool ETrue if a match has been found
110 @pre The object is fully constructed
112 TBool Match(CDefaultResolver& aResolver,
113 const TDesC8& aImplementationType,
114 const TDesC8& aMatchType,
115 TBool aUseWildcards) const;
118 @fn Resolve(CDefaultResolver& aResolver,
119 RImplInfoArray& aImplementationData,
120 const TEComResolverParams& aAdditionalParameters) const
125 @param aImplementationData " "
126 @param aAdditionalParameters " "
127 @return The Uid of a suitable implementation
128 @pre The object is fully constructed
130 TUid Resolve(CDefaultResolver& aResolver,
131 RImplInfoArray& aImplementationData,
132 const TEComResolverParams& aAdditionalParameters) const;
136 @fn InternalizeL(CDefaultResolver* aDefaultResolver)
137 Intended Usage : Implemented by the developer to set the state of the object under test.
138 Error Condition : Leaves with an error code.
140 @param TAny* A pointer to the object under test.
142 @pre TDefaultResolver_StateAccessor is fully constructed.
143 @post The class under test is set to the state specified.
145 inline void InternalizeL(CDefaultResolver* aDefaultResolver);
148 @fn ExternalizeL(CDefaultResolver* aDefaultResolver)
149 Intended Usage : Implemented by the developer to persist the state of the object under test.
150 Error Condition : Leaves with an error code.
152 @param TAny* A pointer to the object under test.
154 @pre TDefaultResolver_StateAccessor is fully constructed.
155 @post No change to the class under test, its internal state.
158 inline void ExternalizeL(CDefaultResolver* aDefaultResolver);
159 }; // TDefaultResolver_StateAccessor
161 #include "ResolverStateAccessor.inl"
163 #endif // __RESOLVERSTATEACCESSOR_H__