os/mm/mmlibs/mmutilitylib/src/MmPluginUtils.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
sl@0
     2
// MmPluginUtils.cpp
sl@0
     3
sl@0
     4
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     5
// All rights reserved.
sl@0
     6
// This component and the accompanying materials are made available
sl@0
     7
// under the terms of "Eclipse Public License v1.0"
sl@0
     8
// which accompanies this distribution, and is available
sl@0
     9
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
    10
//
sl@0
    11
// Initial Contributors:
sl@0
    12
// Nokia Corporation - initial contribution.
sl@0
    13
//
sl@0
    14
// Contributors:
sl@0
    15
//
sl@0
    16
// Description:
sl@0
    17
//
sl@0
    18
sl@0
    19
#include <mm/mmpluginutils.h>
sl@0
    20
#include <mm/mmcleanup.h>
sl@0
    21
sl@0
    22
//
sl@0
    23
// MmPluginUtils
sl@0
    24
//
sl@0
    25
sl@0
    26
/**
sl@0
    27
Find a plugin with the requested interfaceUid and whose match string matches
sl@0
    28
the default data field. Where there are more than one plugin, choose that
sl@0
    29
with highest version no.
sl@0
    30
*/
sl@0
    31
EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid, 
sl@0
    32
									                TInt32 aKeyOffset, 
sl@0
    33
									                const TDesC8& aDefaultData,
sl@0
    34
									                TUid aResolverUid)
sl@0
    35
	{
sl@0
    36
	RImplInfoPtrArray pluginArray;
sl@0
    37
	CleanupResetAndDestroyPushL(pluginArray);
sl@0
    38
sl@0
    39
	FindImplementationsL(aInterfaceUid, pluginArray, aDefaultData, aResolverUid);
sl@0
    40
	
sl@0
    41
	// Get higher version implementation
sl@0
    42
	TAny* higherversionplugin = GetHigherVersionImplementationKeyOffsetL(pluginArray,aKeyOffset);
sl@0
    43
	
sl@0
    44
	CleanupStack::PopAndDestroy(&pluginArray);
sl@0
    45
	return higherversionplugin;	
sl@0
    46
	}
sl@0
    47
sl@0
    48
/**
sl@0
    49
Find a plugin with the requested interfaceUid and whose match string matches
sl@0
    50
the default data field. Where there are more than one plugin, choose that
sl@0
    51
with highest version no.
sl@0
    52
*/
sl@0
    53
EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid, 
sl@0
    54
									                TInt32 aKeyOffset, 
sl@0
    55
									                const TDesC8& aDefaultData)
sl@0
    56
	{
sl@0
    57
	RImplInfoPtrArray pluginArray;
sl@0
    58
	CleanupResetAndDestroyPushL(pluginArray);
sl@0
    59
sl@0
    60
	FindImplementationsL(aInterfaceUid, pluginArray, aDefaultData);
sl@0
    61
	
sl@0
    62
	// Get higher version implementation
sl@0
    63
	TAny* higherversionplugin = GetHigherVersionImplementationKeyOffsetL(pluginArray,aKeyOffset);
sl@0
    64
sl@0
    65
	CleanupStack::PopAndDestroy(&pluginArray);
sl@0
    66
	return higherversionplugin;	
sl@0
    67
	}
sl@0
    68
sl@0
    69
/**
sl@0
    70
Find a plugin with the requested interfaceUid and whose match string matches
sl@0
    71
the default data field. Where there are more than one plugin, choose that
sl@0
    72
with highest version no.
sl@0
    73
*/
sl@0
    74
EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid, 
sl@0
    75
									                TInt32 aKeyOffset)
