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