os/ossrv/lowlevellibsandfws/pluginfw/Framework/T_PlatSecResolver/T_SecResolver.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2004-2007 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 /** 
    20 	@internalComponent
    21 	@file
    22 	Comments : Implements a non-default resolver CPlatSecResolver.
    23 	
    24  */ 
    25 
    26 #include <ecom/ecom.h>
    27 #include "ImplementationProxy.h"
    28 #include "T_SecResolver.h"
    29 #include "RegistryData.h"
    30 
    31 CPlatSecResolver* CPlatSecResolver::NewL(MPublicRegistry& aRegistry)
    32 	{
    33 	return new(ELeave) CPlatSecResolver(aRegistry);
    34 	}
    35 
    36 CPlatSecResolver::~CPlatSecResolver()
    37 	{
    38 	if(iImplementationInfoArray)
    39 		{
    40 		iImplementationInfoArray->Reset();
    41 		delete iImplementationInfoArray;
    42 		}
    43 	}
    44 
    45 CPlatSecResolver::CPlatSecResolver(MPublicRegistry& aRegistry)
    46 : CResolver(aRegistry)
    47 	{
    48 	// Do nothing here
    49 	}
    50 
    51 TUid CPlatSecResolver::IdentifyImplementationL(TUid aInterfaceUid, 
    52 											   const TEComResolverParams& aAdditionalParameters)const
    53 											   
    54 	{
    55 	RImplInfoArray& implementationsInfo = iRegistry.ListImplementationsL(aInterfaceUid);
    56 	TUid found = KNullUid;
    57 	if(implementationsInfo.Count())
    58 		{
    59 		found = Resolve(implementationsInfo, aAdditionalParameters);
    60 		}
    61 	return found;
    62 	}
    63 
    64 TUid CPlatSecResolver::Resolve(const RImplInfoArray& aImplementationsInfo, 
    65 							   const TEComResolverParams& aAdditionalParameters) const
    66 	{
    67 	// Loop through the implementations matching on type
    68 	const TInt count = aImplementationsInfo.Count();
    69 	for(TInt index = 0; index < count; ++index)
    70 		{
    71 		const CImplementationInformation& impData = *aImplementationsInfo[index];
    72 		// As soon as we get a match on the datatype then return uid of the 
    73 		// implementation found.
    74 		if (Match(impData.DataType(),						// The Datatype of this implementation
    75 				  aAdditionalParameters.DataType(),			// The type we are trying to find
    76 				  aAdditionalParameters.IsGenericMatch()))	// If wildcards should be used
    77 			return impData.ImplementationUid();
    78 		}
    79 
    80 	return KNullUid;
    81 	}
    82 
    83 RImplInfoArray* CPlatSecResolver::ListAllL(TUid aInterfaceUid, 
    84 										   const TEComResolverParams& aAdditionalParameters) const
    85 	{
    86 	// Use the member var to create the array so that we get proper cleanup behaviour
    87 	iImplementationInfoArray = new(ELeave) RImplInfoArray;
    88 	RImplInfoArray* retList = iImplementationInfoArray;
    89 
    90 	RImplInfoArray& fullList = iRegistry.ListImplementationsL(aInterfaceUid);
    91 
    92 	const TBool useWildcards = aAdditionalParameters.IsGenericMatch();
    93 	const TDesC8& matchType = aAdditionalParameters.DataType();
    94 	const TInt numImps = fullList.Count();
    95 	for(TInt index = 0; index < numImps; ++index)
    96 		{
    97 		if(Match(fullList[index]->DataType(), matchType, useWildcards))
    98 			{
    99 			User::LeaveIfError(retList->Append(fullList[index]));
   100 			}
   101 		}
   102 
   103 	// Reset the member variable because we are passing ownership back
   104 	iImplementationInfoArray = NULL;
   105 	return retList;
   106 	}
   107 
   108 TBool CPlatSecResolver::Match(const TDesC8& aImplementationType, 
   109 							  const TDesC8& aMatchType, 
   110 							  TBool aUseWildcards) const
   111 	{
   112 	TInt matchPos = KErrNotFound;
   113 
   114 	_LIT8(dataSeparator, "||");
   115 	const TInt separatorLength = dataSeparator().Length();
   116 
   117 	// Look for the section separator marker '||'
   118 	TInt separatorPos = aImplementationType.Find(dataSeparator);
   119 	if(separatorPos == KErrNotFound)
   120 		{
   121 		// Match against the whole string
   122 		if(aUseWildcards)
   123 			matchPos = aMatchType.Match(aImplementationType);
   124 		else
   125 			matchPos = aMatchType.Compare(aImplementationType);
   126 		}
   127 	else
   128 		{
   129 		// Find the first section, up to the separator
   130 		TPtrC8 dataSection = aImplementationType.Left(separatorPos);
   131 		TPtrC8 remainingData = aImplementationType.Mid(separatorPos + separatorLength);
   132 		// Match against each section in turn
   133 		while(separatorPos != KErrNotFound)
   134 			{
   135 			// Search this section
   136 			if(aUseWildcards)
   137 				matchPos = aMatchType.Match(dataSection);
   138 			else
   139 				matchPos = aMatchType.Compare(dataSection);
   140 
   141 			// If we found it then no need to continue, so return
   142 			if(matchPos != KErrNotFound)
   143 				return ETrue;
   144 
   145 			// Move on to the next section
   146 			separatorPos = remainingData.Find(dataSeparator);
   147 			if(separatorPos != KErrNotFound)
   148 				{
   149 				dataSection.Set(remainingData.Left(separatorPos));
   150 				remainingData.Set(remainingData.Mid(separatorPos + separatorLength));
   151 				}
   152 			else
   153 				dataSection.Set(remainingData);
   154 			}
   155 
   156 		// Check the final part
   157 		if(aUseWildcards)
   158 			matchPos = aMatchType.Match(dataSection);
   159 		else
   160 			matchPos = aMatchType.Compare(dataSection);
   161 
   162 		}
   163 	return matchPos != KErrNotFound;
   164 	}
   165 
   166 const TImplementationProxy ImplementationTable[] = 
   167 	{
   168 	IMPLEMENTATION_PROXY_ENTRY(0x102026AC, CPlatSecResolver::NewL)
   169 	};
   170 
   171 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   172 	{
   173 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   174 	return ImplementationTable;
   175 	}
   176