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 placeholder class
|
sl@0
|
15 |
// which represents the interface creation.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@internalComponent
|
sl@0
|
21 |
@file
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
|
sl@0
|
25 |
const TUid KCExampleInterfaceUid = {0x10009DC0};
|
sl@0
|
26 |
const TUid KCExample10InterfaceUid = {0x10009DBB};
|
sl@0
|
27 |
const TUid KCExtendedInterfaceUid1 = {0x10009E44};
|
sl@0
|
28 |
const TUid KCExtendedInterfaceUid2 = {0x10009E45};
|
sl@0
|
29 |
const TUid KCExtendedInterfaceUid3 = {0x10009E46};
|
sl@0
|
30 |
|
sl@0
|
31 |
_LIT8(KImplementationTest,"text/wml");
|
sl@0
|
32 |
_LIT8(KImplementationTest10,"Example 10");
|
sl@0
|
33 |
|
sl@0
|
34 |
inline CExampleInterface::CExampleInterface()
|
sl@0
|
35 |
: CActive(CActive::EPriorityLow)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
// Do nothing
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
|
sl@0
|
41 |
inline CExampleInterface::~CExampleInterface()
|
sl@0
|
42 |
{
|
sl@0
|
43 |
Cancel();
|
sl@0
|
44 |
// Destroy any instance variables and then
|
sl@0
|
45 |
// inform the framework that this specific
|
sl@0
|
46 |
// instance of the interface has been destroyed.
|
sl@0
|
47 |
REComSession::DestroyedImplementation(iDtor_ID_Key);
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
|
sl@0
|
51 |
inline CExampleInterface* CExampleInterface::NewL()
|
sl@0
|
52 |
{
|
sl@0
|
53 |
// Set up the interface find for the default resolver.
|
sl@0
|
54 |
TEComResolverParams ResolverParams;
|
sl@0
|
55 |
ResolverParams.SetDataType(KImplementationTest());
|
sl@0
|
56 |
ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
|
sl@0
|
57 |
TUid resolverUid = {0x10009DD0};
|
sl@0
|
58 |
|
sl@0
|
59 |
// Set up some empty initialisation parameters
|
sl@0
|
60 |
TExampleInterfaceInitParams initParams;
|
sl@0
|
61 |
initParams.integer = 0;
|
sl@0
|
62 |
initParams.descriptor = NULL;
|
sl@0
|
63 |
|
sl@0
|
64 |
return REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
65 |
REComSession::CreateImplementationL(KCExampleInterfaceUid,
|
sl@0
|
66 |
_FOFF(CExampleInterface,iDtor_ID_Key),
|
sl@0
|
67 |
&initParams,
|
sl@0
|
68 |
ResolverParams,
|
sl@0
|
69 |
resolverUid));
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
inline CExampleInterface* CExampleInterface::NewL(const TDesC8& aMatchString)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
// Set up the interface find for the default resolver.
|
sl@0
|
75 |
TEComResolverParams ResolverParams;
|
sl@0
|
76 |
ResolverParams.SetDataType(aMatchString);
|
sl@0
|
77 |
ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
|
sl@0
|
78 |
|
sl@0
|
79 |
// Set up some empty initialisation parameters
|
sl@0
|
80 |
TExampleInterfaceInitParams initParams;
|
sl@0
|
81 |
initParams.integer = 0;
|
sl@0
|
82 |
initParams.descriptor = NULL;
|
sl@0
|
83 |
|
sl@0
|
84 |
return REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
85 |
REComSession::CreateImplementationL(KCExampleInterfaceUid,
|
sl@0
|
86 |
_FOFF(CExampleInterface,iDtor_ID_Key),
|
sl@0
|
87 |
&initParams,
|
sl@0
|
88 |
ResolverParams));
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
inline CExampleInterface* CExampleInterface::NewL(TInt aIntParameterTest, const TDesC& aDesParameterTest)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
// Set up the interface find for the default resolver.
|
sl@0
|
94 |
TEComResolverParams ResolverParams;
|
sl@0
|
95 |
ResolverParams.SetDataType(KImplementationTest());
|
sl@0
|
96 |
ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
|
sl@0
|
97 |
|
sl@0
|
98 |
// Set up the initialisation parameter passing
|
sl@0
|
99 |
TExampleInterfaceInitParams initParams;
|
sl@0
|
100 |
initParams.integer = aIntParameterTest;
|
sl@0
|
101 |
initParams.descriptor = &aDesParameterTest;
|
sl@0
|
102 |
|
sl@0
|
103 |
// The CreateImplementationL method will return
|
sl@0
|
104 |
// the created item.
|
sl@0
|
105 |
return REINTERPRET_CAST(CExampleInterface*, REComSession::CreateImplementationL(KCExampleInterfaceUid,
|
sl@0
|
106 |
_FOFF(CExampleInterface,iDtor_ID_Key),
|
sl@0
|
107 |
&initParams,
|
sl@0
|
108 |
ResolverParams));
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
inline CExampleInterface* CExampleInterface::NewL2(const TUid aImplementationUid)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
// Set up some empty initialisation parameters
|
sl@0
|
114 |
TExampleInterfaceInitParams initParams;
|
sl@0
|
115 |
initParams.integer = 0;
|
sl@0
|
116 |
initParams.descriptor = NULL;
|
sl@0
|
117 |
|
sl@0
|
118 |
// The CreateImplementationL method will return
|
sl@0
|
119 |
// the created item.
|
sl@0
|
120 |
return REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
121 |
REComSession::CreateImplementationL(aImplementationUid,
|
sl@0
|
122 |
_FOFF(CExampleInterface,iDtor_ID_Key),
|
sl@0
|
123 |
&initParams));
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
inline CExampleInterface* CExampleInterface::NewL3()
|
sl@0
|
127 |
{
|
sl@0
|
128 |
// Set up the interface find for the default resolver.
|
sl@0
|
129 |
TEComResolverParams ResolverParams;
|
sl@0
|
130 |
ResolverParams.SetDataType(KImplementationTest());
|
sl@0
|
131 |
ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
|
sl@0
|
132 |
|
sl@0
|
133 |
// Set up some empty initialisation parameters
|
sl@0
|
134 |
TExampleInterfaceInitParams initParams;
|
sl@0
|
135 |
initParams.integer = 0;
|
sl@0
|
136 |
initParams.descriptor = NULL;
|
sl@0
|
137 |
|
sl@0
|
138 |
// The CreateImplementationL method will return
|
sl@0
|
139 |
// the created item.
|
sl@0
|
140 |
return REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
141 |
REComSession::CreateImplementationL(KCExampleInterfaceUid,
|
sl@0
|
142 |
_FOFF(CExampleInterface,iDtor_ID_Key),
|
sl@0
|
143 |
&initParams,
|
sl@0
|
144 |
ResolverParams));
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
inline CExampleInterface* CExampleInterface::NewL4()
|
sl@0
|
148 |
{
|
sl@0
|
149 |
// Set up the interface find for the default resolver.
|
sl@0
|
150 |
TEComResolverParams ResolverParams;
|
sl@0
|
151 |
ResolverParams.SetDataType(KImplementationTest());
|
sl@0
|
152 |
ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
|
sl@0
|
153 |
TUid resolverUid = {0x10009DD0};
|
sl@0
|
154 |
|
sl@0
|
155 |
// Set up some empty initialisation parameters
|
sl@0
|
156 |
TExampleInterfaceInitParams initParams;
|
sl@0
|
157 |
initParams.integer = 0;
|
sl@0
|
158 |
initParams.descriptor = NULL;
|
sl@0
|
159 |
|
sl@0
|
160 |
// The CreateImplementationL method will return
|
sl@0
|
161 |
// the created item.
|
sl@0
|
162 |
return REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
163 |
REComSession::CreateImplementationL(KCExampleInterfaceUid,
|
sl@0
|
164 |
_FOFF(CExampleInterface,iDtor_ID_Key),
|
sl@0
|
165 |
&initParams,
|
sl@0
|
166 |
ResolverParams,
|
sl@0
|
167 |
resolverUid));
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
|
sl@0
|
171 |
inline CExampleInterface* CExampleInterface::NewL5()
|
sl@0
|
172 |
{
|
sl@0
|
173 |
//set up extended interface;
|
sl@0
|
174 |
RArray<TUid> extendedInterface;
|
sl@0
|
175 |
CleanupClosePushL(extendedInterface);
|
sl@0
|
176 |
extendedInterface.AppendL(KCExtendedInterfaceUid1);
|
sl@0
|
177 |
extendedInterface.AppendL(KCExtendedInterfaceUid2);
|
sl@0
|
178 |
extendedInterface.AppendL(KCExtendedInterfaceUid3);
|
sl@0
|
179 |
|
sl@0
|
180 |
// Set up the interface find for the default resolver.
|
sl@0
|
181 |
TEComResolverParams ResolverParams;
|
sl@0
|
182 |
ResolverParams.SetDataType(KImplementationTest10());
|
sl@0
|
183 |
ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
|
sl@0
|
184 |
|
sl@0
|
185 |
// The CreateImplementationL method will return the created item.
|
sl@0
|
186 |
CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
187 |
REComSession::CreateImplementationL(KCExample10InterfaceUid,
|
sl@0
|
188 |
extendedInterface,
|
sl@0
|
189 |
_FOFF(CExampleInterface,iDtor_ID_Key),
|
sl@0
|
190 |
ResolverParams));
|
sl@0
|
191 |
CleanupStack::PopAndDestroy(&extendedInterface);
|
sl@0
|
192 |
return dll;
|
sl@0
|
193 |
}
|
sl@0
|
194 |
|
sl@0
|
195 |
|
sl@0
|
196 |
inline CExampleInterface* CExampleInterface::NewL6()
|
sl@0
|
197 |
{
|
sl@0
|
198 |
//set up extended interface;
|
sl@0
|
199 |
RArray<TUid> extendedInterface;
|
sl@0
|
200 |
CleanupClosePushL(extendedInterface);
|
sl@0
|
201 |
extendedInterface.AppendL(KCExtendedInterfaceUid1);
|
sl@0
|
202 |
extendedInterface.AppendL(KCExtendedInterfaceUid2);
|
sl@0
|
203 |
extendedInterface.AppendL(KCExtendedInterfaceUid3);
|
sl@0
|
204 |
|
sl@0
|
205 |
// Set up the interface find for the default resolver.
|
sl@0
|
206 |
TEComResolverParams ResolverParams;
|
sl@0
|
207 |
ResolverParams.SetDataType(KImplementationTest10());
|
sl@0
|
208 |
ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
|
sl@0
|
209 |
TUid resolverUid = {0x10009DD0};
|
sl@0
|
210 |
|
sl@0
|
211 |
// The CreateImplementationL method will return the created item.
|
sl@0
|
212 |
CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
213 |
REComSession::CreateImplementationL(KCExample10InterfaceUid,
|
sl@0
|
214 |
extendedInterface,
|
sl@0
|
215 |
_FOFF(CExampleInterface,iDtor_ID_Key),
|
sl@0
|
216 |
ResolverParams,
|
sl@0
|
217 |
resolverUid));
|
sl@0
|
218 |
CleanupStack::PopAndDestroy(&extendedInterface);
|
sl@0
|
219 |
return dll;
|
sl@0
|
220 |
}
|
sl@0
|
221 |
|
sl@0
|
222 |
|
sl@0
|
223 |
inline CExampleInterface* CExampleInterface::NewL7()
|
sl@0
|
224 |
{
|
sl@0
|
225 |
//set up extended interface;
|
sl@0
|
226 |
RArray<TUid> extendedInterface;
|
sl@0
|
227 |
CleanupClosePushL(extendedInterface);
|
sl@0
|
228 |
extendedInterface.AppendL(KCExtendedInterfaceUid1);
|
sl@0
|
229 |
extendedInterface.AppendL(KCExtendedInterfaceUid2);
|
sl@0
|
230 |
extendedInterface.AppendL(KCExtendedInterfaceUid3);
|
sl@0
|
231 |
|
sl@0
|
232 |
// Set up the interface find for the default resolver.
|
sl@0
|
233 |
TEComResolverParams ResolverParams;
|
sl@0
|
234 |
ResolverParams.SetDataType(KImplementationTest10());
|
sl@0
|
235 |
ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
|
sl@0
|
236 |
|
sl@0
|
237 |
// Set up some empty initialisation parameters
|
sl@0
|
238 |
TExampleInterfaceInitParams initParams;
|
sl@0
|
239 |
initParams.integer = 0;
|
sl@0
|
240 |
initParams.descriptor = NULL;
|
sl@0
|
241 |
|
sl@0
|
242 |
// The CreateImplementationL method will return the created item.
|
sl@0
|
243 |
CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
244 |
REComSession::CreateImplementationL(KCExample10InterfaceUid,
|
sl@0
|
245 |
extendedInterface,
|
sl@0
|
246 |
_FOFF(CExampleInterface,iDtor_ID_Key),
|
sl@0
|
247 |
ResolverParams,
|
sl@0
|
248 |
&initParams));
|
sl@0
|
249 |
CleanupStack::PopAndDestroy(&extendedInterface);
|
sl@0
|
250 |
return dll;
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
|
sl@0
|
254 |
inline CExampleInterface* CExampleInterface::NewL8()
|
sl@0
|
255 |
{
|
sl@0
|
256 |
//set up extended interface;
|
sl@0
|
257 |
RArray<TUid> extendedInterface;
|
sl@0
|
258 |
CleanupClosePushL(extendedInterface);
|
sl@0
|
259 |
extendedInterface.AppendL(KCExtendedInterfaceUid1);
|
sl@0
|
260 |
extendedInterface.AppendL(KCExtendedInterfaceUid2);
|
sl@0
|
261 |
extendedInterface.AppendL(KCExtendedInterfaceUid3);
|
sl@0
|
262 |
|
sl@0
|
263 |
// Set up the interface find for the default resolver.
|
sl@0
|
264 |
TEComResolverParams ResolverParams;
|
sl@0
|
265 |
ResolverParams.SetDataType(KImplementationTest10());
|
sl@0
|
266 |
ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
|
sl@0
|
267 |
TUid resolverUid = {0x10009DD0};
|
sl@0
|
268 |
|
sl@0
|
269 |
// Set up some empty initialisation parameters
|
sl@0
|
270 |
TExampleInterfaceInitParams initParams;
|
sl@0
|
271 |
initParams.integer = 0;
|
sl@0
|
272 |
initParams.descriptor = NULL;
|
sl@0
|
273 |
|
sl@0
|
274 |
// The CreateImplementationL method will return the created item.
|
sl@0
|
275 |
CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*,
|
sl@0
|
276 |
REComSession::CreateImplementationL(KCExample10InterfaceUid,
|
sl@0
|
277 |
extendedInterface,
|
sl@0
|
278 |
_FOFF(CExampleInterface,iDtor_ID_Key),
|
sl@0
|
279 |
ResolverParams,
|
sl@0
|
280 |
resolverUid,
|
sl@0
|
281 |
&initParams));
|
sl@0
|
282 |
CleanupStack::PopAndDestroy(&extendedInterface);
|
sl@0
|
283 |
return dll;
|
sl@0
|
284 |
}
|
sl@0
|
285 |
|
sl@0
|
286 |
|
sl@0
|
287 |
|
sl@0
|
288 |
inline void CExampleInterface::ListImplementationsL(RImplInfoPtrArray& aImplInfoArray)
|
sl@0
|
289 |
{
|
sl@0
|
290 |
// Set up the interface find for the default resolver.
|
sl@0
|
291 |
TEComResolverParams ResolverParams;
|
sl@0
|
292 |
ResolverParams.SetDataType(KImplementationTest());
|
sl@0
|
293 |
ResolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching
|
sl@0
|
294 |
|
sl@0
|
295 |
REComSession::ListImplementationsL(KCExampleInterfaceUid,
|
sl@0
|
296 |
ResolverParams,
|
sl@0
|
297 |
aImplInfoArray);
|
sl@0
|
298 |
}
|
sl@0
|
299 |
|
sl@0
|
300 |
inline void CExampleInterface::ListAllImplementationsL(RImplInfoPtrArray& aImplInfoArray)
|
sl@0
|
301 |
{
|
sl@0
|
302 |
REComSession::ListImplementationsL(KCExampleInterfaceUid, aImplInfoArray);
|
sl@0
|
303 |
}
|
sl@0
|
304 |
|
sl@0
|
305 |
|
sl@0
|
306 |
inline void CExampleInterface::DoMethodL()
|
sl@0
|
307 |
{
|
sl@0
|
308 |
User::Leave(KErrNotSupported);
|
sl@0
|
309 |
}
|
sl@0
|
310 |
|
sl@0
|
311 |
|
sl@0
|
312 |
inline TInt CExampleInterface::FireAndForget()
|
sl@0
|
313 |
{
|
sl@0
|
314 |
return KErrNotSupported;
|
sl@0
|
315 |
}
|
sl@0
|
316 |
|
sl@0
|
317 |
inline TAny* CExampleInterface::GetExtendedInterfaceL(const TUid& aInterfaceUid)
|
sl@0
|
318 |
{
|
sl@0
|
319 |
TAny *object = NULL;
|
sl@0
|
320 |
object = REComSession::GetExtendedInterfaceL(iDtor_ID_Key, aInterfaceUid);
|
sl@0
|
321 |
return object;
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
inline void CExampleInterface::ManuallyReleaseExtendedInterfaceL(const TUid& aInterfaceUid)
|
sl@0
|
325 |
{
|
sl@0
|
326 |
REComSession::ManuallyReleaseExtendedInterfaceL(iDtor_ID_Key, aInterfaceUid);
|
sl@0
|
327 |
}
|