os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/DefaultResolver.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
#if defined (_MSC_VER) && (_MSC_VER >= 1000)
sl@0
    18
#pragma once
sl@0
    19
#endif
sl@0
    20
#ifndef _INC_RESOLVER_3A1D097B0305_INCLUDED
sl@0
    21
#define _INC_RESOLVER_3A1D097B0305_INCLUDED
sl@0
    22
sl@0
    23
#include <ecom/resolver.h>
sl@0
    24
#include "RegistryData.h"
sl@0
    25
sl@0
    26
class TEComResolverParams;
sl@0
    27
sl@0
    28
/**
sl@0
    29
	@internalComponent
sl@0
    30
	@since 7.0
sl@0
    31
	Controls the identification, (resolution), of which implementation 
sl@0
    32
	will be used to satisfy an interface implementation instantiation.
sl@0
    33
 */
sl@0
    34
sl@0
    35
class CDefaultResolver : public CResolver
sl@0
    36
{
sl@0
    37
public:
sl@0
    38
/**
sl@0
    39
	@fn				NewL(CRegistryData& aRegistry)
sl@0
    40
	Intended Usage	: Standardized safe construction which leaves nothing 
sl@0
    41
					on the cleanup stack.	
sl@0
    42
	Error Condition	: Cannot fully construct because of memory limitations.	
sl@0
    43
	@leave  		KErrNoMemory
sl@0
    44
	@since			7.0
sl@0
    45
	@return			A pointer to the new class
sl@0
    46
	@post			CDefaultResolver is fully constructed, 
sl@0
    47
					and initialized.
sl@0
    48
 */
sl@0
    49
	
sl@0
    50
	static CDefaultResolver* NewL(MPublicRegistry& aRegistry);
sl@0
    51
sl@0
    52
/**
sl@0
    53
	@fn				~CDefaultResolver()
sl@0
    54
	Intended Usage	: Standard default d'tor	
sl@0
    55
	Error Condition	: None	
sl@0
    56
	@since			7.0
sl@0
    57
 */
sl@0
    58
	
sl@0
    59
	~CDefaultResolver();
sl@0
    60
sl@0
    61
/**
sl@0
    62
	@fn				IdentifyImplementationL(TUid aInterfaceUid, 
sl@0
    63
											const TEComResolverParams& aAdditionalParameters) const
sl@0
    64
	Intended Usage	:	Request that the resolver identify the most appropriate 
sl@0
    65
						interface implementation.
sl@0
    66
	Error Condition	:	
sl@0
    67
	@since			7.0
sl@0
    68
	@param			aInterfaceUid The interface for which implementations are requested
sl@0
    69
	@param			aAdditionalParameters Data to be used to refine the search further
sl@0
    70
	@return			The Uid of the best fit interface implementation - KNullUid if no match is found
sl@0
    71
	@pre 			Object is fully constructed and initialized
sl@0
    72
	@post			Registry contents are not modified but registry keys may be updated
sl@0
    73
 */
sl@0
    74
	
sl@0
    75
	TUid IdentifyImplementationL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters)const ;
sl@0
    76
sl@0
    77
/**
sl@0
    78
	@fn				ListAllL(TUid aInterfaceUid, const TEComResolverParams& aAdditionalParameters) const
sl@0
    79
	Intended Usage	:	List all the implementations which satisfy the specified interface.
sl@0
    80
	Error Condition	:	
sl@0
    81
	@since			7.0
sl@0
    82
	@param			aInterfaceUid The interface for which implementations are requested
sl@0
    83
	@param			aAdditionalParameters Data to be used to refine the search further
sl@0
    84
	@return			Pointer to an array of suitable implementations. Ownership of this array
sl@0
    85
	is passed to the calling function.
sl@0
    86
	@pre 			Object is fully constructed and initialized
sl@0
    87
	@post			Registry contents are not modified but registry keys may be updated
sl@0
    88
 */
