1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/wspluginmanager.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,197 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "wspluginmanager.h"
1.20 +#include "Graphics/WSPLUGIN.H"
1.21 +#include "inifile.h"
1.22 +
1.23 +GLREF_D CDebugLogBase* wsDebugLog;
1.24 +
1.25 +const TInt KPluginInterfaceId = 0x2001B709;
1.26 +
1.27 +/**********************************************************************
1.28 +Plugin Info
1.29 +**********************************************************************/
1.30 +CWsPluginManager::CPluginInfo::CPluginInfo()
1.31 + {
1.32 + }
1.33 +
1.34 +CWsPluginManager::CPluginInfo::~CPluginInfo()
1.35 + {
1.36 + delete iPlugin;
1.37 + }
1.38 +
1.39 +/**********************************************************************
1.40 +Plugin Manager
1.41 +**********************************************************************/
1.42 +CWsPluginManager* CWsPluginManager::NewL(MWsGraphicDrawerEnvironment& aEnvironment)
1.43 + {
1.44 + CWsPluginManager* self = new (ELeave) CWsPluginManager(aEnvironment);
1.45 + CleanupStack::PushL(self);
1.46 + self->ConstructL();
1.47 + CleanupStack::Pop(self);
1.48 + return self;
1.49 + }
1.50 +
1.51 +CWsPluginManager::CWsPluginManager(MWsGraphicDrawerEnvironment& aEnvironment) :
1.52 + iEnvironment(aEnvironment)
1.53 + {
1.54 + }
1.55 +
1.56 +CWsPluginManager::~CWsPluginManager()
1.57 + {
1.58 + iPlugins.ResetAndDestroy();
1.59 + }
1.60 +
1.61 +void CWsPluginManager::ConstructL()
1.62 + {
1.63 + _LIT(KPlugins,"PLUGINS");
1.64 + TPtrC pluginString;
1.65 + TBool havePlugins = WsIniFile->FindVar(KPlugins,pluginString);
1.66 + const TDesC * plugins;
1.67 + _LIT(KDefaultPlugins, "FLICKERBUFFER STD DEFAULTFADER");
1.68 + if (havePlugins)
1.69 + plugins = &pluginString;
1.70 + else
1.71 + plugins = &KDefaultPlugins;
1.72 + TLex lex(*plugins);
1.73 + while(true)
1.74 + {
1.75 + TPtrC ptr = lex.NextToken();
1.76 + if (ptr.Length() > 0)
1.77 + {
1.78 + CWsPlugin * plugin = 0;
1.79 + TRAPD(err, plugin = CreatePluginL(ptr));
1.80 +
1.81 + if (wsDebugLog)
1.82 + {
1.83 + TBuf<80> buf;
1.84 + if (err == KErrNone)
1.85 + {
1.86 + _LIT(KLoadedPlugin,"Loaded plugin: ");
1.87 + _LIT(KPluginName, " calling itself: ");
1.88 + buf.Append(KLoadedPlugin);
1.89 + buf.Append(ptr);
1.90 + buf.Append(KPluginName);
1.91 + buf.Append(plugin->PluginName());
1.92 + wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
1.93 + }
1.94 + else
1.95 + {
1.96 + _LIT(KMissingPlugin,"Failed to load plugin (%d): ");
1.97 + buf.Append(KMissingPlugin);
1.98 + buf.Append(ptr);
1.99 + wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf,err);
1.100 + }
1.101 + }
1.102 + }
1.103 + else
1.104 + {
1.105 + break;
1.106 + }
1.107 + }
1.108 + }
1.109 +
1.110 +CWsPlugin * CWsPluginManager::CreatePluginL(const TDesC& aSection)
1.111 + {
1.112 + _LIT(KId, "ID");
1.113 + _LIT(KData, "DATA");
1.114 + _LIT(KType, "TYPE");
1.115 + TInt id;
1.116 + TPtrC data;
1.117 + TPtrC type;
1.118 + TAny * dataPtr;
1.119 + RBuf8 empty;
1.120 + CWsPlugin * plugin = 0;
1.121 + TBool hasId = WsIniFile->FindVar(aSection,KId,id);
1.122 + TBool hasType = WsIniFile->FindVar(aSection,KType,type);
1.123 + if ((!hasId) && (!hasType))
1.124 + {
1.125 + _LIT(KFlickerBufferStage, "FLICKERBUFFER");
1.126 + _LIT(KStdStage, "STD");
1.127 + _LIT(KDefaultFader, "DEFAULTFADER");
1.128 + if (!aSection.CompareF(KFlickerBufferStage))
1.129 + {
1.130 + hasId = ETrue;
1.131 + id = 0x2001B70C;
1.132 + }
1.133 + else if (!aSection.CompareF(KStdStage))
1.134 + {
1.135 + hasId = ETrue;
1.136 + id = 0x2001B70A;
1.137 + }
1.138 + else if (!aSection.CompareF(KDefaultFader))
1.139 + {
1.140 + hasId = ETrue;
1.141 + id = 0x2001B70D;
1.142 + }
1.143 + else
1.144 + {
1.145 + hasType = ETrue;
1.146 + type.Set(aSection);
1.147 + }
1.148 + }
1.149 + TBool hasData = WsIniFile->FindVar(aSection,KData,data);
1.150 + if (hasData)
1.151 + dataPtr = &data;
1.152 + else
1.153 + dataPtr = NULL;
1.154 +
1.155 + CPluginInfo* info = new (ELeave) CPluginInfo;
1.156 + CleanupStack::PushL(info);
1.157 +
1.158 + if (hasId)
1.159 + {
1.160 + TUid uid = TUid::Uid(id);
1.161 + plugin = reinterpret_cast<CWsPlugin*>(REComSession::CreateImplementationL(uid,CWsPlugin::DtorIDKeyOffset(),dataPtr));
1.162 + }
1.163 + else
1.164 + {
1.165 + TEComResolverParams params;
1.166 + RBuf8 buf8;
1.167 + buf8.CreateL(type.Length());
1.168 + CleanupClosePushL(buf8);
1.169 + buf8.Copy(type);
1.170 + params.SetDataType(buf8);
1.171 + plugin = reinterpret_cast<CWsPlugin*>(REComSession::CreateImplementationL(TUid::Uid(KPluginInterfaceId),CWsPlugin::DtorIDKeyOffset(),dataPtr,params));
1.172 + CleanupStack::PopAndDestroy(&buf8);
1.173 + }
1.174 +
1.175 + User::LeaveIfNull(plugin);
1.176 + info->iPlugin = plugin;
1.177 + plugin->ConstructL(iEnvironment, empty);
1.178 + User::LeaveIfError(iPlugins.Append(info));
1.179 + CleanupStack::Pop(info);
1.180 + return plugin;
1.181 + }
1.182 +
1.183 +TAny * CWsPluginManager::ResolveObjectInterface(TUint aId)
1.184 + {
1.185 + if (aId == MWsPluginManager::EWsObjectInterfaceId)
1.186 + return static_cast<MWsPluginManager*>(this);
1.187 + return NULL;
1.188 + }
1.189 +
1.190 +TAny * CWsPluginManager::ResolvePluginInterface(TUint aId)
1.191 + {
1.192 + for (TInt p = 0; p < iPlugins.Count(); ++p)
1.193 + {
1.194 + TAny * interface = iPlugins[p]->iPlugin->ResolveObjectInterface(aId);
1.195 + if (interface)
1.196 + return interface;
1.197 + }
1.198 + return NULL;
1.199 + }
1.200 +