Update contrib.
1 // Copyright (c) 2004-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.
19 #ifndef __PLATSECRESOLVER_H__
20 #define __PLATSECRESOLVER_H__
23 #include "RegistryData.h"
25 class TEComResolverParams;
30 Controls the identification, (resolution), of which implementation
31 will be used to satisfy an interface implementation instantiation.
33 class CPlatSecResolver : 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 CPlatSecResolver is fully constructed,
47 static CPlatSecResolver* NewL(MPublicRegistry& aRegistry);
50 @fn ~CPlatSecResolver()
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,
85 const TEComResolverParams& aAdditionalParameters)const;
90 @fn CPlatSecResolver(MPublicRegistry& aRegistry)
91 Intended Usage : Standardized default c'tor
92 Error Condition : None
94 @post CPlatSecResolver is fully constructed
96 explicit CPlatSecResolver(MPublicRegistry& aRegistry);
99 @fn Resolve(const RImplInfoArray& aImplementationsInfo,
100 const TEComResolverParams& aAdditionalParameters) const
101 Intended Usage : Called by IdentifyImplementationL to select an appropriate
102 implementation from a list of possibles
104 @param aImplementationsInfo Information on the potential implementations
105 @param aAdditionalParameters The data to match against to detemine the
107 @return The Uid of the selected implementation - KNullUid if no match is found
108 @pre This object is fully constructed
110 TUid Resolve(const RImplInfoArray& aImplementationsInfo,
111 const TEComResolverParams& aAdditionalParameters) const;
114 @fn Match(const TDesC8& aImplementationType,
115 const TDesC8& aMatchType,
116 TBool aUseWildcards) const
117 Intended Usage : Searches for a match of a data type on an implementation type.
118 Match returns ETrue if aMatchType is found within aImplementationType according to
120 1) aImplementationType is treated as a series of descriptors separated by double
121 bars (||). ETrue is returned if aMatchType matches exactly any of the short
122 descriptors. If no double bar is present then aImplementationType is treated as a
124 2) If aUseWildcards == ETrue then a '?' in aMatchType will be matched to any single
125 character and '*' will be matched to any series of characters.
128 @param aImplementationType The implementation data type to search for a match
129 @param aMatchType The data to search for
130 @param aUseWildcards ETrue if wildcard matching should be allowed
131 @return ETrue if a match was found, EFalse otherwise
132 @pre This object is fully constructed
134 TBool Match(const TDesC8& aImplementationType,
135 const TDesC8& aMatchType,
136 TBool aUseWildcards) const;
139 mutable RImplInfoArray* iImplementationInfoArray;
142 #endif // __EXAMPLERESOLVER_H__