summaryrefslogtreecommitdiffabout
authorulf69 <ulf69>2004-06-29 03:30:19 (UTC)
committer ulf69 <ulf69>2004-06-29 03:30:19 (UTC)
commit82fec00bb1355affe8093f0f92922827f0357632 (patch) (side-by-side diff)
treeff6e59327e3b6e01dd80889f1f2a44aef52815e2
parente3a70fed171a7b8d29ce0afb9e0f82fb98903091 (diff)
downloadkdepimpi-82fec00bb1355affe8093f0f92922827f0357632.zip
kdepimpi-82fec00bb1355affe8093f0f92922827f0357632.tar.gz
kdepimpi-82fec00bb1355affe8093f0f92922827f0357632.tar.bz2
load the data formats now via KLibLoader and not statically
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--microkde/kresources/factory.cpp98
-rw-r--r--microkde/kresources/factory.h13
2 files changed, 74 insertions, 37 deletions
diff --git a/microkde/kresources/factory.cpp b/microkde/kresources/factory.cpp
index 709cd4a..56b0ef3 100644
--- a/microkde/kresources/factory.cpp
+++ b/microkde/kresources/factory.cpp
@@ -28,2 +28,3 @@
#include <kstaticdeleter.h>
+#include <klibloader.h>
@@ -31,10 +32,2 @@
-#include <plugins/file/resourcefile.h>
-#include <plugins/file/resourcefileconfig.h>
-#include <plugins/dir/resourcedir.h>
-#include <plugins/dir/resourcedirconfig.h>
-//#include <plugins/ldap/resourceldap.h>
-//#include <plugins/ldap/resourceldapconfig.h>
-
-
#include "resource.h"
@@ -84,12 +77,46 @@ Factory::Factory( const QString& resourceFamily ) :
-//US !!!!!!!!!!!!!!!
- KRES::PluginFactoryBase* pf = (KRES::PluginFactoryBase*)new KRES::PluginFactory<KABC::ResourceFile,KABC::ResourceFileConfig>();
- mTypeMap.insert( "file", pf );
+//US new
+ PluginInfo* info = new PluginInfo;
+ info->library = "microkabc_file";
+ info->nameLabel = i18n( "file" );
+ info->descriptionLabel = i18n( "No description available." );
+ mTypeMap.insert( "file", info );
+
+ info = new PluginInfo;
+ info->library = "microkabc_dir";
+ info->nameLabel = i18n( "dir" );
+ info->descriptionLabel = i18n( "No description available." );
+ mTypeMap.insert( "dir", info );
+
+ info = new PluginInfo;
+ info->library = "microkabc_ldap";
+ info->nameLabel = i18n( "ldap" );
+ info->descriptionLabel = i18n( "No description available." );
+ mTypeMap.insert( "ldap", info );
+
+ //US add opie plugin only, if the library exists
+ QString libname = "microkabc_opie";
+ QString path = KLibLoader::findLibrary( QFile::encodeName( libname ) );
+ if ( !path.isEmpty() )
+ {
+ info = new PluginInfo;
+ info->library = libname;
+ info->nameLabel = i18n( "opie" );
+ info->descriptionLabel = i18n( "Opie PIM Addressbook." );
+ mTypeMap.insert( "opie", info );
+ }
+
+ //US add qtopia plugin only, if the library exists
+ libname = "microkabc_qtopia";
+ path = KLibLoader::findLibrary( QFile::encodeName( libname ) );
+ if ( !path.isEmpty() )
+ {
+ info = new PluginInfo;
+ info->library = libname;
+ info->nameLabel = i18n( "qtopia" );
+ info->descriptionLabel = i18n( "Qtopia PIM Addressbook." );
+ mTypeMap.insert( "qtopia", info );
+ }
+
- pf = (KRES::PluginFactoryBase*)new KRES::PluginFactory<KABC::ResourceDir,KABC::ResourceDirConfig>();
- mTypeMap.insert( "dir", pf );
- /*
- pf = (KRES::PluginFactoryBase*)new KRES::PluginFactory<KABC::ResourceLDAP,KABC::ResourceLDAPConfig>();
- mTypeMap.insert( "ldap", pf );
- */
}
@@ -107,3 +134,3 @@ QStringList Factory::typeNames() const
- QMap<QString, PluginFactoryBase*>::ConstIterator it;
+ QMap<QString, PluginInfo*>::ConstIterator it;
for( it = mTypeMap.begin(); it != mTypeMap.end(); ++it ) {
@@ -121,12 +148,8 @@ ConfigWidget *Factory::configWidget( const QString& type, QWidget *parent )
-/*US load the lib not dynamically. !!
- KService::Ptr ptr = mTypeMap[ type ];
- KLibFactory *factory = KLibLoader::self()->factory( ptr->library().latin1() );
- if ( !factory ) {
- kdDebug() << "KRES::Factory::configWidget(): Factory creation failed" << endl;
- return 0;
- }
-*/
- PluginFactoryBase *factory = mTypeMap[ type ];
+//US KService::Ptr ptr = mTypeMap[ type ];
+//US KLibFactory *factory = KLibLoader::self()->factory( ptr->library().latin1() );
+ PluginInfo* pi = mTypeMap[ type ];
+ KLibFactory *factory = (KLibFactory *)KLibLoader::self()->factory( pi->library.latin1() );
if ( !factory ) {
+ qDebug("KRES::Factory::configWidget(): Factory creation failed for library %s", pi->library.latin1());
kdDebug() << "KRES::Factory::configWidget(): Factory creation failed" << endl;
@@ -135,3 +158,2 @@ ConfigWidget *Factory::configWidget( const QString& type, QWidget *parent )
-
PluginFactoryBase *pluginFactory = static_cast<PluginFactoryBase *>( factory );
@@ -139,2 +161,3 @@ ConfigWidget *Factory::configWidget( const QString& type, QWidget *parent )
if ( !pluginFactory ) {
+ qDebug("KRES::Factory::configWidget(): no plugin factory for library %s", pi->library.latin1());
kdDebug() << "KRES::Factory::configWidget(): no plugin factory." << endl;
@@ -146,3 +169,3 @@ ConfigWidget *Factory::configWidget( const QString& type, QWidget *parent )
//US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl;
- kdDebug() << " is not a " + mResourceFamily + " plugin." << endl;
+ qDebug("%s is not a %s plugin.", pi->library.latin1(), mResourceFamily.latin1());
return 0;
@@ -158,6 +181,7 @@ QString Factory::typeName( const QString &type ) const
+
//US KService::Ptr ptr = mTypeMap[ type ];
//US return ptr->name();
-//US I guess this is correct since we loaded the factory staticly.
- return type;
+ PluginInfo* pi = mTypeMap[ type ];
+ return pi->nameLabel;
@@ -172,5 +196,4 @@ QString Factory::typeDescription( const QString &type ) const
//US return ptr->comment();
-//US I guess this is correct since we loaded the factory staticly.
- return type;
-
+ PluginInfo* pi = mTypeMap[ type ];
+ return pi->descriptionLabel;
}
@@ -192,4 +215,6 @@ Resource *Factory::resource( const QString& type, const KConfig *config )
*/
- PluginFactoryBase *factory = mTypeMap[ type ];
+ PluginInfo* pi = mTypeMap[ type ];
+ KLibFactory *factory = (KLibFactory *)KLibLoader::self()->factory( pi->library.latin1() );
if ( !factory ) {
+ qDebug("KRES::Factory::resource(): Factory creation failed for library %s", pi->library.latin1());
kdDebug() << "KRES::Factory::resource(): Factory creation failed" << endl;
@@ -201,2 +226,3 @@ Resource *Factory::resource( const QString& type, const KConfig *config )
if ( !pluginFactory ) {
+ qDebug("KRES::Factory::resource(): no plugin factory for library %s", pi->library.latin1());
kdDebug() << "KRES::Factory::resource(): no plugin factory." << endl;
@@ -208,3 +234,3 @@ Resource *Factory::resource( const QString& type, const KConfig *config )
//US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl;
- kdDebug() << " is not a " + mResourceFamily + " plugin." << endl;
+ qDebug("%s is not a %s plugin.", pi->library.latin1(), mResourceFamily.latin1());
return 0;
diff --git a/microkde/kresources/factory.h b/microkde/kresources/factory.h
index f391bb3..ad67ab3 100644
--- a/microkde/kresources/factory.h
+++ b/microkde/kresources/factory.h
@@ -36,2 +36,11 @@ namespace KRES {
+//US
+struct PluginInfo
+{
+ QString library;
+ QString nameLabel;
+ QString descriptionLabel;
+};
+
+
/**
@@ -58,2 +67,3 @@ class Factory
+
/**
@@ -108,3 +118,4 @@ class Factory
//US QMap<QString, KService::Ptr> mTypeMap;
- QMap<QString, PluginFactoryBase*> mTypeMap;
+//US lets store the pluginfo struct as value instead of a KService
+ QMap<QString, PluginInfo*> mTypeMap;
};