os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/loadmanager.inl
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 // Define the template function for instantiating the implementation object 
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @internalComponent
    21  
    22  Get NewL pointer and implementation table in preparation for instantiating the implementation object
    23  @param			aUniqueImplementationUid The implementation to find.
    24  @param			aImplementationTableEntry An entry in implementation table that match the implementation uid.
    25  @param			aProxy Contains the proxy
    26  @return			TAny* The NewL pointer for instantiating the implementation object.
    27 */
    28 template<typename TImpProxy,typename T> TAny* CLoadManager::GetNewLPointerAndProxyTableRowL(TUid aUniqueImplementationUid,
    29 										 TImpProxy*& aImplementationTableEntry,
    30 										 const T aProxy)
    31 	{
    32 	TInt count = 0;
    33 	
    34 	// Get the implementation table entry. Note that count gets updated after this call.
    35 	TImpProxy* implementationTable = aProxy(count);
    36 	// proxy function could lie to us and return an invalid pointer
    37 	// Is there a method in kernel to see if the address is valid?
    38 	if (implementationTable==0)
    39 		{
    40 		User::Leave(KErrNotFound);
    41 		}
    42 	TAny* newLpointer=NULL;
    43 	// Scan the returned table for a UID match, and return the associated
    44 	// creation method if found.
    45 	for(TInt i = 0; i < count; ++i)
    46 		{
    47 		if(aUniqueImplementationUid == implementationTable[i].iImplementationUid)
    48 			{
    49 			newLpointer = (TAny*)implementationTable[i].iNewLFuncPtr;
    50 			aImplementationTableEntry = &implementationTable[i];
    51 			break;
    52 			}
    53 		}
    54 		
    55 	if(!newLpointer)
    56 		{
    57 		User::Leave(KErrNotFound);
    58 		}
    59 
    60 	return newLpointer;
    61 	}