sl@0
|
1 |
// Copyright (c) 2002-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 __ROMONLYRESOLVER_H__
|
sl@0
|
18 |
#define __ROMONLYRESOLVER_H__
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "DefaultResolver.h"
|
sl@0
|
21 |
#include "RegistryData.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
class TEComResolverParams;
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
@internalComponent
|
sl@0
|
27 |
@since 7.0
|
sl@0
|
28 |
Special resolver which controls the identification, (resolution), of which implementation
|
sl@0
|
29 |
will be used to satisfy an interface implementation instantiation. This version only allows
|
sl@0
|
30 |
plug-ins which are installed in ROM or are updates of ones originally found in ROM.
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
class CRomOnlyResolver : public CDefaultResolver
|
sl@0
|
33 |
{
|
sl@0
|
34 |
public:
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
@fn NewL(CRegistryData& aRegistry)
|
sl@0
|
37 |
Intended Usage : Standardized safe construction which leaves nothing
|
sl@0
|
38 |
on the cleanup stack.
|
sl@0
|
39 |
Error Condition : Cannot fully construct because of memory limitations.
|
sl@0
|
40 |
@leave KErrNoMemory
|
sl@0
|
41 |
@since 7.0
|
sl@0
|
42 |
@return A pointer to the new class
|
sl@0
|
43 |
@post CRomOnlyResolver is fully constructed,
|
sl@0
|
44 |
and initialized.
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
static CRomOnlyResolver* NewL(MPublicRegistry& aRegistry);
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
@fn ~CRomOnlyResolver()
|
sl@0
|
50 |
Intended Usage : Standard default d'tor
|
sl@0
|
51 |
Error Condition : None
|
sl@0
|
52 |
@since 7.0
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
~CRomOnlyResolver();
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
@fn IdentifyImplementationL(TUid aInterfaceUid,
|
sl@0
|
58 |
const TEComResolverParams& aAdditionalParameters) const
|
sl@0
|
59 |
Intended Usage : Request that the resolver identify the most appropriate
|
sl@0
|
60 |
interface implementation.
|
sl@0
|
61 |
Error Condition :
|
sl@0
|
62 |
@since 7.0
|
sl@0
|
63 |
@param aInterfaceUid The interface for which implementations are requested
|
sl@0
|
64 |
@param aAdditionalParameters Data to be used to refine the search further
|
sl@0
|
65 |
@return The Uid of the best fit interface implementation - KNullUid if no match is found
|
sl@0
|
66 |
@pre Object is fully constructed and initialized
|
sl@0
|
67 |
@post Registry contents are not modified but registry keys may be updated
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
TUid IdentifyImplementationL(TUid aInterfaceUid,
|
sl@0
|
70 |
const TEComResolverParams& aAdditionalParameters)const ;
|
sl@0
|
71 |
|
sl@0
|
72 |
/**
|
sl@0
|
73 |
@fn ListAllL(TUid aInterfaceUid,
|
sl@0
|
74 |
const TEComResolverParams& aAdditionalParameters) const
|
sl@0
|
75 |
Intended Usage : List all the implementations which satisfy the specified interface.
|
sl@0
|
76 |
Error Condition :
|
sl@0
|
77 |
@since 7.0
|
sl@0
|
78 |
@param aInterfaceUid The interface for which implementations are requested
|
sl@0
|
79 |
@param aAdditionalParameters Data to be used to refine the search further
|
sl@0
|
80 |
@return Pointer to an array of suitable implementations. Ownership of this array
|
sl@0
|
81 |
is passed to the calling function.
|
sl@0
|
82 |
@pre Object is fully constructed and initialized
|
sl@0
|
83 |
@post Registry contents are not modified but registry keys may be updated
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
RImplInfoArray* ListAllL(TUid aInterfaceUid,
|
sl@0
|
86 |
const TEComResolverParams& aAdditionalParameters)const ;
|
sl@0
|
87 |
|
sl@0
|
88 |
private:
|
sl@0
|
89 |
/**
|
sl@0
|
90 |
@internalComponent
|
sl@0
|
91 |
@fn CRomOnlyResolver(CRegistryData& aRegistry)
|
sl@0
|
92 |
Intended Usage : Standardized default c'tor
|
sl@0
|
93 |
Error Condition : None
|
sl@0
|
94 |
@since 7.0
|
sl@0
|
95 |
@post CRomOnlyResolver is fully constructed
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
explicit CRomOnlyResolver(MPublicRegistry& aRegistry);
|
sl@0
|
98 |
|
sl@0
|
99 |
};
|
sl@0
|
100 |
|
sl@0
|
101 |
#endif // __ROMONLYRESOLVER_H__
|
sl@0
|
102 |
|