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
|
sl@0
|
15 |
// to be provided by ECom.
|
sl@0
|
16 |
// 1. Using the CExampleInterface class as a base.
|
sl@0
|
17 |
// 2. Example of how extended interfaces could work.
|
sl@0
|
18 |
//
|
sl@0
|
19 |
//
|
sl@0
|
20 |
|
sl@0
|
21 |
/**
|
sl@0
|
22 |
@file
|
sl@0
|
23 |
@publishedAll
|
sl@0
|
24 |
*/
|
sl@0
|
25 |
|
sl@0
|
26 |
#include "Interface.h"
|
sl@0
|
27 |
#include "ecom/extendedinterfaceimplementationproxy.h"
|
sl@0
|
28 |
#include "TestUtilities.h" // For __FILE__LINE__
|
sl@0
|
29 |
|
sl@0
|
30 |
const TUid KImplUid1 = {0x10009E38};
|
sl@0
|
31 |
const TUid KImplUid2 = {0x10009E3A};
|
sl@0
|
32 |
const TUid KImplUid3 = {0x10009E3B};
|
sl@0
|
33 |
|
sl@0
|
34 |
// ____________________________________________________________________________
|
sl@0
|
35 |
//
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
Intended usage: This class implements the functionality promised by
|
sl@0
|
38 |
the CExampleInterface and MExampleInterfaceExtended definition classes.
|
sl@0
|
39 |
It does little apart from provides a test instance
|
sl@0
|
40 |
which may be retrieved and run for testing purposes. This is an example of
|
sl@0
|
41 |
how extended interface is implemented in the same class as the original and
|
sl@0
|
42 |
how to get/release the extended interface which is implemented in different class.
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
class CImplementationClassTen : public CExampleInterface, public MExampleInterfaceExtended
|
sl@0
|
45 |
{
|
sl@0
|
46 |
// Methods
|
sl@0
|
47 |
public:
|
sl@0
|
48 |
static CImplementationClassTen* NewL(TAny* aInitParams);
|
sl@0
|
49 |
virtual ~CImplementationClassTen();
|
sl@0
|
50 |
void DoMethodL();
|
sl@0
|
51 |
TInt FireAndForget();
|
sl@0
|
52 |
TUid ImplId();
|
sl@0
|
53 |
virtual void DoMethodExtended(); //from MExampleInterfaceExtended
|
sl@0
|
54 |
static TAny* GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& aBitFlags,TAny*& releaseObject);
|
sl@0
|
55 |
static void ReleaseExtendedInterface(TAny* aObject, const TUid& aInterface);
|
sl@0
|
56 |
private:
|
sl@0
|
57 |
CImplementationClassTen();
|
sl@0
|
58 |
void ConstructL(TAny* aInitParams);
|
sl@0
|
59 |
// Provide the CActive overloads
|
sl@0
|
60 |
void RunL();
|
sl@0
|
61 |
void DoCancel();
|
sl@0
|
62 |
TInt RunError(TInt aError);
|
sl@0
|
63 |
private:
|
sl@0
|
64 |
/** A place for allocating some memory in the ConstructL */
|
sl@0
|
65 |
HBufC* iInternalDescriptor;
|
sl@0
|
66 |
/** An int to be stored in TLS to test its usage */
|
sl@0
|
67 |
TInt iTLSInt;
|
sl@0
|
68 |
/** Uid of the extended interface */
|
sl@0
|
69 |
TUid iExtendedInterfaceUid;
|
sl@0
|
70 |
}; // End of CImplementationClassTen definition
|
sl@0
|
71 |
|
sl@0
|
72 |
// ____________________________________________________________________________
|
sl@0
|
73 |
//
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
Intended usage: This class implements the functionality promised by
|
sl@0
|
76 |
the MExampleInterfaceExtended2 definition class. This is an extended interface of
|
sl@0
|
77 |
CImplementationClassTen. This is a sample extended interface that is
|
sl@0
|
78 |
separate from the main interface. This extended interface does nothing, but shows
|
sl@0
|
79 |
how one can set up a separately instantiated extended interface.
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
class CImplementationClassTenExtended : public CBase, public MExampleInterfaceExtended2
|
sl@0
|
82 |
{
|
sl@0
|
83 |
// Methods
|
sl@0
|
84 |
public:
|
sl@0
|
85 |
static CImplementationClassTenExtended* NewL();
|
sl@0
|
86 |
virtual ~CImplementationClassTenExtended();
|
sl@0
|
87 |
virtual void DoMethodExtended2(); //from MExampleInterfaceExtended2
|
sl@0
|
88 |
private:
|
sl@0
|
89 |
CImplementationClassTenExtended();
|
sl@0
|
90 |
// Attribute
|
sl@0
|
91 |
private:
|
sl@0
|
92 |
TUid iExtendedInterfaceUid;
|
sl@0
|
93 |
}; // End of CImplementationClassTenExtended definition
|
sl@0
|
94 |
|
sl@0
|
95 |
// ____________________________________________________________________________
|
sl@0
|
96 |
//
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
Intended usage: This class implements the functionality promised by
|
sl@0
|
99 |
the MExampleInterfaceExtended2 definition class. This is an extended interface of
|
sl@0
|
100 |
CImplementationClassTen. It is the same as CImplementationClassTenExtended,
|
sl@0
|
101 |
but just shows that it is possible to have multiple extended interfaces in one implementation.
|
sl@0
|
102 |
*/
|
sl@0
|
103 |
class CImplementationClassTenExtended2 : public CBase, public MExampleInterfaceExtended2
|
sl@0
|
104 |
{
|
sl@0
|
105 |
// Methods
|
sl@0
|
106 |
public:
|
sl@0
|
107 |
static CImplementationClassTenExtended2* NewL();
|
sl@0
|
108 |
virtual ~CImplementationClassTenExtended2();
|
sl@0
|
109 |
virtual void DoMethodExtended2(); //from MExampleInterfaceExtended2
|
sl@0
|
110 |
private:
|
sl@0
|
111 |
CImplementationClassTenExtended2();
|
sl@0
|
112 |
// Attribute
|
sl@0
|
113 |
private:
|
sl@0
|
114 |
TUid iExtendedInterfaceUid;
|
sl@0
|
115 |
}; // End of CImplementationClassTenExtended2 definition
|
sl@0
|
116 |
|
sl@0
|
117 |
|
sl@0
|
118 |
// __________________________________________________________________________
|
sl@0
|
119 |
// Implementation
|
sl@0
|
120 |
|
sl@0
|
121 |
/**
|
sl@0
|
122 |
Safe construction which leaves nothing upon the cleanup stack
|
sl@0
|
123 |
@param aInitParams Initialization parameters
|
sl@0
|
124 |
@return CImplementationClassTen* a pointer to the fully instantiated CImplementationClassTen object
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
CImplementationClassTen* CImplementationClassTen::NewL(TAny* aInitParams)
|
sl@0
|
127 |
{
|
sl@0
|
128 |
CImplementationClassTen* self=new(ELeave) CImplementationClassTen();
|
sl@0
|
129 |
CleanupStack::PushL(self);
|
sl@0
|
130 |
self->ConstructL(aInitParams);
|
sl@0
|
131 |
CleanupStack::Pop(self);
|
sl@0
|
132 |
return self;
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
/**
|
sl@0
|
136 |
Destructor of CImplementationClassTen
|
sl@0
|
137 |
*/
|
sl@0
|
138 |
CImplementationClassTen::~CImplementationClassTen()
|
sl@0
|
139 |
{
|
sl@0
|
140 |
delete iInternalDescriptor;
|
sl@0
|
141 |
Dll::FreeTls();
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
/**
|
sl@0
|
145 |
Default Constructor : usable only by derived classes
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
CImplementationClassTen::CImplementationClassTen()
|
sl@0
|
148 |
: CExampleInterface()
|
sl@0
|
149 |
{
|
sl@0
|
150 |
//set the extended interface Uid
|
sl@0
|
151 |
iExtendedInterfaceUid.iUid = 0x10009E44;
|
sl@0
|
152 |
}
|
sl@0
|
153 |
|
sl@0
|
154 |
/**
|
sl@0
|
155 |
Safely complete the initialization of the constructed object.
|
sl@0
|
156 |
@param aInitParams Initialization parameters
|
sl@0
|
157 |
*/
|
sl@0
|
158 |
void CImplementationClassTen::ConstructL(TAny* aInitParams)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*,aInitParams);
|
sl@0
|
161 |
if(params)
|
sl@0
|
162 |
{
|
sl@0
|
163 |
if(params->descriptor)
|
sl@0
|
164 |
{
|
sl@0
|
165 |
iInternalDescriptor = params->descriptor->AllocL();
|
sl@0
|
166 |
}
|
sl@0
|
167 |
}
|
sl@0
|
168 |
User::LeaveIfError(Dll::SetTls(&iTLSInt));
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
/**
|
sl@0
|
172 |
Overload of the pure interface method.Representative of a method provided on
|
sl@0
|
173 |
the interface by the interface definer.
|
sl@0
|
174 |
*/
|
sl@0
|
175 |
void CImplementationClassTen::DoMethodL()
|
sl@0
|
176 |
{
|
sl@0
|
177 |
// Access TLS to ensure it has been set properly
|
sl@0
|
178 |
ASSERT(Dll::Tls() != NULL);
|
sl@0
|
179 |
}
|
sl@0
|
180 |
|
sl@0
|
181 |
/**
|
sl@0
|
182 |
Overload of the pure interface method asynchronous function which
|
sl@0
|
183 |
an interface definer could specify.
|
sl@0
|
184 |
@return TInt KErrNone for success.
|
sl@0
|
185 |
*/
|
sl@0
|
186 |
TInt CImplementationClassTen::FireAndForget()
|
sl@0
|
187 |
{
|
sl@0
|
188 |
return KErrNone;
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
// Provide the CActive overloads
|
sl@0
|
192 |
void CImplementationClassTen::RunL()
|
sl@0
|
193 |
{
|
sl@0
|
194 |
// Do nothing : should never be called
|
sl@0
|
195 |
__ASSERT_DEBUG(EFalse,User::Invariant());
|
sl@0
|
196 |
}
|
sl@0
|
197 |
|
sl@0
|
198 |
void CImplementationClassTen::DoCancel()
|
sl@0
|
199 |
{
|
sl@0
|
200 |
// Do nothing
|
sl@0
|
201 |
}
|
sl@0
|
202 |
|
sl@0
|
203 |
TInt CImplementationClassTen::RunError(TInt /*aError*/)
|
sl@0
|
204 |
{
|
sl@0
|
205 |
return KErrNone;
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
/**
|
sl@0
|
209 |
To verify the object returned by ECOM.
|
sl@0
|
210 |
@return TUid (ECOM's Implementation Uid for this class.)
|
sl@0
|
211 |
*/
|
sl@0
|
212 |
TUid CImplementationClassTen::ImplId()
|
sl@0
|
213 |
{
|
sl@0
|
214 |
return KImplUid1;
|
sl@0
|
215 |
}
|
sl@0
|
216 |
|
sl@0
|
217 |
/**
|
sl@0
|
218 |
Extended interface method. Called to verify the Extended interface.
|
sl@0
|
219 |
*/
|
sl@0
|
220 |
void CImplementationClassTen::DoMethodExtended()
|
sl@0
|
221 |
{
|
sl@0
|
222 |
//check the extended interface uid has been set properly
|
sl@0
|
223 |
ASSERT(iExtendedInterfaceUid.iUid == 0x10009E44);
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
/**
|
sl@0
|
227 |
Get the extended interface. This method will be called by ECOM, so the method must
|
sl@0
|
228 |
follow the signature defined by TProxyExtendedInterfaceGetPtrL. This must be a static
|
sl@0
|
229 |
method since it is used in the proxy table.
|
sl@0
|
230 |
@param aObject A pointer to the instantiation interface (CImplementationClassTen
|
sl@0
|
231 |
in this case) instance. This will be provided by ECOM. It must be provided
|
sl@0
|
232 |
as a parameter, as this method is a static method (and must be a static
|
sl@0
|
233 |
method because it is called by the proxy table).
|
sl@0
|
234 |
@param aExtendedInterface The extended interface to fetch. Must be a unique UID.
|
sl@0
|
235 |
@param aBitFlags Flags used for communication between plugin's and ECOM. Currently
|
sl@0
|
236 |
used to signal if an extended interface requires release.
|
sl@0
|
237 |
@param aReleaseObject return parameter, provides ECOM with the object to destroy
|
sl@0
|
238 |
if the interface requires to be released.
|
sl@0
|
239 |
@return TAny* a pointer to the fully constructed extended interface object
|
sl@0
|
240 |
*/
|
sl@0
|
241 |
TAny* CImplementationClassTen::GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& aBitFlags,TAny*& aReleaseObject)
|
sl@0
|
242 |
|
sl@0
|
243 |
{
|
sl@0
|
244 |
//Initialise the release bit
|
sl@0
|
245 |
aBitFlags = aBitFlags & 0xFFFFFFFE;
|
sl@0
|
246 |
TAny* ret = NULL;
|
sl@0
|
247 |
switch (aExtendedInterface.iUid)
|
sl@0
|
248 |
{
|
sl@0
|
249 |
case 0x10009E44:
|
sl@0
|
250 |
{
|
sl@0
|
251 |
// No release is required, so do not modify aBitFlags.
|
sl@0
|
252 |
ret = static_cast<MExampleInterfaceExtended*>(static_cast<CImplementationClassTen*>(aObject));
|
sl@0
|
253 |
break;
|
sl@0
|
254 |
}
|
sl@0
|
255 |
case 0x10009E45:
|
sl@0
|
256 |
{
|
sl@0
|
257 |
// Indicate to caller that release is required
|
sl@0
|
258 |
aBitFlags = aBitFlags | KReleaseRequiredMask;
|
sl@0
|
259 |
|
sl@0
|
260 |
CImplementationClassTenExtended *classExt = CImplementationClassTenExtended::NewL();
|
sl@0
|
261 |
// 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
|
262 |
aReleaseObject = classExt;
|
sl@0
|
263 |
|
sl@0
|
264 |
ret = static_cast<MExampleInterfaceExtended2*>(classExt);
|
sl@0
|
265 |
break;
|
sl@0
|
266 |
}
|
sl@0
|
267 |
case 0x10009E46:
|
sl@0
|
268 |
{
|
sl@0
|
269 |
// Indicate to caller that release is required
|
sl@0
|
270 |
aBitFlags = aBitFlags | KReleaseRequiredMask;
|
sl@0
|
271 |
|
sl@0
|
272 |
CImplementationClassTenExtended2 *classExt = CImplementationClassTenExtended2::NewL();
|
sl@0
|
273 |
// 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
|
274 |
aReleaseObject = classExt;
|
sl@0
|
275 |
|
sl@0
|
276 |
ret = static_cast<MExampleInterfaceExtended2*>(classExt);
|
sl@0
|
277 |
break;
|
sl@0
|
278 |
}
|
sl@0
|
279 |
default:
|
sl@0
|
280 |
{
|
sl@0
|
281 |
break;
|
sl@0
|
282 |
}
|
sl@0
|
283 |
}
|
sl@0
|
284 |
return ret;
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
/**
|
sl@0
|
288 |
Release the specified extended interface. This method will be called by ECOM, so the method must
|
sl@0
|
289 |
follow the signature defined by TProxyExtendedInterfaceReleasePtr. This must be a static
|
sl@0
|
290 |
method since it is used in the proxy table.
|
sl@0
|
291 |
method.
|
sl@0
|
292 |
@param aReleaseObject provides ECOM with the object to destroy
|
sl@0
|
293 |
if the interface requires to be released.
|
sl@0
|
294 |
@param aExtendedInterface extended interface that is to be released
|
sl@0
|
295 |
@return TAny* a pointer to the fully constructed extended interface object
|
sl@0
|
296 |
*/
|
sl@0
|
297 |
void CImplementationClassTen::ReleaseExtendedInterface(TAny* aReleaseObject,const TUid& aExtendedInterface)
|
sl@0
|
298 |
{
|
sl@0
|
299 |
switch (aExtendedInterface.iUid)
|
sl@0
|
300 |
{
|
sl@0
|
301 |
case 0x10009E45:
|
sl@0
|
302 |
{
|
sl@0
|
303 |
// this object is an interface that was a separate object from the main instantiated object, and must be cleaned up.
|
sl@0
|
304 |
CImplementationClassTenExtended* classExt = static_cast<CImplementationClassTenExtended*>(aReleaseObject);
|
sl@0
|
305 |
delete classExt;
|
sl@0
|
306 |
break;
|
sl@0
|
307 |
}
|
sl@0
|
308 |
case 0x10009E46:
|
sl@0
|
309 |
{
|
sl@0
|
310 |
// this object is an interface that was a separate object from the main instantiated object, and must be cleaned up.
|
sl@0
|
311 |
CImplementationClassTenExtended2* classExt = static_cast<CImplementationClassTenExtended2*>(aReleaseObject);
|
sl@0
|
312 |
delete classExt;
|
sl@0
|
313 |
break;
|
sl@0
|
314 |
}
|
sl@0
|
315 |
default:
|
sl@0
|
316 |
{
|
sl@0
|
317 |
break;
|
sl@0
|
318 |
}
|
sl@0
|
319 |
}
|
sl@0
|
320 |
}
|
sl@0
|
321 |
|
sl@0
|
322 |
|
sl@0
|
323 |
// __________________________________________________________________________
|
sl@0
|
324 |
//
|
sl@0
|
325 |
// Implementation of CImplementationClassTenExtended
|
sl@0
|
326 |
|
sl@0
|
327 |
/**
|
sl@0
|
328 |
Safe construction which leaves nothing upon the cleanup stack
|
sl@0
|
329 |
@return CImplementationClassTen* a pointer to the fully instantiated CImplementationClassTen object
|
sl@0
|
330 |
*/
|
sl@0
|
331 |
CImplementationClassTenExtended* CImplementationClassTenExtended::NewL()
|
sl@0
|
332 |
|
sl@0
|
333 |
{
|
sl@0
|
334 |
CImplementationClassTenExtended* self=new(ELeave) CImplementationClassTenExtended();
|
sl@0
|
335 |
return self;
|
sl@0
|
336 |
}
|
sl@0
|
337 |
|
sl@0
|
338 |
/**
|
sl@0
|
339 |
Destructor of CImplementationClassTenExtended
|
sl@0
|
340 |
*/
|
sl@0
|
341 |
CImplementationClassTenExtended::~CImplementationClassTenExtended()
|
sl@0
|
342 |
{
|
sl@0
|
343 |
// do nothing
|
sl@0
|
344 |
}
|
sl@0
|
345 |
|
sl@0
|
346 |
/**
|
sl@0
|
347 |
Default Constructor : usable only by derived classes
|
sl@0
|
348 |
*/
|
sl@0
|
349 |
CImplementationClassTenExtended::CImplementationClassTenExtended()
|
sl@0
|
350 |
{
|
sl@0
|
351 |
//set the extended interface uid
|
sl@0
|
352 |
iExtendedInterfaceUid.iUid = 0x10009E45;
|
sl@0
|
353 |
}
|
sl@0
|
354 |
|
sl@0
|
355 |
/**
|
sl@0
|
356 |
Extended interface.
|
sl@0
|
357 |
*/
|
sl@0
|
358 |
void CImplementationClassTenExtended::DoMethodExtended2()
|
sl@0
|
359 |
{
|
sl@0
|
360 |
//check the extended interface uid has been set properly
|
sl@0
|
361 |
ASSERT(iExtendedInterfaceUid.iUid == 0x10009E45);
|
sl@0
|
362 |
}
|
sl@0
|
363 |
|
sl@0
|
364 |
// __________________________________________________________________________
|
sl@0
|
365 |
//
|
sl@0
|
366 |
// Implementation of CImplementationClassTenExtended2
|
sl@0
|
367 |
|
sl@0
|
368 |
/**
|
sl@0
|
369 |
Safe construction which leaves nothing upon the cleanup stack
|
sl@0
|
370 |
@return CImplementationClassTenExtended2* a pointer to the fully instantiated CImplementationClassTen object
|
sl@0
|
371 |
*/
|
sl@0
|
372 |
CImplementationClassTenExtended2* CImplementationClassTenExtended2::NewL()
|
sl@0
|
373 |
{
|
sl@0
|
374 |
CImplementationClassTenExtended2* self=new(ELeave) CImplementationClassTenExtended2();
|
sl@0
|
375 |
return self;
|
sl@0
|
376 |
}
|
sl@0
|
377 |
|
sl@0
|
378 |
/**
|
sl@0
|
379 |
Destructor of CImplementationClassTenExtended2
|
sl@0
|
380 |
*/
|
sl@0
|
381 |
CImplementationClassTenExtended2::~CImplementationClassTenExtended2()
|
sl@0
|
382 |
{
|
sl@0
|
383 |
// do nothing
|
sl@0
|
384 |
}
|
sl@0
|
385 |
|
sl@0
|
386 |
/**
|
sl@0
|
387 |
Default Constructor : usable only by derived classes
|
sl@0
|
388 |
*/
|
sl@0
|
389 |
CImplementationClassTenExtended2::CImplementationClassTenExtended2()
|
sl@0
|
390 |
{
|
sl@0
|
391 |
//set the extended interface uid
|
sl@0
|
392 |
iExtendedInterfaceUid.iUid = 0x10009E46;
|
sl@0
|
393 |
}
|
sl@0
|
394 |
|
sl@0
|
395 |
/**
|
sl@0
|
396 |
Extended interface.
|
sl@0
|
397 |
*/
|
sl@0
|
398 |
void CImplementationClassTenExtended2::DoMethodExtended2()
|
sl@0
|
399 |
{
|
sl@0
|
400 |
//check the extended interface uid has been set properly
|
sl@0
|
401 |
ASSERT(iExtendedInterfaceUid.iUid == 0x10009E46);
|
sl@0
|
402 |
}
|
sl@0
|
403 |
|
sl@0
|
404 |
// CImplementationClassTenBasic implementation
|
sl@0
|
405 |
// ____________________________________________________________________________
|
sl@0
|
406 |
//
|
sl@0
|
407 |
/**
|
sl@0
|
408 |
This class implements the functionality promised by
|
sl@0
|
409 |
the CExampleInterface definition class. It does little apart from provides a test instance
|
sl@0
|
410 |
which may be retrieved and run for testing purposes. This is an example that no extended interface
|
sl@0
|
411 |
is implemented in this class.
|
sl@0
|
412 |
*/
|
sl@0
|
413 |
class CImplementationClassTenBasic : public CExampleInterface
|
sl@0
|
414 |
{
|
sl@0
|
415 |
// Methods
|
sl@0
|
416 |
public:
|
sl@0
|
417 |
static CImplementationClassTenBasic* NewL(TAny* aInitParams);
|
sl@0
|
418 |
virtual ~CImplementationClassTenBasic();
|
sl@0
|
419 |
void DoMethodL();
|
sl@0
|
420 |
TInt FireAndForget();
|
sl@0
|
421 |
TUid ImplId();
|
sl@0
|
422 |
private:
|
sl@0
|
423 |
CImplementationClassTenBasic();
|
sl@0
|
424 |
void ConstructL(TAny* aInitParams);
|
sl@0
|
425 |
// Provide the CActive overloads
|
sl@0
|
426 |
void RunL();
|
sl@0
|
427 |
void DoCancel();
|
sl@0
|
428 |
TInt RunError(TInt aError);
|
sl@0
|
429 |
private:
|
sl@0
|
430 |
/** A place for allocating some memory in the ConstructL */
|
sl@0
|
431 |
HBufC* iInternalDescriptor;
|
sl@0
|
432 |
/** An int to be stored in TLS to test its usage */
|
sl@0
|
433 |
TInt iTLSInt;
|
sl@0
|
434 |
|
sl@0
|
435 |
}; // End of CImplementationClassTenBasic definition
|
sl@0
|
436 |
|
sl@0
|
437 |
// __________________________________________________________________________
|
sl@0
|
438 |
// Implementation
|
sl@0
|
439 |
|
sl@0
|
440 |
/**
|
sl@0
|
441 |
Safe construction which leaves nothing upon the cleanup stack
|
sl@0
|
442 |
@param aInitParams The parameter struct used for initialising this object
|
sl@0
|
443 |
@return CImplementationClassTenBasic* a pointer to the fully instantiated CImplementationClassTenBasic object
|
sl@0
|
444 |
*/
|
sl@0
|
445 |
CImplementationClassTenBasic* CImplementationClassTenBasic::NewL(TAny* aInitParams)
|
sl@0
|
446 |
{
|
sl@0
|
447 |
CImplementationClassTenBasic* self=new(ELeave) CImplementationClassTenBasic();
|
sl@0
|
448 |
CleanupStack::PushL(self);
|
sl@0
|
449 |
self->ConstructL(aInitParams);
|
sl@0
|
450 |
CleanupStack::Pop(self);
|
sl@0
|
451 |
return self;
|
sl@0
|
452 |
}
|
sl@0
|
453 |
|
sl@0
|
454 |
/**
|
sl@0
|
455 |
Destructor of CImplementationClassTenBasic
|
sl@0
|
456 |
*/
|
sl@0
|
457 |
CImplementationClassTenBasic::~CImplementationClassTenBasic()
|
sl@0
|
458 |
{
|
sl@0
|
459 |
delete iInternalDescriptor;
|
sl@0
|
460 |
Dll::FreeTls();
|
sl@0
|
461 |
}
|
sl@0
|
462 |
|
sl@0
|
463 |
/**
|
sl@0
|
464 |
Default Constructor : usable only by derived classes
|
sl@0
|
465 |
*/
|
sl@0
|
466 |
CImplementationClassTenBasic::CImplementationClassTenBasic()
|
sl@0
|
467 |
: CExampleInterface()
|
sl@0
|
468 |
{
|
sl@0
|
469 |
}
|
sl@0
|
470 |
|
sl@0
|
471 |
/**
|
sl@0
|
472 |
Completes the safe construction of the CImplementationClassTenBasic object
|
sl@0
|
473 |
@param aInitParams The parameter struct used for initialising this object
|
sl@0
|
474 |
*/
|
sl@0
|
475 |
void CImplementationClassTenBasic::ConstructL(TAny* aInitParams)
|
sl@0
|
476 |
{
|
sl@0
|
477 |
TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*, aInitParams);
|
sl@0
|
478 |
if(params)
|
sl@0
|
479 |
{
|
sl@0
|
480 |
if(params->descriptor)
|
sl@0
|
481 |
{
|
sl@0
|
482 |
iInternalDescriptor = params->descriptor->AllocL();
|
sl@0
|
483 |
}
|
sl@0
|
484 |
}
|
sl@0
|
485 |
|
sl@0
|
486 |
User::LeaveIfError(Dll::SetTls(&iTLSInt));
|
sl@0
|
487 |
}
|
sl@0
|
488 |
|
sl@0
|
489 |
/**
|
sl@0
|
490 |
Overload of the pure interface method.Representative of a method provided on
|
sl@0
|
491 |
the interface by the interface definer.
|
sl@0
|
492 |
*/
|
sl@0
|
493 |
void CImplementationClassTenBasic::DoMethodL()
|
sl@0
|
494 |
{
|
sl@0
|
495 |
// Access TLS to ensure it has been set properly
|
sl@0
|
496 |
ASSERT(Dll::Tls() != NULL);
|
sl@0
|
497 |
}
|
sl@0
|
498 |
|
sl@0
|
499 |
/**
|
sl@0
|
500 |
Overload of the pure interface method asynchronous function which
|
sl@0
|
501 |
an interface definer could specify.
|
sl@0
|
502 |
@return TInt KErrNone for success.
|
sl@0
|
503 |
*/
|
sl@0
|
504 |
TInt CImplementationClassTenBasic::FireAndForget()
|
sl@0
|
505 |
{
|
sl@0
|
506 |
return KErrNone;
|
sl@0
|
507 |
}
|
sl@0
|
508 |
|
sl@0
|
509 |
// Provide the CActive overloads
|
sl@0
|
510 |
void CImplementationClassTenBasic::RunL()
|
sl@0
|
511 |
{
|
sl@0
|
512 |
// Do nothing : should never be called
|
sl@0
|
513 |
__ASSERT_DEBUG(EFalse,User::Invariant());
|
sl@0
|
514 |
}
|
sl@0
|
515 |
|
sl@0
|
516 |
void CImplementationClassTenBasic::DoCancel()
|
sl@0
|
517 |
{
|
sl@0
|
518 |
// Do nothing
|
sl@0
|
519 |
}
|
sl@0
|
520 |
|
sl@0
|
521 |
TInt CImplementationClassTenBasic::RunError(TInt /*aError*/)
|
sl@0
|
522 |
{
|
sl@0
|
523 |
return KErrNone;
|
sl@0
|
524 |
}
|
sl@0
|
525 |
|
sl@0
|
526 |
/**
|
sl@0
|
527 |
To verify the object returned by ECOM.
|
sl@0
|
528 |
@return TUid (ECOM's Implementation Uid for this class.)
|
sl@0
|
529 |
*/
|
sl@0
|
530 |
TUid CImplementationClassTenBasic::ImplId()
|
sl@0
|
531 |
{
|
sl@0
|
532 |
return KImplUid2;
|
sl@0
|
533 |
}
|
sl@0
|
534 |
|
sl@0
|
535 |
// ____________________________________________________________________________
|
sl@0
|
536 |
//
|
sl@0
|
537 |
/**
|
sl@0
|
538 |
Intended usage: This class implements the functionality promised by
|
sl@0
|
539 |
the CExampleInterface defintion class. It does little apart from provides a test instance
|
sl@0
|
540 |
which may be retrieved and run for testing purposes.This is an example of
|
sl@0
|
541 |
how extended interface is implemented in the same class as the original.
|
sl@0
|
542 |
*/
|
sl@0
|
543 |
class CImplementationClassTen2 : public CExampleInterface, public MExampleInterfaceExtended
|
sl@0
|
544 |
{
|
sl@0
|
545 |
// Methods
|
sl@0
|
546 |
public:
|
sl@0
|
547 |
static CImplementationClassTen2* NewL(TAny* aInitParams);
|
sl@0
|
548 |
virtual ~CImplementationClassTen2();
|
sl@0
|
549 |
void DoMethodL();
|
sl@0
|
550 |
TInt FireAndForget();
|
sl@0
|
551 |
TUid ImplId();
|
sl@0
|
552 |
static TAny* GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& aBitFlags,TAny*& releaseObject);
|
sl@0
|
553 |
public:
|
sl@0
|
554 |
virtual void DoMethodExtended(); // From MExampleInterfaceExtended
|
sl@0
|
555 |
private:
|
sl@0
|
556 |
CImplementationClassTen2();
|
sl@0
|
557 |
void ConstructL(TAny* aInitParams);
|
sl@0
|
558 |
// Provide the CActive overloads
|
sl@0
|
559 |
void RunL();
|
sl@0
|
560 |
void DoCancel();
|
sl@0
|
561 |
TInt RunError(TInt aError);
|
sl@0
|
562 |
private:
|
sl@0
|
563 |
/** A place for allocating some memory in the ConstructL */
|
sl@0
|
564 |
HBufC* iInternalDescriptor;
|
sl@0
|
565 |
/** An int to be stored in TLS to test its usage */
|
sl@0
|
566 |
TInt iTLSInt;
|
sl@0
|
567 |
/** Uid of the extended interface */
|
sl@0
|
568 |
TUid iExtendedInterfaceUid;
|
sl@0
|
569 |
}; // End of CImplementationClassTen2 definition
|
sl@0
|
570 |
|
sl@0
|
571 |
// __________________________________________________________________________
|
sl@0
|
572 |
// Implementation
|
sl@0
|
573 |
|
sl@0
|
574 |
/**
|
sl@0
|
575 |
Standardised safe construction which leaves nothing the cleanup stack.
|
sl@0
|
576 |
@param aInitParams The parameter struct used for initialising this object
|
sl@0
|
577 |
@return CImplementationClassTen2* The class instance.
|
sl@0
|
578 |
*/
|
sl@0
|
579 |
CImplementationClassTen2* CImplementationClassTen2::NewL(TAny* aInitParams)
|
sl@0
|
580 |
{
|
sl@0
|
581 |
CImplementationClassTen2* self=new(ELeave) CImplementationClassTen2();
|
sl@0
|
582 |
CleanupStack::PushL(self);
|
sl@0
|
583 |
self->ConstructL(aInitParams);
|
sl@0
|
584 |
CleanupStack::Pop(self);
|
sl@0
|
585 |
return self;
|
sl@0
|
586 |
}
|
sl@0
|
587 |
/**
|
sl@0
|
588 |
Destructor of CImplementationClassTen2
|
sl@0
|
589 |
*/
|
sl@0
|
590 |
CImplementationClassTen2::~CImplementationClassTen2()
|
sl@0
|
591 |
{
|
sl@0
|
592 |
delete iInternalDescriptor;
|
sl@0
|
593 |
Dll::FreeTls();
|
sl@0
|
594 |
}
|
sl@0
|
595 |
|
sl@0
|
596 |
/**
|
sl@0
|
597 |
Default Constructor
|
sl@0
|
598 |
*/
|
sl@0
|
599 |
CImplementationClassTen2::CImplementationClassTen2()
|
sl@0
|
600 |
: CExampleInterface()
|
sl@0
|
601 |
{
|
sl@0
|
602 |
//set the extended interface uid
|
sl@0
|
603 |
iExtendedInterfaceUid.iUid = 0x10009E44;
|
sl@0
|
604 |
}
|
sl@0
|
605 |
|
sl@0
|
606 |
/**
|
sl@0
|
607 |
Completes the safe construction of the CImplementationClassTenBasic object
|
sl@0
|
608 |
@param aInitParams The parameter struct used for initialising this object
|
sl@0
|
609 |
*/
|
sl@0
|
610 |
void CImplementationClassTen2::ConstructL(TAny* aInitParams)
|
sl@0
|
611 |
{
|
sl@0
|
612 |
TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*, aInitParams);
|
sl@0
|
613 |
if(params)
|
sl@0
|
614 |
{
|
sl@0
|
615 |
if(params->descriptor)
|
sl@0
|
616 |
{
|
sl@0
|
617 |
iInternalDescriptor = params->descriptor->AllocL();
|
sl@0
|
618 |
}
|
sl@0
|
619 |
}
|
sl@0
|
620 |
User::LeaveIfError(Dll::SetTls(&iTLSInt));
|
sl@0
|
621 |
}
|
sl@0
|
622 |
|
sl@0
|
623 |
/**
|
sl@0
|
624 |
Overload of the pure interface method.Representative of a method provided on
|
sl@0
|
625 |
the interface by the interface definer.
|
sl@0
|
626 |
*/
|
sl@0
|
627 |
void CImplementationClassTen2::DoMethodL()
|
sl@0
|
628 |
{
|
sl@0
|
629 |
// Access TLS to ensure it has been set properly
|
sl@0
|
630 |
ASSERT(Dll::Tls() != NULL);
|
sl@0
|
631 |
}
|
sl@0
|
632 |
|
sl@0
|
633 |
/**
|
sl@0
|
634 |
Overload of the pure interface method asynchronous function which
|
sl@0
|
635 |
an interface definer could specify.
|
sl@0
|
636 |
@return TInt KErrNone for success.
|
sl@0
|
637 |
*/
|
sl@0
|
638 |
TInt CImplementationClassTen2::FireAndForget()
|
sl@0
|
639 |
{
|
sl@0
|
640 |
return KErrNone;
|
sl@0
|
641 |
}
|
sl@0
|
642 |
|
sl@0
|
643 |
// Provide the CActive overloads
|
sl@0
|
644 |
void CImplementationClassTen2::RunL()
|
sl@0
|
645 |
{
|
sl@0
|
646 |
// Do nothing : should never be called
|
sl@0
|
647 |
__ASSERT_DEBUG(EFalse,User::Invariant());
|
sl@0
|
648 |
}
|
sl@0
|
649 |
|
sl@0
|
650 |
void CImplementationClassTen2::DoCancel()
|
sl@0
|
651 |
{
|
sl@0
|
652 |
// Do nothing
|
sl@0
|
653 |
}
|
sl@0
|
654 |
|
sl@0
|
655 |
TInt CImplementationClassTen2::RunError(TInt /*aError*/)
|
sl@0
|
656 |
{
|
sl@0
|
657 |
return KErrNone;
|
sl@0
|
658 |
}
|
sl@0
|
659 |
|
sl@0
|
660 |
/**
|
sl@0
|
661 |
To verify the object returned by ECOM.
|
sl@0
|
662 |
@return TUid (ECOM's Implementation Uid for this class.)
|
sl@0
|
663 |
*/
|
sl@0
|
664 |
TUid CImplementationClassTen2::ImplId()
|
sl@0
|
665 |
{
|
sl@0
|
666 |
return KImplUid3;
|
sl@0
|
667 |
}
|
sl@0
|
668 |
|
sl@0
|
669 |
/**
|
sl@0
|
670 |
Extended interface method. Called to verify the Extended interface.
|
sl@0
|
671 |
*/
|
sl@0
|
672 |
void CImplementationClassTen2::DoMethodExtended()
|
sl@0
|
673 |
{
|
sl@0
|
674 |
//check the extended interface uid has been set properly
|
sl@0
|
675 |
ASSERT(iExtendedInterfaceUid.iUid == 0x10009E44);
|
sl@0
|
676 |
}
|
sl@0
|
677 |
|
sl@0
|
678 |
/**
|
sl@0
|
679 |
Get the extended interface. This method will be called by ECOM, so the method must
|
sl@0
|
680 |
follow the signature defined by TProxyExtendedInterfaceGetPtrL.This must be a static
|
sl@0
|
681 |
method since it is used in the proxy table.
|
sl@0
|
682 |
@param aObject A pointer to the instantiation interface (CImplementationClassTen
|
sl@0
|
683 |
in this case) instance. This will be provided by ECOM. It must be provided
|
sl@0
|
684 |
as a parameter, as this method is a static method (and must be a static
|
sl@0
|
685 |
method because it is called by the proxy table).
|
sl@0
|
686 |
@param aExtendedInterface The extended interface to fetch. Must be a unique UID.
|
sl@0
|
687 |
@param aBitFlags Flags used for communication between plugin's and ECOM. Currently
|
sl@0
|
688 |
used to signal if an extended interface requires release.
|
sl@0
|
689 |
@param aReleaseObject return parameter, provides ECOM with the object to destroy
|
sl@0
|
690 |
if the interface requires to be released.
|
sl@0
|
691 |
@return TAny* a pointer to the fully constructed extended interface object
|
sl@0
|
692 |
*/
|
sl@0
|
693 |
TAny* CImplementationClassTen2::GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& /*aBitFlags*/,TAny*& /*releaseObject*/)
|
sl@0
|
694 |
{
|
sl@0
|
695 |
TAny* ret = NULL;
|
sl@0
|
696 |
switch (aExtendedInterface.iUid)
|
sl@0
|
697 |
{
|
sl@0
|
698 |
case 0x10009E44:
|
sl@0
|
699 |
{
|
sl@0
|
700 |
// No release is required, so do not modify aBitFlags.
|
sl@0
|
701 |
ret = static_cast<MExampleInterfaceExtended*>(static_cast<CImplementationClassTen2*>(aObject));
|
sl@0
|
702 |
break;
|
sl@0
|
703 |
}
|
sl@0
|
704 |
default:
|
sl@0
|
705 |
{
|
sl@0
|
706 |
break;
|
sl@0
|
707 |
}
|
sl@0
|
708 |
}
|
sl@0
|
709 |
return ret;
|
sl@0
|
710 |
}
|
sl@0
|
711 |
|
sl@0
|
712 |
// __________________________________________________________________________
|
sl@0
|
713 |
// Exported proxy for instantiation method resolution
|
sl@0
|
714 |
// Define the interface UIDs
|
sl@0
|
715 |
|
sl@0
|
716 |
const TImplementationProxy3 KImplementationTable[] =
|
sl@0
|
717 |
{
|
sl@0
|
718 |
IMPLEMENTATION_PROXY_ENTRY3(0x10009E38,CImplementationClassTen::NewL,CImplementationClassTen::GetExtendedInterfaceL,CImplementationClassTen::ReleaseExtendedInterface),
|
sl@0
|
719 |
IMPLEMENTATION_PROXY_ENTRY3(0x10009E3A,CImplementationClassTenBasic::NewL,0,0),
|
sl@0
|
720 |
IMPLEMENTATION_PROXY_ENTRY3(0x10009E3B,CImplementationClassTen2::NewL,CImplementationClassTen2::GetExtendedInterfaceL,0)
|
sl@0
|
721 |
};
|
sl@0
|
722 |
|
sl@0
|
723 |
EXPORT_C const TImplementationProxy3* ImplementationGroupProxy(TInt& aTableCount)
|
sl@0
|
724 |
{
|
sl@0
|
725 |
aTableCount = sizeof(KImplementationTable) / sizeof(TImplementationProxy3);
|
sl@0
|
726 |
return KImplementationTable;
|
sl@0
|
727 |
}
|