sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Implements the default CDefaultResolver class.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@internalComponent
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <ecom/ecom.h>
|
sl@0
|
24 |
#include <ecom/ecomerrorcodes.h>
|
sl@0
|
25 |
#include <ecom/ecomresolverparams.h>
|
sl@0
|
26 |
#include <ecom/implementationinformation.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
#include "TestUtilities.h" // For __FILE__LINE__
|
sl@0
|
29 |
#include "DefaultResolver.h"
|
sl@0
|
30 |
|
sl@0
|
31 |
CDefaultResolver* CDefaultResolver::NewL(MPublicRegistry& aRegistry)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
return new(ELeave) CDefaultResolver(aRegistry);
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
// Default d'tor
|
sl@0
|
37 |
|
sl@0
|
38 |
CDefaultResolver::~CDefaultResolver()
|
sl@0
|
39 |
{
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
// Default c'tor
|
sl@0
|
43 |
|
sl@0
|
44 |
CDefaultResolver::CDefaultResolver(MPublicRegistry& aRegistry)
|
sl@0
|
45 |
: CResolver(aRegistry)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
// Do nothing here
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
|
sl@0
|
51 |
TUid CDefaultResolver::IdentifyImplementationL(TUid aInterfaceUid,
|
sl@0
|
52 |
const TEComResolverParams& aAdditionalParameters) const
|
sl@0
|
53 |
{
|
sl@0
|
54 |
RImplInfoArray* implementationsInfo = ListAllL(aInterfaceUid, aAdditionalParameters);
|
sl@0
|
55 |
TUid found = Resolve(*implementationsInfo, aAdditionalParameters);
|
sl@0
|
56 |
implementationsInfo->Reset();
|
sl@0
|
57 |
delete implementationsInfo;
|
sl@0
|
58 |
return found;
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
|
sl@0
|
62 |
TUid CDefaultResolver::Resolve(const RImplInfoArray& aImplementationsInfo,
|
sl@0
|
63 |
const TEComResolverParams& aAdditionalParameters) const
|
sl@0
|
64 |
{
|
sl@0
|
65 |
// Place to store the result if we get a wildcard match
|
sl@0
|
66 |
TUid wildMatched = KNullUid;
|
sl@0
|
67 |
TInt wildConfidence = KErrNotFound;
|
sl@0
|
68 |
const TDesC8& matchType = aAdditionalParameters.DataType();
|
sl@0
|
69 |
|
sl@0
|
70 |
// Loop through the implementations matching on type
|
sl@0
|
71 |
const TInt count = aImplementationsInfo.Count();
|
sl@0
|
72 |
TBool isGenericMatch=aAdditionalParameters.IsGenericMatch();
|
sl@0
|
73 |
for(TInt index = 0; index < count; ++index)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
const CImplementationInformation& impData = *aImplementationsInfo[index];
|
sl@0
|
76 |
const TDesC8& dataType = impData.DataType();
|
sl@0
|
77 |
|
sl@0
|
78 |
// As soon as we get a match on the datatype then return uid of the
|
sl@0
|
79 |
// implementation found.
|
sl@0
|
80 |
if(Match(dataType, // The Datatype of this implementation
|
sl@0
|
81 |
matchType, // The type we are trying to find
|
sl@0
|
82 |
EFalse)) // Don't use wildcards first
|
sl@0
|
83 |
{
|
sl@0
|
84 |
// We have got an exact match so return this
|
sl@0
|
85 |
return impData.ImplementationUid();
|
sl@0
|
86 |
}
|
sl@0
|
87 |
else if(isGenericMatch) // If the client wants us to use wildcards
|
sl@0
|
88 |
{
|
sl@0
|
89 |
if(Match(dataType,
|
sl@0
|
90 |
matchType,
|
sl@0
|
91 |
ETrue))
|
sl@0
|
92 |
{
|
sl@0
|
93 |
// We have matched using wildcards so work out a confidence value
|
sl@0
|
94 |
TInt confidence = 0;
|
sl@0
|
95 |
TInt length = Min(matchType.Length(), dataType.Length());
|
sl@0
|
96 |
while((matchType[confidence] == dataType[confidence]) &&
|
sl@0
|
97 |
(++confidence < length))
|
sl@0
|
98 |
{
|
sl@0
|
99 |
}
|
sl@0
|
100 |
if(confidence > wildConfidence)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
wildConfidence = confidence;
|
sl@0
|
103 |
wildMatched = impData.ImplementationUid();
|
sl@0
|
104 |
}
|
sl@0
|
105 |
}
|
sl@0
|
106 |
}
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
return wildMatched;
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
void CloseAndDeleteRArray(TAny* aObject)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
RImplInfoArray* array=reinterpret_cast<RImplInfoArray*>(aObject);
|
sl@0
|
115 |
if (array)
|
sl@0
|
116 |
array->Close();
|
sl@0
|
117 |
delete array;
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
|
sl@0
|
121 |
RImplInfoArray* CDefaultResolver::ListAllL(TUid aInterfaceUid,
|
sl@0
|
122 |
const TEComResolverParams& aAdditionalParameters) const
|
sl@0
|
123 |
{
|
sl@0
|
124 |
// Use the member var to create the array so that we get proper cleanup behaviour
|
sl@0
|
125 |
RImplInfoArray* retList = new (ELeave) RImplInfoArray;
|
sl@0
|
126 |
|
sl@0
|
127 |
CleanupStack::PushL(TCleanupItem(CloseAndDeleteRArray,retList));
|
sl@0
|
128 |
RImplInfoArray& fullList = iRegistry.ListImplementationsL(aInterfaceUid);
|
sl@0
|
129 |
|
sl@0
|
130 |
const TBool useWildcards = aAdditionalParameters.IsGenericMatch();
|
sl@0
|
131 |
const TDesC8& matchType = aAdditionalParameters.DataType();
|
sl@0
|
132 |
const TInt numImps = fullList.Count();
|
sl@0
|
133 |
for(TInt index = 0; index < numImps; ++index)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
if(Match(fullList[index]->DataType(), matchType, useWildcards))
|
sl@0
|
136 |
{
|
sl@0
|
137 |
User::LeaveIfError(retList->Append(fullList[index]));
|
sl@0
|
138 |
}
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
// Reset the member variable because we are passing ownership back
|
sl@0
|
142 |
CleanupStack::Pop();
|
sl@0
|
143 |
return retList;
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
TBool CDefaultResolver::Match(const TDesC8& aImplementationType,
|
sl@0
|
147 |
const TDesC8& aMatchType,
|
sl@0
|
148 |
TBool aUseWildcards) const
|
sl@0
|
149 |
{
|
sl@0
|
150 |
// In this function if allowing wildcards then TDesC8::Match is used which returns
|
sl@0
|
151 |
// the position of the match or KErrNotFound
|
sl@0
|
152 |
// If not allowing wildcards then TDesC8::Compare is used which returns a TInt which
|
sl@0
|
153 |
// indicates if one descriptor is bigger than the other (0 if they are identical)
|
sl@0
|
154 |
|
sl@0
|
155 |
TBool gotMatch = ETrue;
|
sl@0
|
156 |
|
sl@0
|
157 |
if(aMatchType.Length()!=0)
|
sl@0
|
158 |
{
|
sl@0
|
159 |
gotMatch = EFalse;
|
sl@0
|
160 |
|
sl@0
|
161 |
_LIT8(dataSeparator, "||");
|
sl@0
|
162 |
const TInt separatorLength = dataSeparator().Length();
|
sl@0
|
163 |
|
sl@0
|
164 |
// Look for the section separator marker '||'
|
sl@0
|
165 |
TInt separatorPos = aImplementationType.Find(dataSeparator);
|
sl@0
|
166 |
if(separatorPos == KErrNotFound)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
// Match against the whole string
|
sl@0
|
169 |
if(aUseWildcards)
|
sl@0
|
170 |
gotMatch = aMatchType.Match(aImplementationType) != KErrNotFound;
|
sl@0
|
171 |
else
|
sl@0
|
172 |
gotMatch = aMatchType.Compare(aImplementationType) == 0;
|
sl@0
|
173 |
}
|
sl@0
|
174 |
else
|
sl@0
|
175 |
{
|
sl@0
|
176 |
// Find the first section, up to the separator
|
sl@0
|
177 |
TPtrC8 dataSection = aImplementationType.Left(separatorPos);
|
sl@0
|
178 |
TPtrC8 remainingData = aImplementationType.Mid(separatorPos + separatorLength);
|
sl@0
|
179 |
// Match against each section in turn
|
sl@0
|
180 |
while(separatorPos != KErrNotFound)
|
sl@0
|
181 |
{
|
sl@0
|
182 |
// Search this section
|
sl@0
|
183 |
if(aUseWildcards)
|
sl@0
|
184 |
gotMatch = aMatchType.Match(dataSection) != KErrNotFound;
|
sl@0
|
185 |
else
|
sl@0
|
186 |
gotMatch = aMatchType.Compare(dataSection) == 0;
|
sl@0
|
187 |
|
sl@0
|
188 |
// If we found it then no need to continue, so return
|
sl@0
|
189 |
if(gotMatch)
|
sl@0
|
190 |
return ETrue;
|
sl@0
|
191 |
|
sl@0
|
192 |
// Move on to the next section
|
sl@0
|
193 |
separatorPos = remainingData.Find(dataSeparator);
|
sl@0
|
194 |
if(separatorPos != KErrNotFound)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
dataSection.Set(remainingData.Left(separatorPos));
|
sl@0
|
197 |
remainingData.Set(remainingData.Mid(separatorPos + separatorLength));
|
sl@0
|
198 |
}
|
sl@0
|
199 |
else
|
sl@0
|
200 |
dataSection.Set(remainingData);
|
sl@0
|
201 |
}
|
sl@0
|
202 |
|
sl@0
|
203 |
// Check the final part
|
sl@0
|
204 |
if(aUseWildcards)
|
sl@0
|
205 |
gotMatch = aMatchType.Match(dataSection) != KErrNotFound;
|
sl@0
|
206 |
else
|
sl@0
|
207 |
gotMatch = aMatchType.Compare(dataSection) == 0;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
}
|
sl@0
|
210 |
return gotMatch;
|
sl@0
|
211 |
}
|