sl@0
    89
	
sl@0
    90
	RImplInfoArray* ListAllL(TUid aInterfaceUid, 
sl@0
    91
							 const TEComResolverParams& aAdditionalParameters)const;
sl@0
    92
sl@0
    93
protected:
sl@0
    94
/**
sl@0
    95
	@internalComponent
sl@0
    96
	@fn				CDefaultResolver(CRegistryData& aRegistry)
sl@0
    97
	Intended Usage	: Standardized default c'tor	
sl@0
    98
	Error Condition	: None	
sl@0
    99
	@since			7.0
sl@0
   100
	@post			CDefaultResolver is fully constructed
sl@0
   101
 */
sl@0
   102
	
sl@0
   103
	explicit CDefaultResolver(MPublicRegistry& aRegistry);
sl@0
   104
sl@0
   105
/**
sl@0
   106
	@fn				Resolve(const RImplInfoArray& aImplementationsInfo, 
sl@0
   107
							const TEComResolverParams& aAdditionalParameters) const
sl@0
   108
	Intended Usage	:	Called by IdentifyImplementationL to select an appropriate 
sl@0
   109
					implementation from a list of possibles
sl@0
   110
	@since			7.0
sl@0
   111
	@param			aImplementationsInfo Information on the potential implementations
sl@0
   112
	@param			aAdditionalParameters The data to match against to detemine the 
sl@0
   113
					implementation
sl@0
   114
	@return			The Uid of the selected implementation - KNullUid if no match is found
sl@0
   115
	@pre 			This object is fully constructed
sl@0
   116
 */
sl@0
   117
	
sl@0
   118
	TUid Resolve(const RImplInfoArray& aImplementationsInfo, 
sl@0
   119
				 const TEComResolverParams& aAdditionalParameters) const;
sl@0
   120
sl@0
   121
private:
sl@0
   122
/**
sl@0
   123
	@fn				Match(const TDesC8& aImplementationType, 
sl@0
   124
						  const TDesC8& aMatchType, 
sl@0
   125
						  TBool aUseWildcards) const
sl@0
   126
	Intended Usage	:	Searches for a match of a data type on an implementation type.
sl@0
   127
	Match returns ETrue if aMatchType is found within aImplementationType according to 
sl@0
   128
	the following rules:
sl@0
   129
	1) aImplementationType is treated as a series of descriptors separated by double 
sl@0
   130
	bars (||). ETrue is returned if aMatchType matches exactly any of the short 
sl@0
   131
	descriptors.  If no double bar is present then aImplementationType is treated as a
sl@0
   132
	single descriptor.
sl@0
   133
	2) If aUseWildcards == ETrue then a '?' in aMatchType will be matched to any single
sl@0
   134
	character and '*' will be matched to any series of characters.
sl@0
   135
	@leave  		KErrNoMemory
sl@0
   136
	@since			7.0
sl@0
   137
	@param			aImplementationType The implementation data type to search for a match
sl@0
   138
	@param			aMatchType The data to search for
sl@0
   139
	@param			aUseWildcards ETrue if wildcard matching should be allowed
sl@0
   140
	@return			ETrue if a match was found, EFalse otherwise
sl@0
   141
	@pre 			This object is fully constructed
sl@0
   142
 */
sl@0
   143
	
sl@0
   144
	TBool Match(const TDesC8& aImplementationType, 
sl@0
   145
				const TDesC8& aMatchType, 
sl@0
   146
				TBool aUseWildcards) const;
sl@0
   147
sl@0
   148
protected:
sl@0
   149
	
sl@0
   150
	
sl@0
   151
sl@0
   152
	/** Required for test code to have access to internal state */
sl@0
   153
	friend class TDefaultResolver_StateAccessor;
sl@0
   154
};
sl@0
   155
sl@0
   156
#endif /* _INC_RESOLVER_3A1D097B0305_INCLUDED */
sl@0
   157