os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/RegistryResolveTransaction.cpp
Update contrib.
1 // Copyright (c) 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 // This file contains the implementation of the CRegistryResolveTransaction class.
18 #include "RegistryData.h"
19 #include "RegistryResolveTransaction.h"
20 #include "EComMessageIds.h"
22 // CRegistryResolveTransaction class
24 Constructor for CRegistryResolveTransaction
25 @param aRegistryData Registry data handle.
26 @param aExtendedInterfaces The array of extended interfaces for match.
27 @param aClientRequest Client's request
28 @param aCapability The boolean value for checking the incoming client's capability
30 CRegistryResolveTransaction::CRegistryResolveTransaction(CRegistryData &aRegistryData,
31 const RExtendedInterfacesArray& aExtendedInterfaces,
32 const TClientRequest& aClientRequest,TBool aCapability):
33 iRegistryData(aRegistryData),
34 iExtendedInterfaces(&aExtendedInterfaces),
35 iClientRequest(&aClientRequest),
36 iCapability(aCapability)
42 Standardized safe construction which leaves nothing on the cleanup stack.
43 @param aRegistryData Registry data handle.
44 @param aExtendedInterfaces The array of extended interfaces for match.
45 @param aClientRequest Client's request
46 @param aCapability The boolean value for checking the incoming client's capability
47 @return The newly created instance.
49 CRegistryResolveTransaction* CRegistryResolveTransaction::NewL(CRegistryData &aRegistryData,
50 const RExtendedInterfacesArray& aExtendedInterfaces,
51 const TClientRequest& aClientRequest,TBool aCapability)
53 CRegistryResolveTransaction* self=new(ELeave) CRegistryResolveTransaction(aRegistryData,aExtendedInterfaces,aClientRequest,aCapability);
57 CRegistryResolveTransaction::~CRegistryResolveTransaction()
59 iImplementationInfo.Close();
63 Returns an array of implementations which satisfy the specified interface, extended interface(s) and
64 pass the capability check.
65 @param aInterfaceUid The Uid of the interface which the implementations should provide
66 @return Array of implementations which satisfy the specified interface
68 RImplInfoArray& CRegistryResolveTransaction::ListImplementationsL(TUid aInterfaceUid) const
70 __ASSERT_DEBUG(iExtendedInterfaces!=NULL, User::Invariant());
71 __ASSERT_DEBUG(iClientRequest!=NULL, User::Invariant());
72 iImplementationInfo.Reset();
74 CRegistryData::RImplDataArray implDataList;
75 CleanupClosePushL(implDataList);
76 iRegistryData.ListImplementationsL(aInterfaceUid,implDataList);
79 // Do capability check and extended interfaces check
80 for (TInt j = 0; j < implDataList.Count(); j++)
82 CRegistryData::CImplementationData *currentImplementation = implDataList[j];
83 CImplementationInformation* implInfo = currentImplementation->iImplInfo;
84 CRegistryData::CDllData *dll = currentImplementation->iParent->iParent;
88 ListImplementationsL(implInfo,dll);
92 // Check the capability of the calling client to see
93 // if it has the capabilities to view the implementation in the
94 // dll in which the implementation resides.
95 if(iClientRequest->CheckCapability(dll->iCapSet,*(implInfo)))
97 ListImplementationsL(implInfo,dll);
103 CleanupStack::PopAndDestroy(&implDataList);
104 return iImplementationInfo;
108 Does the extended interface checks
109 @param aImplInfo pointer to the CImplementationInformation class
110 @param aDll pointer to the CDllData class
113 void CRegistryResolveTransaction::ListImplementationsL(CImplementationInformation* aImplInfo,CRegistryData::CDllData *aDll) const
115 TBool passExtendedInterfaceCheck = ETrue;
116 // Filter on the extended interfaces.
117 RExtendedInterfacesArray* extendedInterfacesOfThisImp = aImplInfo->GetExtendedInterfaceList();
118 // For each extended interface to filter on, see if the extended
119 // interface exists in this implementation.
120 if (iExtendedInterfaces->Count() > 0 && extendedInterfacesOfThisImp == NULL)
122 passExtendedInterfaceCheck = EFalse;
126 for (TInt i=0;i<iExtendedInterfaces->Count();i++)
128 if (extendedInterfacesOfThisImp->Find((*iExtendedInterfaces)[i]) == KErrNotFound)
130 passExtendedInterfaceCheck = EFalse;
135 if (passExtendedInterfaceCheck)
137 aImplInfo->SetVendorId(aDll->iVid);
138 // Append the capability check passed found implementation
139 User::LeaveIfError(iImplementationInfo.Append(aImplInfo));