os/ossrv/lowlevellibsandfws/pluginfw/Framework/T_PlatSecResolver/T_SecResolver.cpp
Update contrib.
2 * Copyright (c) 2004-2007 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
22 Comments : Implements a non-default resolver CPlatSecResolver.
26 #include <ecom/ecom.h>
27 #include "ImplementationProxy.h"
28 #include "T_SecResolver.h"
29 #include "RegistryData.h"
31 CPlatSecResolver* CPlatSecResolver::NewL(MPublicRegistry& aRegistry)
33 return new(ELeave) CPlatSecResolver(aRegistry);
36 CPlatSecResolver::~CPlatSecResolver()
38 if(iImplementationInfoArray)
40 iImplementationInfoArray->Reset();
41 delete iImplementationInfoArray;
45 CPlatSecResolver::CPlatSecResolver(MPublicRegistry& aRegistry)
46 : CResolver(aRegistry)
51 TUid CPlatSecResolver::IdentifyImplementationL(TUid aInterfaceUid,
52 const TEComResolverParams& aAdditionalParameters)const
55 RImplInfoArray& implementationsInfo = iRegistry.ListImplementationsL(aInterfaceUid);
56 TUid found = KNullUid;
57 if(implementationsInfo.Count())
59 found = Resolve(implementationsInfo, aAdditionalParameters);
64 TUid CPlatSecResolver::Resolve(const RImplInfoArray& aImplementationsInfo,
65 const TEComResolverParams& aAdditionalParameters) const
67 // Loop through the implementations matching on type
68 const TInt count = aImplementationsInfo.Count();
69 for(TInt index = 0; index < count; ++index)
71 const CImplementationInformation& impData = *aImplementationsInfo[index];
72 // As soon as we get a match on the datatype then return uid of the
73 // implementation found.
74 if (Match(impData.DataType(), // The Datatype of this implementation
75 aAdditionalParameters.DataType(), // The type we are trying to find
76 aAdditionalParameters.IsGenericMatch())) // If wildcards should be used
77 return impData.ImplementationUid();
83 RImplInfoArray* CPlatSecResolver::ListAllL(TUid aInterfaceUid,
84 const TEComResolverParams& aAdditionalParameters) const
86 // Use the member var to create the array so that we get proper cleanup behaviour
87 iImplementationInfoArray = new(ELeave) RImplInfoArray;
88 RImplInfoArray* retList = iImplementationInfoArray;
90 RImplInfoArray& fullList = iRegistry.ListImplementationsL(aInterfaceUid);
92 const TBool useWildcards = aAdditionalParameters.IsGenericMatch();
93 const TDesC8& matchType = aAdditionalParameters.DataType();
94 const TInt numImps = fullList.Count();
95 for(TInt index = 0; index < numImps; ++index)
97 if(Match(fullList[index]->DataType(), matchType, useWildcards))
99 User::LeaveIfError(retList->Append(fullList[index]));
103 // Reset the member variable because we are passing ownership back
104 iImplementationInfoArray = NULL;
108 TBool CPlatSecResolver::Match(const TDesC8& aImplementationType,
109 const TDesC8& aMatchType,
110 TBool aUseWildcards) const
112 TInt matchPos = KErrNotFound;
114 _LIT8(dataSeparator, "||");
115 const TInt separatorLength = dataSeparator().Length();
117 // Look for the section separator marker '||'
118 TInt separatorPos = aImplementationType.Find(dataSeparator);
119 if(separatorPos == KErrNotFound)
121 // Match against the whole string
123 matchPos = aMatchType.Match(aImplementationType);
125 matchPos = aMatchType.Compare(aImplementationType);
129 // Find the first section, up to the separator
130 TPtrC8 dataSection = aImplementationType.Left(separatorPos);
131 TPtrC8 remainingData = aImplementationType.Mid(separatorPos + separatorLength);
132 // Match against each section in turn
133 while(separatorPos != KErrNotFound)
135 // Search this section
137 matchPos = aMatchType.Match(dataSection);
139 matchPos = aMatchType.Compare(dataSection);
141 // If we found it then no need to continue, so return
142 if(matchPos != KErrNotFound)
145 // Move on to the next section
146 separatorPos = remainingData.Find(dataSeparator);
147 if(separatorPos != KErrNotFound)
149 dataSection.Set(remainingData.Left(separatorPos));
150 remainingData.Set(remainingData.Mid(separatorPos + separatorLength));
153 dataSection.Set(remainingData);
156 // Check the final part
158 matchPos = aMatchType.Match(dataSection);
160 matchPos = aMatchType.Compare(dataSection);
163 return matchPos != KErrNotFound;
166 const TImplementationProxy ImplementationTable[] =
168 IMPLEMENTATION_PROXY_ENTRY(0x102026AC, CPlatSecResolver::NewL)
171 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
173 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
174 return ImplementationTable;