os/ossrv/lowlevellibsandfws/pluginfw/Framework/Example/ExampleResolver.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
sl@0
    17
#ifndef __EXAMPLERESOLVER_H__
sl@0
    18
#define __VRESOLVER_H__
sl@0
    19
sl@0
    20
#include "Resolver.h"
sl@0
    21
#include "RegistryData.h"
sl@0
    22
sl@0
    23
class TEComResolverParams;
sl@0
    24
sl@0
    25
/**
sl@0
    26
	@since 7.0
sl@0
    27
	Controls the identification, (resolution), of which implementation 
sl@0
    28
	will be used to satisfy an interface implementation instantiation.
sl@0
    29
 */
sl@0
    30
class CExampleResolver : public CResolver
sl@0
    31
{
sl@0
    32
public:
sl@0
    33
/**
sl@0
    34
	@fn				NewL(MPublicRegistry& aRegistry)
sl@0
    35
	Intended Usage	: Standardized safe construction which leaves nothing 
sl@0
    36
					on the cleanup stack.	
sl@0
    37
	Error Condition	: Cannot fully construct because of memory limitations.	
sl@0
    38
	@leave  		KErrNoMemory
sl@0
    39
	@since			7.0
sl@0
    40
	@return			A pointer to the new class
sl@0
    41
	@post			CExampleResolver is fully constructed, 
sl@0
    42
					and initialized.
sl@0
    43
 */
sl@0
    44
	static CExampleResolver* NewL(MPublicRegistry& aRegistry);
sl@0
    45
sl@0
    46
/**
sl@0
    47
	@fn				~CExampleResolver()
sl@0
    48
	Intended Usage	: Standard default d'tor	
sl@0
    49
	Error Condition	: None	
sl@0
    50
	@since			7.0
sl@0
    51
 */
sl@0
    52
	~CExampleResolver();
sl@0
    53
sl@0
    54
/**
sl@0
    55
	@fn				IdentifyImplementationL(TUid aInterfaceUid, 
sl@0
    56
											const TEComResolverParams& aAdditionalParameters) const
sl@0
    57
	Intended Usage	:	Request that the resolver identify the most appropriate 
sl@0
    58
						interface implementation.
sl@0
    59
	Error Condition	:	
sl@0
    60
	@since			7.0
sl@0
    61
	@param			aInterfaceUid The interface for which implementations are requested
sl@0
    62
	@param			aAdditionalParameters Data to be used to refine the search further
sl@0
    63
	@return			The Uid of the best fit interface implementation - KNullUid if no match is found
sl@0
    64
	@pre 			Object is fully constructed and initialized
sl@0
    65
	@post			Registry contents are not modified but registry keys may be updated
sl@0
    66
 */
sl@0
    67
	TUid IdentifyImplementationL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters) const;
sl@0
    68
sl@0
    69
/**
sl@0
    70
	@fn				ListAllL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters) const
sl@0
    71
	Intended Usage	:	List all the implementations which satisfy the specified interface.
sl@0
    72
	Error Condition	:	
sl@0
    73
	@since			7.0
sl@0
    74
	@param			aInterfaceUid The interface for which implementations are requested
sl@0
    75
	@param			aAdditionalParameters Data to be used to refine the search further
sl@0
    76
	@return			Pointer to an array of suitable implementations. Ownership of this array
sl@0
    77
	is passed to the calling function.
sl@0
    78
	@pre 			Object is fully constructed and initialized
sl@0
    79
	@post			Registry contents are not modified but registry keys may be updated
sl@0
    80
 */
sl@0
    81
	RImplInfoArray* ListAllL(TUid aInterfaceUid, 
sl@0
    82
							 const TEComResolverParams& aAdditionalParameters)const ;
sl@0
    83
sl@0
    84
private:
sl@0
    85
/**
sl@0
    86
	@internalComponent
sl@0
    87
	@fn				CExampleResolver(MPublicRegistry& aRegistry)
sl@0
    88
	Intended Usage	: Standardized default c'tor	
sl@0
    89
	Error Condition	: None	
sl@0
    90
	@since			7.0
sl@0
    91
	@post			CExampleResolver is fully constructed
sl@0
    92
 */
sl@0
    93
	explicit CExampleResolver(MPublicRegistry& aRegistry);
sl@0
    94
sl@0
    95
/**
sl@0
    96
	@fn				Resolve(const RImplInfoArray& aImplementationsInfo, 
sl@0
    97
							const TEComResolverParams& aAdditionalParameters) const
sl@0
    98
	Intended Usage	:	Called by IdentifyImplementationL to select an appropriate 
sl@0
    99
					implementation from a list of possibles
sl@0
   100
	@since			7.0
sl@0
   101
	@param			aImplementationsInfo Information on the potential implementations
sl@0
   102
	@param			aAdditionalParameters The data to match against to detemine the 
sl@0
   103
					implementation
sl@0
   104
	@return			The Uid of the selected implementation - KNullUid if no match is found
sl@0
   105
	@pre 			This object is fully constructed
sl@0
   106
 */
sl@0
   107
	TUid Resolve(const RImplInfoArray& aImplementationsInfo, 
sl@0
   108
				 const TEComResolverParams& aAdditionalParameters) const;
sl@0
   109
sl@0
   110
/**
sl@0
   111
	@fn				Match(const TDesC8& aImplementationType, 
sl@0
   112
						  const TDesC8& aMatchType, 
sl@0
   113
						  TBool aUseWildcards) const
sl@0
   114
	Intended Usage	:	Searches for a match of a data type on an implementation type.
sl@0
   115
	Match returns ETrue if aMatchType is found within aImplementationType according to 
sl@0
   116
	the following rules:
sl@0
   117
	1) aImplementationType is treated as a series of descriptors separated by double 
sl@0
   118
	bars (||). ETrue is returned if aMatchType matches exactly any of the short 
sl@0
   119
	descriptors.  If no double bar is present then aImplementationType is treated as a
sl@0
   120
	single descriptor.
sl@0
   121
	2) If aUseWildcards == ETrue then a '?' in aMatchType will be matched to any single
sl@0
   122
	character and '*' will be matched to any series of characters.
sl@0
   123
	@leave  		KErrNoMemory
sl@0
   124
	@since			7.0
sl@0
   125
	@param			aImplementationType The implementation data type to search for a match
sl@0
   126
	@param			aMatchType The data to search for
sl@0
   127
	@param			aUseWildcards ETrue if wildcard matching should be allowed
sl@0
   128
	@return			ETrue if a match was found, EFalse otherwise
sl@0
   129
	@pre 			This object is fully constructed
sl@0
   130
 */
sl@0
   131
	TBool Match(const TDesC8& aImplementationType, 
sl@0
   132
				const TDesC8& aMatchType, 
sl@0
   133
				TBool aUseWildcards) const;
sl@0
   134
sl@0
   135
private:
sl@0
   136
	mutable RImplInfoArray* iImplementationInfoArray;
sl@0
   137
};
sl@0
   138
sl@0
   139
#endif // __EXAMPLERESOLVER_H__
sl@0
   140