summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/formatfactory.cpp25
1 files changed, 13 insertions, 12 deletions
diff --git a/kabc/formatfactory.cpp b/kabc/formatfactory.cpp
index 2b073d7..f107ebf 100644
--- a/kabc/formatfactory.cpp
+++ b/kabc/formatfactory.cpp
@@ -1,181 +1,182 @@
1/* 1/*
2 This file is part of libkabc. 2 This file is part of libkabc.
3 Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> 3 Copyright (c) 2002 Tobias Koenig <tokoe@kde.org>
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public 6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either 7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version. 8 version 2 of the License, or (at your option) any later version.
9 9
10 This library is distributed in the hope that it will be useful, 10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details. 13 Library General Public License for more details.
14 14
15 You should have received a copy of the GNU Library General Public License 15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to 16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20 20
21#include <kdebug.h> 21#include <kdebug.h>
22#include <klocale.h> 22#include <klocale.h>
23#include <ksimpleconfig.h> 23#include <ksimpleconfig.h>
24#include <kstandarddirs.h> 24#include <kstandarddirs.h>
25#include <kstaticdeleter.h> 25#include <kstaticdeleter.h>
26 26
27#include <qfile.h> 27#include <qfile.h>
28#include <qstringlist.h> 28#include <qstringlist.h>
29 29
30#include "vcardformatplugin.h" 30#include "vcardformatplugin.h"
31 31
32#include "formatfactory.h" 32#include "formatfactory.h"
33 33
34using namespace KABC; 34using namespace KABC;
35 35
36FormatFactory *FormatFactory::mSelf = 0; 36FormatFactory *FormatFactory::mSelf = 0;
37static KStaticDeleter<FormatFactory> factoryDeleter; 37static KStaticDeleter<FormatFactory> factoryDeleter;
38 38
39FormatFactory *FormatFactory::self() 39FormatFactory *FormatFactory::self()
40{ 40{
41 kdDebug(5700) << "FormatFactory::self()" << endl; 41 kdDebug(5700) << "FormatFactory::self()" << endl;
42 42
43 if ( !mSelf ) { 43 if ( !mSelf ) {
44#ifdef KAB_EMBEDDED 44//US factoryDeleter.setObject( mSelf, new FormatFactory );
45 mSelf = factoryDeleter.setObject( new FormatFactory ); 45 mSelf = factoryDeleter.setObject( new FormatFactory );
46#else //KAB_EMBEDDED
47 factoryDeleter.setObject( mSelf, new FormatFactory );
48#endif //KAB_EMBEDDED
49
50 } 46 }
51 return mSelf; 47 return mSelf;
52} 48}
53 49
54FormatFactory::FormatFactory() 50FormatFactory::FormatFactory()
55{ 51{
56 mFormatList.setAutoDelete( true ); 52 mFormatList.setAutoDelete( true );
57 53
58 // dummy entry for default format 54 // dummy entry for default format
59 FormatInfo *info = new FormatInfo; 55 FormatInfo *info = new FormatInfo;
60 info->library = "<NoLibrary>"; 56 info->library = "<NoLibrary>";
61 info->nameLabel = i18n( "vCard" ); 57 info->nameLabel = i18n( "vCard" );
62 info->descriptionLabel = i18n( "vCard Format" ); 58 info->descriptionLabel = i18n( "vCard Format" );
63 mFormatList.insert( "vcard", info ); 59 mFormatList.insert( "vcard", info );
64 60
61/*US lets enter all resources directly instead of using teh desktopfiles.
62
65 QStringList list = KGlobal::dirs()->findAllResources( "data" ,"kabc/formats/*.desktop", true, true ); 63 QStringList list = KGlobal::dirs()->findAllResources( "data" ,"kabc/formats/*.desktop", true, true );
66 for ( QStringList::ConstIterator it = list.begin(); it != list.end(); ++it ) 64 for ( QStringList::ConstIterator it = list.begin(); it != list.end(); ++it )
67 { 65 {
68//US KSimpleConfig config( *it, true ); 66//US KSimpleConfig config( *it, true );
69 KConfig config( *it ); 67 KConfig config( *it );
70 68
71 if ( !config.hasGroup( "Misc" ) || !config.hasGroup( "Plugin" ) ) 69 if ( !config.hasGroup( "Misc" ) || !config.hasGroup( "Plugin" ) )
72 continue; 70 continue;
73 71
74 info = new FormatInfo; 72 info = new FormatInfo;
75 73
76 config.setGroup( "Plugin" ); 74 config.setGroup( "Plugin" );
77 QString type = config.readEntry( "Type" ); 75 QString type = config.readEntry( "Type" );
78 info->library = config.readEntry( "X-KDE-Library" ); 76 info->library = config.readEntry( "X-KDE-Library" );
79 77
80 config.setGroup( "Misc" ); 78 config.setGroup( "Misc" );
81 info->nameLabel = config.readEntry( "Name" ); 79 info->nameLabel = config.readEntry( "Name" );
82 info->descriptionLabel = config.readEntry( "Comment", i18n( "No description available." ) ); 80 info->descriptionLabel = config.readEntry( "Comment", i18n( "No description available." ) );
83 81
84 mFormatList.insert( type, info ); 82 mFormatList.insert( type, info );
85 } 83 }
84*/
85 //US we already have vcard as default format.
86 info = new FormatInfo;
87 info->library = i18n("microkabcformat_binary");
88 info->nameLabel = i18n( "Binary" );
89 info->descriptionLabel = i18n( "No description available." );
90 mFormatList.insert( "binary", info );
91
86} 92}
87 93
88FormatFactory::~FormatFactory() 94FormatFactory::~FormatFactory()
89{ 95{
90 mFormatList.clear(); 96 mFormatList.clear();
91} 97}
92 98
93QStringList FormatFactory::formats() 99QStringList FormatFactory::formats()
94{ 100{
95 QStringList retval; 101 QStringList retval;
96 102
97 // make sure 'vcard' is the first entry 103 // make sure 'vcard' is the first entry
98 retval << "vcard"; 104 retval << "vcard";
99 105
100 QDictIterator<FormatInfo> it( mFormatList ); 106 QDictIterator<FormatInfo> it( mFormatList );
101 for ( ; it.current(); ++it ) 107 for ( ; it.current(); ++it )
102 if ( it.currentKey() != "vcard" ) 108 if ( it.currentKey() != "vcard" )
103 retval << it.currentKey(); 109 retval << it.currentKey();
104 110
105 return retval; 111 return retval;
106} 112}
107 113
108FormatInfo *FormatFactory::info( const QString &type ) 114FormatInfo *FormatFactory::info( const QString &type )
109{ 115{
110 if ( type.isEmpty() ) 116 if ( type.isEmpty() )
111 return 0; 117 return 0;
112 else 118 else
113 return mFormatList[ type ]; 119 return mFormatList[ type ];
114} 120}
115 121
116FormatPlugin *FormatFactory::format( const QString& type ) 122FormatPlugin *FormatFactory::format( const QString& type )
117{ 123{
118 FormatPlugin *format = 0; 124 FormatPlugin *format = 0;
119 125
120 if ( type.isEmpty() ) 126 if ( type.isEmpty() )
121 return 0; 127 return 0;
122 128
123 if ( type == "vcard" ) { 129 if ( type == "vcard" ) {
124 format = new VCardFormatPlugin; 130 format = new VCardFormatPlugin;
125 /* // LR
126 format->setType( type ); 131 format->setType( type );
127 format->setNameLabel( i18n( "vCard" ) ); 132 format->setNameLabel( i18n( "vCard" ) );
128 format->setDescriptionLabel( i18n( "vCard Format" ) ); 133 format->setDescriptionLabel( i18n( "vCard Format" ) );
129 */
130 return format; 134 return format;
131 } 135 }
132 136
133 FormatInfo *fi = mFormatList[ type ]; 137 FormatInfo *fi = mFormatList[ type ];
134 if (!fi) 138 if (!fi)
135 return 0; 139 return 0;
136 QString libName = fi->library; 140 QString libName = fi->library;
137#ifndef DESKTOP_VERSION 141#ifndef DESKTOP_VERSION
138 KLibrary *library = openLibrary( libName ); 142 KLibrary *library = openLibrary( libName );
139 if ( !library ) 143 if ( !library )
140 return 0; 144 return 0;
141 145
142 void *format_func = library->symbol( "format" ); 146 void *format_func = library->symbol( "format");
143 147
144 if ( format_func ) { 148 if ( format_func ) {
145 format = ((FormatPlugin* (*)())format_func)(); 149 format = ((FormatPlugin* (*)())format_func)();
146 // LR
147 /*
148 format->setType( type ); 150 format->setType( type );
149 format->setNameLabel( fi->nameLabel ); 151 format->setNameLabel( fi->nameLabel );
150 format->setDescriptionLabel( fi->descriptionLabel ); 152 format->setDescriptionLabel( fi->descriptionLabel );
151 */
152 } else { 153 } else {
153 kdDebug( 5700 ) << "'" << libName << "' is not a format plugin." << endl; 154 kdDebug( 5700 ) << "'" << libName << "' is not a format plugin." << endl;
154 return 0; 155 return 0;
155 } 156 }
156#endif 157#endif
157 return format; 158 return format;
158} 159}
159 160
160#ifndef DESKTOP_VERSION 161#ifndef DESKTOP_VERSION
161KLibrary *FormatFactory::openLibrary( const QString& libName ) 162KLibrary *FormatFactory::openLibrary( const QString& libName )
162{ 163{
163 KLibrary *library = 0; 164 KLibrary *library = 0;
164 165
165 QString path = KLibLoader::findLibrary( QFile::encodeName( libName ) ); 166 QString path = KLibLoader::findLibrary( QFile::encodeName( libName ) );
166 167
167 if ( path.isEmpty() ) { 168 if ( path.isEmpty() ) {
168 kdDebug( 5700 ) << "No format plugin library was found!" << endl; 169 kdDebug( 5700 ) << "No format plugin library was found!" << endl;
169 return 0; 170 return 0;
170 } 171 }
171 172
172 library = KLibLoader::self()->library( QFile::encodeName( path ) ); 173 library = KLibLoader::self()->library( QFile::encodeName( path ) );
173 174
174 if ( !library ) { 175 if ( !library ) {
175 kdDebug( 5700 ) << "Could not load library '" << libName << "'" << endl; 176 kdDebug( 5700 ) << "Could not load library '" << libName << "'" << endl;
176 return 0; 177 return 0;
177 } 178 }
178 179
179 return library; 180 return library;
180} 181}
181#endif 182#endif