Update contrib.
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 default CDefaultResolver 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 "DefaultResolver.h"
31 CDefaultResolver* CDefaultResolver::NewL(MPublicRegistry& aRegistry)
33 return new(ELeave) CDefaultResolver(aRegistry);
38 CDefaultResolver::~CDefaultResolver()
44 CDefaultResolver::CDefaultResolver(MPublicRegistry& aRegistry)
45 : CResolver(aRegistry)
51 TUid CDefaultResolver::IdentifyImplementationL(TUid aInterfaceUid,
52 const TEComResolverParams& aAdditionalParameters) const
54 RImplInfoArray* implementationsInfo = ListAllL(aInterfaceUid, aAdditionalParameters);
55 TUid found = Resolve(*implementationsInfo, aAdditionalParameters);
56 implementationsInfo->Reset();
57 delete implementationsInfo;
62 TUid CDefaultResolver::Resolve(const RImplInfoArray& aImplementationsInfo,
63 const TEComResolverParams& aAdditionalParameters) const
65 // Place to store the result if we get a wildcard match
66 TUid wildMatched = KNullUid;
67 TInt wildConfidence = KErrNotFound;
68 const TDesC8& matchType = aAdditionalParameters.DataType();
70 // Loop through the implementations matching on type
71 const TInt count = aImplementationsInfo.Count();
72 TBool isGenericMatch=aAdditionalParameters.IsGenericMatch();
73 for(TInt index = 0; index < count; ++index)
75 const CImplementationInformation& impData = *aImplementationsInfo[index];
76 const TDesC8& dataType = impData.DataType();
78 // As soon as we get a match on the datatype then return uid of the
79 // implementation found.
80 if(Match(dataType, // The Datatype of this implementation
81 matchType, // The type we are trying to find
82 EFalse)) // Don't use wildcards first
84 // We have got an exact match so return this
85 return impData.ImplementationUid();
87 else if(isGenericMatch) // If the client wants us to use wildcards
93 // We have matched using wildcards so work out a confidence value
95 TInt length = Min(matchType.Length(), dataType.Length());
96 while((matchType[confidence] == dataType[confidence]) &&
97 (++confidence < length))
100 if(confidence > wildConfidence)
102 wildConfidence = confidence;
103 wildMatched = impData.ImplementationUid();
112 void CloseAndDeleteRArray(TAny* aObject)
114 RImplInfoArray* array=reinterpret_cast<RImplInfoArray*>(aObject);
121 RImplInfoArray* CDefaultResolver::ListAllL(TUid aInterfaceUid,
122 const TEComResolverParams& aAdditionalParameters) const
124 // Use the member var to create the array so that we get proper cleanup behaviour
125 RImplInfoArray* retList = new (ELeave) RImplInfoArray;
127 CleanupStack::PushL(TCleanupItem(CloseAndDeleteRArray,retList));
128 RImplInfoArray& fullList = iRegistry.ListImplementationsL(aInterfaceUid);
130 const TBool useWildcards = aAdditionalParameters.IsGenericMatch();
131 const TDesC8& matchType = aAdditionalParameters.DataType();
132 const TInt numImps = fullList.Count();
133 for(TInt index = 0; index < numImps; ++index)
135 if(Match(fullList[index]->DataType(), matchType, useWildcards))
137 User::LeaveIfError(retList->Append(fullList[index]));
141 // Reset the member variable because we are passing ownership back
146 TBool CDefaultResolver::Match(const TDesC8& aImplementationType,
147 const TDesC8& aMatchType,
148 TBool aUseWildcards) const
150 // In this function if allowing wildcards then TDesC8::Match is used which returns
151 // the position of the match or KErrNotFound
152 // If not allowing wildcards then TDesC8::Compare is used which returns a TInt which
153 // indicates if one descriptor is bigger than the other (0 if they are identical)
155 TBool gotMatch = ETrue;
157 if(aMatchType.Length()!=0)
161 _LIT8(dataSeparator, "||");
162 const TInt separatorLength = dataSeparator().Length();
164 // Look for the section separator marker '||'
165 TInt separatorPos = aImplementationType.Find(dataSeparator);
166 if(separatorPos == KErrNotFound)
168 // Match against the whole string
170 gotMatch = aMatchType.Match(aImplementationType) != KErrNotFound;
172 gotMatch = aMatchType.Compare(aImplementationType) == 0;
176 // Find the first section, up to the separator
177 TPtrC8 dataSection = aImplementationType.Left(separatorPos);
178 TPtrC8 remainingData = aImplementationType.Mid(separatorPos + separatorLength);
179 // Match against each section in turn
180 while(separatorPos != KErrNotFound)
182 // Search this section
184 gotMatch = aMatchType.Match(dataSection) != KErrNotFound;
186 gotMatch = aMatchType.Compare(dataSection) == 0;
188 // If we found it then no need to continue, so return
192 // Move on to the next section
193 separatorPos = remainingData.Find(dataSeparator);
194 if(separatorPos != KErrNotFound)
196 dataSection.Set(remainingData.Left(separatorPos));
197 remainingData.Set(remainingData.Mid(separatorPos + separatorLength));
200 dataSection.Set(remainingData);
203 // Check the final part
205 gotMatch = aMatchType.Match(dataSection) != KErrNotFound;
207 gotMatch = aMatchType.Compare(dataSection) == 0;