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 |
// Implementation of the TEComResolverParams class.
|
sl@0
|
15 |
// Provide the inline implementation of TEComResolverParams
|
sl@0
|
16 |
// TEComResolverParams allows the user to define the characteristics
|
sl@0
|
17 |
// of the Interface Implementation plugin to be found.
|
sl@0
|
18 |
// Default constructor of TEComResolverParams. It creates an empty uninitialized
|
sl@0
|
19 |
// resolver parameter object. Such an object maybe used in calls to REComSession
|
sl@0
|
20 |
// CreateImplementationL() and ListImplementationsL() methods when no specific
|
sl@0
|
21 |
// matching or filtering is required i.e. default type matching will be used.
|
sl@0
|
22 |
//
|
sl@0
|
23 |
//
|
sl@0
|
24 |
|
sl@0
|
25 |
TEComResolverParams::TEComResolverParams()
|
sl@0
|
26 |
: iDataType(NULL,0),
|
sl@0
|
27 |
iGenericMatch(EFalse)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
// do nothing;
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
Provides read access to the Interface Implementation plugin 'datatype' match
|
sl@0
|
35 |
pattern. Note, since TEComResolveParams has a default constructor this data
|
sl@0
|
36 |
member may be an invalid descriptor which implies 'default matching'.
|
sl@0
|
37 |
|
sl@0
|
38 |
@return The read only 'datatype' match pattern.
|
sl@0
|
39 |
@pre The object is constructed
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
|
sl@0
|
42 |
const TDesC8& TEComResolverParams::DataType() const
|
sl@0
|
43 |
{
|
sl@0
|
44 |
return iDataType;
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
Set the Interface Implementation plugin 'datatype' match pattern.
|
sl@0
|
50 |
|
sl@0
|
51 |
@param aDataType The 'datatype' match pattern to be stored.
|
sl@0
|
52 |
@pre The object is constructed
|
sl@0
|
53 |
@post iDataType equals aDataType.
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
|
sl@0
|
56 |
void TEComResolverParams::SetDataType(const TDesC8& aDataType)
|
sl@0
|
57 |
{
|
sl@0
|
58 |
iDataType.Set(aDataType);
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
Check if 'generic' matching is allowed.
|
sl@0
|
63 |
|
sl@0
|
64 |
@return ETrue if generic matching is allowed, EFalse otherwise.
|
sl@0
|
65 |
@pre The object is constructed
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
TBool TEComResolverParams::IsGenericMatch() const
|
sl@0
|
68 |
{
|
sl@0
|
69 |
return iGenericMatch;
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
/**
|
sl@0
|
73 |
Indicates that a 'generic' match is required.
|
sl@0
|
74 |
|
sl@0
|
75 |
Either allow Interface Implementation plugins that are specific (use no wildcards
|
sl@0
|
76 |
in their registry file) or generic (use wildcards in their registry file).
|
sl@0
|
77 |
|
sl@0
|
78 |
In any case the user of a should NOT use wildcards in the datatype string that
|
sl@0
|
79 |
is passed into this object.
|
sl@0
|
80 |
|
sl@0
|
81 |
Rationale:
|
sl@0
|
82 |
The client that sets up the resolver is expected to know what type of data
|
sl@0
|
83 |
it is handling.
|
sl@0
|
84 |
|
sl@0
|
85 |
Use Case:
|
sl@0
|
86 |
"I have this gif to convert, but I'd prefer only gif-specific plugins" or
|
sl@0
|
87 |
"I have this gif to convert, but I'm happy with some generic image conversion
|
sl@0
|
88 |
plugin".
|
sl@0
|
89 |
|
sl@0
|
90 |
NOT:
|
sl@0
|
91 |
"I have this image I want some plugin to convert, but I don't know the type
|
sl@0
|
92 |
of the image".
|
sl@0
|
93 |
|
sl@0
|
94 |
@param aGenericMatch ETrue if a generic match is required, EFalse if not.
|
sl@0
|
95 |
@pre The object is constructed
|
sl@0
|
96 |
@post iGenericMatch equals aGenericMatch.
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
void TEComResolverParams::SetGenericMatch(TBool aGenericMatch)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
iGenericMatch=aGenericMatch;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
|
sl@0
|
104 |
/**
|
sl@0
|
105 |
@deprecated
|
sl@0
|
106 |
@see IsGenericMatch
|
sl@0
|
107 |
*/
|
sl@0
|
108 |
|
sl@0
|
109 |
TBool TEComResolverParams::IsWildcardMatch() const
|
sl@0
|
110 |
{
|
sl@0
|
111 |
return iGenericMatch;
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
|
sl@0
|
115 |
/**
|
sl@0
|
116 |
@deprecated
|
sl@0
|
117 |
@see SetGenericMatch
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
|
sl@0
|
120 |
void TEComResolverParams::SetWildcardMatch(TBool aWildcardMatch)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
iGenericMatch=aWildcardMatch;
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
|
sl@0
|
126 |
|
sl@0
|
127 |
|