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