1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/openwfc/wspluginmanager.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,216 @@
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 = 0x10285A29;
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()
1.43 + {
1.44 + CWsPluginManager* self = new (ELeave) CWsPluginManager();
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() :
1.52 + iSession(REComSession::OpenL())
1.53 + {
1.54 + }
1.55 +
1.56 +CWsPluginManager::~CWsPluginManager()
1.57 + {
1.58 + iPlugins.ResetAndDestroy();
1.59 + iSession.Close();
1.60 + REComSession::FinalClose();
1.61 + }
1.62 +
1.63 +void CWsPluginManager::ConstructL()
1.64 + {
1.65 + _LIT(KPlugins,"PLUGINS");
1.66 +
1.67 + TPtrC pluginString;
1.68 + TBool havePlugins=WsIniFile->FindVar(KPlugins,pluginString);
1.69 + const TDesC * plugins;
1.70 + _LIT(KDefaultPlugins, "FLICKERBUFFER DISPLAY");
1.71 + if (havePlugins)
1.72 + plugins = &pluginString;
1.73 + else
1.74 + plugins = &KDefaultPlugins;
1.75 + TLex lex(*plugins);
1.76 + while(true)
1.77 + {
1.78 + TPtrC ptr = lex.NextToken();
1.79 + if (ptr.Length() > 0)
1.80 + {
1.81 + CWsPlugin * plugin = 0;
1.82 +
1.83 + TRAPD(err, plugin = LoadPluginL(ptr));
1.84 +
1.85 + if (wsDebugLog)
1.86 + {
1.87 + TBuf<80> buf;
1.88 + if (err == KErrNone)
1.89 + {
1.90 + _LIT(KLoadedPlugin,"Loaded plugin: ");
1.91 + _LIT(KPluginName, " calling itself: ");
1.92 + buf.Append(KLoadedPlugin);
1.93 + buf.Append(ptr);
1.94 + buf.Append(KPluginName);
1.95 + buf.Append(plugin->PluginName());
1.96 + wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
1.97 + }
1.98 + else
1.99 + {
1.100 + _LIT(KMissingPlugin,"Failed to load plugin (%d): ");
1.101 + buf.Append(KMissingPlugin);
1.102 + buf.Append(ptr);
1.103 + wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf,err);
1.104 + }
1.105 + }
1.106 +
1.107 + if (err<KErrNone)
1.108 + { //Additionally log to RDebug if error
1.109 + _LIT(KMissingPlugin,"WServ: Failed to load plugin %S (error %d)");
1.110 + RDebug::Print(KMissingPlugin,&ptr,err);
1.111 + }
1.112 + }
1.113 + else
1.114 + {
1.115 + break;
1.116 + }
1.117 + }
1.118 + }
1.119 +
1.120 +CWsPlugin * CWsPluginManager::LoadPluginL(const TDesC& aSection)
1.121 + {
1.122 + _LIT(KId, "ID");
1.123 + _LIT(KData, "DATA");
1.124 + _LIT(KType, "TYPE");
1.125 + TInt id;
1.126 + TPtrC data;
1.127 + TPtrC type;
1.128 + TAny * dataPtr;
1.129 + CWsPlugin * plugin = 0;
1.130 + TBool hasId=WsIniFile->FindVar(aSection,KId,id);
1.131 + TBool hasType=WsIniFile->FindVar(aSection,KType,type);
1.132 + if ((!hasId) && (!hasType))
1.133 + {
1.134 + _LIT(KCscStage, "TCSC");
1.135 + _LIT(KFlickerBufferStage, "FLICKERBUFFER");
1.136 + _LIT(KDisplayStage, "DISPLAY");
1.137 + if (!aSection.CompareF(KFlickerBufferStage))
1.138 + {
1.139 + hasId = ETrue;
1.140 + id = 0x1028637B;
1.141 + }
1.142 + else if (!aSection.CompareF(KDisplayStage))
1.143 + {
1.144 + hasId = ETrue;
1.145 + id = 0x1028637A;
1.146 + }
1.147 + else if (!aSection.CompareF(KCscStage))
1.148 + {
1.149 + hasId = ETrue;
1.150 + id = 0x10286507;
1.151 + }
1.152 + else
1.153 + {
1.154 + hasType = ETrue;
1.155 + type.Set(aSection);
1.156 + }
1.157 + }
1.158 + TBool hasData = WsIniFile->FindVar(aSection,KData,data);
1.159 +
1.160 + if (hasData)
1.161 + dataPtr = &data;
1.162 + else
1.163 + dataPtr = NULL;
1.164 +
1.165 + CPluginInfo* info = new (ELeave) CPluginInfo;
1.166 + CleanupStack::PushL(info);
1.167 +
1.168 + if (hasId)
1.169 + {
1.170 + TUid uid = TUid::Uid(id);
1.171 + plugin = reinterpret_cast<CWsPlugin*>(iSession.CreateImplementationL(uid, CWsPlugin::DtorIDKeyOffset(), dataPtr));
1.172 + }
1.173 + else
1.174 + {
1.175 + TEComResolverParams params;
1.176 + RBuf8 buf8;
1.177 + buf8.CreateL(type.Length());
1.178 + CleanupClosePushL(buf8);
1.179 + buf8.Copy(type);
1.180 + params.SetDataType(buf8);
1.181 + plugin = reinterpret_cast<CWsPlugin*>(iSession.CreateImplementationL(TUid::Uid(KPluginInterfaceId),CWsPlugin::DtorIDKeyOffset(),dataPtr,params));
1.182 + CleanupStack::PopAndDestroy(&buf8);
1.183 + }
1.184 +
1.185 + User::LeaveIfNull(plugin);
1.186 + info->iPlugin = plugin;
1.187 + User::LeaveIfError(iPlugins.Append(info));
1.188 + CleanupStack::Pop(info);
1.189 + return plugin;
1.190 + }
1.191 +
1.192 +void CWsPluginManager::InitializePluginsL(MWsGraphicDrawerEnvironment& aEnvironment)
1.193 + {
1.194 + TInt nbPlugins=iPlugins.Count();
1.195 + RBuf8 empty;
1.196 + for (TInt k=0;k<nbPlugins;k++)
1.197 + {
1.198 + iPlugins[k]->iPlugin->ConstructL(aEnvironment,empty);
1.199 + }
1.200 + }
1.201 +
1.202 +TAny * CWsPluginManager::ResolveObjectInterface(TUint aId)
1.203 + {
1.204 + if (aId == MWsPluginManager::EWsObjectInterfaceId)
1.205 + return static_cast<MWsPluginManager*>(this);
1.206 + return NULL;
1.207 + }
1.208 +
1.209 +TAny * CWsPluginManager::ResolvePluginInterface(TUint aId)
1.210 + {
1.211 + for (TInt p = 0; p < iPlugins.Count(); ++p)
1.212 + {
1.213 + TAny * interface = iPlugins[p]->iPlugin->ResolveObjectInterface(aId);
1.214 + if (interface)
1.215 + return interface;
1.216 + }
1.217 + return NULL;
1.218 + }
1.219 +