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