os/graphics/windowing/windowserver/nonnga/SERVER/wspluginmanager.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "wspluginmanager.h"
sl@0
    17
#include "Graphics/WSPLUGIN.H"
sl@0
    18
#include "inifile.h"
sl@0
    19
sl@0
    20
GLREF_D CDebugLogBase* wsDebugLog;
sl@0
    21
sl@0
    22
const TInt KPluginInterfaceId = 0x2001B709;
sl@0
    23
sl@0
    24
/**********************************************************************
sl@0
    25
Plugin Info
sl@0
    26
**********************************************************************/
sl@0
    27
CWsPluginManager::CPluginInfo::CPluginInfo()
sl@0
    28
	{
sl@0
    29
	}
sl@0
    30
sl@0
    31
CWsPluginManager::CPluginInfo::~CPluginInfo()
sl@0
    32
	{
sl@0
    33
	delete iPlugin;
sl@0
    34
	}
sl@0
    35
sl@0
    36
/**********************************************************************
sl@0
    37
Plugin Manager
sl@0
    38
**********************************************************************/
sl@0
    39
CWsPluginManager* CWsPluginManager::NewL(MWsGraphicDrawerEnvironment& aEnvironment)
sl@0
    40
	{
sl@0
    41
	CWsPluginManager* self = new (ELeave) CWsPluginManager(aEnvironment);
sl@0
    42
	CleanupStack::PushL(self);
sl@0
    43
	self->ConstructL();
sl@0
    44
	CleanupStack::Pop(self);
sl@0
    45
	return self;
sl@0
    46
	}
sl@0
    47
sl@0
    48
CWsPluginManager::CWsPluginManager(MWsGraphicDrawerEnvironment& aEnvironment) :
sl@0
    49
	iEnvironment(aEnvironment)
sl@0
    50
	{
sl@0
    51
	}
sl@0
    52
	
sl@0
    53
CWsPluginManager::~CWsPluginManager()
sl@0
    54
	{
sl@0
    55
	iPlugins.ResetAndDestroy();
sl@0
    56
	}
sl@0
    57
sl@0
    58
void CWsPluginManager::ConstructL()
sl@0
    59
	{
sl@0
    60
	_LIT(KPlugins,"PLUGINS");
sl@0
    61
	TPtrC pluginString;
sl@0
    62
	TBool havePlugins = WsIniFile->FindVar(KPlugins,pluginString);
sl@0
    63
	const TDesC * plugins;
sl@0
    64
	_LIT(KDefaultPlugins, "FLICKERBUFFER STD DEFAULTFADER");
sl@0
    65
	if (havePlugins)
sl@0
    66
		plugins = &pluginString;
sl@0
    67
	else
sl@0
    68
		plugins = &KDefaultPlugins;
sl@0
    69
	TLex lex(*plugins);
sl@0
    70
	while(true)
sl@0
    71
		{
sl@0
    72
		TPtrC ptr = lex.NextToken();
sl@0
    73
		if (ptr.Length() > 0)
sl@0
    74
			{
sl@0
    75
			CWsPlugin * plugin = 0;
sl@0
    76
			TRAPD(err, plugin = CreatePluginL(ptr));
sl@0
    77
sl@0
    78
			if (wsDebugLog)
sl@0
    79
				{
sl@0
    80
				TBuf<80> buf;
sl@0
    81
				if (err == KErrNone)
sl@0
    82
					{
sl@0
    83
					_LIT(KLoadedPlugin,"Loaded plugin: ");
sl@0
    84
					_LIT(KPluginName, " calling itself: ");
sl@0
    85
					buf.Append(KLoadedPlugin);
sl@0
    86
					buf.Append(ptr);
sl@0
    87
					buf.Append(KPluginName);
sl@0
    88
					buf.Append(plugin->PluginName());
sl@0
    89
					wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf);
sl@0
    90
					}
sl@0
    91
				else
sl@0
    92
					{
sl@0
    93
					_LIT(KMissingPlugin,"Failed to load plugin (%d): ");
sl@0
    94
					buf.Append(KMissingPlugin);
sl@0
    95
					buf.Append(ptr);
sl@0
    96
					wsDebugLog->MiscMessage(CDebugLogBase::ELogImportant,buf,err);
sl@0
    97
					}
sl@0
    98
				}
sl@0
    99
			}
sl@0
   100
		else
sl@0
   101
			{
sl@0
   102
			break;
sl@0
   103
			}
sl@0
   104
		}
sl@0
   105
	}
sl@0
   106
sl@0
   107
