You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/kicker/kicker/core/pluginmanager.cpp

379 lines
11 KiB

/*****************************************************************
Copyright (c) 1996-2000 the kicker authors. See file AUTHORS.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************/
#include <tqfile.h>
#include <tqtimer.h>
#include <tdeapplication.h>
#include <kdebug.h>
#include <tdeglobal.h>
#include <klibloader.h>
#include <kpanelapplet.h>
#include <kpanelextension.h>
#include <kstandarddirs.h>
#include <kstaticdeleter.h>
#include "appletinfo.h"
#include "container_applet.h"
#include "container_extension.h"
#include "panelextension.h"
#include "pluginmanager.h"
static KStaticDeleter<PluginManager> pluginManagerDeleter;
PluginManager* PluginManager::m_self = 0;
PluginManager* PluginManager::the()
{
if (!m_self)
{
pluginManagerDeleter.setObject(m_self, new PluginManager());
}
return m_self;
}
AppletInfo::List PluginManager::applets(bool sort, AppletInfo::List* list)
{
TQStringList rel;
TDEGlobal::dirs()->findAllResources("applets", "*.desktop", false, true, rel);
return plugins(rel, AppletInfo::Applet, sort, list);
}
AppletInfo::List PluginManager::extensions(bool sort, AppletInfo::List* list)
{
TQStringList rel;
TDEGlobal::dirs()->findAllResources("extensions", "*.desktop", false, true, rel);
return plugins(rel, AppletInfo::Extension, sort, list);
}
AppletInfo::List PluginManager::builtinButtons(bool sort, AppletInfo::List* list)
{
TQStringList rel;
TDEGlobal::dirs()->findAllResources("builtinbuttons", "*.desktop", false, true, rel);
return plugins(rel, AppletInfo::BuiltinButton, sort, list);
}
AppletInfo::List PluginManager::specialButtons(bool sort, AppletInfo::List* list)
{
TQStringList rel;
TDEGlobal::dirs()->findAllResources("specialbuttons", "*.desktop", false, true, rel);
return plugins(rel, AppletInfo::SpecialButton, sort, list);
}
AppletInfo::List PluginManager::plugins(const TQStringList& desktopFiles,
AppletInfo::AppletType type,
bool sort,
AppletInfo::List* list)
{
AppletInfo::List plugins;
if (list)
{
plugins = *list;
}
for (TQStringList::ConstIterator it = desktopFiles.constBegin();
it != desktopFiles.constEnd(); ++it)
{
AppletInfo info(*it, TQString::null, type);
if (!info.isHidden())
{
plugins.append(info);
}
}
if (sort)
{
qHeapSort(plugins.begin(), plugins.end());
}
return plugins;
}
PluginManager::PluginManager()
{
TDEConfigGroup generalGroup(TDEGlobal::config(), "General");
m_untrustedApplets = generalGroup.readListEntry("UntrustedApplets");
m_untrustedExtensions = generalGroup.readListEntry("UntrustedExtensions");
}
PluginManager::~PluginManager()
{
AppletInfo::Dict::const_iterator it = _dict.constBegin();
for (; it != _dict.constEnd(); ++it)
{
disconnect(it.key(), TQT_SIGNAL(destroyed( TQObject*)),
this, TQT_SLOT(slotPluginDestroyed(TQObject*)));
delete it.data();
}
// clear the untrusted lists
clearUntrustedLists();
}
KPanelApplet* PluginManager::loadApplet(const AppletInfo& info,
TQWidget* parent )
{
KLibLoader* loader = KLibLoader::self();
KLibrary* lib = loader->library( TQFile::encodeName(info.library()) );
if (!lib)
{
kdWarning() << "cannot open applet: " << info.library()
<< " because of " << loader->lastErrorMessage() << endl;
return 0;
}
KPanelApplet* (*init_ptr)(TQWidget *, const TQString&);
init_ptr = (KPanelApplet* (*)(TQWidget *, const TQString&))lib->symbol( "init" );
if (!init_ptr)
{
kdWarning() << info.library() << " is not a kicker extension!" << endl;
loader->unloadLibrary( TQFile::encodeName(info.library()) );
return 0;
}
KPanelApplet* applet = init_ptr( parent, info.configFile() );
if (applet)
{
_dict.insert( TQT_TQOBJECT(applet), new AppletInfo( info ) );
connect( applet, TQT_SIGNAL( destroyed( TQObject* ) ),
TQT_SLOT( slotPluginDestroyed( TQObject* ) ) );
}
return applet;
}
KPanelExtension* PluginManager::loadExtension(
const AppletInfo& info, TQWidget* parent )
{
if (info.library() == "childpanel_panelextension"
/* KDE4? || info.library() == "panel" */)
{
return new PanelExtension(info.configFile(), parent, "panelextension");
}
KLibLoader* loader = KLibLoader::self();
KLibrary* lib = loader->library( TQFile::encodeName(info.library()) );
if( !lib ) {
kdWarning() << "cannot open extension: " << info.library()
<< " because of " << loader->lastErrorMessage() << endl;
return 0;
}
KPanelExtension* (*init_ptr)(TQWidget *, const TQString&);
init_ptr = (KPanelExtension* (*)(TQWidget *, const TQString&))lib->symbol( "init" );
if(!init_ptr){
kdWarning() << info.library() << " is not a kicker extension!" << endl;
loader->unloadLibrary( TQFile::encodeName(info.library()) );
return 0;
}
KPanelExtension* extension = init_ptr( parent, info.configFile() );
if( extension ) {
_dict.insert( TQT_TQOBJECT(extension), new AppletInfo( info ) );
connect( extension, TQT_SIGNAL( destroyed( TQObject* ) ),
TQT_SLOT( slotPluginDestroyed( TQObject* ) ) );
}
return extension;
}
bool PluginManager::hasInstance( const AppletInfo& info ) const
{
AppletInfo::Dict::const_iterator it = _dict.constBegin();
for (; it != _dict.constEnd(); ++it)
{
if (it.data()->library() == info.library())
{
return true;
}
}
return false;
}
void PluginManager::slotPluginDestroyed(TQObject* object)
{
AppletInfo* info = 0;
AppletInfo::Dict::iterator it = _dict.begin();
for (; it != _dict.end(); ++it)
{
if (it.key() == object)
{
info = dynamic_cast<AppletInfo*>(it.data());
_dict.erase(it);
break;
}
}
if (!info)
{
return;
}
LibUnloader::unload(info->library());
delete info;
}
AppletContainer* PluginManager::createAppletContainer(
const TQString& desktopFile,
bool isStartup,
const TQString& configFile,
TQPopupMenu* opMenu,
TQWidget* parent,
bool isImmutable)
{
TQString desktopPath = TDEGlobal::dirs()->findResource( "applets", desktopFile );
// KDE4: remove
// support the old (KDE 2.2) nameing scheme
if (desktopPath.isEmpty())
{
desktopPath = TDEGlobal::dirs()->findResource( "applets",
desktopFile.right(
desktopFile.length() - 1 ) );
}
if (desktopPath.isEmpty())
return 0;
AppletInfo info( desktopPath, configFile, AppletInfo::Applet );
bool instanceFound = hasInstance(info);
if (info.isUniqueApplet() && instanceFound)
{
return 0;
}
bool untrusted = m_untrustedApplets.find(desktopFile) != m_untrustedApplets.end();
if (isStartup && untrusted)
{
// don't load extensions that bombed on us previously!
return 0;
}
else if (!isStartup && !instanceFound && !untrusted)
{
// we haven't loaded this puppy before and we're not in the untrusted list
m_untrustedApplets.append(desktopFile);
TDEConfigGroup generalGroup(TDEGlobal::config(), "General");
generalGroup.writeEntry("UntrustedApplets", m_untrustedApplets);
generalGroup.sync();
}
AppletContainer* container = new AppletContainer(info, opMenu, isImmutable, parent);
if (!container->isValid())
{
delete container;
return 0;
}
return container;
}
ExtensionContainer* PluginManager::createExtensionContainer(const TQString& desktopFile,
bool isStartup,
const TQString& configFile,
const TQString& extensionId)
{
if (desktopFile.isEmpty())
{
return 0;
}
TQString desktopPath = TDEGlobal::dirs()->findResource("extensions", desktopFile);
if (desktopPath.isEmpty())
{
return 0;
}
AppletInfo info( desktopPath, configFile, AppletInfo::Extension );
bool internal = (info.library() == "childpanel_panelextension");
bool instance = !internal && hasInstance(info);
if (instance && info.isUniqueApplet())
{
return 0;
}
if (!internal)
{
bool untrusted = m_untrustedExtensions.find(desktopFile) != m_untrustedExtensions.end();
if (isStartup && untrusted)
{
// don't load extensions that bombed on us previously!
return 0;
}
else if (!isStartup && !instance && !untrusted)
{
// we don't have an instance around and we're not in the untrusted list!
m_untrustedExtensions.append(desktopFile);
TDEConfigGroup generalGroup(TDEGlobal::config(), "General");
generalGroup.writeEntry("UntrustedExtensions", m_untrustedExtensions);
generalGroup.sync();
}
}
return new ExtensionContainer(info, extensionId);
}
void PluginManager::clearUntrustedLists()
{
m_untrustedExtensions.clear();
m_untrustedApplets.clear();
TDEConfigGroup generalGroup(TDEGlobal::config(), "General");
generalGroup.writeEntry("UntrustedApplets", m_untrustedApplets);
generalGroup.writeEntry("UntrustedExtensions", m_untrustedExtensions);
generalGroup.sync();
}
LibUnloader::LibUnloader( const TQString &libName, TQObject *parent )
: TQObject( parent ), _libName( libName )
{
// NOTE: this doesn't work on kicker shutdown because the timer never gets
// fired.
TQTimer::singleShot( 0, this, TQT_SLOT( unload() ) );
}
void LibUnloader::unload( const TQString &libName )
{
(void)new LibUnloader( libName, TQT_TQOBJECT(kapp) );
}
void LibUnloader::unload()
{
KLibLoader::self()->unloadLibrary( TQFile::encodeName( _libName ) );
deleteLater();
}
#include "pluginmanager.moc"