os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/DefaultResolver.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Implements the default CDefaultResolver class.
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @internalComponent
    21 */
    22 
    23 #include <ecom/ecom.h>
    24 #include <ecom/ecomerrorcodes.h>
    25 #include <ecom/ecomresolverparams.h>
    26 #include <ecom/implementationinformation.h>
    27 
    28 #include "TestUtilities.h"	// For __FILE__LINE__
    29 #include "DefaultResolver.h"
    30 
    31 CDefaultResolver* CDefaultResolver::NewL(MPublicRegistry& aRegistry)
    32 	{
    33 	return new(ELeave) CDefaultResolver(aRegistry);
    34 	}
    35 
    36 // Default d'tor
    37 
    38 CDefaultResolver::~CDefaultResolver()
    39 	{
    40 	}
    41 
    42 // Default c'tor
    43 
    44 CDefaultResolver::CDefaultResolver(MPublicRegistry& aRegistry)
    45 : CResolver(aRegistry)
    46 	{
    47 	// Do nothing here
    48 	}
    49 
    50 
    51 TUid CDefaultResolver::IdentifyImplementationL(TUid aInterfaceUid, 
    52 											   const TEComResolverParams& aAdditionalParameters) const
    53 	{
    54 	RImplInfoArray* implementationsInfo = ListAllL(aInterfaceUid, aAdditionalParameters);
    55 	TUid found = Resolve(*implementationsInfo, aAdditionalParameters);
    56 	implementationsInfo->Reset();
    57 	delete implementationsInfo;
    58 	return found;
    59 	}
    60 
    61 
    62 TUid CDefaultResolver::Resolve(const RImplInfoArray& aImplementationsInfo, 
    63 							   const TEComResolverParams& aAdditionalParameters) const
    64 	{
    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();
    69 
    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)
    74 		{
    75 		const CImplementationInformation& impData = *aImplementationsInfo[index];
    76 		const TDesC8& dataType = impData.DataType();
    77 
    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
    83 			{
    84 			// We have got an exact match so return this
    85 			return impData.ImplementationUid();
    86 			}
    87 		else if(isGenericMatch) // If the client wants us to use wildcards
    88 			{
    89 			if(Match(dataType,
    90 					 matchType,
    91 					 ETrue))
    92 				{
    93 				// We have matched using wildcards so work out a confidence value
    94 				TInt confidence = 0;
    95 				TInt length = Min(matchType.Length(), dataType.Length());
    96 				while((matchType[confidence] == dataType[confidence]) && 
    97 					  (++confidence < length))
    98 					{
    99 					}
   100 				if(confidence > wildConfidence)
   101 					{
   102 					wildConfidence = confidence;
   103 					wildMatched = impData.ImplementationUid();
   104 					}
   105 				}
   106 			}
   107 		}
   108 
   109 	return wildMatched;
   110 	}
   111 
   112 void CloseAndDeleteRArray(TAny* aObject)
   113 	{
   114 	RImplInfoArray* array=reinterpret_cast<RImplInfoArray*>(aObject);
   115 	if (array)
   116 		array->Close();
   117 	delete array;
   118 	}
   119 
   120 
   121 RImplInfoArray* CDefaultResolver::ListAllL(TUid aInterfaceUid, 
   122 										   const TEComResolverParams& aAdditionalParameters) const
   123 	{
   124 	// Use the member var to create the array so that we get proper cleanup behaviour
   125 	RImplInfoArray* retList = new (ELeave) RImplInfoArray;
   126 	
   127 	CleanupStack::PushL(TCleanupItem(CloseAndDeleteRArray,retList));
   128 	RImplInfoArray& fullList = iRegistry.ListImplementationsL(aInterfaceUid);
   129 
   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)
   134 		{	
   135 		if(Match(fullList[index]->DataType(), matchType, useWildcards))
   136 			{
   137 			User::LeaveIfError(retList->Append(fullList[index]));
   138 			}
   139 		}
   140 
   141 	// Reset the member variable because we are passing ownership back
   142 	CleanupStack::Pop();
   143 	return retList;
   144 	}
   145 
   146 TBool CDefaultResolver::Match(const TDesC8& aImplementationType, 
   147 							  const TDesC8& aMatchType, 
   148 							  TBool aUseWildcards) const
   149 	{
   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)
   154 
   155 	TBool gotMatch = ETrue;
   156 	
   157 	if(aMatchType.Length()!=0)
   158 	{
   159 		gotMatch = EFalse;
   160 		
   161 		_LIT8(dataSeparator, "||");
   162 		const TInt separatorLength = dataSeparator().Length();
   163 
   164 		// Look for the section separator marker '||'
   165 		TInt separatorPos = aImplementationType.Find(dataSeparator);
   166 		if(separatorPos == KErrNotFound)
   167 			{
   168 			// Match against the whole string
   169 			if(aUseWildcards)
   170 				gotMatch = aMatchType.Match(aImplementationType) != KErrNotFound;
   171 			else
   172 				gotMatch = aMatchType.Compare(aImplementationType) == 0;
   173 			}
   174 		else
   175 			{
   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)
   181 				{
   182 				// Search this section
   183 				if(aUseWildcards)
   184 					gotMatch = aMatchType.Match(dataSection) != KErrNotFound;
   185 				else
   186 					gotMatch = aMatchType.Compare(dataSection) == 0;
   187 
   188 				// If we found it then no need to continue, so return
   189 				if(gotMatch)
   190 					return ETrue;
   191 
   192 				// Move on to the next section
   193 				separatorPos = remainingData.Find(dataSeparator);
   194 				if(separatorPos != KErrNotFound)
   195 					{
   196 					dataSection.Set(remainingData.Left(separatorPos));
   197 					remainingData.Set(remainingData.Mid(separatorPos + separatorLength));
   198 					}
   199 				else
   200 					dataSection.Set(remainingData);
   201 				}
   202 
   203 			// Check the final part
   204 			if(aUseWildcards)
   205 				gotMatch = aMatchType.Match(dataSection) != KErrNotFound;
   206 			else
   207 				gotMatch = aMatchType.Compare(dataSection) == 0;
   208 			}
   209 		}
   210 		return gotMatch;
   211 	}