author | ulf69 <ulf69> | 2004-06-29 03:30:19 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-06-29 03:30:19 (UTC) |
commit | 82fec00bb1355affe8093f0f92922827f0357632 (patch) (unidiff) | |
tree | ff6e59327e3b6e01dd80889f1f2a44aef52815e2 /microkde/kresources/factory.cpp | |
parent | e3a70fed171a7b8d29ce0afb9e0f82fb98903091 (diff) | |
download | kdepimpi-82fec00bb1355affe8093f0f92922827f0357632.zip kdepimpi-82fec00bb1355affe8093f0f92922827f0357632.tar.gz kdepimpi-82fec00bb1355affe8093f0f92922827f0357632.tar.bz2 |
load the data formats now via KLibLoader and not statically
Diffstat (limited to 'microkde/kresources/factory.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | microkde/kresources/factory.cpp | 100 |
1 files changed, 63 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 | |||
@@ -26,17 +26,10 @@ | |||
26 | #include <ksimpleconfig.h> | 26 | #include <ksimpleconfig.h> |
27 | #include <kstandarddirs.h> | 27 | #include <kstandarddirs.h> |
28 | #include <kstaticdeleter.h> | 28 | #include <kstaticdeleter.h> |
29 | #include <klibloader.h> | ||
29 | 30 | ||
30 | #include <qfile.h> | 31 | #include <qfile.h> |
31 | 32 | ||
32 | #include <plugins/file/resourcefile.h> | ||
33 | #include <plugins/file/resourcefileconfig.h> | ||
34 | #include <plugins/dir/resourcedir.h> | ||
35 | #include <plugins/dir/resourcedirconfig.h> | ||
36 | //#include <plugins/ldap/resourceldap.h> | ||
37 | //#include <plugins/ldap/resourceldapconfig.h> | ||
38 | |||
39 | |||
40 | #include "resource.h" | 33 | #include "resource.h" |
41 | #include "factory.h" | 34 | #include "factory.h" |
42 | 35 | ||
@@ -82,16 +75,50 @@ Factory::Factory( const QString& resourceFamily ) : | |||
82 | } | 75 | } |
83 | */ | 76 | */ |
84 | 77 | ||
85 | //US !!!!!!!!!!!!!!! | 78 | //US new |
86 | KRES::PluginFactoryBase* pf = (KRES::PluginFactoryBase*)new KRES::PluginFactory<KABC::ResourceFile,KABC::ResourceFileConfig>(); | 79 | PluginInfo* info = new PluginInfo; |
87 | mTypeMap.insert( "file", pf ); | 80 | info->library = "microkabc_file"; |
81 | info->nameLabel = i18n( "file" ); | ||
82 | info->descriptionLabel = i18n( "No description available." ); | ||
83 | mTypeMap.insert( "file", info ); | ||
84 | |||
85 | info = new PluginInfo; | ||
86 | info->library = "microkabc_dir"; | ||
87 | info->nameLabel = i18n( "dir" ); | ||
88 | info->descriptionLabel = i18n( "No description available." ); | ||
89 | mTypeMap.insert( "dir", info ); | ||
90 | |||
91 | info = new PluginInfo; | ||
92 | info->library = "microkabc_ldap"; | ||
93 | info->nameLabel = i18n( "ldap" ); | ||
94 | info->descriptionLabel = i18n( "No description available." ); | ||
95 | mTypeMap.insert( "ldap", info ); | ||
96 | |||
97 | //US add opie plugin only, if the library exists | ||
98 | QString libname = "microkabc_opie"; | ||
99 | QString path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); | ||
100 | if ( !path.isEmpty() ) | ||
101 | { | ||
102 | info = new PluginInfo; | ||
103 | info->library = libname; | ||
104 | info->nameLabel = i18n( "opie" ); | ||
105 | info->descriptionLabel = i18n( "Opie PIM Addressbook." ); | ||
106 | mTypeMap.insert( "opie", info ); | ||
107 | } | ||
108 | |||
109 | //US add qtopia plugin only, if the library exists | ||
110 | libname = "microkabc_qtopia"; | ||
111 | path = KLibLoader::findLibrary( QFile::encodeName( libname ) ); | ||
112 | if ( !path.isEmpty() ) | ||
113 | { | ||
114 | info = new PluginInfo; | ||
115 | info->library = libname; | ||
116 | info->nameLabel = i18n( "qtopia" ); | ||
117 | info->descriptionLabel = i18n( "Qtopia PIM Addressbook." ); | ||
118 | mTypeMap.insert( "qtopia", info ); | ||
119 | } | ||
120 | |||
88 | 121 | ||
89 | pf = (KRES::PluginFactoryBase*)new KRES::PluginFactory<KABC::ResourceDir,KABC::ResourceDirConfig>(); | ||
90 | mTypeMap.insert( "dir", pf ); | ||
91 | /* | ||
92 | pf = (KRES::PluginFactoryBase*)new KRES::PluginFactory<KABC::ResourceLDAP,KABC::ResourceLDAPConfig>(); | ||
93 | mTypeMap.insert( "ldap", pf ); | ||
94 | */ | ||
95 | } | 122 | } |
96 | 123 | ||
97 | Factory::~Factory() | 124 | Factory::~Factory() |
@@ -105,7 +132,7 @@ QStringList Factory::typeNames() const | |||
105 | 132 | ||
106 | QStringList result; | 133 | QStringList result; |
107 | 134 | ||
108 | QMap<QString, PluginFactoryBase*>::ConstIterator it; | 135 | QMap<QString, PluginInfo*>::ConstIterator it; |
109 | for( it = mTypeMap.begin(); it != mTypeMap.end(); ++it ) { | 136 | for( it = mTypeMap.begin(); it != mTypeMap.end(); ++it ) { |
110 | result << it.key().latin1(); | 137 | result << it.key().latin1(); |
111 | // qDebug("Factory::typeNames() : %s ", it.key().latin1()); | 138 | // qDebug("Factory::typeNames() : %s ", it.key().latin1()); |
@@ -119,24 +146,20 @@ ConfigWidget *Factory::configWidget( const QString& type, QWidget *parent ) | |||
119 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) | 146 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) |
120 | return 0; | 147 | return 0; |
121 | 148 | ||
122 | /*US load the lib not dynamically. !! | 149 | //US KService::Ptr ptr = mTypeMap[ type ]; |
123 | KService::Ptr ptr = mTypeMap[ type ]; | 150 | //US KLibFactory *factory = KLibLoader::self()->factory( ptr->library().latin1() ); |
124 | KLibFactory *factory = KLibLoader::self()->factory( ptr->library().latin1() ); | 151 | PluginInfo* pi = mTypeMap[ type ]; |
125 | if ( !factory ) { | 152 | KLibFactory *factory = (KLibFactory *)KLibLoader::self()->factory( pi->library.latin1() ); |
126 | kdDebug() << "KRES::Factory::configWidget(): Factory creation failed" << endl; | ||
127 | return 0; | ||
128 | } | ||
129 | */ | ||
130 | PluginFactoryBase *factory = mTypeMap[ type ]; | ||
131 | if ( !factory ) { | 153 | if ( !factory ) { |
154 | qDebug("KRES::Factory::configWidget(): Factory creation failed for library %s", pi->library.latin1()); | ||
132 | kdDebug() << "KRES::Factory::configWidget(): Factory creation failed" << endl; | 155 | kdDebug() << "KRES::Factory::configWidget(): Factory creation failed" << endl; |
133 | return 0; | 156 | return 0; |
134 | } | 157 | } |
135 | 158 | ||
136 | |||
137 | PluginFactoryBase *pluginFactory = static_cast<PluginFactoryBase *>( factory ); | 159 | PluginFactoryBase *pluginFactory = static_cast<PluginFactoryBase *>( factory ); |
138 | 160 | ||
139 | if ( !pluginFactory ) { | 161 | if ( !pluginFactory ) { |
162 | qDebug("KRES::Factory::configWidget(): no plugin factory for library %s", pi->library.latin1()); | ||
140 | kdDebug() << "KRES::Factory::configWidget(): no plugin factory." << endl; | 163 | kdDebug() << "KRES::Factory::configWidget(): no plugin factory." << endl; |
141 | return 0; | 164 | return 0; |
142 | } | 165 | } |
@@ -144,7 +167,7 @@ ConfigWidget *Factory::configWidget( const QString& type, QWidget *parent ) | |||
144 | ConfigWidget *wdg = pluginFactory->configWidget( parent ); | 167 | ConfigWidget *wdg = pluginFactory->configWidget( parent ); |
145 | if ( !wdg ) { | 168 | if ( !wdg ) { |
146 | //US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl; | 169 | //US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl; |
147 | kdDebug() << " is not a " + mResourceFamily + " plugin." << endl; | 170 | qDebug("%s is not a %s plugin.", pi->library.latin1(), mResourceFamily.latin1()); |
148 | return 0; | 171 | return 0; |
149 | } | 172 | } |
150 | return wdg; | 173 | return wdg; |
@@ -155,11 +178,12 @@ QString Factory::typeName( const QString &type ) const | |||
155 | { | 178 | { |
156 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) | 179 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) |
157 | return QString(); | 180 | return QString(); |
158 | 181 | ||
182 | |||
159 | //US KService::Ptr ptr = mTypeMap[ type ]; | 183 | //US KService::Ptr ptr = mTypeMap[ type ]; |
160 | //US return ptr->name(); | 184 | //US return ptr->name(); |
161 | //US I guess this is correct since we loaded the factory staticly. | 185 | PluginInfo* pi = mTypeMap[ type ]; |
162 | return type; | 186 | return pi->nameLabel; |
163 | 187 | ||
164 | } | 188 | } |
165 | 189 | ||
@@ -170,9 +194,8 @@ QString Factory::typeDescription( const QString &type ) const | |||
170 | 194 | ||
171 | //US KService::Ptr ptr = mTypeMap[ type ]; | 195 | //US KService::Ptr ptr = mTypeMap[ type ]; |
172 | //US return ptr->comment(); | 196 | //US return ptr->comment(); |
173 | //US I guess this is correct since we loaded the factory staticly. | 197 | PluginInfo* pi = mTypeMap[ type ]; |
174 | return type; | 198 | return pi->descriptionLabel; |
175 | |||
176 | } | 199 | } |
177 | 200 | ||
178 | Resource *Factory::resource( const QString& type, const KConfig *config ) | 201 | Resource *Factory::resource( const QString& type, const KConfig *config ) |
@@ -190,8 +213,10 @@ Resource *Factory::resource( const QString& type, const KConfig *config ) | |||
190 | return 0; | 213 | return 0; |
191 | } | 214 | } |
192 | */ | 215 | */ |
193 | PluginFactoryBase *factory = mTypeMap[ type ]; | 216 | PluginInfo* pi = mTypeMap[ type ]; |
217 | KLibFactory *factory = (KLibFactory *)KLibLoader::self()->factory( pi->library.latin1() ); | ||
194 | if ( !factory ) { | 218 | if ( !factory ) { |
219 | qDebug("KRES::Factory::resource(): Factory creation failed for library %s", pi->library.latin1()); | ||
195 | kdDebug() << "KRES::Factory::resource(): Factory creation failed" << endl; | 220 | kdDebug() << "KRES::Factory::resource(): Factory creation failed" << endl; |
196 | return 0; | 221 | return 0; |
197 | } | 222 | } |
@@ -199,6 +224,7 @@ Resource *Factory::resource( const QString& type, const KConfig *config ) | |||
199 | PluginFactoryBase *pluginFactory = static_cast<PluginFactoryBase *>( factory ); | 224 | PluginFactoryBase *pluginFactory = static_cast<PluginFactoryBase *>( factory ); |
200 | 225 | ||
201 | if ( !pluginFactory ) { | 226 | if ( !pluginFactory ) { |
227 | qDebug("KRES::Factory::resource(): no plugin factory for library %s", pi->library.latin1()); | ||
202 | kdDebug() << "KRES::Factory::resource(): no plugin factory." << endl; | 228 | kdDebug() << "KRES::Factory::resource(): no plugin factory." << endl; |
203 | return 0; | 229 | return 0; |
204 | } | 230 | } |
@@ -206,7 +232,7 @@ Resource *Factory::resource( const QString& type, const KConfig *config ) | |||
206 | Resource *resource = pluginFactory->resource( config ); | 232 | Resource *resource = pluginFactory->resource( config ); |
207 | if ( !resource ) { | 233 | if ( !resource ) { |
208 | //US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl; | 234 | //US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl; |
209 | kdDebug() << " is not a " + mResourceFamily + " plugin." << endl; | 235 | qDebug("%s is not a %s plugin.", pi->library.latin1(), mResourceFamily.latin1()); |
210 | return 0; | 236 | return 0; |
211 | } | 237 | } |
212 | 238 | ||