sl@0
    76
	{
sl@0
    77
	RImplInfoPtrArray pluginArray;
sl@0
    78
	CleanupResetAndDestroyPushL(pluginArray);
sl@0
    79
sl@0
    80
	FindImplementationsL(aInterfaceUid, pluginArray);
sl@0
    81
	
sl@0
    82
	// Get higher version implementation
sl@0
    83
	TAny* higherversionplugin = GetHigherVersionImplementationKeyOffsetL(pluginArray,aKeyOffset);
sl@0
    84
sl@0
    85
	CleanupStack::PopAndDestroy(&pluginArray);
sl@0
    86
	return higherversionplugin;	
sl@0
    87
	}
sl@0
    88
	
sl@0
    89
	
sl@0
    90
/**
sl@0
    91
Get the higher version of plugin passing keyoffset
sl@0
    92
*/
sl@0
    93
TAny* MmPluginUtils::GetHigherVersionImplementationKeyOffsetL(RImplInfoPtrArray& pluginArray, TInt32 aKeyOffset)
sl@0
    94
	{
sl@0
    95
	TAny* self = NULL;
sl@0
    96
	
sl@0
    97
	if (pluginArray.Count() == 0)
sl@0
    98
		{
sl@0
    99
		User::Leave(KErrNotSupported);
sl@0
   100
		}
sl@0
   101
	else if (pluginArray.Count() == 1)
sl@0
   102
    	{
sl@0
   103
		self = REComSession::CreateImplementationL(pluginArray[0]->ImplementationUid(), aKeyOffset);
sl@0
   104
    	}
sl@0
   105
	else 
sl@0
   106
		{
sl@0
   107
		// create each in turn, starting with the highest version, which is the start element
sl@0
   108
		for (TInt index = 0;  index < pluginArray.Count(); index++)
sl@0
   109
			{
sl@0
   110
			TInt err=KErrNone;
sl@0
   111
			self = NULL;
sl@0
   112
			TRAP(err, self = REComSession::CreateImplementationL(pluginArray[index]->ImplementationUid(), aKeyOffset))
sl@0
   113
			if (err == KErrNone)
sl@0
   114
		    	{
sl@0
   115
		    	break;
sl@0
   116
		    	}
sl@0
   117
			if (err != KErrNotSupported)
sl@0
   118
				{
sl@0
   119
				User::Leave(err);
sl@0
   120
				}
sl@0
   121
			}
sl@0
   122
		if (!self)
sl@0
   123
			{
sl@0
   124
			User::Leave(KErrNotSupported);
sl@0
   125
			}
sl@0
   126
		}
sl@0
   127
	return self;		
sl@0
   128
	}
sl@0
   129
sl@0
   130
/*
sl@0
   131
Similar but return destructor key via reference
sl@0
   132
*/
sl@0
   133
EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid, 
sl@0
   134
									                TUid& aDestructorKey,
sl@0
   135
									                const TDesC8& aDefaultData,
sl@0
   136
									                TUid aResolverUid)
sl@0
   137
	{
sl@0
   138
	RImplInfoPtrArray pluginArray;
sl@0
   139
	CleanupResetAndDestroyPushL(pluginArray);
sl@0
   140
	
sl@0
   141
	FindImplementationsL(aInterfaceUid, pluginArray, aDefaultData, aResolverUid);
sl@0
   142
    
sl@0
   143
    // Get higher version implementation
sl@0
   144
    TAny* higherversionplugin = GetHigherVersionImplementationaDestructorKeyL(pluginArray, aDestructorKey);
sl@0
   145
	
sl@0
   146
	CleanupStack::PopAndDestroy(&pluginArray);
sl@0
   147
	return higherversionplugin;	
sl@0
   148
	}
sl@0
   149
sl@0
   150
/*
sl@0
   151
Similar but return destructor key via reference
sl@0
   152
*/
sl@0
   153
EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid, 
sl@0
   154
									                TUid& aDestructorKey,
sl@0
   155
									                const TDesC8& aDefaultData)
