First public contribution.
1 // Copyright (c) 1997-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 // Implements the CRomOnlyResolver class.
23 #include <ecom/ecom.h>
24 #include <ecom/ecomerrorcodes.h>
25 #include <ecom/ecomresolverparams.h>
26 #include <ecom/implementationinformation.h>
28 #include "TestUtilities.h" // For __FILE__LINE__
29 #include "RomOnlyResolver.h"
31 CRomOnlyResolver* CRomOnlyResolver::NewL(MPublicRegistry& aRegistry)
33 return new(ELeave) CRomOnlyResolver(aRegistry);
36 CRomOnlyResolver::~CRomOnlyResolver()
40 CRomOnlyResolver::CRomOnlyResolver(MPublicRegistry& aRegistry)
41 : CDefaultResolver(aRegistry)
46 TUid CRomOnlyResolver::IdentifyImplementationL(TUid aInterfaceUid,
47 const TEComResolverParams& aAdditionalParameters) const
49 RImplInfoArray* implementationsInfo = ListAllL(aInterfaceUid, aAdditionalParameters);
50 TUid found = KNullUid;
51 if(implementationsInfo->Count())
53 found = Resolve(*implementationsInfo, aAdditionalParameters);
55 implementationsInfo->Reset();
56 delete implementationsInfo;
60 RImplInfoArray* CRomOnlyResolver::ListAllL(TUid aInterfaceUid,
61 const TEComResolverParams& aAdditionalParameters) const
63 // Use the base class version to get the list of matches
64 RImplInfoArray* retList = CDefaultResolver::ListAllL(aInterfaceUid, aAdditionalParameters);
66 // Now remove any from the list that aren't in ROM (or are upgrades of ROM)
67 const TInt count = retList->Count();
68 for(TInt index = count-1; index >=0; --index)
69 if(!(*retList)[index]->RomBased())
70 retList->Remove(index);