sl@0
|
1 |
// Copyright (c) 2007-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 |
// The implementation of some classes to be provided by ECom.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@internalComponent
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#include "exampletwelve.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
// __________________________________________________________________________
|
sl@0
|
26 |
//
|
sl@0
|
27 |
// Implementation of CImplementationClassTwelve
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
Safe construction which leaves nothing upon the cleanup stack
|
sl@0
|
31 |
@param aInitParams Initialization parameters
|
sl@0
|
32 |
@return CImplementationClassTwelve* a pointer to the fully instantiated CImplementationClassTwelve object
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
CImplementationClassTwelve* CImplementationClassTwelve::NewL(TAny* aInitParams)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
CImplementationClassTwelve* self=new(ELeave) CImplementationClassTwelve();
|
sl@0
|
37 |
CleanupStack::PushL(self);
|
sl@0
|
38 |
self->ConstructL(aInitParams);
|
sl@0
|
39 |
CleanupStack::Pop(self);
|
sl@0
|
40 |
return self;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
Destructor of CImplementationClassTwelve
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
CImplementationClassTwelve::~CImplementationClassTwelve()
|
sl@0
|
47 |
{
|
sl@0
|
48 |
delete iInternalDescriptor;
|
sl@0
|
49 |
Dll::SetTls(NULL);
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
Default Constructor : usable only by derived classes
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
CImplementationClassTwelve::CImplementationClassTwelve()
|
sl@0
|
56 |
: CExampleInterface()
|
sl@0
|
57 |
{
|
sl@0
|
58 |
//set the extended interface Uid
|
sl@0
|
59 |
iExtendedInterfaceUid.iUid = 0x10009E44;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
/**
|
sl@0
|
63 |
Safely complete the initialization of the constructed object.
|
sl@0
|
64 |
@param aInitParams Initialization parameters
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
void CImplementationClassTwelve::ConstructL(TAny* aInitParams)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*,aInitParams);
|
sl@0
|
69 |
if(params)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
if(params->descriptor)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
iInternalDescriptor = params->descriptor->AllocL();
|
sl@0
|
74 |
}
|
sl@0
|
75 |
}
|
sl@0
|
76 |
User::LeaveIfError(Dll::SetTls(&iTLSInt));
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
Overload of the pure interface method.Representative of a method provided on
|
sl@0
|
81 |
the interface by the interface definer.
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
void CImplementationClassTwelve::DoMethodL()
|
sl@0
|
84 |
{
|
sl@0
|
85 |
// Access TLS to ensure it has been set properly
|
sl@0
|
86 |
ASSERT(Dll::Tls()!=NULL);
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
/**
|
sl@0
|
90 |
Overload of the pure interface method asynchronous function which
|
sl@0
|
91 |
an interface definer could specify.
|
sl@0
|
92 |
@return TInt KErrNone for success.
|
sl@0
|
93 |
*/
|
sl@0
|
94 |
TInt CImplementationClassTwelve::FireAndForget()
|
sl@0
|
95 |
{
|
sl@0
|
96 |
return KErrNone;
|
sl@0
|
97 |
}
|
sl@0
|
98 |
|
sl@0
|
99 |
// Provide the CActive overloads
|
sl@0
|
100 |
void CImplementationClassTwelve::RunL()
|
sl@0
|
101 |
{
|
sl@0
|
102 |
// Do nothing : should never be called
|
sl@0
|
103 |
__ASSERT_DEBUG(EFalse,User::Invariant());
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
void CImplementationClassTwelve::DoCancel()
|
sl@0
|
107 |
{
|
sl@0
|
108 |
// Do nothing
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
TInt CImplementationClassTwelve::RunError(TInt /*aError*/)
|
sl@0
|
112 |
{
|
sl@0
|
113 |
return KErrNone;
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
To verify the object returned by ECOM.
|
sl@0
|
118 |
@return TUid (ECOM's Implementation Uid for this class.)
|
sl@0
|
119 |
*/
|
sl@0
|
120 |
TUid CImplementationClassTwelve::ImplId()
|
sl@0
|
121 |
{
|
sl@0
|
122 |
return KImplUid1;
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
/**
|
sl@0
|
126 |
Extended interface method. Called to verify the Extended interface.
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
void CImplementationClassTwelve::DoMethodExtended()
|
sl@0
|
129 |
{
|
sl@0
|
130 |
//check the extended interface uid has been set properly
|
sl@0
|
131 |
ASSERT(iExtendedInterfaceUid.iUid == 0x10009E44);
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
/**
|
sl@0
|
135 |
Get the extended interface. This method will be called by ECOM, so the method must
|
sl@0
|
136 |
follow the signature defined by TProxyExtendedInterfaceGetPtrL. This must be a static
|
sl@0
|
137 |
method since it is used in the proxy table.
|
sl@0
|
138 |
@param aObject A pointer to the instantiation interface (CImplementationClassTwelve
|
sl@0
|
139 |
in this case) instance. This will be provided by ECOM. It must be provided
|
sl@0
|
140 |
as a parameter, as this method is a static method (and must be a static
|
sl@0
|
141 |
method because it is called by the proxy table).
|
sl@0
|
142 |
@param aExtendedInterface The extended interface to fetch. Must be a unique UID.
|
sl@0
|
143 |
@param aBitFlags Flags used for communication between plugin's and ECOM. Currently
|
sl@0
|
144 |
used to signal if an extended interface requires release.
|
sl@0
|
145 |
@param aReleaseObject return parameter, provides ECOM with the object to destroy
|
sl@0
|
146 |
if the interface requires to be released.
|
sl@0
|
147 |
@return TAny* a pointer to the fully constructed extended interface object
|
sl@0
|
148 |
*/
|
sl@0
|
149 |
TAny* CImplementationClassTwelve::GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& aBitFlags,TAny*& aReleaseObject)
|
sl@0
|
150 |
|
sl@0
|
151 |
{
|
sl@0
|
152 |
//Initialise the release bit
|
sl@0
|
153 |
aBitFlags = aBitFlags & 0xFFFFFFFE;
|
sl@0
|
154 |
TAny* ret = NULL;
|
sl@0
|
155 |
switch (aExtendedInterface.iUid)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
case 0x10009E44:
|
sl@0
|
158 |
{
|
sl@0
|
159 |
// No release is required, so do not modify aBitFlags.
|
sl@0
|
160 |
ret = static_cast<MExampleInterfaceExtended*>(static_cast<CImplementationClassTwelve*>(aObject));
|
sl@0
|
161 |
break;
|
sl@0
|
162 |
}
|
sl@0
|
163 |
case 0x10009E45:
|
sl@0
|
164 |
{
|
sl@0
|
165 |
// Indicate to caller that release is required
|
sl@0
|
166 |
aBitFlags = aBitFlags | KReleaseRequiredMask;
|
sl@0
|
167 |
|
sl@0
|
168 |
CImplementationClassTwelveExtended *classExt = CImplementationClassTwelveExtended::NewL();
|
sl@0
|
169 |
// Must set the release object for ECOM to release later, this will not be the same as the interface object that is returned.
|
sl@0
|
170 |
aReleaseObject = classExt;
|
sl@0
|
171 |
|
sl@0
|
172 |
ret = static_cast<MExampleInterfaceExtended2*>(classExt);
|
sl@0
|
173 |
break;
|
sl@0
|
174 |
}
|
sl@0
|
175 |
case 0x10009E46:
|
sl@0
|
176 |
{
|
sl@0
|
177 |
// Indicate to caller that release is required
|
sl@0
|
178 |
aBitFlags = aBitFlags | KReleaseRequiredMask;
|
sl@0
|
179 |
|
sl@0
|
180 |
CImplementationClassTwelveExtended2 *classExt = CImplementationClassTwelveExtended2::NewL();
|
sl@0
|
181 |
// Must set the release object for ECOM to release later, this will not be the same as the interface object that is returned.
|
sl@0
|
182 |
aReleaseObject = classExt;
|
sl@0
|
183 |
|
sl@0
|
184 |
ret = static_cast<MExampleInterfaceExtended2*>(classExt);
|
sl@0
|
185 |
break;
|
sl@0
|
186 |
}
|
sl@0
|
187 |
default:
|
sl@0
|
188 |
{
|
sl@0
|
189 |
break;
|
sl@0
|
190 |
}
|
sl@0
|
191 |
}
|
sl@0
|
192 |
return ret;
|
sl@0
|
193 |
}
|
sl@0
|
194 |
|
sl@0
|
195 |
/**
|
sl@0
|
196 |
Release the specified extended interface. This method will be called by ECOM, so the method must
|
sl@0
|
197 |
follow the signature defined by TProxyExtendedInterfaceReleasePtr. This must be a static
|
sl@0
|
198 |
method since it is used in the proxy table.
|
sl@0
|
199 |
method.
|
sl@0
|
200 |
@param aReleaseObject provides ECOM with the object to destroy
|
sl@0
|
201 |
if the interface requires to be released.
|
sl@0
|
202 |
@param aExtendedInterface extended interface that is to be released
|
sl@0
|
203 |
@return TAny* a pointer to the fully constructed extended interface object
|
sl@0
|
204 |
*/
|
sl@0
|
205 |
void CImplementationClassTwelve::ReleaseExtendedInterface(TAny* aReleaseObject,const TUid& aExtendedInterface)
|
sl@0
|
206 |
{
|
sl@0
|
207 |
switch (aExtendedInterface.iUid)
|
sl@0
|
208 |
{
|
sl@0
|
209 |
case 0x10009E45:
|
sl@0
|
210 |
{
|
sl@0
|
211 |
// this object is an interface that was a separate object from the main instantiated object, and must be cleaned up.
|
sl@0
|
212 |
CImplementationClassTwelveExtended* classExt = static_cast<CImplementationClassTwelveExtended*>(aReleaseObject);
|
sl@0
|
213 |
delete classExt;
|
sl@0
|
214 |
break;
|
sl@0
|
215 |
}
|
sl@0
|
216 |
case 0x10009E46:
|
sl@0
|
217 |
{
|
sl@0
|
218 |
// this object is an interface that was a separate object from the main instantiated object, and must be cleaned up.
|
sl@0
|
219 |
CImplementationClassTwelveExtended2* classExt = static_cast<CImplementationClassTwelveExtended2*>(aReleaseObject);
|
sl@0
|
220 |
delete classExt;
|
sl@0
|
221 |
break;
|
sl@0
|
222 |
}
|
sl@0
|
223 |
default:
|
sl@0
|
224 |
{
|
sl@0
|
225 |
break;
|
sl@0
|
226 |
}
|
sl@0
|
227 |
}
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
|
sl@0
|
231 |
// __________________________________________________________________________
|
sl@0
|
232 |
//
|
sl@0
|
233 |
// Implementation of CImplementationClassTwelveExtended
|
sl@0
|
234 |
|
sl@0
|
235 |
/**
|
sl@0
|
236 |
Safe construction which leaves nothing upon the cleanup stack
|
sl@0
|
237 |
@return CImplementationClassTwelve* a pointer to the fully instantiated CImplementationClassTwelve object
|
sl@0
|
238 |
*/
|
sl@0
|
239 |
CImplementationClassTwelveExtended* CImplementationClassTwelveExtended::NewL()
|
sl@0
|
240 |
|
sl@0
|
241 |
{
|
sl@0
|
242 |
CImplementationClassTwelveExtended* self=new(ELeave) CImplementationClassTwelveExtended(); // calls c'tor
|
sl@0
|
243 |
return self;
|
sl@0
|
244 |
}
|
sl@0
|
245 |
|
sl@0
|
246 |
/**
|
sl@0
|
247 |
Destructor of CImplementationClassTwelveExtended
|
sl@0
|
248 |
*/
|
sl@0
|
249 |
CImplementationClassTwelveExtended::~CImplementationClassTwelveExtended()
|
sl@0
|
250 |
{
|
sl@0
|
251 |
// do nothing
|
sl@0
|
252 |
}
|
sl@0
|
253 |
|
sl@0
|
254 |
/**
|
sl@0
|
255 |
Default Constructor : usable only by derived classes
|
sl@0
|
256 |
*/
|
sl@0
|
257 |
CImplementationClassTwelveExtended::CImplementationClassTwelveExtended()
|
sl@0
|
258 |
{
|
sl@0
|
259 |
//set the extended interface uid
|
sl@0
|
260 |
iExtendedInterfaceUid.iUid = 0x10009E45;
|
sl@0
|
261 |
}
|
sl@0
|
262 |
|
sl@0
|
263 |
/**
|
sl@0
|
264 |
Extended interface.
|
sl@0
|
265 |
*/
|
sl@0
|
266 |
void CImplementationClassTwelveExtended::DoMethodExtended2()
|
sl@0
|
267 |
{
|
sl@0
|
268 |
//check the extended interface uid has been set properly
|
sl@0
|
269 |
ASSERT(iExtendedInterfaceUid.iUid == 0x10009E45);
|
sl@0
|
270 |
}
|
sl@0
|
271 |
|
sl@0
|
272 |
// __________________________________________________________________________
|
sl@0
|
273 |
//
|
sl@0
|
274 |
// Implementation of CImplementationClassTwelveExtended2
|
sl@0
|
275 |
|
sl@0
|
276 |
/**
|
sl@0
|
277 |
Safe construction which leaves nothing upon the cleanup stack
|
sl@0
|
278 |
@return CImplementationClassTwelveExtended2* a pointer to the fully instantiated CImplementationClassTwelve object
|
sl@0
|
279 |
*/
|
sl@0
|
280 |
CImplementationClassTwelveExtended2* CImplementationClassTwelveExtended2::NewL()
|
sl@0
|
281 |
{
|
sl@0
|
282 |
CImplementationClassTwelveExtended2* self=new(ELeave) CImplementationClassTwelveExtended2(); // calls c'tor
|
sl@0
|
283 |
return self;
|
sl@0
|
284 |
}
|
sl@0
|
285 |
|
sl@0
|
286 |
/**
|
sl@0
|
287 |
Destructor of CImplementationClassTwelveExtended2
|
sl@0
|
288 |
*/
|
sl@0
|
289 |
CImplementationClassTwelveExtended2::~CImplementationClassTwelveExtended2()
|
sl@0
|
290 |
{
|
sl@0
|
291 |
// do nothing
|
sl@0
|
292 |
}
|
sl@0
|
293 |
|
sl@0
|
294 |
/**
|
sl@0
|
295 |
Default Constructor : usable only by derived classes
|
sl@0
|
296 |
*/
|
sl@0
|
297 |
CImplementationClassTwelveExtended2::CImplementationClassTwelveExtended2()
|
sl@0
|
298 |
{
|
sl@0
|
299 |
//set the extended interface uid
|
sl@0
|
300 |
iExtendedInterfaceUid.iUid = 0x10009E46;
|
sl@0
|
301 |
}
|
sl@0
|
302 |
|
sl@0
|
303 |
/**
|
sl@0
|
304 |
Extended interface.
|
sl@0
|
305 |
*/
|
sl@0
|
306 |
void CImplementationClassTwelveExtended2::DoMethodExtended2()
|
sl@0
|
307 |
{
|
sl@0
|
308 |
//check the extended interface uid has been set properly
|
sl@0
|
309 |
ASSERT(iExtendedInterfaceUid.iUid == 0x10009E46);
|
sl@0
|
310 |
}
|
sl@0
|
311 |
|
sl@0
|
312 |
|
sl@0
|
313 |
// __________________________________________________________________________
|
sl@0
|
314 |
// Implementation of CImplementationClassTwelveBasic
|
sl@0
|
315 |
|
sl@0
|
316 |
/**
|
sl@0
|
317 |
Safe construction which leaves nothing upon the cleanup stack
|
sl@0
|
318 |
@param aInitParams The parameter struct used for initialising this object
|
sl@0
|
319 |
@return CImplementationClassTwelveBasic* a pointer to the fully instantiated CImplementationClassTwelveBasic object
|
sl@0
|
320 |
*/
|
sl@0
|
321 |
CImplementationClassTwelveBasic* CImplementationClassTwelveBasic::NewL(TAny* aInitParams)
|
sl@0
|
322 |
{
|
sl@0
|
323 |
CImplementationClassTwelveBasic* self=new(ELeave) CImplementationClassTwelveBasic();
|
sl@0
|
324 |
CleanupStack::PushL(self);
|
sl@0
|
325 |
self->ConstructL(aInitParams);
|
sl@0
|
326 |
CleanupStack::Pop(self);
|
sl@0
|
327 |
return self;
|
sl@0
|
328 |
}
|
sl@0
|
329 |
|
sl@0
|
330 |
/**
|
sl@0
|
331 |
Destructor of CImplementationClassTwelveBasic
|
sl@0
|
332 |
*/
|
sl@0
|
333 |
CImplementationClassTwelveBasic::~CImplementationClassTwelveBasic()
|
sl@0
|
334 |
{
|
sl@0
|
335 |
delete iInternalDescriptor;
|
sl@0
|
336 |
Dll::FreeTls();
|
sl@0
|
337 |
}
|
sl@0
|
338 |
|
sl@0
|
339 |
/**
|
sl@0
|
340 |
Default Constructor : usable only by derived classes
|
sl@0
|
341 |
*/
|
sl@0
|
342 |
CImplementationClassTwelveBasic::CImplementationClassTwelveBasic()
|
sl@0
|
343 |
: CExampleInterface()
|
sl@0
|
344 |
{
|
sl@0
|
345 |
}
|
sl@0
|
346 |
|
sl@0
|
347 |
/**
|
sl@0
|
348 |
Completes the safe construction of the CImplementationClassTwelveBasic object
|
sl@0
|
349 |
@param aInitParams The parameter struct used for initialising this object
|
sl@0
|
350 |
*/
|
sl@0
|
351 |
void CImplementationClassTwelveBasic::ConstructL(TAny* aInitParams)
|
sl@0
|
352 |
{
|
sl@0
|
353 |
TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*, aInitParams);
|
sl@0
|
354 |
if(params)
|
sl@0
|
355 |
{
|
sl@0
|
356 |
if(params->descriptor)
|
sl@0
|
357 |
{
|
sl@0
|
358 |
iInternalDescriptor = params->descriptor->AllocL();
|
sl@0
|
359 |
}
|
sl@0
|
360 |
}
|
sl@0
|
361 |
User::LeaveIfError(Dll::SetTls(&iTLSInt));
|
sl@0
|
362 |
}
|
sl@0
|
363 |
|
sl@0
|
364 |
/**
|
sl@0
|
365 |
Overload of the pure interface method.Representative of a method provided on
|
sl@0
|
366 |
the interface by the interface definer.
|
sl@0
|
367 |
*/
|
sl@0
|
368 |
void CImplementationClassTwelveBasic::DoMethodL()
|
sl@0
|
369 |
{
|
sl@0
|
370 |
// Access TLS to ensure it has been set properly
|
sl@0
|
371 |
ASSERT(Dll::Tls() != NULL);
|
sl@0
|
372 |
}
|
sl@0
|
373 |
|
sl@0
|
374 |
/**
|
sl@0
|
375 |
Overload of the pure interface method asynchronous function which
|
sl@0
|
376 |
an interface definer could specify.
|
sl@0
|
377 |
@return TInt KErrNone for success.
|
sl@0
|
378 |
*/
|
sl@0
|
379 |
TInt CImplementationClassTwelveBasic::FireAndForget()
|
sl@0
|
380 |
{
|
sl@0
|
381 |
return KErrNone;
|
sl@0
|
382 |
}
|
sl@0
|
383 |
|
sl@0
|
384 |
// Provide the CActive overloads
|
sl@0
|
385 |
void CImplementationClassTwelveBasic::RunL()
|
sl@0
|
386 |
{
|
sl@0
|
387 |
// Do nothing : should never be called
|
sl@0
|
388 |
__ASSERT_DEBUG(EFalse,User::Invariant());
|
sl@0
|
389 |
}
|
sl@0
|
390 |
|
sl@0
|
391 |
void CImplementationClassTwelveBasic::DoCancel()
|
sl@0
|
392 |
{
|
sl@0
|
393 |
// Do nothing
|
sl@0
|
394 |
}
|
sl@0
|
395 |
|
sl@0
|
396 |
TInt CImplementationClassTwelveBasic::RunError(TInt /*aError*/)
|
sl@0
|
397 |
{
|
sl@0
|
398 |
return KErrNone;
|
sl@0
|
399 |
}
|
sl@0
|
400 |
|
sl@0
|
401 |
/**
|
sl@0
|
402 |
To verify the object returned by ECOM.
|
sl@0
|
403 |
@return TUid (ECOM's Implementation Uid for this class.)
|
sl@0
|
404 |
*/
|
sl@0
|
405 |
TUid CImplementationClassTwelveBasic::ImplId()
|
sl@0
|
406 |
{
|
sl@0
|
407 |
return KImplUid2;
|
sl@0
|
408 |
}
|
sl@0
|
409 |
|
sl@0
|
410 |
// __________________________________________________________________________
|
sl@0
|
411 |
// Implementation of CImplementationClassTwelve2
|
sl@0
|
412 |
|
sl@0
|
413 |
/**
|
sl@0
|
414 |
Standardised safe construction which leaves nothing the cleanup stack.
|
sl@0
|
415 |
@param aInitParams The parameter struct used for initialising this object
|
sl@0
|
416 |
@return CImplementationClassTwelve2* The class instance.
|
sl@0
|
417 |
*/
|
sl@0
|
418 |
CImplementationClassTwelve2* CImplementationClassTwelve2::NewL(TAny* aInitParams)
|
sl@0
|
419 |
{
|
sl@0
|
420 |
CImplementationClassTwelve2* self=new(ELeave) CImplementationClassTwelve2(); // calls c'tor
|
sl@0
|
421 |
CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
|
sl@0
|
422 |
self->ConstructL(aInitParams); // Complete the 'construction'.
|
sl@0
|
423 |
CleanupStack::Pop(self);
|
sl@0
|
424 |
return self;
|
sl@0
|
425 |
}
|
sl@0
|
426 |
/**
|
sl@0
|
427 |
Destructor of CImplementationClassTwelve2
|
sl@0
|
428 |
*/
|
sl@0
|
429 |
CImplementationClassTwelve2::~CImplementationClassTwelve2()
|
sl@0
|
430 |
{
|
sl@0
|
431 |
delete iInternalDescriptor;
|
sl@0
|
432 |
Dll::FreeTls();
|
sl@0
|
433 |
}
|
sl@0
|
434 |
|
sl@0
|
435 |
/**
|
sl@0
|
436 |
Default Constructor
|
sl@0
|
437 |
*/
|
sl@0
|
438 |
CImplementationClassTwelve2::CImplementationClassTwelve2()
|
sl@0
|
439 |
: CExampleInterface()
|
sl@0
|
440 |
{
|
sl@0
|
441 |
//set the extended interface uid
|
sl@0
|
442 |
iExtendedInterfaceUid.iUid = 0x10009E44;
|
sl@0
|
443 |
}
|
sl@0
|
444 |
|
sl@0
|
445 |
/**
|
sl@0
|
446 |
Completes the safe construction of the CImplementationClassTwelveBasic object
|
sl@0
|
447 |
@param aInitParams The parameter struct used for initialising this object
|
sl@0
|
448 |
*/
|
sl@0
|
449 |
void CImplementationClassTwelve2::ConstructL(TAny* aInitParams)
|
sl@0
|
450 |
{
|
sl@0
|
451 |
TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*, aInitParams);
|
sl@0
|
452 |
if(params)
|
sl@0
|
453 |
{
|
sl@0
|
454 |
if(params->descriptor)
|
sl@0
|
455 |
iInternalDescriptor = params->descriptor->AllocL();
|
sl@0
|
456 |
}
|
sl@0
|
457 |
User::LeaveIfError(Dll::SetTls(&iTLSInt));
|
sl@0
|
458 |
}
|
sl@0
|
459 |
|
sl@0
|
460 |
/**
|
sl@0
|
461 |
Overload of the pure interface method.Representative of a method provided on
|
sl@0
|
462 |
the interface by the interface definer.
|
sl@0
|
463 |
*/
|
sl@0
|
464 |
void CImplementationClassTwelve2::DoMethodL()
|
sl@0
|
465 |
{
|
sl@0
|
466 |
// Access TLS to ensure it has been set properly
|
sl@0
|
467 |
ASSERT(Dll::Tls()!=NULL);
|
sl@0
|
468 |
}
|
sl@0
|
469 |
|
sl@0
|
470 |
/**
|
sl@0
|
471 |
Overload of the pure interface method asynchronous function which
|
sl@0
|
472 |
an interface definer could specify.
|
sl@0
|
473 |
@return TInt KErrNone for success.
|
sl@0
|
474 |
*/
|
sl@0
|
475 |
TInt CImplementationClassTwelve2::FireAndForget()
|
sl@0
|
476 |
{
|
sl@0
|
477 |
return KErrNone;
|
sl@0
|
478 |
}
|
sl@0
|
479 |
|
sl@0
|
480 |
// Provide the CActive overloads
|
sl@0
|
481 |
void CImplementationClassTwelve2::RunL()
|
sl@0
|
482 |
{
|
sl@0
|
483 |
// Do nothing : should never be called
|
sl@0
|
484 |
__ASSERT_DEBUG(EFalse,User::Invariant());
|
sl@0
|
485 |
}
|
sl@0
|
486 |
|
sl@0
|
487 |
void CImplementationClassTwelve2::DoCancel()
|
sl@0
|
488 |
{
|
sl@0
|
489 |
// Do nothing
|
sl@0
|
490 |
}
|
sl@0
|
491 |
|
sl@0
|
492 |
TInt CImplementationClassTwelve2::RunError(TInt /*aError*/)
|
sl@0
|
493 |
{
|
sl@0
|
494 |
return KErrNone;
|
sl@0
|
495 |
}
|
sl@0
|
496 |
|
sl@0
|
497 |
/**
|
sl@0
|
498 |
To verify the object returned by ECOM.
|
sl@0
|
499 |
@return TUid (ECOM's Implementation Uid for this class.)
|
sl@0
|
500 |
*/
|
sl@0
|
501 |
TUid CImplementationClassTwelve2::ImplId()
|
sl@0
|
502 |
{
|
sl@0
|
503 |
return KImplUid3;
|
sl@0
|
504 |
}
|
sl@0
|
505 |
|
sl@0
|
506 |
/**
|
sl@0
|
507 |
Extended interface method. Called to verify the Extended interface.
|
sl@0
|
508 |
*/
|
sl@0
|
509 |
void CImplementationClassTwelve2::DoMethodExtended()
|
sl@0
|
510 |
{
|
sl@0
|
511 |
//check the extended interface uid has been set properly
|
sl@0
|
512 |
ASSERT(iExtendedInterfaceUid.iUid == 0x10009E44);
|
sl@0
|
513 |
}
|
sl@0
|
514 |
|
sl@0
|
515 |
/**
|
sl@0
|
516 |
Get the extended interface. This method will be called by ECOM, so the method must
|
sl@0
|
517 |
follow the signature defined by TProxyExtendedInterfaceGetPtrL.This must be a static
|
sl@0
|
518 |
method since it is used in the proxy table.
|
sl@0
|
519 |
@param aObject A pointer to the instantiation interface (CImplementationClassTwelve
|
sl@0
|
520 |
in this case) instance. This will be provided by ECOM. It must be provided
|
sl@0
|
521 |
as a parameter, as this method is a static method (and must be a static
|
sl@0
|
522 |
method because it is called by the proxy table).
|
sl@0
|
523 |
@param aExtendedInterface The extended interface to fetch. Must be a unique UID.
|
sl@0
|
524 |
@param aBitFlags Flags used for communication between plugin's and ECOM. Currently
|
sl@0
|
525 |
used to signal if an extended interface requires release.
|
sl@0
|
526 |
@param aReleaseObject return parameter, provides ECOM with the object to destroy
|
sl@0
|
527 |
if the interface requires to be released.
|
sl@0
|
528 |
@return TAny* a pointer to the fully constructed extended interface object
|
sl@0
|
529 |
*/
|
sl@0
|
530 |
TAny* CImplementationClassTwelve2::GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& /*aBitFlags*/,TAny*& /*releaseObject*/)
|
sl@0
|
531 |
{
|
sl@0
|
532 |
TAny* ret = NULL;
|
sl@0
|
533 |
switch (aExtendedInterface.iUid)
|
sl@0
|
534 |
{
|
sl@0
|
535 |
case 0x10009E44:
|
sl@0
|
536 |
{
|
sl@0
|
537 |
// No release is required, so do not modify aBitFlags.
|
sl@0
|
538 |
ret = static_cast<MExampleInterfaceExtended*>(static_cast<CImplementationClassTwelve2*>(aObject));
|
sl@0
|
539 |
break;
|
sl@0
|
540 |
}
|
sl@0
|
541 |
default:
|
sl@0
|
542 |
{
|
sl@0
|
543 |
break;
|
sl@0
|
544 |
}
|
sl@0
|
545 |
}
|
sl@0
|
546 |
return ret;
|
sl@0
|
547 |
}
|