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