sl@0
   156
	{
sl@0
   157
	RImplInfoPtrArray pluginArray;
sl@0
   158
	CleanupResetAndDestroyPushL(pluginArray);
sl@0
   159
	
sl@0
   160
	FindImplementationsL(aInterfaceUid, pluginArray, aDefaultData);
sl@0
   161
	
sl@0
   162
	// Get higher version implementation
sl@0
   163
    TAny* higherversionplugin = GetHigherVersionImplementationaDestructorKeyL(pluginArray, aDestructorKey);
sl@0
   164
sl@0
   165
	CleanupStack::PopAndDestroy(&pluginArray);
sl@0
   166
	return higherversionplugin;	
sl@0
   167
	}
sl@0
   168
sl@0
   169
/*
sl@0
   170
Similar but return destructor key via reference
sl@0
   171
*/
sl@0
   172
EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid, 
sl@0
   173
									                TUid& aDestructorKey)
sl@0
   174
	{
sl@0
   175
	RImplInfoPtrArray pluginArray;
sl@0
   176
	CleanupResetAndDestroyPushL(pluginArray);
sl@0
   177
	
sl@0
   178
	FindImplementationsL(aInterfaceUid, pluginArray);
sl@0
   179
	
sl@0
   180
	// Get higher version implementation
sl@0
   181
    TAny* higherversionplugin = GetHigherVersionImplementationaDestructorKeyL(pluginArray, aDestructorKey);
sl@0
   182
sl@0
   183
	CleanupStack::PopAndDestroy(&pluginArray);
sl@0
   184
	return higherversionplugin;	
sl@0
   185
	}
sl@0
   186
	
sl@0
   187
/**
sl@0
   188
Get the higher version of plugin passing destructorkey
sl@0
   189
*/
sl@0
   190
TAny* MmPluginUtils::GetHigherVersionImplementationaDestructorKeyL(RImplInfoPtrArray& pluginArray, TUid& aDestructorKey)
sl@0
   191
	{
sl@0
   192
	TAny* self = NULL;
sl@0
   193
	if (pluginArray.Count() == 0)
sl@0
   194
		{
sl@0
   195
		User::Leave(KErrNotSupported);
sl@0
   196
		}
sl@0
   197
	else if (pluginArray.Count() == 1)
sl@0
   198
    	{
sl@0
   199
		self = REComSession::CreateImplementationL(pluginArray[0]->ImplementationUid(), aDestructorKey);
sl@0
   200
    	}
sl@0
   201
	else 
sl@0
   202
		{
sl@0
   203
		// create each in turn, starting with the highest version, which is the start element
sl@0
   204
		for (TInt index = 0;  index < pluginArray.Count(); index++)
sl@0
   205
			{
sl@0
   206
			TInt err = KErrNone;
sl@0
   207
			self = NULL;
sl@0
   208
			TRAP(err, self = REComSession::CreateImplementationL(pluginArray[index]->ImplementationUid(), aDestructorKey))
sl@0
   209
		    if (err == KErrNone)
sl@0
   210
		    	{
sl@0
   211
		    	break;
sl@0
   212
		    	}
sl@0
   213
			if (err != KErrNotSupported)
sl@0
   214
				{
sl@0
   215
				User::Leave(err);
sl@0
   216
				}
sl@0
   217
			}
sl@0
   218
		if (!self)
sl@0
   219
			{
sl@0
   220
			User::Leave(KErrNotSupported);
sl@0
   221
			}
sl@0
   222
		}
sl@0
   223
	return self;		
sl@0
   224
	}
sl@0
   225
sl@0
   226
/*
sl@0
   227
The function is an implementation of the templated TLinearOrder so it can order implementation information
sl@0
   228
in an increasing version number.
sl@0
   229
*/
sl@0
   230
TInt VersionLinearOrderFunction(const CImplementationInformation& pluginA, 
sl@0
   231
                                const CImplementationInformation& pluginB)
sl@0
   232
	{
sl@0
   233
	if (pluginA.Version() == pluginB.Version())
sl@0
   234
		{
sl@0
   235
		return 0;
sl@0
   236
		}
sl@0
   237
		
sl@0
   238
	return (pluginA.Version() < pluginB.Version())? 1: -1;	
sl@0
   239
	}