CWsPlugin * CWsPluginManager::CreatePluginL(const TDesC& aSection)
sl@0
   108
	{
sl@0
   109
	_LIT(KId, "ID");
sl@0
   110
	_LIT(KData, "DATA");
sl@0
   111
	_LIT(KType, "TYPE");
sl@0
   112
	TInt id;
sl@0
   113
	TPtrC data;
sl@0
   114
	TPtrC type;
sl@0
   115
	TAny * dataPtr;
sl@0
   116
	RBuf8 empty;
sl@0
   117
	CWsPlugin * plugin = 0;
sl@0
   118
	TBool hasId = WsIniFile->FindVar(aSection,KId,id);
sl@0
   119
	TBool hasType = WsIniFile->FindVar(aSection,KType,type);
sl@0
   120
	if ((!hasId) && (!hasType))
sl@0
   121
		{
sl@0
   122
		_LIT(KFlickerBufferStage, "FLICKERBUFFER");
sl@0
   123
		_LIT(KStdStage, "STD");
sl@0
   124
		_LIT(KDefaultFader, "DEFAULTFADER");
sl@0
   125
		if (!aSection.CompareF(KFlickerBufferStage))
sl@0
   126
			{
sl@0
   127
			hasId = ETrue;
sl@0
   128
			id = 0x2001B70C;
sl@0
   129
			}
sl@0
   130
		else if (!aSection.CompareF(KStdStage))
sl@0
   131
			{
sl@0
   132
			hasId = ETrue;
sl@0
   133
			id = 0x2001B70A;
sl@0
   134
			}
sl@0
   135
		else if (!aSection.CompareF(KDefaultFader))
sl@0
   136
			{
sl@0
   137
			hasId = ETrue;
sl@0
   138
			id = 0x2001B70D;
sl@0
   139
			}	
sl@0
   140
		else
sl@0
   141
			{
sl@0
   142
			hasType = ETrue;
sl@0
   143
			type.Set(aSection);
sl@0
   144
			}
sl@0
   145
		}	
sl@0
   146
	TBool hasData = WsIniFile->FindVar(aSection,KData,data);
sl@0
   147
	if (hasData)
sl@0
   148
		dataPtr = &data;
sl@0
   149
	else
sl@0
   150
		dataPtr = NULL;
sl@0
   151
sl@0
   152
	CPluginInfo* info = new (ELeave) CPluginInfo;
sl@0
   153
	CleanupStack::PushL(info);
sl@0
   154
sl@0
   155
	if (hasId)
sl@0
   156
		{
sl@0
   157
		TUid uid = TUid::Uid(id);
sl@0
   158
		plugin = reinterpret_cast<CWsPlugin*>(REComSession::CreateImplementationL(uid,CWsPlugin::DtorIDKeyOffset(),dataPtr));
sl@0
   159
		}
sl@0
   160
	else
sl@0
   161
		{
sl@0
   162
		TEComResolverParams params;
sl@0
   163
		RBuf8 buf8;
sl@0
   164
		buf8.CreateL(type.Length());
sl@0
   165
		CleanupClosePushL(buf8);
sl@0
   166
		buf8.Copy(type);
sl@0
   167
		params.SetDataType(buf8);
sl@0
   168
		plugin = reinterpret_cast<CWsPlugin*>(REComSession::CreateImplementationL(TUid::Uid(KPluginInterfaceId),CWsPlugin::DtorIDKeyOffset(),dataPtr,params));
sl@0
   169
		CleanupStack::PopAndDestroy(&buf8);
sl@0
   170
		}
sl@0
   171
	
sl@0
   172
	User::LeaveIfNull(plugin);
sl@0
   173
	info->iPlugin = plugin;
sl@0
   174
	plugin->ConstructL(iEnvironment, empty);
sl@0
   175
	User::LeaveIfError(iPlugins.Append(info));
sl@0
   176
	CleanupStack::Pop(info);
sl@0
   177
	return plugin;
sl@0
   178
	}
sl@0
   179
sl@0
   180
TAny * CWsPluginManager::ResolveObjectInterface(TUint aId)
sl@0
   181
	{
sl@0
   182
	if (aId == MWsPluginManager::EWsObjectInterfaceId)
sl@0
   183
		return static_cast<MWsPluginManager*>(this);
sl@0
   184
	return NULL;
sl@0
   185
	}
sl@0
   186
sl@0
   187
TAny * CWsPluginManager::ResolvePluginInterface(TUint aId)
sl@0
   188
	{
sl@0
   189
	for (TInt p = 0; p < iPlugins.Count(); ++p)
sl@0
   190
		{
sl@0
   191
		TAny * interface = iPlugins[p]->iPlugin->ResolveObjectInterface(aId);
sl@0
   192
		if (interface)
sl@0
   193
			return interface;
sl@0
   194
		}
sl@0
   195
	return NULL;
sl@0
   196
	}
sl@0
   197