os/ossrv/lowlevellibsandfws/pluginfw/Framework/inc/Resolver.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
// This file contains the definition of the CResolver
sl@0
    15
// class.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#if defined (_MSC_VER) && (_MSC_VER >= 1000)
sl@0
    20
#pragma once
sl@0
    21
#endif
sl@0
    22
#ifndef __RESOLVER_H__
sl@0
    23
#define __RESOLVER_H__
sl@0
    24
sl@0
    25
#include <e32base.h>
sl@0
    26
#include <f32file.h>
sl@0
    27
sl@0
    28
#include <ecom/ecom.h>
sl@0
    29
#include <ecom/publicregistry.h>
sl@0
    30
sl@0
    31
class TEComResolverParams;
sl@0
    32
sl@0
    33
/**
sl@0
    34
The UID idnetifying the ECOM Resolver plugin interface.
sl@0
    35
sl@0
    36
@publishedAll
sl@0
    37
@released
sl@0
    38
*/
sl@0
    39
const TUid KCustomResolverInterfaceUid = {0x10009D90};
sl@0
    40
sl@0
    41
/**
sl@0
    42
Abstract base class which is used to identify the correct interface implementation
sl@0
    43
based on criteria supplied by the client.
sl@0
    44
This base class can be used to write a client specific resolver, however this is not 
sl@0
    45
required as a default implementation is provided within ECom.
sl@0
    46
sl@0
    47
@publishedAll
sl@0
    48
@released
sl@0
    49
*/
sl@0
    50
sl@0
    51
class CResolver : public CBase
sl@0
    52
{
sl@0
    53
public:
sl@0
    54
	/**
sl@0
    55
	Intended Usage	:	Request that the resolver identify the most appropriate interface 
sl@0
    56
						implementation.
sl@0
    57
	Error Condition	:	Depends on implementation.
sl@0
    58
	@since			7.0
sl@0
    59
	@param			aInterfaceUid The interface for which an implementation is requested
sl@0
    60
	@param			aAdditionalParameters The parameters which must match for an 
sl@0
    61
					implementation to be suitable
sl@0
    62
	@return			The unique Id of the implementation which satisfies the specified parameters.
sl@0
    63
	@pre 			This object is fully constructed.
sl@0
    64
 	*/
sl@0
    65
	
sl@0
    66
	virtual TUid IdentifyImplementationL(TUid aInterfaceUid, 
sl@0
    67
										 const TEComResolverParams& aAdditionalParameters) const  = 0;
sl@0
    68
sl@0
    69
	/**
sl@0
    70
	Intended Usage	:	List all the implementations which satisfy the specified 
sl@0
    71
						interface definition and the resolve parameters supplied.
sl@0
    72
	Error Condition	:	Depends on implementation.
sl@0
    73
	@since			7.0
sl@0
    74
	@param			aInterfaceUid The interface for which implementations are requested
sl@0
    75
	@param			aAdditionalParameters The parameters which must match for an 
sl@0
    76
					implementation to be suitable
sl@0
    77
	@return			Pointer to an array of suitable implementations. Ownership of this 
sl@0
    78
					array is passed to the calling function.
sl@0
    79
	@pre 			Object is fully constructed and initialized
sl@0
    80
	@post			Registry contents are not modified but registry keys may be updated
sl@0
    81
	*/
sl@0
    82
	
sl@0
    83
	virtual RImplInfoArray* ListAllL(TUid aInterfaceUid, 
sl@0
    84
									 const TEComResolverParams& aAdditionalParameters) const = 0;
sl@0
    85
sl@0
    86
	
sl@0
    87
	inline RImplInfoArray& ListAllL(TUid aInterfaceUid)const;
sl@0
    88
sl@0
    89
protected:
sl@0
    90
	
sl@0
    91
	explicit inline CResolver(MPublicRegistry& aRegistry);
sl@0
    92
sl@0
    93
	// Attributes
sl@0
    94
	/** A reference to the instantiated registry information */
sl@0
    95
	
sl@0
    96
	 const MPublicRegistry& iRegistry;
sl@0
    97
};
sl@0
    98
sl@0
    99
/**
sl@0
   100
@internalAll
sl@0
   101
Intended Usage	: Standardized default c'tor
sl@0
   102
Error Condition	: None
sl@0
   103
@since			7.0
sl@0
   104
@post			CResolver is fully constructed
sl@0
   105
*/
sl@0
   106
CResolver::CResolver(MPublicRegistry& aRegistry) :
sl@0
   107
CBase(),
sl@0
   108
iRegistry(aRegistry)
sl@0
   109
	{
sl@0
   110
	// Do nothing
sl@0
   111
	}
sl@0
   112
sl@0
   113
/**
sl@0
   114
Intended Usage	:	List all the implementations which satisfy the specified interface.
sl@0
   115
Error Condition	:	@see CRegistryData::ListImplementationsL
sl@0
   116
@since			7.0
sl@0
   117
@param			aInterfaceUid The interface for which implementations are requested
sl@0
   118
@return			Array of suitable implementations
sl@0
   119
@pre 			Object is fully constructed and initialized
sl@0
   120
@post			Registry contents are not modified but registry keys may be updated
sl@0
   121
*/
sl@0
   122
RImplInfoArray& CResolver::ListAllL(TUid aInterfaceUid)const
sl@0
   123
	{
sl@0
   124
	return iRegistry.ListImplementationsL(aInterfaceUid);
sl@0
   125
	}
sl@0
   126
sl@0
   127
#endif /* __RESOLVER_H__ */
sl@0
   128