os/ossrv/lowlevellibsandfws/pluginfw/Framework/T_PlatSecResolver/T_SecResolver.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // PlatSecResolver.h
    15 // 
    16 //
    17 
    18 
    19 #ifndef __PLATSECRESOLVER_H__
    20 #define __PLATSECRESOLVER_H__
    21 
    22 #include "Resolver.h"
    23 #include "RegistryData.h"
    24 
    25 class TEComResolverParams;
    26 
    27 /**
    28 	@since 7.0
    29 	
    30 	Controls the identification, (resolution), of which implementation 
    31 	will be used to satisfy an interface implementation instantiation.
    32  */
    33 class CPlatSecResolver : public CResolver
    34 {
    35 public:
    36 /**
    37 	@fn				NewL(MPublicRegistry& aRegistry)
    38 	Intended Usage	: Standardized safe construction which leaves nothing 
    39 					on the cleanup stack.	
    40 	Error Condition	: Cannot fully construct because of memory limitations.	
    41 	@leave  		KErrNoMemory
    42 	@since			7.0
    43 	@return			A pointer to the new class
    44 	@post			CPlatSecResolver is fully constructed, 
    45 					and initialized.
    46  */
    47 	static CPlatSecResolver* NewL(MPublicRegistry& aRegistry);
    48 
    49 /**
    50 	@fn				~CPlatSecResolver()
    51 	Intended Usage	: Standard default d'tor	
    52 	Error Condition	: None	
    53 	@since			7.0
    54  */
    55 	~CPlatSecResolver();
    56 
    57 /**
    58 	@fn				IdentifyImplementationL(TUid aInterfaceUid, 
    59 											const TEComResolverParams& aAdditionalParameters) const
    60 	Intended Usage	:	Request that the resolver identify the most appropriate 
    61 						interface implementation.
    62 	Error Condition	:	
    63 	@since			9.0
    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
    69  */
    70 	TUid IdentifyImplementationL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters)const;
    71 
    72 /**
    73 	@fn				ListAllL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters)const
    74 	Intended Usage	:	List all the implementations which satisfy the specified interface.
    75 	Error Condition	:	
    76 	@since			7.0
    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
    83  */
    84 	RImplInfoArray* ListAllL(TUid aInterfaceUid, 
    85 							 const TEComResolverParams& aAdditionalParameters)const;
    86 
    87 private:
    88 /**
    89 	@internalComponent
    90 	@fn				CPlatSecResolver(MPublicRegistry& aRegistry)
    91 	Intended Usage	: Standardized default c'tor	
    92 	Error Condition	: None	
    93 	@since			7.0
    94 	@post			CPlatSecResolver is fully constructed
    95  */
    96 	explicit CPlatSecResolver(MPublicRegistry& aRegistry);
    97 
    98 /**
    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
   103 	@since			7.0
   104 	@param			aImplementationsInfo Information on the potential implementations
   105 	@param			aAdditionalParameters The data to match against to detemine the 
   106 					implementation
   107 	@return			The Uid of the selected implementation - KNullUid if no match is found
   108 	@pre 			This object is fully constructed
   109  */
   110 	TUid Resolve(const RImplInfoArray& aImplementationsInfo, 
   111 				 const TEComResolverParams& aAdditionalParameters) const;
   112 
   113 /**
   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 
   119 	the following rules:
   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
   123 	single descriptor.
   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.
   126 	@leave  		KErrNoMemory
   127 	@since			7.0
   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
   133  */
   134 	TBool Match(const TDesC8& aImplementationType, 
   135 				const TDesC8& aMatchType, 
   136 				TBool aUseWildcards) const;
   137 
   138 private:
   139 	mutable RImplInfoArray* iImplementationInfoArray;
   140 };
   141 
   142 #endif // __EXAMPLERESOLVER_H__
   143