sl@0
   240
	
sl@0
   241
EXPORT_C void MmPluginUtils::FindImplementationsL(TUid aInterfaceUid, 
sl@0
   242
						                RImplInfoPtrArray& aPluginArray)
sl@0
   243
	{
sl@0
   244
	REComSession::ListImplementationsL(aInterfaceUid, aPluginArray);
sl@0
   245
	
sl@0
   246
	CheckAndSortL(aPluginArray);
sl@0
   247
	}
sl@0
   248
sl@0
   249
EXPORT_C void MmPluginUtils::FindImplementationsL(TUid aInterfaceUid, 
sl@0
   250
						                RImplInfoPtrArray& aPluginArray, 
sl@0
   251
				                        const TDesC8& aDefaultData,
sl@0
   252
						                TUid aResolverUid)
sl@0
   253
	{
sl@0
   254
	TEComResolverParams resolverParams;
sl@0
   255
	resolverParams.SetDataType(aDefaultData);
sl@0
   256
	
sl@0
   257
	FindImplementationsL(aInterfaceUid, aPluginArray, resolverParams, aResolverUid);
sl@0
   258
	}
sl@0
   259
sl@0
   260
EXPORT_C void MmPluginUtils::FindImplementationsL(TUid aInterfaceUid, 
sl@0
   261
						                RImplInfoPtrArray& aPluginArray, 
sl@0
   262
				                        const TDesC8& aDefaultData)
sl@0
   263
	{
sl@0
   264
	TEComResolverParams resolverParams;
sl@0
   265
	resolverParams.SetDataType(aDefaultData);
sl@0
   266
	
sl@0
   267
	FindImplementationsL(aInterfaceUid, aPluginArray, resolverParams);
sl@0
   268
	}
sl@0
   269
sl@0
   270
void MmPluginUtils::FindImplementationsL(TUid aInterfaceUid, 
sl@0
   271
						                RImplInfoPtrArray& aPluginArray, 
sl@0
   272
				                        TEComResolverParams& aResolverParams)
sl@0
   273
	{
sl@0
   274
	REComSession::ListImplementationsL(aInterfaceUid, aResolverParams, aPluginArray);
sl@0
   275
	
sl@0
   276
	CheckAndSortL(aPluginArray);
sl@0
   277
	}
sl@0
   278
	
sl@0
   279
void MmPluginUtils::FindImplementationsL(TUid aInterfaceUid, 
sl@0
   280
						                RImplInfoPtrArray& aPluginArray, 
sl@0
   281
				                        TEComResolverParams& aResolverParams,
sl@0
   282
						                TUid aResolverUid)
sl@0
   283
	{
sl@0
   284
	REComSession::ListImplementationsL(aInterfaceUid, aResolverParams, aResolverUid, aPluginArray);
sl@0
   285
	
sl@0
   286
	CheckAndSortL(aPluginArray);
sl@0
   287
	}
sl@0
   288
	
sl@0
   289
void MmPluginUtils::CheckAndSortL(RImplInfoPtrArray& aPluginArray)
sl@0
   290
	{
sl@0
   291
	// there must be at least one implementation
sl@0
   292
	if (aPluginArray.Count() > 0)
sl@0
   293
		{
sl@0
   294
		if (aPluginArray.Count() > 1)
sl@0
   295
			{
sl@0
   296
			aPluginArray.Sort(VersionLinearOrderFunction);
sl@0
   297
			}
sl@0
   298
	
sl@0
   299
		// if the highest version is zero there is no need to linger -- it should not be supported
sl@0
   300
		// and we will leave
sl@0
   301
		if (aPluginArray[0]->Version() == 0)
sl@0
   302
			{
sl@0
   303
			// plugins were found to be malformed, with 0 version numbers
sl@0
   304
			User::Leave(KErrNotSupported);
sl@0
   305
			}
sl@0
   306
		}
sl@0
   307
	}