First public contribution.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The implementation of some classes to be provided by ECom.
23 #include "exampletwelve.h"
25 // __________________________________________________________________________
27 // Implementation of CImplementationClassTwelve
30 Safe construction which leaves nothing upon the cleanup stack
31 @param aInitParams Initialization parameters
32 @return CImplementationClassTwelve* a pointer to the fully instantiated CImplementationClassTwelve object
34 CImplementationClassTwelve* CImplementationClassTwelve::NewL(TAny* aInitParams)
36 CImplementationClassTwelve* self=new(ELeave) CImplementationClassTwelve();
37 CleanupStack::PushL(self);
38 self->ConstructL(aInitParams);
39 CleanupStack::Pop(self);
44 Destructor of CImplementationClassTwelve
46 CImplementationClassTwelve::~CImplementationClassTwelve()
48 delete iInternalDescriptor;
53 Default Constructor : usable only by derived classes
55 CImplementationClassTwelve::CImplementationClassTwelve()
58 //set the extended interface Uid
59 iExtendedInterfaceUid.iUid = 0x10009E44;
63 Safely complete the initialization of the constructed object.
64 @param aInitParams Initialization parameters
66 void CImplementationClassTwelve::ConstructL(TAny* aInitParams)
68 TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*,aInitParams);
71 if(params->descriptor)
73 iInternalDescriptor = params->descriptor->AllocL();
76 User::LeaveIfError(Dll::SetTls(&iTLSInt));
80 Overload of the pure interface method.Representative of a method provided on
81 the interface by the interface definer.
83 void CImplementationClassTwelve::DoMethodL()
85 // Access TLS to ensure it has been set properly
86 ASSERT(Dll::Tls()!=NULL);
90 Overload of the pure interface method asynchronous function which
91 an interface definer could specify.
92 @return TInt KErrNone for success.
94 TInt CImplementationClassTwelve::FireAndForget()
99 // Provide the CActive overloads
100 void CImplementationClassTwelve::RunL()
102 // Do nothing : should never be called
103 __ASSERT_DEBUG(EFalse,User::Invariant());
106 void CImplementationClassTwelve::DoCancel()
111 TInt CImplementationClassTwelve::RunError(TInt /*aError*/)
117 To verify the object returned by ECOM.
118 @return TUid (ECOM's Implementation Uid for this class.)
120 TUid CImplementationClassTwelve::ImplId()
126 Extended interface method. Called to verify the Extended interface.
128 void CImplementationClassTwelve::DoMethodExtended()
130 //check the extended interface uid has been set properly
131 ASSERT(iExtendedInterfaceUid.iUid == 0x10009E44);
135 Get the extended interface. This method will be called by ECOM, so the method must
136 follow the signature defined by TProxyExtendedInterfaceGetPtrL. This must be a static
137 method since it is used in the proxy table.
138 @param aObject A pointer to the instantiation interface (CImplementationClassTwelve
139 in this case) instance. This will be provided by ECOM. It must be provided
140 as a parameter, as this method is a static method (and must be a static
141 method because it is called by the proxy table).
142 @param aExtendedInterface The extended interface to fetch. Must be a unique UID.
143 @param aBitFlags Flags used for communication between plugin's and ECOM. Currently
144 used to signal if an extended interface requires release.
145 @param aReleaseObject return parameter, provides ECOM with the object to destroy
146 if the interface requires to be released.
147 @return TAny* a pointer to the fully constructed extended interface object
149 TAny* CImplementationClassTwelve::GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& aBitFlags,TAny*& aReleaseObject)
152 //Initialise the release bit
153 aBitFlags = aBitFlags & 0xFFFFFFFE;
155 switch (aExtendedInterface.iUid)
159 // No release is required, so do not modify aBitFlags.
160 ret = static_cast<MExampleInterfaceExtended*>(static_cast<CImplementationClassTwelve*>(aObject));
165 // Indicate to caller that release is required
166 aBitFlags = aBitFlags | KReleaseRequiredMask;
168 CImplementationClassTwelveExtended *classExt = CImplementationClassTwelveExtended::NewL();
169 // Must set the release object for ECOM to release later, this will not be the same as the interface object that is returned.
170 aReleaseObject = classExt;
172 ret = static_cast<MExampleInterfaceExtended2*>(classExt);
177 // Indicate to caller that release is required
178 aBitFlags = aBitFlags | KReleaseRequiredMask;
180 CImplementationClassTwelveExtended2 *classExt = CImplementationClassTwelveExtended2::NewL();
181 // Must set the release object for ECOM to release later, this will not be the same as the interface object that is returned.
182 aReleaseObject = classExt;
184 ret = static_cast<MExampleInterfaceExtended2*>(classExt);
196 Release the specified extended interface. This method will be called by ECOM, so the method must
197 follow the signature defined by TProxyExtendedInterfaceReleasePtr. This must be a static
198 method since it is used in the proxy table.
200 @param aReleaseObject provides ECOM with the object to destroy
201 if the interface requires to be released.
202 @param aExtendedInterface extended interface that is to be released
203 @return TAny* a pointer to the fully constructed extended interface object
205 void CImplementationClassTwelve::ReleaseExtendedInterface(TAny* aReleaseObject,const TUid& aExtendedInterface)
207 switch (aExtendedInterface.iUid)
211 // this object is an interface that was a separate object from the main instantiated object, and must be cleaned up.
212 CImplementationClassTwelveExtended* classExt = static_cast<CImplementationClassTwelveExtended*>(aReleaseObject);
218 // this object is an interface that was a separate object from the main instantiated object, and must be cleaned up.
219 CImplementationClassTwelveExtended2* classExt = static_cast<CImplementationClassTwelveExtended2*>(aReleaseObject);
231 // __________________________________________________________________________
233 // Implementation of CImplementationClassTwelveExtended
236 Safe construction which leaves nothing upon the cleanup stack
237 @return CImplementationClassTwelve* a pointer to the fully instantiated CImplementationClassTwelve object
239 CImplementationClassTwelveExtended* CImplementationClassTwelveExtended::NewL()
242 CImplementationClassTwelveExtended* self=new(ELeave) CImplementationClassTwelveExtended(); // calls c'tor
247 Destructor of CImplementationClassTwelveExtended
249 CImplementationClassTwelveExtended::~CImplementationClassTwelveExtended()
255 Default Constructor : usable only by derived classes
257 CImplementationClassTwelveExtended::CImplementationClassTwelveExtended()
259 //set the extended interface uid
260 iExtendedInterfaceUid.iUid = 0x10009E45;
266 void CImplementationClassTwelveExtended::DoMethodExtended2()
268 //check the extended interface uid has been set properly
269 ASSERT(iExtendedInterfaceUid.iUid == 0x10009E45);
272 // __________________________________________________________________________
274 // Implementation of CImplementationClassTwelveExtended2
277 Safe construction which leaves nothing upon the cleanup stack
278 @return CImplementationClassTwelveExtended2* a pointer to the fully instantiated CImplementationClassTwelve object
280 CImplementationClassTwelveExtended2* CImplementationClassTwelveExtended2::NewL()
282 CImplementationClassTwelveExtended2* self=new(ELeave) CImplementationClassTwelveExtended2(); // calls c'tor
287 Destructor of CImplementationClassTwelveExtended2
289 CImplementationClassTwelveExtended2::~CImplementationClassTwelveExtended2()
295 Default Constructor : usable only by derived classes
297 CImplementationClassTwelveExtended2::CImplementationClassTwelveExtended2()
299 //set the extended interface uid
300 iExtendedInterfaceUid.iUid = 0x10009E46;
306 void CImplementationClassTwelveExtended2::DoMethodExtended2()
308 //check the extended interface uid has been set properly
309 ASSERT(iExtendedInterfaceUid.iUid == 0x10009E46);
313 // __________________________________________________________________________
314 // Implementation of CImplementationClassTwelveBasic
317 Safe construction which leaves nothing upon the cleanup stack
318 @param aInitParams The parameter struct used for initialising this object
319 @return CImplementationClassTwelveBasic* a pointer to the fully instantiated CImplementationClassTwelveBasic object
321 CImplementationClassTwelveBasic* CImplementationClassTwelveBasic::NewL(TAny* aInitParams)
323 CImplementationClassTwelveBasic* self=new(ELeave) CImplementationClassTwelveBasic();
324 CleanupStack::PushL(self);
325 self->ConstructL(aInitParams);
326 CleanupStack::Pop(self);
331 Destructor of CImplementationClassTwelveBasic
333 CImplementationClassTwelveBasic::~CImplementationClassTwelveBasic()
335 delete iInternalDescriptor;
340 Default Constructor : usable only by derived classes
342 CImplementationClassTwelveBasic::CImplementationClassTwelveBasic()
343 : CExampleInterface()
348 Completes the safe construction of the CImplementationClassTwelveBasic object
349 @param aInitParams The parameter struct used for initialising this object
351 void CImplementationClassTwelveBasic::ConstructL(TAny* aInitParams)
353 TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*, aInitParams);
356 if(params->descriptor)
358 iInternalDescriptor = params->descriptor->AllocL();
361 User::LeaveIfError(Dll::SetTls(&iTLSInt));
365 Overload of the pure interface method.Representative of a method provided on
366 the interface by the interface definer.
368 void CImplementationClassTwelveBasic::DoMethodL()
370 // Access TLS to ensure it has been set properly
371 ASSERT(Dll::Tls() != NULL);
375 Overload of the pure interface method asynchronous function which
376 an interface definer could specify.
377 @return TInt KErrNone for success.
379 TInt CImplementationClassTwelveBasic::FireAndForget()
384 // Provide the CActive overloads
385 void CImplementationClassTwelveBasic::RunL()
387 // Do nothing : should never be called
388 __ASSERT_DEBUG(EFalse,User::Invariant());
391 void CImplementationClassTwelveBasic::DoCancel()
396 TInt CImplementationClassTwelveBasic::RunError(TInt /*aError*/)
402 To verify the object returned by ECOM.
403 @return TUid (ECOM's Implementation Uid for this class.)
405 TUid CImplementationClassTwelveBasic::ImplId()
410 // __________________________________________________________________________
411 // Implementation of CImplementationClassTwelve2
414 Standardised safe construction which leaves nothing the cleanup stack.
415 @param aInitParams The parameter struct used for initialising this object
416 @return CImplementationClassTwelve2* The class instance.
418 CImplementationClassTwelve2* CImplementationClassTwelve2::NewL(TAny* aInitParams)
420 CImplementationClassTwelve2* self=new(ELeave) CImplementationClassTwelve2(); // calls c'tor
421 CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
422 self->ConstructL(aInitParams); // Complete the 'construction'.
423 CleanupStack::Pop(self);
427 Destructor of CImplementationClassTwelve2
429 CImplementationClassTwelve2::~CImplementationClassTwelve2()
431 delete iInternalDescriptor;
438 CImplementationClassTwelve2::CImplementationClassTwelve2()
439 : CExampleInterface()
441 //set the extended interface uid
442 iExtendedInterfaceUid.iUid = 0x10009E44;
446 Completes the safe construction of the CImplementationClassTwelveBasic object
447 @param aInitParams The parameter struct used for initialising this object
449 void CImplementationClassTwelve2::ConstructL(TAny* aInitParams)
451 TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*, aInitParams);
454 if(params->descriptor)
455 iInternalDescriptor = params->descriptor->AllocL();
457 User::LeaveIfError(Dll::SetTls(&iTLSInt));
461 Overload of the pure interface method.Representative of a method provided on
462 the interface by the interface definer.
464 void CImplementationClassTwelve2::DoMethodL()
466 // Access TLS to ensure it has been set properly
467 ASSERT(Dll::Tls()!=NULL);
471 Overload of the pure interface method asynchronous function which
472 an interface definer could specify.
473 @return TInt KErrNone for success.
475 TInt CImplementationClassTwelve2::FireAndForget()
480 // Provide the CActive overloads
481 void CImplementationClassTwelve2::RunL()
483 // Do nothing : should never be called
484 __ASSERT_DEBUG(EFalse,User::Invariant());
487 void CImplementationClassTwelve2::DoCancel()
492 TInt CImplementationClassTwelve2::RunError(TInt /*aError*/)
498 To verify the object returned by ECOM.
499 @return TUid (ECOM's Implementation Uid for this class.)
501 TUid CImplementationClassTwelve2::ImplId()
507 Extended interface method. Called to verify the Extended interface.
509 void CImplementationClassTwelve2::DoMethodExtended()
511 //check the extended interface uid has been set properly
512 ASSERT(iExtendedInterfaceUid.iUid == 0x10009E44);
516 Get the extended interface. This method will be called by ECOM, so the method must
517 follow the signature defined by TProxyExtendedInterfaceGetPtrL.This must be a static
518 method since it is used in the proxy table.
519 @param aObject A pointer to the instantiation interface (CImplementationClassTwelve
520 in this case) instance. This will be provided by ECOM. It must be provided
521 as a parameter, as this method is a static method (and must be a static
522 method because it is called by the proxy table).
523 @param aExtendedInterface The extended interface to fetch. Must be a unique UID.
524 @param aBitFlags Flags used for communication between plugin's and ECOM. Currently
525 used to signal if an extended interface requires release.
526 @param aReleaseObject return parameter, provides ECOM with the object to destroy
527 if the interface requires to be released.
528 @return TAny* a pointer to the fully constructed extended interface object
530 TAny* CImplementationClassTwelve2::GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& /*aBitFlags*/,TAny*& /*releaseObject*/)
533 switch (aExtendedInterface.iUid)
537 // No release is required, so do not modify aBitFlags.
538 ret = static_cast<MExampleInterfaceExtended*>(static_cast<CImplementationClassTwelve2*>(aObject));