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 // Define the template function for instantiating the implementation object
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.
28 template<typename TImpProxy,typename T> TAny* CLoadManager::GetNewLPointerAndProxyTableRowL(TUid aUniqueImplementationUid,
29 TImpProxy*& aImplementationTableEntry,
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)
40 User::Leave(KErrNotFound);
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)
47 if(aUniqueImplementationUid == implementationTable[i].iImplementationUid)
49 newLpointer = (TAny*)implementationTable[i].iNewLFuncPtr;
50 aImplementationTableEntry = &implementationTable[i];
57 User::Leave(KErrNotFound);