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.
17 #if defined (_MSC_VER) && (_MSC_VER >= 1000)
20 #ifndef _INC_RESOLVER_3A1D097B0305_INCLUDED
21 #define _INC_RESOLVER_3A1D097B0305_INCLUDED
23 #include <ecom/resolver.h>
24 #include "RegistryData.h"
26 class TEComResolverParams;
31 Controls the identification, (resolution), of which implementation
32 will be used to satisfy an interface implementation instantiation.
35 class CDefaultResolver : public CResolver
39 @fn NewL(CRegistryData& aRegistry)
40 Intended Usage : Standardized safe construction which leaves nothing
42 Error Condition : Cannot fully construct because of memory limitations.
45 @return A pointer to the new class
46 @post CDefaultResolver is fully constructed,
50 static CDefaultResolver* NewL(MPublicRegistry& aRegistry);
53 @fn ~CDefaultResolver()
54 Intended Usage : Standard default d'tor
55 Error Condition : None
62 @fn IdentifyImplementationL(TUid aInterfaceUid,
63 const TEComResolverParams& aAdditionalParameters) const
64 Intended Usage : Request that the resolver identify the most appropriate
65 interface implementation.
68 @param aInterfaceUid The interface for which implementations are requested
69 @param aAdditionalParameters Data to be used to refine the search further
70 @return The Uid of the best fit interface implementation - KNullUid if no match is found
71 @pre Object is fully constructed and initialized
72 @post Registry contents are not modified but registry keys may be updated
75 TUid IdentifyImplementationL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters)const ;
78 @fn ListAllL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters) const
79 Intended Usage : List all the implementations which satisfy the specified interface.
82 @param aInterfaceUid The interface for which implementations are requested
83 @param aAdditionalParameters Data to be used to refine the search further
84 @return Pointer to an array of suitable implementations. Ownership of this array
85 is passed to the calling function.
86 @pre Object is fully constructed and initialized
87 @post Registry contents are not modified but registry keys may be updated
90 RImplInfoArray* ListAllL(TUid aInterfaceUid,
91 const TEComResolverParams& aAdditionalParameters)const;
96 @fn CDefaultResolver(CRegistryData& aRegistry)
97 Intended Usage : Standardized default c'tor
98 Error Condition : None
100 @post CDefaultResolver is fully constructed
103 explicit CDefaultResolver(MPublicRegistry& aRegistry);
106 @fn Resolve(const RImplInfoArray& aImplementationsInfo,
107 const TEComResolverParams& aAdditionalParameters) const
108 Intended Usage : Called by IdentifyImplementationL to select an appropriate
109 implementation from a list of possibles
111 @param aImplementationsInfo Information on the potential implementations
112 @param aAdditionalParameters The data to match against to detemine the
114 @return The Uid of the selected implementation - KNullUid if no match is found
115 @pre This object is fully constructed
118 TUid Resolve(const RImplInfoArray& aImplementationsInfo,
119 const TEComResolverParams& aAdditionalParameters) const;
123 @fn Match(const TDesC8& aImplementationType,
124 const TDesC8& aMatchType,
125 TBool aUseWildcards) const
126 Intended Usage : Searches for a match of a data type on an implementation type.
127 Match returns ETrue if aMatchType is found within aImplementationType according to
129 1) aImplementationType is treated as a series of descriptors separated by double
130 bars (||). ETrue is returned if aMatchType matches exactly any of the short
131 descriptors. If no double bar is present then aImplementationType is treated as a
133 2) If aUseWildcards == ETrue then a '?' in aMatchType will be matched to any single
134 character and '*' will be matched to any series of characters.
137 @param aImplementationType The implementation data type to search for a match
138 @param aMatchType The data to search for
139 @param aUseWildcards ETrue if wildcard matching should be allowed
140 @return ETrue if a match was found, EFalse otherwise
141 @pre This object is fully constructed
144 TBool Match(const TDesC8& aImplementationType,
145 const TDesC8& aMatchType,
146 TBool aUseWildcards) const;
152 /** Required for test code to have access to internal state */
153 friend class TDefaultResolver_StateAccessor;
156 #endif /* _INC_RESOLVER_3A1D097B0305_INCLUDED */