1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/wspluginmanager.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,100 @@
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 +#ifndef __WSPLUGINMANAGER_H__
1.20 +#define __WSPLUGINMANAGER_H__
1.21 +
1.22 +#include <e32base.h>
1.23 +#include "Graphics/WSPLUGIN.H"
1.24 +#include <graphics/wsgraphicdrawerinterface.h>
1.25 +
1.26 +/**
1.27 +The window server has a single plugin manager object, which maintains the set
1.28 +of loaded plugins.
1.29 +*/
1.30 +class CWsPluginManager : public CBase, public MWsPluginManager
1.31 + {
1.32 +private:
1.33 + class CPluginInfo : public CBase
1.34 + {
1.35 + public:
1.36 + CPluginInfo();
1.37 + ~CPluginInfo();
1.38 + CWsPlugin * iPlugin;
1.39 + };
1.40 +public:
1.41 + static CWsPluginManager* NewL(MWsGraphicDrawerEnvironment& aEnvironment);
1.42 + ~CWsPluginManager();
1.43 +
1.44 + CWsPlugin * CreatePluginL(const TDesC& aSection);
1.45 + template <class T> T * FindImplementation(TInt & aStart);
1.46 + template <class T> T * FindNamedImplementation(const TDesC& aName);
1.47 +
1.48 +public: // from MWsObjectProvider:
1.49 + TAny * ResolveObjectInterface(TUint aId);
1.50 +
1.51 +public: // from MWsPluginManager
1.52 + TAny * ResolvePluginInterface(TUint aId);
1.53 +
1.54 +private:
1.55 + CWsPluginManager(MWsGraphicDrawerEnvironment& aEnvironment);
1.56 + void ConstructL();
1.57 +
1.58 +private:
1.59 + RPointerArray<CPluginInfo> iPlugins;
1.60 + MWsGraphicDrawerEnvironment& iEnvironment;
1.61 + };
1.62 +
1.63 +/**
1.64 +This searches for any plugin which implements a specified interface.
1.65 +Calling this function modifies the value of aStart, and passing it back in
1.66 +allows the next implementation to be found.
1.67 +*/
1.68 +template <class T> T * CWsPluginManager::FindImplementation(TInt & aStart)
1.69 + {
1.70 + while (aStart < iPlugins.Count())
1.71 + {
1.72 + T * impl = iPlugins[aStart]->iPlugin->ObjectInterface<T>();
1.73 + ++aStart;
1.74 + if (impl)
1.75 + {
1.76 + return impl;
1.77 + }
1.78 + }
1.79 + return NULL;
1.80 + }
1.81 +
1.82 +/**
1.83 +This searches for any plugin which implements a specified interface and
1.84 +has the specified name returned from PluginName.
1.85 +
1.86 +Maybe plugin name should be a function on an MWsNamed class instead of CWsPlugin?
1.87 +*/
1.88 +template <class T> T * CWsPluginManager::FindNamedImplementation(const TDesC& aName)
1.89 + {
1.90 + TInt pos = 0;
1.91 + while (pos < iPlugins.Count())
1.92 + {
1.93 + T * impl = iPlugins[pos]->iPlugin->ObjectInterface<T>();
1.94 + if (impl && iPlugins[pos]->iPlugin->PluginName() == aName)
1.95 + {
1.96 + return impl;
1.97 + }
1.98 + ++pos;
1.99 + }
1.100 + return NULL;
1.101 + }
1.102 +
1.103 +#endif // __WSPLUGINMANAGER_H__