sl@0
|
1 |
// Copyright (c) 2005-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 a non-default resolver CExampleResolver.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <ecom/ecom.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
#include "TestUtilities.h" // For __FILE__LINE__
|
sl@0
|
26 |
#include "ExampleResolver.h"
|
sl@0
|
27 |
#include "RegistryData.h"
|
sl@0
|
28 |
#include "ImplementationProxy.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
CExampleResolver* CExampleResolver::NewL(MPublicRegistry& aRegistry)
|
sl@0
|
31 |
{
|
sl@0
|
32 |
return new(ELeave) CExampleResolver(aRegistry);
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
CExampleResolver::~CExampleResolver()
|
sl@0
|
36 |
{
|
sl@0
|
37 |
if(iImplementationInfoArray)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
iImplementationInfoArray->Reset();
|
sl@0
|
40 |
delete iImplementationInfoArray;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
CExampleResolver::CExampleResolver(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 |
TUid CExampleResolver::IdentifyImplementationL(TUid aInterfaceUid,
|
sl@0
|
51 |
const TEComResolverParams& aAdditionalParameters)const
|
sl@0
|
52 |
{
|
sl@0
|
53 |
RImplInfoArray& implementationsInfo = iRegistry.ListImplementationsL(aInterfaceUid);
|
sl@0
|
54 |
TUid found = KNullUid;
|
sl@0
|
55 |
if(implementationsInfo.Count())
|
sl@0
|
56 |
{
|
sl@0
|
57 |
found = Resolve(implementationsInfo, aAdditionalParameters);
|
sl@0
|
58 |
}
|
sl@0
|
59 |
return found;
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
TUid CExampleResolver::Resolve(const RImplInfoArray& aImplementationsInfo,
|
sl@0
|
63 |
const TEComResolverParams& aAdditionalParameters) const
|
sl@0
|
64 |
{
|
sl@0
|
65 |
// Loop through the implementations matching on type
|
sl@0
|
66 |
const TInt count = aImplementationsInfo.Count();
|
sl@0
|
67 |
for(TInt index = 0; index < count; ++index)
|
sl@0
|
68 |
{
|
sl@0
|
69 |
const CImplementationInformation& impData = *aImplementationsInfo[index];
|
sl@0
|
70 |
// As soon as we get a match on the datatype then return uid of the
|
sl@0
|
71 |
// implementation found.
|
sl@0
|
72 |
if (Match(impData.DataType(), // The Datatype of this implementation
|
sl@0
|
73 |
aAdditionalParameters.DataType(), // The type we are trying to find
|
sl@0
|
74 |
aAdditionalParameters.IsGenericMatch())) // If wildcards should be used
|
sl@0
|
75 |
return impData.ImplementationUid();
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
return KNullUid;
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
RImplInfoArray* CExampleResolver::ListAllL(TUid aInterfaceUid,
|
sl@0
|
82 |
const TEComResolverParams& aAdditionalParameters) const
|
sl@0
|
83 |
{
|
sl@0
|
84 |
// Use the member var to create the array so that we get proper cleanup behaviour
|
sl@0
|
85 |
iImplementationInfoArray = new(ELeave) RImplInfoArray;
|
sl@0
|
86 |
RImplInfoArray* retList = iImplementationInfoArray;
|
sl@0
|
87 |
|
sl@0
|
88 |
RImplInfoArray& fullList = iRegistry.ListImplementationsL(aInterfaceUid);
|
sl@0
|
89 |
|
sl@0
|
90 |
const TBool useWildcards = aAdditionalParameters.IsGenericMatch();
|
sl@0
|
91 |
const TDesC8& matchType = aAdditionalParameters.DataType();
|
sl@0
|
92 |
const TInt numImps = fullList.Count();
|
sl@0
|
93 |
for(TInt index = 0; index < numImps; ++index)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
if(Match(fullList[index]->DataType(), matchType, useWildcards))
|
sl@0
|
96 |
{
|
sl@0
|
97 |
User::LeaveIfError(retList->Append(fullList[index]));
|
sl@0
|
98 |
}
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
// Reset the member variable because we are passing ownership back
|
sl@0
|
102 |
iImplementationInfoArray = NULL;
|
sl@0
|
103 |
return retList;
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
TBool CExampleResolver::Match(const TDesC8& aImplementationType,
|
sl@0
|
107 |
const TDesC8& aMatchType,
|
sl@0
|
108 |
TBool aUseWildcards) const
|
sl@0
|
109 |
{
|
sl@0
|
110 |
TInt matchPos = KErrNotFound;
|
sl@0
|
111 |
|
sl@0
|
112 |
_LIT8(dataSeparator, "||");
|
sl@0
|
113 |
const TInt separatorLength = dataSeparator().Length();
|
sl@0
|
114 |
|
sl@0
|
115 |
// Look for the section separator marker '||'
|
sl@0
|
116 |
TInt separatorPos = aImplementationType.Find(dataSeparator);
|
sl@0
|
117 |
if(separatorPos == KErrNotFound)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
// Match against the whole string
|
sl@0
|
120 |
if(aUseWildcards)
|
sl@0
|
121 |
matchPos = aMatchType.Match(aImplementationType);
|
sl@0
|
122 |
else
|
sl@0
|
123 |
matchPos = aMatchType.Compare(aImplementationType);
|
sl@0
|
124 |
}
|
sl@0
|
125 |
else
|
sl@0
|
126 |
{
|
sl@0
|
127 |
// Find the first section, up to the separator
|
sl@0
|
128 |
TPtrC8 dataSection = aImplementationType.Left(separatorPos);
|
sl@0
|
129 |
TPtrC8 remainingData = aImplementationType.Mid(separatorPos + separatorLength);
|
sl@0
|
130 |
// Match against each section in turn
|
sl@0
|
131 |
while(separatorPos != KErrNotFound)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
// Search this section
|
sl@0
|
134 |
if(aUseWildcards)
|
sl@0
|
135 |
matchPos = aMatchType.Match(dataSection);
|
sl@0
|
136 |
else
|
sl@0
|
137 |
matchPos = aMatchType.Compare(dataSection);
|
sl@0
|
138 |
|
sl@0
|
139 |
// If we found it then no need to continue, so return
|
sl@0
|
140 |
if(matchPos != KErrNotFound)
|
sl@0
|
141 |
return ETrue;
|
sl@0
|
142 |
|
sl@0
|
143 |
// Move on to the next section
|
sl@0
|
144 |
separatorPos = remainingData.Find(dataSeparator);
|
sl@0
|
145 |
if(separatorPos != KErrNotFound)
|
sl@0
|
146 |
{
|
sl@0
|
147 |
dataSection.Set(remainingData.Left(separatorPos));
|
sl@0
|
148 |
remainingData.Set(remainingData.Mid(separatorPos + separatorLength));
|
sl@0
|
149 |
}
|
sl@0
|
150 |
else
|
sl@0
|
151 |
dataSection.Set(remainingData);
|
sl@0
|
152 |
}
|
sl@0
|
153 |
|
sl@0
|
154 |
// Check the final part
|
sl@0
|
155 |
if(aUseWildcards)
|
sl@0
|
156 |
matchPos = aMatchType.Match(dataSection);
|
sl@0
|
157 |
else
|
sl@0
|
158 |
matchPos = aMatchType.Compare(dataSection);
|
sl@0
|
159 |
|
sl@0
|
160 |
}
|
sl@0
|
161 |
return matchPos != KErrNotFound;
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
// __________________________________________________________________________
|
sl@0
|
165 |
// Exported proxy for instantiation method resolution
|
sl@0
|
166 |
// Define the interface UIDs
|
sl@0
|
167 |
const TImplementationProxy ImplementationTable[] =
|
sl@0
|
168 |
{
|
sl@0
|
169 |
IMPLEMENTATION_PROXY_ENTRY(0x10244444,CExampleResolver::NewL),
|
sl@0
|
170 |
IMPLEMENTATION_PROXY_ENTRY(0x10999999,CExampleResolver::NewL)
|
sl@0
|
171 |
};
|
sl@0
|
172 |
|
sl@0
|
173 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
|
sl@0
|
176 |
|
sl@0
|
177 |
return ImplementationTable;
|
sl@0
|
178 |
}
|
sl@0
|
179 |
|