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