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 a non-default resolver CExampleResolver.
22 #include <ecom/ecom.h>
24 #include "ExampleResolver.h"
25 #include "RegistryData.h"
27 CExampleResolver* CExampleResolver::NewL(MPublicRegistry& aRegistry)
29 return new(ELeave) CExampleResolver(aRegistry);
32 CExampleResolver::~CExampleResolver()
34 if(iImplementationInfoArray)
36 iImplementationInfoArray->Reset();
37 delete iImplementationInfoArray;
41 CExampleResolver::CExampleResolver(MPublicRegistry& aRegistry)
42 : CResolver(aRegistry)
47 TUid CExampleResolver::IdentifyImplementationL(TUid aInterfaceUid,
48 const TEComResolverParams& aAdditionalParameters) const
50 RImplInfoArray& implementationsInfo = iRegistry.ListImplementationsL(aInterfaceUid);
51 TUid found = KNullUid;
52 if(implementationsInfo.Count())
54 found = Resolve(implementationsInfo, aAdditionalParameters);
59 TUid CExampleResolver::Resolve(const RImplInfoArray& aImplementationsInfo,
60 const TEComResolverParams& aAdditionalParameters) const
62 // Loop through the implementations matching on type
63 const TInt count = aImplementationsInfo.Count();
64 for(TInt index = 0; index < count; ++index)
66 const CImplementationInformation& impData = *aImplementationsInfo[index];
67 // As soon as we get a match on the datatype then return uid of the
68 // implementation found.
69 if (Match(impData.DataType(), // The Datatype of this implementation
70 aAdditionalParameters.DataType(), // The type we are trying to find
71 aAdditionalParameters.IsGenericMatch())) // If wildcards should be used
72 return impData.ImplementationUid();
78 RImplInfoArray* CExampleResolver::ListAllL(TUid aInterfaceUid,
79 const TEComResolverParams& aAdditionalParameters) const
81 //Simulation for INC054125 - ECOM cleanup stack error
82 _LIT8(KCriteriaData, "INC054125");
83 const TDesC8& dataType = aAdditionalParameters.DataType();
84 if(aInterfaceUid.iUid == 0x10009DC8 && dataType.Compare(KCriteriaData) == 0)
86 User::Leave(KErrGeneral);
88 // Use the member var to create the array so that we get proper cleanup behaviour
89 iImplementationInfoArray = new(ELeave) RImplInfoArray;
90 RImplInfoArray* retList = iImplementationInfoArray;
92 RImplInfoArray& fullList = iRegistry.ListImplementationsL(aInterfaceUid);
94 const TBool useWildcards = aAdditionalParameters.IsGenericMatch();
95 const TDesC8& matchType = aAdditionalParameters.DataType();
96 const TInt numImps = fullList.Count();
97 for(TInt index = 0; index < numImps; ++index)
99 if(Match(fullList[index]->DataType(), matchType, useWildcards))
101 User::LeaveIfError(retList->Append(fullList[index]));
105 // Reset the member variable because we are passing ownership back
106 iImplementationInfoArray = NULL;
110 TBool CExampleResolver::Match(const TDesC8& aImplementationType,
111 const TDesC8& aMatchType,
112 TBool aUseWildcards) const
114 TInt matchPos = KErrNotFound;
116 _LIT8(dataSeparator, "||");
117 const TInt separatorLength = dataSeparator().Length();
119 // Look for the section separator marker '||'
120 TInt separatorPos = aImplementationType.Find(dataSeparator);
121 if(separatorPos == KErrNotFound)
123 // Match against the whole string
125 matchPos = aMatchType.Match(aImplementationType);
127 matchPos = aMatchType.Compare(aImplementationType);
131 // Find the first section, up to the separator
132 TPtrC8 dataSection = aImplementationType.Left(separatorPos);
133 TPtrC8 remainingData = aImplementationType.Mid(separatorPos + separatorLength);
134 // Match against each section in turn
135 while(separatorPos != KErrNotFound)
137 // Search this section
139 matchPos = aMatchType.Match(dataSection);
141 matchPos = aMatchType.Compare(dataSection);
143 // If we found it then no need to continue, so return
144 if(matchPos != KErrNotFound)
147 // Move on to the next section
148 separatorPos = remainingData.Find(dataSeparator);
149 if(separatorPos != KErrNotFound)
151 dataSection.Set(remainingData.Left(separatorPos));
152 remainingData.Set(remainingData.Mid(separatorPos + separatorLength));
155 dataSection.Set(remainingData);
158 // Check the final part
160 matchPos = aMatchType.Match(dataSection);
162 matchPos = aMatchType.Compare(dataSection);
165 return matchPos != KErrNotFound;