Update contrib.
4 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
5 // All rights reserved.
6 // This component and the accompanying materials are made available
7 // under the terms of "Eclipse Public License v1.0"
8 // which accompanies this distribution, and is available
9 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
11 // Initial Contributors:
12 // Nokia Corporation - initial contribution.
19 #include <mm/mmpluginutils.h>
20 #include <mm/mmcleanup.h>
27 Find a plugin with the requested interfaceUid and whose match string matches
28 the default data field. Where there are more than one plugin, choose that
29 with highest version no.
31 EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid,
33 const TDesC8& aDefaultData,
36 RImplInfoPtrArray pluginArray;
37 CleanupResetAndDestroyPushL(pluginArray);
39 FindImplementationsL(aInterfaceUid, pluginArray, aDefaultData, aResolverUid);
41 // Get higher version implementation
42 TAny* higherversionplugin = GetHigherVersionImplementationKeyOffsetL(pluginArray,aKeyOffset);
44 CleanupStack::PopAndDestroy(&pluginArray);
45 return higherversionplugin;
49 Find a plugin with the requested interfaceUid and whose match string matches
50 the default data field. Where there are more than one plugin, choose that
51 with highest version no.
53 EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid,
55 const TDesC8& aDefaultData)
57 RImplInfoPtrArray pluginArray;
58 CleanupResetAndDestroyPushL(pluginArray);
60 FindImplementationsL(aInterfaceUid, pluginArray, aDefaultData);
62 // Get higher version implementation
63 TAny* higherversionplugin = GetHigherVersionImplementationKeyOffsetL(pluginArray,aKeyOffset);
65 CleanupStack::PopAndDestroy(&pluginArray);
66 return higherversionplugin;
70 Find a plugin with the requested interfaceUid and whose match string matches
71 the default data field. Where there are more than one plugin, choose that
72 with highest version no.
74 EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid,
77 RImplInfoPtrArray pluginArray;
78 CleanupResetAndDestroyPushL(pluginArray);
80 FindImplementationsL(aInterfaceUid, pluginArray);
82 // Get higher version implementation
83 TAny* higherversionplugin = GetHigherVersionImplementationKeyOffsetL(pluginArray,aKeyOffset);
85 CleanupStack::PopAndDestroy(&pluginArray);
86 return higherversionplugin;
91 Get the higher version of plugin passing keyoffset
93 TAny* MmPluginUtils::GetHigherVersionImplementationKeyOffsetL(RImplInfoPtrArray& pluginArray, TInt32 aKeyOffset)
97 if (pluginArray.Count() == 0)
99 User::Leave(KErrNotSupported);
101 else if (pluginArray.Count() == 1)
103 self = REComSession::CreateImplementationL(pluginArray[0]->ImplementationUid(), aKeyOffset);
107 // create each in turn, starting with the highest version, which is the start element
108 for (TInt index = 0; index < pluginArray.Count(); index++)
112 TRAP(err, self = REComSession::CreateImplementationL(pluginArray[index]->ImplementationUid(), aKeyOffset))
117 if (err != KErrNotSupported)
124 User::Leave(KErrNotSupported);
131 Similar but return destructor key via reference
133 EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid,
134 TUid& aDestructorKey,
135 const TDesC8& aDefaultData,
138 RImplInfoPtrArray pluginArray;
139 CleanupResetAndDestroyPushL(pluginArray);
141 FindImplementationsL(aInterfaceUid, pluginArray, aDefaultData, aResolverUid);
143 // Get higher version implementation
144 TAny* higherversionplugin = GetHigherVersionImplementationaDestructorKeyL(pluginArray, aDestructorKey);
146 CleanupStack::PopAndDestroy(&pluginArray);
147 return higherversionplugin;
151 Similar but return destructor key via reference
153 EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid,
154 TUid& aDestructorKey,
155 const TDesC8& aDefaultData)
157 RImplInfoPtrArray pluginArray;
158 CleanupResetAndDestroyPushL(pluginArray);
160 FindImplementationsL(aInterfaceUid, pluginArray, aDefaultData);
162 // Get higher version implementation
163 TAny* higherversionplugin = GetHigherVersionImplementationaDestructorKeyL(pluginArray, aDestructorKey);
165 CleanupStack::PopAndDestroy(&pluginArray);
166 return higherversionplugin;
170 Similar but return destructor key via reference
172 EXPORT_C TAny* MmPluginUtils::CreateImplementationL(TUid aInterfaceUid,
173 TUid& aDestructorKey)
175 RImplInfoPtrArray pluginArray;
176 CleanupResetAndDestroyPushL(pluginArray);
178 FindImplementationsL(aInterfaceUid, pluginArray);
180 // Get higher version implementation
181 TAny* higherversionplugin = GetHigherVersionImplementationaDestructorKeyL(pluginArray, aDestructorKey);
183 CleanupStack::PopAndDestroy(&pluginArray);
184 return higherversionplugin;
188 Get the higher version of plugin passing destructorkey
190 TAny* MmPluginUtils::GetHigherVersionImplementationaDestructorKeyL(RImplInfoPtrArray& pluginArray, TUid& aDestructorKey)
193 if (pluginArray.Count() == 0)
195 User::Leave(KErrNotSupported);
197 else if (pluginArray.Count() == 1)
199 self = REComSession::CreateImplementationL(pluginArray[0]->ImplementationUid(), aDestructorKey);
203 // create each in turn, starting with the highest version, which is the start element
204 for (TInt index = 0; index < pluginArray.Count(); index++)
208 TRAP(err, self = REComSession::CreateImplementationL(pluginArray[index]->ImplementationUid(), aDestructorKey))
213 if (err != KErrNotSupported)
220 User::Leave(KErrNotSupported);
227 The function is an implementation of the templated TLinearOrder so it can order implementation information
228 in an increasing version number.
230 TInt VersionLinearOrderFunction(const CImplementationInformation& pluginA,
231 const CImplementationInformation& pluginB)
233 if (pluginA.Version() == pluginB.Version())
238 return (pluginA.Version() < pluginB.Version())? 1: -1;
241 EXPORT_C void MmPluginUtils::FindImplementationsL(TUid aInterfaceUid,
242 RImplInfoPtrArray& aPluginArray)
244 REComSession::ListImplementationsL(aInterfaceUid, aPluginArray);
246 CheckAndSortL(aPluginArray);
249 EXPORT_C void MmPluginUtils::FindImplementationsL(TUid aInterfaceUid,
250 RImplInfoPtrArray& aPluginArray,
251 const TDesC8& aDefaultData,
254 TEComResolverParams resolverParams;
255 resolverParams.SetDataType(aDefaultData);
257 FindImplementationsL(aInterfaceUid, aPluginArray, resolverParams, aResolverUid);
260 EXPORT_C void MmPluginUtils::FindImplementationsL(TUid aInterfaceUid,
261 RImplInfoPtrArray& aPluginArray,
262 const TDesC8& aDefaultData)
264 TEComResolverParams resolverParams;
265 resolverParams.SetDataType(aDefaultData);
267 FindImplementationsL(aInterfaceUid, aPluginArray, resolverParams);
270 void MmPluginUtils::FindImplementationsL(TUid aInterfaceUid,
271 RImplInfoPtrArray& aPluginArray,
272 TEComResolverParams& aResolverParams)
274 REComSession::ListImplementationsL(aInterfaceUid, aResolverParams, aPluginArray);
276 CheckAndSortL(aPluginArray);
279 void MmPluginUtils::FindImplementationsL(TUid aInterfaceUid,
280 RImplInfoPtrArray& aPluginArray,
281 TEComResolverParams& aResolverParams,
284 REComSession::ListImplementationsL(aInterfaceUid, aResolverParams, aResolverUid, aPluginArray);
286 CheckAndSortL(aPluginArray);
289 void MmPluginUtils::CheckAndSortL(RImplInfoPtrArray& aPluginArray)
291 // there must be at least one implementation
292 if (aPluginArray.Count() > 0)
294 if (aPluginArray.Count() > 1)
296 aPluginArray.Sort(VersionLinearOrderFunction);
299 // if the highest version is zero there is no need to linger -- it should not be supported
301 if (aPluginArray[0]->Version() == 0)
303 // plugins were found to be malformed, with 0 version numbers
304 User::Leave(KErrNotSupported);