Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #if (!defined __TEST_ECOM_RESOLVER_H__)
21 #define __TEST_ECOM_RESOLVER_H__
23 #include <ecom/resolver.h>
25 #define CTestEComResolver_UID 0x20003725
30 Controls the identification, (resolution), of which implementation
31 will be used to satisfy an interface implementation instantiation.
33 class CTestEComResolver : public CResolver
37 @fn NewL(MPublicRegistry& aRegistry)
38 Intended Usage : Standardized safe construction which leaves nothing
40 Error Condition : Cannot fully construct because of memory limitations.
43 @return A pointer to the new class
44 @post CTestEComResolver is fully constructed,
47 static CTestEComResolver* NewL(MPublicRegistry& aRegistry);
50 @fn ~CTestEComResolver()
51 Intended Usage : Standard default d'tor
52 Error Condition : None
58 @fn IdentifyImplementationL(TUid aInterfaceUid,
59 const TEComResolverParams& aAdditionalParameters) const
60 Intended Usage : Request that the resolver identify the most appropriate
61 interface implementation.
64 @param aInterfaceUid The interface for which implementations are requested
65 @param aAdditionalParameters Data to be used to refine the search further
66 @return The Uid of the best fit interface implementation - KNullUid if no match is found
67 @pre Object is fully constructed and initialized
68 @post Registry contents are not modified but registry keys may be updated
70 TUid IdentifyImplementationL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters) const;
73 @fn ListAllL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters) const
74 Intended Usage : List all the implementations which satisfy the specified interface.
77 @param aInterfaceUid The interface for which implementations are requested
78 @param aAdditionalParameters Data to be used to refine the search further
79 @return Pointer to an array of suitable implementations. Ownership of this array
80 is passed to the calling function.
81 @pre Object is fully constructed and initialized
82 @post Registry contents are not modified but registry keys may be updated
84 RImplInfoArray* ListAllL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters) const;
89 @fn CTestEComResolver(MPublicRegistry& aRegistry)
90 Intended Usage : Standardized default c'tor
91 Error Condition : None
93 @post CTestEComResolver is fully constructed
95 explicit CTestEComResolver(MPublicRegistry& aRegistry);
98 @fn Match(const TDesC8& aImplementationType, const TDesC8& aMatchType, TBool aUseWildcards) const
99 Intended Usage : Searches for a match of a data type on an implementation type.
100 Match returns ETrue if aMatchType is found within aImplementationType according to
102 1) aImplementationType is treated as a series of descriptors separated by double
103 bars (||). ETrue is returned if aMatchType matches exactly any of the short
104 descriptors. If no double bar is present then aImplementationType is treated as a
106 2) If aUseWildcards == ETrue then a '?' in aMatchType will be matched to any single
107 character and '*' will be matched to any series of characters.
110 @param aImplementationType The implementation data type to search for a match
111 @param aMatchType The data to search for
112 @param aUseWildcards ETrue if wildcard matching should be allowed
113 @return ETrue if a match was found, EFalse otherwise
114 @pre This object is fully constructed
116 TBool Match(const TDesC8& aImplementationType, const TDesC8& aMatchType, TBool aUseWildcards) const;
119 mutable RImplInfoArray* iImplementationInfoArray;
122 #endif /* __TEST_ECOM_RESOLVER_H__ */