Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "wspluginmanager.h"
17 #include "Graphics/WSPLUGIN.H"
20 GLREF_D CDebugLogBase* wsDebugLog;
22 const TInt KPluginInterfaceId = 0x2001B709;
24 /**********************************************************************
26 **********************************************************************/
27 CWsPluginManager::CPluginInfo::CPluginInfo()
31 CWsPluginManager::CPluginInfo::~CPluginInfo()
36 /**********************************************************************
38 **********************************************************************/
39 CWsPluginManager* CWsPluginManager::NewL(MWsGraphicDrawerEnvironment& aEnvironment)
41 CWsPluginManager* self = new (ELeave) CWsPluginManager(aEnvironment);
42 CleanupStack::PushL(self);
44 CleanupStack::Pop(self);
48 CWsPluginManager::CWsPluginManager(MWsGraphicDrawerEnvironment& aEnvironment) :
49 iEnvironment(aEnvironment)
53 CWsPluginManager::~CWsPluginManager()
55 iPlugins.ResetAndDestroy();
58 void CWsPluginManager::ConstructL()
60 _LIT(KPlugins,"PLUGINS");
62 TBool havePlugins = WsIniFile->FindVar(KPlugins,pluginString);
63 const TDesC * plugins;
64 _LIT(KDefaultPlugins, "FLICKERBUFFER STD DEFAULTFADER");
66 plugins = &pluginString;
68 plugins = &KDefaultPlugins;
72 TPtrC ptr = lex.NextToken();
75 CWsPlugin * plugin = 0;
76 TRAPD(err, plugin = CreatePluginL(ptr));
83 _LIT(KLoadedPlugin,"Loaded plugin: ");
84 _LIT(KPluginName, " calling itself: ");
85 buf.Append(KLoadedPlugin);
87 buf.Append(KPluginName);
88 buf.Append(plugin->PluginName());
89 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
93 _LIT(KMissingPlugin,"Failed to load plugin (%d): ");
94 buf.Append(KMissingPlugin);
96 wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf,err);
107 CWsPlugin * CWsPluginManager::CreatePluginL(const TDesC& aSection)
117 CWsPlugin * plugin = 0;
118 TBool hasId = WsIniFile->FindVar(aSection,KId,id);
119 TBool hasType = WsIniFile->FindVar(aSection,KType,type);
120 if ((!hasId) && (!hasType))
122 _LIT(KFlickerBufferStage, "FLICKERBUFFER");
123 _LIT(KStdStage, "STD");
124 _LIT(KDefaultFader, "DEFAULTFADER");
125 if (!aSection.CompareF(KFlickerBufferStage))
130 else if (!aSection.CompareF(KStdStage))
135 else if (!aSection.CompareF(KDefaultFader))
146 TBool hasData = WsIniFile->FindVar(aSection,KData,data);
152 CPluginInfo* info = new (ELeave) CPluginInfo;
153 CleanupStack::PushL(info);
157 TUid uid = TUid::Uid(id);
158 plugin = reinterpret_cast<CWsPlugin*>(REComSession::CreateImplementationL(uid,CWsPlugin::DtorIDKeyOffset(),dataPtr));
162 TEComResolverParams params;
164 buf8.CreateL(type.Length());
165 CleanupClosePushL(buf8);
167 params.SetDataType(buf8);
168 plugin = reinterpret_cast<CWsPlugin*>(REComSession::CreateImplementationL(TUid::Uid(KPluginInterfaceId),CWsPlugin::DtorIDKeyOffset(),dataPtr,params));
169 CleanupStack::PopAndDestroy(&buf8);
172 User::LeaveIfNull(plugin);
173 info->iPlugin = plugin;
174 plugin->ConstructL(iEnvironment, empty);
175 User::LeaveIfError(iPlugins.Append(info));
176 CleanupStack::Pop(info);
180 TAny * CWsPluginManager::ResolveObjectInterface(TUint aId)
182 if (aId == MWsPluginManager::EWsObjectInterfaceId)
183 return static_cast<MWsPluginManager*>(this);
187 TAny * CWsPluginManager::ResolvePluginInterface(TUint aId)
189 for (TInt p = 0; p < iPlugins.Count(); ++p)
191 TAny * interface = iPlugins[p]->iPlugin->ResolveObjectInterface(aId);