os/ossrv/lowlevellibsandfws/pluginfw/Framework/T_PlatSecResolver/T_PlatSecResolver.cpp
Update contrib.
1 // Copyright (c) 2005-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 a non-default resolver CExampleResolver.
23 #include <ecom/ecom.h>
25 #include "TestUtilities.h" // For __FILE__LINE__
26 #include "ExampleResolver.h"
27 #include "RegistryData.h"
28 #include "ImplementationProxy.h"
30 CExampleResolver* CExampleResolver::NewL(MPublicRegistry& aRegistry)
32 return new(ELeave) CExampleResolver(aRegistry);
35 CExampleResolver::~CExampleResolver()
37 if(iImplementationInfoArray)
39 iImplementationInfoArray->Reset();
40 delete iImplementationInfoArray;
44 CExampleResolver::CExampleResolver(MPublicRegistry& aRegistry)
45 : CResolver(aRegistry)
50 TUid CExampleResolver::IdentifyImplementationL(TUid aInterfaceUid,
51 const TEComResolverParams& aAdditionalParameters)const
53 RImplInfoArray& implementationsInfo = iRegistry.ListImplementationsL(aInterfaceUid);
54 TUid found = KNullUid;
55 if(implementationsInfo.Count())
57 found = Resolve(implementationsInfo, aAdditionalParameters);
62 TUid CExampleResolver::Resolve(const RImplInfoArray& aImplementationsInfo,
63 const TEComResolverParams& aAdditionalParameters) const
65 // Loop through the implementations matching on type
66 const TInt count = aImplementationsInfo.Count();
67 for(TInt index = 0; index < count; ++index)
69 const CImplementationInformation& impData = *aImplementationsInfo[index];
70 // As soon as we get a match on the datatype then return uid of the
71 // implementation found.
72 if (Match(impData.DataType(), // The Datatype of this implementation
73 aAdditionalParameters.DataType(), // The type we are trying to find
74 aAdditionalParameters.IsGenericMatch())) // If wildcards should be used
75 return impData.ImplementationUid();
81 RImplInfoArray* CExampleResolver::ListAllL(TUid aInterfaceUid,
82 const TEComResolverParams& aAdditionalParameters) const
84 // Use the member var to create the array so that we get proper cleanup behaviour
85 iImplementationInfoArray = new(ELeave) RImplInfoArray;
86 RImplInfoArray* retList = iImplementationInfoArray;
88 RImplInfoArray& fullList = iRegistry.ListImplementationsL(aInterfaceUid);
90 const TBool useWildcards = aAdditionalParameters.IsGenericMatch();
91 const TDesC8& matchType = aAdditionalParameters.DataType();
92 const TInt numImps = fullList.Count();
93 for(TInt index = 0; index < numImps; ++index)
95 if(Match(fullList[index]->DataType(), matchType, useWildcards))
97 User::LeaveIfError(retList->Append(fullList[index]));
101 // Reset the member variable because we are passing ownership back
102 iImplementationInfoArray = NULL;
106 TBool CExampleResolver::Match(const TDesC8& aImplementationType,
107 const TDesC8& aMatchType,
108 TBool aUseWildcards) const
110 TInt matchPos = KErrNotFound;
112 _LIT8(dataSeparator, "||");
113 const TInt separatorLength = dataSeparator().Length();
115 // Look for the section separator marker '||'
116 TInt separatorPos = aImplementationType.Find(dataSeparator);
117 if(separatorPos == KErrNotFound)
119 // Match against the whole string
121 matchPos = aMatchType.Match(aImplementationType);
123 matchPos = aMatchType.Compare(aImplementationType);
127 // Find the first section, up to the separator
128 TPtrC8 dataSection = aImplementationType.Left(separatorPos);
129 TPtrC8 remainingData = aImplementationType.Mid(separatorPos + separatorLength);
130 // Match against each section in turn
131 while(separatorPos != KErrNotFound)
133 // Search this section
135 matchPos = aMatchType.Match(dataSection);
137 matchPos = aMatchType.Compare(dataSection);
139 // If we found it then no need to continue, so return
140 if(matchPos != KErrNotFound)
143 // Move on to the next section
144 separatorPos = remainingData.Find(dataSeparator);
145 if(separatorPos != KErrNotFound)
147 dataSection.Set(remainingData.Left(separatorPos));
148 remainingData.Set(remainingData.Mid(separatorPos + separatorLength));
151 dataSection.Set(remainingData);
154 // Check the final part
156 matchPos = aMatchType.Match(dataSection);
158 matchPos = aMatchType.Compare(dataSection);
161 return matchPos != KErrNotFound;
164 // __________________________________________________________________________
165 // Exported proxy for instantiation method resolution
166 // Define the interface UIDs
167 const TImplementationProxy ImplementationTable[] =
169 IMPLEMENTATION_PROXY_ENTRY(0x10244444,CExampleResolver::NewL),
170 IMPLEMENTATION_PROXY_ENTRY(0x10999999,CExampleResolver::NewL)
173 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
175 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
177 return ImplementationTable;