Update contrib.
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
15 // to be provided by ECom.
16 // 1. Using the CExampleInterface class as a base.
17 // 2. Example of how extended interfaces could work.
26 #include "Interface.h"
27 #include "ecom/extendedinterfaceimplementationproxy.h"
28 #include "TestUtilities.h" // For __FILE__LINE__
30 const TUid KImplUid1 = {0x10009E38};
31 const TUid KImplUid2 = {0x10009E3A};
32 const TUid KImplUid3 = {0x10009E3B};
34 // ____________________________________________________________________________
37 Intended usage: This class implements the functionality promised by
38 the CExampleInterface and MExampleInterfaceExtended definition classes.
39 It does little apart from provides a test instance
40 which may be retrieved and run for testing purposes. This is an example of
41 how extended interface is implemented in the same class as the original and
42 how to get/release the extended interface which is implemented in different class.
44 class CImplementationClassTen : public CExampleInterface, public MExampleInterfaceExtended
48 static CImplementationClassTen* NewL(TAny* aInitParams);
49 virtual ~CImplementationClassTen();
53 virtual void DoMethodExtended(); //from MExampleInterfaceExtended
54 static TAny* GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& aBitFlags,TAny*& releaseObject);
55 static void ReleaseExtendedInterface(TAny* aObject, const TUid& aInterface);
57 CImplementationClassTen();
58 void ConstructL(TAny* aInitParams);
59 // Provide the CActive overloads
62 TInt RunError(TInt aError);
64 /** A place for allocating some memory in the ConstructL */
65 HBufC* iInternalDescriptor;
66 /** An int to be stored in TLS to test its usage */
68 /** Uid of the extended interface */
69 TUid iExtendedInterfaceUid;
70 }; // End of CImplementationClassTen definition
72 // ____________________________________________________________________________
75 Intended usage: This class implements the functionality promised by
76 the MExampleInterfaceExtended2 definition class. This is an extended interface of
77 CImplementationClassTen. This is a sample extended interface that is
78 separate from the main interface. This extended interface does nothing, but shows
79 how one can set up a separately instantiated extended interface.
81 class CImplementationClassTenExtended : public CBase, public MExampleInterfaceExtended2
85 static CImplementationClassTenExtended* NewL();
86 virtual ~CImplementationClassTenExtended();
87 virtual void DoMethodExtended2(); //from MExampleInterfaceExtended2
89 CImplementationClassTenExtended();
92 TUid iExtendedInterfaceUid;
93 }; // End of CImplementationClassTenExtended definition
95 // ____________________________________________________________________________
98 Intended usage: This class implements the functionality promised by
99 the MExampleInterfaceExtended2 definition class. This is an extended interface of
100 CImplementationClassTen. It is the same as CImplementationClassTenExtended,
101 but just shows that it is possible to have multiple extended interfaces in one implementation.
103 class CImplementationClassTenExtended2 : public CBase, public MExampleInterfaceExtended2
107 static CImplementationClassTenExtended2* NewL();
108 virtual ~CImplementationClassTenExtended2();
109 virtual void DoMethodExtended2(); //from MExampleInterfaceExtended2
111 CImplementationClassTenExtended2();
114 TUid iExtendedInterfaceUid;
115 }; // End of CImplementationClassTenExtended2 definition
118 // __________________________________________________________________________
122 Safe construction which leaves nothing upon the cleanup stack
123 @param aInitParams Initialization parameters
124 @return CImplementationClassTen* a pointer to the fully instantiated CImplementationClassTen object
126 CImplementationClassTen* CImplementationClassTen::NewL(TAny* aInitParams)
128 CImplementationClassTen* self=new(ELeave) CImplementationClassTen();
129 CleanupStack::PushL(self);
130 self->ConstructL(aInitParams);
131 CleanupStack::Pop(self);
136 Destructor of CImplementationClassTen
138 CImplementationClassTen::~CImplementationClassTen()
140 delete iInternalDescriptor;
145 Default Constructor : usable only by derived classes
147 CImplementationClassTen::CImplementationClassTen()
148 : CExampleInterface()
150 //set the extended interface Uid
151 iExtendedInterfaceUid.iUid = 0x10009E44;
155 Safely complete the initialization of the constructed object.
156 @param aInitParams Initialization parameters
158 void CImplementationClassTen::ConstructL(TAny* aInitParams)
160 TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*,aInitParams);
163 if(params->descriptor)
165 iInternalDescriptor = params->descriptor->AllocL();
168 User::LeaveIfError(Dll::SetTls(&iTLSInt));
172 Overload of the pure interface method.Representative of a method provided on
173 the interface by the interface definer.
175 void CImplementationClassTen::DoMethodL()
177 // Access TLS to ensure it has been set properly
178 ASSERT(Dll::Tls() != NULL);
182 Overload of the pure interface method asynchronous function which
183 an interface definer could specify.
184 @return TInt KErrNone for success.
186 TInt CImplementationClassTen::FireAndForget()
191 // Provide the CActive overloads
192 void CImplementationClassTen::RunL()
194 // Do nothing : should never be called
195 __ASSERT_DEBUG(EFalse,User::Invariant());
198 void CImplementationClassTen::DoCancel()
203 TInt CImplementationClassTen::RunError(TInt /*aError*/)
209 To verify the object returned by ECOM.
210 @return TUid (ECOM's Implementation Uid for this class.)
212 TUid CImplementationClassTen::ImplId()
218 Extended interface method. Called to verify the Extended interface.
220 void CImplementationClassTen::DoMethodExtended()
222 //check the extended interface uid has been set properly
223 ASSERT(iExtendedInterfaceUid.iUid == 0x10009E44);
227 Get the extended interface. This method will be called by ECOM, so the method must
228 follow the signature defined by TProxyExtendedInterfaceGetPtrL. This must be a static
229 method since it is used in the proxy table.
230 @param aObject A pointer to the instantiation interface (CImplementationClassTen
231 in this case) instance. This will be provided by ECOM. It must be provided
232 as a parameter, as this method is a static method (and must be a static
233 method because it is called by the proxy table).
234 @param aExtendedInterface The extended interface to fetch. Must be a unique UID.
235 @param aBitFlags Flags used for communication between plugin's and ECOM. Currently
236 used to signal if an extended interface requires release.
237 @param aReleaseObject return parameter, provides ECOM with the object to destroy
238 if the interface requires to be released.
239 @return TAny* a pointer to the fully constructed extended interface object
241 TAny* CImplementationClassTen::GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& aBitFlags,TAny*& aReleaseObject)
244 //Initialise the release bit
245 aBitFlags = aBitFlags & 0xFFFFFFFE;
247 switch (aExtendedInterface.iUid)
251 // No release is required, so do not modify aBitFlags.
252 ret = static_cast<MExampleInterfaceExtended*>(static_cast<CImplementationClassTen*>(aObject));
257 // Indicate to caller that release is required
258 aBitFlags = aBitFlags | KReleaseRequiredMask;
260 CImplementationClassTenExtended *classExt = CImplementationClassTenExtended::NewL();
261 // Must set the release object for ECOM to release later, this will not be the same as the interface object that is returned.
262 aReleaseObject = classExt;
264 ret = static_cast<MExampleInterfaceExtended2*>(classExt);
269 // Indicate to caller that release is required
270 aBitFlags = aBitFlags | KReleaseRequiredMask;
272 CImplementationClassTenExtended2 *classExt = CImplementationClassTenExtended2::NewL();
273 // Must set the release object for ECOM to release later, this will not be the same as the interface object that is returned.
274 aReleaseObject = classExt;
276 ret = static_cast<MExampleInterfaceExtended2*>(classExt);
288 Release the specified extended interface. This method will be called by ECOM, so the method must
289 follow the signature defined by TProxyExtendedInterfaceReleasePtr. This must be a static
290 method since it is used in the proxy table.
292 @param aReleaseObject provides ECOM with the object to destroy
293 if the interface requires to be released.
294 @param aExtendedInterface extended interface that is to be released
295 @return TAny* a pointer to the fully constructed extended interface object
297 void CImplementationClassTen::ReleaseExtendedInterface(TAny* aReleaseObject,const TUid& aExtendedInterface)
299 switch (aExtendedInterface.iUid)
303 // this object is an interface that was a separate object from the main instantiated object, and must be cleaned up.
304 CImplementationClassTenExtended* classExt = static_cast<CImplementationClassTenExtended*>(aReleaseObject);
310 // this object is an interface that was a separate object from the main instantiated object, and must be cleaned up.
311 CImplementationClassTenExtended2* classExt = static_cast<CImplementationClassTenExtended2*>(aReleaseObject);
323 // __________________________________________________________________________
325 // Implementation of CImplementationClassTenExtended
328 Safe construction which leaves nothing upon the cleanup stack
329 @return CImplementationClassTen* a pointer to the fully instantiated CImplementationClassTen object
331 CImplementationClassTenExtended* CImplementationClassTenExtended::NewL()
334 CImplementationClassTenExtended* self=new(ELeave) CImplementationClassTenExtended();
339 Destructor of CImplementationClassTenExtended
341 CImplementationClassTenExtended::~CImplementationClassTenExtended()
347 Default Constructor : usable only by derived classes
349 CImplementationClassTenExtended::CImplementationClassTenExtended()
351 //set the extended interface uid
352 iExtendedInterfaceUid.iUid = 0x10009E45;
358 void CImplementationClassTenExtended::DoMethodExtended2()
360 //check the extended interface uid has been set properly
361 ASSERT(iExtendedInterfaceUid.iUid == 0x10009E45);
364 // __________________________________________________________________________
366 // Implementation of CImplementationClassTenExtended2
369 Safe construction which leaves nothing upon the cleanup stack
370 @return CImplementationClassTenExtended2* a pointer to the fully instantiated CImplementationClassTen object
372 CImplementationClassTenExtended2* CImplementationClassTenExtended2::NewL()
374 CImplementationClassTenExtended2* self=new(ELeave) CImplementationClassTenExtended2();
379 Destructor of CImplementationClassTenExtended2
381 CImplementationClassTenExtended2::~CImplementationClassTenExtended2()
387 Default Constructor : usable only by derived classes
389 CImplementationClassTenExtended2::CImplementationClassTenExtended2()
391 //set the extended interface uid
392 iExtendedInterfaceUid.iUid = 0x10009E46;
398 void CImplementationClassTenExtended2::DoMethodExtended2()
400 //check the extended interface uid has been set properly
401 ASSERT(iExtendedInterfaceUid.iUid == 0x10009E46);
404 // CImplementationClassTenBasic implementation
405 // ____________________________________________________________________________
408 This class implements the functionality promised by
409 the CExampleInterface definition class. It does little apart from provides a test instance
410 which may be retrieved and run for testing purposes. This is an example that no extended interface
411 is implemented in this class.
413 class CImplementationClassTenBasic : public CExampleInterface
417 static CImplementationClassTenBasic* NewL(TAny* aInitParams);
418 virtual ~CImplementationClassTenBasic();
420 TInt FireAndForget();
423 CImplementationClassTenBasic();
424 void ConstructL(TAny* aInitParams);
425 // Provide the CActive overloads
428 TInt RunError(TInt aError);
430 /** A place for allocating some memory in the ConstructL */
431 HBufC* iInternalDescriptor;
432 /** An int to be stored in TLS to test its usage */
435 }; // End of CImplementationClassTenBasic definition
437 // __________________________________________________________________________
441 Safe construction which leaves nothing upon the cleanup stack
442 @param aInitParams The parameter struct used for initialising this object
443 @return CImplementationClassTenBasic* a pointer to the fully instantiated CImplementationClassTenBasic object
445 CImplementationClassTenBasic* CImplementationClassTenBasic::NewL(TAny* aInitParams)
447 CImplementationClassTenBasic* self=new(ELeave) CImplementationClassTenBasic();
448 CleanupStack::PushL(self);
449 self->ConstructL(aInitParams);
450 CleanupStack::Pop(self);
455 Destructor of CImplementationClassTenBasic
457 CImplementationClassTenBasic::~CImplementationClassTenBasic()
459 delete iInternalDescriptor;
464 Default Constructor : usable only by derived classes
466 CImplementationClassTenBasic::CImplementationClassTenBasic()
467 : CExampleInterface()
472 Completes the safe construction of the CImplementationClassTenBasic object
473 @param aInitParams The parameter struct used for initialising this object
475 void CImplementationClassTenBasic::ConstructL(TAny* aInitParams)
477 TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*, aInitParams);
480 if(params->descriptor)
482 iInternalDescriptor = params->descriptor->AllocL();
486 User::LeaveIfError(Dll::SetTls(&iTLSInt));
490 Overload of the pure interface method.Representative of a method provided on
491 the interface by the interface definer.
493 void CImplementationClassTenBasic::DoMethodL()
495 // Access TLS to ensure it has been set properly
496 ASSERT(Dll::Tls() != NULL);
500 Overload of the pure interface method asynchronous function which
501 an interface definer could specify.
502 @return TInt KErrNone for success.
504 TInt CImplementationClassTenBasic::FireAndForget()
509 // Provide the CActive overloads
510 void CImplementationClassTenBasic::RunL()
512 // Do nothing : should never be called
513 __ASSERT_DEBUG(EFalse,User::Invariant());
516 void CImplementationClassTenBasic::DoCancel()
521 TInt CImplementationClassTenBasic::RunError(TInt /*aError*/)
527 To verify the object returned by ECOM.
528 @return TUid (ECOM's Implementation Uid for this class.)
530 TUid CImplementationClassTenBasic::ImplId()
535 // ____________________________________________________________________________
538 Intended usage: This class implements the functionality promised by
539 the CExampleInterface defintion class. It does little apart from provides a test instance
540 which may be retrieved and run for testing purposes.This is an example of
541 how extended interface is implemented in the same class as the original.
543 class CImplementationClassTen2 : public CExampleInterface, public MExampleInterfaceExtended
547 static CImplementationClassTen2* NewL(TAny* aInitParams);
548 virtual ~CImplementationClassTen2();
550 TInt FireAndForget();
552 static TAny* GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& aBitFlags,TAny*& releaseObject);
554 virtual void DoMethodExtended(); // From MExampleInterfaceExtended
556 CImplementationClassTen2();
557 void ConstructL(TAny* aInitParams);
558 // Provide the CActive overloads
561 TInt RunError(TInt aError);
563 /** A place for allocating some memory in the ConstructL */
564 HBufC* iInternalDescriptor;
565 /** An int to be stored in TLS to test its usage */
567 /** Uid of the extended interface */
568 TUid iExtendedInterfaceUid;
569 }; // End of CImplementationClassTen2 definition
571 // __________________________________________________________________________
575 Standardised safe construction which leaves nothing the cleanup stack.
576 @param aInitParams The parameter struct used for initialising this object
577 @return CImplementationClassTen2* The class instance.
579 CImplementationClassTen2* CImplementationClassTen2::NewL(TAny* aInitParams)
581 CImplementationClassTen2* self=new(ELeave) CImplementationClassTen2();
582 CleanupStack::PushL(self);
583 self->ConstructL(aInitParams);
584 CleanupStack::Pop(self);
588 Destructor of CImplementationClassTen2
590 CImplementationClassTen2::~CImplementationClassTen2()
592 delete iInternalDescriptor;
599 CImplementationClassTen2::CImplementationClassTen2()
600 : CExampleInterface()
602 //set the extended interface uid
603 iExtendedInterfaceUid.iUid = 0x10009E44;
607 Completes the safe construction of the CImplementationClassTenBasic object
608 @param aInitParams The parameter struct used for initialising this object
610 void CImplementationClassTen2::ConstructL(TAny* aInitParams)
612 TExampleInterfaceInitParams* params = REINTERPRET_CAST(TExampleInterfaceInitParams*, aInitParams);
615 if(params->descriptor)
617 iInternalDescriptor = params->descriptor->AllocL();
620 User::LeaveIfError(Dll::SetTls(&iTLSInt));
624 Overload of the pure interface method.Representative of a method provided on
625 the interface by the interface definer.
627 void CImplementationClassTen2::DoMethodL()
629 // Access TLS to ensure it has been set properly
630 ASSERT(Dll::Tls() != NULL);
634 Overload of the pure interface method asynchronous function which
635 an interface definer could specify.
636 @return TInt KErrNone for success.
638 TInt CImplementationClassTen2::FireAndForget()
643 // Provide the CActive overloads
644 void CImplementationClassTen2::RunL()
646 // Do nothing : should never be called
647 __ASSERT_DEBUG(EFalse,User::Invariant());
650 void CImplementationClassTen2::DoCancel()
655 TInt CImplementationClassTen2::RunError(TInt /*aError*/)
661 To verify the object returned by ECOM.
662 @return TUid (ECOM's Implementation Uid for this class.)
664 TUid CImplementationClassTen2::ImplId()
670 Extended interface method. Called to verify the Extended interface.
672 void CImplementationClassTen2::DoMethodExtended()
674 //check the extended interface uid has been set properly
675 ASSERT(iExtendedInterfaceUid.iUid == 0x10009E44);
679 Get the extended interface. This method will be called by ECOM, so the method must
680 follow the signature defined by TProxyExtendedInterfaceGetPtrL.This must be a static
681 method since it is used in the proxy table.
682 @param aObject A pointer to the instantiation interface (CImplementationClassTen
683 in this case) instance. This will be provided by ECOM. It must be provided
684 as a parameter, as this method is a static method (and must be a static
685 method because it is called by the proxy table).
686 @param aExtendedInterface The extended interface to fetch. Must be a unique UID.
687 @param aBitFlags Flags used for communication between plugin's and ECOM. Currently
688 used to signal if an extended interface requires release.
689 @param aReleaseObject return parameter, provides ECOM with the object to destroy
690 if the interface requires to be released.
691 @return TAny* a pointer to the fully constructed extended interface object
693 TAny* CImplementationClassTen2::GetExtendedInterfaceL(TAny* aObject,const TUid& aExtendedInterface,TUint32& /*aBitFlags*/,TAny*& /*releaseObject*/)
696 switch (aExtendedInterface.iUid)
700 // No release is required, so do not modify aBitFlags.
701 ret = static_cast<MExampleInterfaceExtended*>(static_cast<CImplementationClassTen2*>(aObject));
712 // __________________________________________________________________________
713 // Exported proxy for instantiation method resolution
714 // Define the interface UIDs
716 const TImplementationProxy3 KImplementationTable[] =
718 IMPLEMENTATION_PROXY_ENTRY3(0x10009E38,CImplementationClassTen::NewL,CImplementationClassTen::GetExtendedInterfaceL,CImplementationClassTen::ReleaseExtendedInterface),
719 IMPLEMENTATION_PROXY_ENTRY3(0x10009E3A,CImplementationClassTenBasic::NewL,0,0),
720 IMPLEMENTATION_PROXY_ENTRY3(0x10009E3B,CImplementationClassTen2::NewL,CImplementationClassTen2::GetExtendedInterfaceL,0)
723 EXPORT_C const TImplementationProxy3* ImplementationGroupProxy(TInt& aTableCount)
725 aTableCount = sizeof(KImplementationTable) / sizeof(TImplementationProxy3);
726 return KImplementationTable;