-rw-r--r-- | kabc/plugins/opie/resourceopie.cpp | 39 | ||||
-rw-r--r-- | kabc/plugins/opie/resourceopie.h | 10 | ||||
-rw-r--r-- | kabc/plugins/qtopia/resourceqtopia.cpp | 49 | ||||
-rw-r--r-- | kabc/plugins/qtopia/resourceqtopia.h | 10 | ||||
-rw-r--r-- | kabc/plugins/sharpdtm/resourcesharpdtm.cpp | 30 | ||||
-rw-r--r-- | kabc/plugins/sharpdtm/resourcesharpdtm.h | 10 | ||||
-rw-r--r-- | kabc/resource.cpp | 15 | ||||
-rw-r--r-- | kabc/resource.h | 11 | ||||
-rw-r--r-- | kabc/tmpaddressbook.cpp | 14 | ||||
-rw-r--r-- | kaddressbook/xxport/opie_xxport.cpp | 120 | ||||
-rw-r--r-- | kaddressbook/xxport/opie_xxport.h | 4 | ||||
-rw-r--r-- | kaddressbook/xxport/qtopia_xxport.cpp | 225 | ||||
-rw-r--r-- | kaddressbook/xxport/sharpdtm_xxport.cpp | 228 | ||||
-rw-r--r-- | kaddressbook/xxport/sharpdtm_xxport.h | 2 | ||||
-rw-r--r-- | kaddressbook/xxportobject.cpp | 106 | ||||
-rw-r--r-- | kaddressbook/xxportobject.h | 9 |
16 files changed, 167 insertions, 715 deletions
diff --git a/kabc/plugins/opie/resourceopie.cpp b/kabc/plugins/opie/resourceopie.cpp index 5559827..9dfd473 100644 --- a/kabc/plugins/opie/resourceopie.cpp +++ b/kabc/plugins/opie/resourceopie.cpp | |||
@@ -89,2 +89,3 @@ void ResourceOpie::init( const QString &fileName ) | |||
89 | { | 89 | { |
90 | qDebug("ResourceOpie::init()"); | ||
90 | 91 | ||
@@ -256,3 +257,7 @@ bool ResourceOpie::lock( const QString &lockfileName ) | |||
256 | 257 | ||
257 | if (QFile::exists( lockName )) return false; | 258 | if (QFile::exists( lockName )) |
259 | { | ||
260 | qDebug("ResourceOpie::lock: lockfile %s already exists. (Delete it before continuing if nobody else is accessing the resourcefile %s)", lockName.latin1(), fileName().latin1()); | ||
261 | return false; | ||
262 | } | ||
258 | 263 | ||
@@ -342,34 +347,2 @@ void ResourceOpie::cleanUp() | |||
342 | 347 | ||
343 | /** | ||
344 | * This method returns the number of elements that are currently in the resource. | ||
345 | */ | ||
346 | int ResourceOpie::count() const | ||
347 | { | ||
348 | qDebug("ResourceOpie::count: %x", mAccess); | ||
349 | |||
350 | if (mAccess != 0) | ||
351 | { | ||
352 | OContactAccess::List contactList = mAccess->allRecords(); | ||
353 | return contactList.count(); | ||
354 | } | ||
355 | else | ||
356 | return 0; | ||
357 | } | ||
358 | |||
359 | |||
360 | /** | ||
361 | * This method removes all elements from the resource!! (Not from the addressbook) | ||
362 | */ | ||
363 | bool ResourceOpie::clear() | ||
364 | { | ||
365 | if (mAccess != 0) { | ||
366 | mAccess->clear(); | ||
367 | return true; | ||
368 | } | ||
369 | else | ||
370 | return false; | ||
371 | } | ||
372 | |||
373 | |||
374 | |||
375 | //US #include "resourceopie.moc" | 348 | //US #include "resourceopie.moc" |
diff --git a/kabc/plugins/opie/resourceopie.h b/kabc/plugins/opie/resourceopie.h index ca30fee..d5b4ebd 100644 --- a/kabc/plugins/opie/resourceopie.h +++ b/kabc/plugins/opie/resourceopie.h | |||
@@ -124,12 +124,2 @@ public: | |||
124 | 124 | ||
125 | /** | ||
126 | * This method returns the number of elements that are currently in the resource. | ||
127 | */ | ||
128 | virtual int count() const; | ||
129 | |||
130 | /** | ||
131 | * This method removes all elements from the resource!! (Not from the addressbook) | ||
132 | */ | ||
133 | virtual bool clear(); | ||
134 | |||
135 | 125 | ||
diff --git a/kabc/plugins/qtopia/resourceqtopia.cpp b/kabc/plugins/qtopia/resourceqtopia.cpp index 4a35f19..242e0c6 100644 --- a/kabc/plugins/qtopia/resourceqtopia.cpp +++ b/kabc/plugins/qtopia/resourceqtopia.cpp | |||
@@ -235,3 +235,7 @@ bool ResourceQtopia::lock( const QString &lockfileName ) | |||
235 | 235 | ||
236 | if (QFile::exists( lockName )) return false; | 236 | if (QFile::exists( lockName )) |
237 | { | ||
238 | qDebug("ResourceOpie::lock: lockfile %s already exists. (Delete it before continuing if nobody else is accessing the resourcefile %s)", lockName.latin1(), fileName()); | ||
239 | return false; | ||
240 | } | ||
237 | 241 | ||
@@ -314,45 +318,2 @@ void ResourceQtopia::cleanUp() | |||
314 | 318 | ||
315 | |||
316 | |||
317 | /** | ||
318 | * This method returns the number of elements that are currently in the resource. | ||
319 | */ | ||
320 | int ResourceQtopia::count() const | ||
321 | { | ||
322 | if (mAccess != 0) | ||
323 | { | ||
324 | int counter = 0; | ||
325 | AddressBookIterator it2(*mAccess); | ||
326 | for (it2.toFirst(); it2.current(); ++it2) { | ||
327 | counter++; | ||
328 | } | ||
329 | |||
330 | return counter; | ||
331 | } | ||
332 | else | ||
333 | return 0; | ||
334 | } | ||
335 | |||
336 | |||
337 | /** | ||
338 | * This method removes all elements from the resource!! (Not from the addressbook) | ||
339 | */ | ||
340 | bool ResourceQtopia::clear() | ||
341 | { | ||
342 | if (mAccess != 0) | ||
343 | { | ||
344 | AddressBookIterator it2(*mAccess); | ||
345 | for (it2.toFirst(); it2.current(); ++it2) { | ||
346 | mAccess->removeContact(*it2.current()); | ||
347 | } | ||
348 | return true; | ||
349 | } | ||
350 | else | ||
351 | return false; | ||
352 | } | ||
353 | |||
354 | |||
355 | |||
356 | |||
357 | |||
358 | //US #include "resourceqtopia.moc" | 319 | //US #include "resourceqtopia.moc" |
diff --git a/kabc/plugins/qtopia/resourceqtopia.h b/kabc/plugins/qtopia/resourceqtopia.h index 90ab1f4..eace280 100644 --- a/kabc/plugins/qtopia/resourceqtopia.h +++ b/kabc/plugins/qtopia/resourceqtopia.h | |||
@@ -124,12 +124,2 @@ public: | |||
124 | 124 | ||
125 | /** | ||
126 | * This method returns the number of elements that are currently in the resource. | ||
127 | */ | ||
128 | virtual int count() const; | ||
129 | |||
130 | /** | ||
131 | * This method removes all elements from the resource!! (Not from the addressbook) | ||
132 | */ | ||
133 | virtual bool clear(); | ||
134 | |||
135 | protected slots: | 125 | protected slots: |
diff --git a/kabc/plugins/sharpdtm/resourcesharpdtm.cpp b/kabc/plugins/sharpdtm/resourcesharpdtm.cpp index 14f272d..70c3718 100644 --- a/kabc/plugins/sharpdtm/resourcesharpdtm.cpp +++ b/kabc/plugins/sharpdtm/resourcesharpdtm.cpp | |||
@@ -251,3 +251,8 @@ bool ResourceSharpDTM::lock( const QString &lockfileName ) | |||
251 | 251 | ||
252 | if (QFile::exists( lockName )) return false; | 252 | if (QFile::exists( lockName )) |
253 | { | ||
254 | qDebug("ResourceSharpDTM::lock: lockfile %s already exists. (Delete it before continuing if nobody else is accessing the resourcefile %s)", lockName.latin1(), fileName()); | ||
255 | return false; | ||
256 | } | ||
257 | |||
253 | 258 | ||
@@ -330,25 +335,2 @@ void ResourceSharpDTM::cleanUp() | |||
330 | 335 | ||
331 | /** | ||
332 | * This method returns the number of elements that are currently in the resource. | ||
333 | */ | ||
334 | int ResourceSharpDTM::count() const | ||
335 | { | ||
336 | if (mAccess != 0) | ||
337 | return mAccess->count(); | ||
338 | else | ||
339 | return 0; | ||
340 | } | ||
341 | |||
342 | |||
343 | /** | ||
344 | * This method removes all elements from the resource!! (Not from the addressbook) | ||
345 | */ | ||
346 | bool ResourceSharpDTM::clear() | ||
347 | { | ||
348 | if (mAccess != 0) | ||
349 | return mAccess->deleteCard(0, SlZDataBase::AllCard ); | ||
350 | else | ||
351 | return false; | ||
352 | } | ||
353 | |||
354 | 336 | ||
diff --git a/kabc/plugins/sharpdtm/resourcesharpdtm.h b/kabc/plugins/sharpdtm/resourcesharpdtm.h index 60d38a1..f386e69 100644 --- a/kabc/plugins/sharpdtm/resourcesharpdtm.h +++ b/kabc/plugins/sharpdtm/resourcesharpdtm.h | |||
@@ -124,12 +124,2 @@ public: | |||
124 | 124 | ||
125 | /** | ||
126 | * This method returns the number of elements that are currently in the resource. | ||
127 | */ | ||
128 | virtual int count() const; | ||
129 | |||
130 | /** | ||
131 | * This method removes all elements from the resource!! (Not from the addressbook) | ||
132 | */ | ||
133 | virtual bool clear(); | ||
134 | |||
135 | 125 | ||
diff --git a/kabc/resource.cpp b/kabc/resource.cpp index 9632a3f..2f03927 100644 --- a/kabc/resource.cpp +++ b/kabc/resource.cpp | |||
@@ -115,17 +115,2 @@ bool Resource::isSyncable() const | |||
115 | 115 | ||
116 | /** | ||
117 | * This method returns the number of elements that are currently in the resource. | ||
118 | */ | ||
119 | int Resource::count() const | ||
120 | { | ||
121 | return 0; | ||
122 | } | ||
123 | |||
124 | /** | ||
125 | * This method removes all elements from the resource!! (Not from the addressbook) | ||
126 | */ | ||
127 | bool Resource::clear() | ||
128 | { | ||
129 | return false; | ||
130 | } | ||
131 | 116 | ||
diff --git a/kabc/resource.h b/kabc/resource.h index db806a6..7d42f81 100644 --- a/kabc/resource.h +++ b/kabc/resource.h | |||
@@ -131,13 +131,2 @@ public: | |||
131 | 131 | ||
132 | |||
133 | /** | ||
134 | * This method returns the number of elements that are currently in the resource. | ||
135 | */ | ||
136 | virtual int count() const; | ||
137 | |||
138 | /** | ||
139 | * This method removes all elements from the resource!! (Not from the addressbook) | ||
140 | */ | ||
141 | virtual bool clear(); | ||
142 | |||
143 | /** | 132 | /** |
diff --git a/kabc/tmpaddressbook.cpp b/kabc/tmpaddressbook.cpp index e6699df..ca47ca4 100644 --- a/kabc/tmpaddressbook.cpp +++ b/kabc/tmpaddressbook.cpp | |||
@@ -26,2 +26,3 @@ $Id$ | |||
26 | */ | 26 | */ |
27 | #include <qptrlist.h> | ||
27 | 28 | ||
@@ -31,2 +32,4 @@ using namespace KABC; | |||
31 | 32 | ||
33 | #include "resource.h" | ||
34 | |||
32 | TmpAddressBook::TmpAddressBook() | 35 | TmpAddressBook::TmpAddressBook() |
@@ -37,3 +40,3 @@ TmpAddressBook::TmpAddressBook() | |||
37 | TmpAddressBook::TmpAddressBook( const QString &config ) | 40 | TmpAddressBook::TmpAddressBook( const QString &config ) |
38 | : AddressBook( config, "tmpcontact" ) | 41 | : AddressBook( config, "tmpcontract" ) |
39 | { | 42 | { |
@@ -43,2 +46,11 @@ TmpAddressBook::~TmpAddressBook() | |||
43 | { | 46 | { |
47 | //remove all possible resources. This should cleanup the configfile. | ||
48 | QPtrList<KABC::Resource> mResources = resources(); | ||
49 | |||
50 | QPtrListIterator<KABC::Resource> it(mResources); | ||
51 | for ( ; it.current(); ++it ) { | ||
52 | KABC::Resource *res = it.current(); | ||
53 | removeResource(res); | ||
54 | } | ||
44 | } | 55 | } |
56 | |||
diff --git a/kaddressbook/xxport/opie_xxport.cpp b/kaddressbook/xxport/opie_xxport.cpp index 192b803..7b29b0a 100644 --- a/kaddressbook/xxport/opie_xxport.cpp +++ b/kaddressbook/xxport/opie_xxport.cpp | |||
@@ -33,31 +33,5 @@ $Id$ | |||
33 | #include <kfiledialog.h> | 33 | #include <kfiledialog.h> |
34 | #include <kmessagebox.h> | ||
35 | |||
36 | //US #include <opie/ocontactaccess.h> | ||
37 | //US #include <opie/ocontactaccessbackend_xml.h> | ||
38 | |||
39 | //US #include "stdaddressbook.h" | ||
40 | #include "resource.h" | ||
41 | #include "tmpaddressbook.h" | ||
42 | |||
43 | /*US | ||
44 | #include <qfile.h> | ||
45 | #include <qtextstream.h> | ||
46 | |||
47 | #include <kabc/vcardconverter.h> | ||
48 | #ifndef KAB_EMBEDDED | ||
49 | #include <kio/netaccess.h> | ||
50 | #endif //KAB_EMBEDDED | ||
51 | |||
52 | #include <klocale.h> | ||
53 | #include <kmessagebox.h> | ||
54 | #include <ktempfile.h> | ||
55 | #include <kurl.h> | ||
56 | */ | ||
57 | |||
58 | #include <factory.h> | ||
59 | |||
60 | 34 | ||
35 | #include "addressee.h" | ||
61 | #include "xxportmanager.h" | 36 | #include "xxportmanager.h" |
62 | |||
63 | #include "opie_xxport.h" | 37 | #include "opie_xxport.h" |
@@ -90,13 +64,6 @@ OpieXXPort::OpieXXPort( KABC::AddressBook *ab, QWidget *parent, const char *name | |||
90 | 64 | ||
91 | KRES::Factory* mFactory = KRES::Factory::self( "contact" ); | 65 | if ( mFactory && !mFactory->typeName( "opie" ).isEmpty() ) |
92 | |||
93 | if ( mFactory ) | ||
94 | { | 66 | { |
95 | mResource = (KABC::Resource*)(mFactory->resource( "opie", 0, false )); | 67 | createImportAction( i18n( "Import Opie..." ) ); |
96 | 68 | createExportAction( i18n( "Export Opie..." ) ); | |
97 | if ( mResource ) | ||
98 | { | ||
99 | createImportAction( i18n( "Import Opie..." ) ); | ||
100 | createExportAction( i18n( "Export Opie..." ) ); | ||
101 | } | ||
102 | } | 69 | } |
@@ -104,7 +71,4 @@ OpieXXPort::OpieXXPort( KABC::AddressBook *ab, QWidget *parent, const char *name | |||
104 | 71 | ||
105 | bool OpieXXPort::exportContacts( const KABC::AddresseeList &list, const QString &data ) | 72 | bool OpieXXPort::exportContacts( const KABC::AddresseeList &list, const QString &identifier ) |
106 | { | 73 | { |
107 | if (mResource == 0) | ||
108 | return false; | ||
109 | |||
110 | QString fileName = KFileDialog::getSaveFileName( defaultFileName, i18n("Save file"), parentWidget() ); | 74 | QString fileName = KFileDialog::getSaveFileName( defaultFileName, i18n("Save file"), parentWidget() ); |
@@ -114,52 +78,3 @@ bool OpieXXPort::exportContacts( const KABC::AddresseeList &list, const QString | |||
114 | 78 | ||
115 | mResource->setFileName( fileName ); | 79 | return _exportContacts( list, identifier, fileName ); |
116 | |||
117 | |||
118 | KABC::TmpAddressBook tmpAB; | ||
119 | |||
120 | tmpAB.addResource( mResource ); | ||
121 | |||
122 | qDebug("11111"); | ||
123 | |||
124 | //Now check if the file has already entries, and ask the user if he wants to delete them first. | ||
125 | KABC::AddressBook::Iterator it2 = tmpAB.begin(); | ||
126 | for ( it2 = tmpAB.begin(); it2 != tmpAB.end(); ++it2 ) { | ||
127 | KABC::Addressee addressee = (*it2); | ||
128 | qDebug("found %s", addressee.formattedName().latin1()); | ||
129 | } | ||
130 | |||
131 | if (it2 != tmpAB.end()) | ||
132 | { | ||
133 | QString text( i18n( "Do you want to remove<br>all existing entries from<br>%1<br>before exporting.?" ) ); | ||
134 | if ( KMessageBox::questionYesNo( parentWidget(), text.arg( fileName ) ) == KMessageBox::Yes ) { | ||
135 | // Clean the database.. | ||
136 | tmpAB.clear(); | ||
137 | } | ||
138 | } | ||
139 | qDebug("22222"); | ||
140 | |||
141 | //US debug | ||
142 | QPtrList<KABC::Resource> kabcResources = tmpAB.resources(); | ||
143 | QPtrListIterator<KABC::Resource> resIt( kabcResources ); | ||
144 | KABC::Resource *resource; | ||
145 | while ( ( resource = resIt.current() ) != 0 ) { | ||
146 | ++resIt; | ||
147 | qDebug("tmpAB has resource: %s", resource->identifier().latin1()); | ||
148 | } | ||
149 | |||
150 | |||
151 | KABC::Addressee::List::ConstIterator it; | ||
152 | for ( it = list.begin(); it != list.end(); ++it ) { | ||
153 | tmpAB.insertAddressee(*it); | ||
154 | } | ||
155 | |||
156 | bool res = false; | ||
157 | KABC::Ticket * ticket = tmpAB.requestSaveTicket(mResource); | ||
158 | |||
159 | if (ticket != 0) | ||
160 | res = tmpAB.save( ticket ); | ||
161 | |||
162 | tmpAB.removeResource( mResource ); | ||
163 | |||
164 | return res; | ||
165 | } | 80 | } |
@@ -167,9 +82,4 @@ bool OpieXXPort::exportContacts( const KABC::AddresseeList &list, const QString | |||
167 | 82 | ||
168 | KABC::AddresseeList OpieXXPort::importContacts( const QString& ) const | 83 | KABC::AddresseeList OpieXXPort::importContacts( const QString &identifier ) const |
169 | { | 84 | { |
170 | if (mResource == 0) | ||
171 | return KABC::AddresseeList(); | ||
172 | |||
173 | KABC::AddresseeList adrlst; | ||
174 | |||
175 | QString fileName = KFileDialog::getOpenFileName( defaultFileName, i18n("Load file"), parentWidget() ); | 85 | QString fileName = KFileDialog::getOpenFileName( defaultFileName, i18n("Load file"), parentWidget() ); |
@@ -179,17 +89,3 @@ KABC::AddresseeList OpieXXPort::importContacts( const QString& ) const | |||
179 | 89 | ||
180 | mResource->setFileName( fileName ); | 90 | return _importContacts( identifier, fileName ); |
181 | |||
182 | |||
183 | KABC::TmpAddressBook tmpAB; | ||
184 | |||
185 | tmpAB.addResource( mResource ); | ||
186 | |||
187 | bool res = tmpAB.load(); | ||
188 | |||
189 | adrlst = tmpAB.allAddressees(); | ||
190 | |||
191 | tmpAB.removeResource( mResource ); | ||
192 | |||
193 | return adrlst; | ||
194 | |||
195 | } | 91 | } |
diff --git a/kaddressbook/xxport/opie_xxport.h b/kaddressbook/xxport/opie_xxport.h index 106f38b..d2b55cd 100644 --- a/kaddressbook/xxport/opie_xxport.h +++ b/kaddressbook/xxport/opie_xxport.h | |||
@@ -48,4 +48,4 @@ class OpieXXPort : public XXPortResourceObject | |||
48 | public slots: | 48 | public slots: |
49 | bool exportContacts( const KABC::AddresseeList &list, const QString &data ); | 49 | bool exportContacts( const KABC::AddresseeList &list, const QString &identifier ); |
50 | KABC::AddresseeList importContacts( const QString &data ) const; | 50 | KABC::AddresseeList importContacts( const QString &identifier ) const; |
51 | 51 | ||
diff --git a/kaddressbook/xxport/qtopia_xxport.cpp b/kaddressbook/xxport/qtopia_xxport.cpp index 8377cd5..0cf6546 100644 --- a/kaddressbook/xxport/qtopia_xxport.cpp +++ b/kaddressbook/xxport/qtopia_xxport.cpp | |||
@@ -32,27 +32,4 @@ $Id$ | |||
32 | 32 | ||
33 | #include <kfiledialog.h> | 33 | #include "addressee.h" |
34 | #include <kmessagebox.h> | ||
35 | |||
36 | //US #include <qpe/pim/addressbookaccess.h> | ||
37 | |||
38 | #include "addressbook.h" | ||
39 | |||
40 | /*US | ||
41 | #include <qfile.h> | ||
42 | #include <qtextstream.h> | ||
43 | |||
44 | #include <kabc/vcardconverter.h> | ||
45 | #ifndef KAB_EMBEDDED | ||
46 | #include <kio/netaccess.h> | ||
47 | #endif //KAB_EMBEDDED | ||
48 | |||
49 | #include <klocale.h> | ||
50 | #include <kmessagebox.h> | ||
51 | #include <ktempfile.h> | ||
52 | #include <kurl.h> | ||
53 | */ | ||
54 | |||
55 | #include "xxportmanager.h" | 34 | #include "xxportmanager.h" |
56 | //US #include "qtopiaconverter.h" | ||
57 | |||
58 | #include "qtopia_xxport.h" | 35 | #include "qtopia_xxport.h" |
@@ -85,13 +62,6 @@ QtopiaXXPort::QtopiaXXPort( KABC::AddressBook *ab, QWidget *parent, const char * | |||
85 | 62 | ||
86 | KRES::Factory* mFactory = KRES::Factory::self( "contact" ); | 63 | if ( mFactory && !mFactory->typeName( "qtopia" ).isEmpty() ) |
87 | |||
88 | if ( mFactory ) | ||
89 | { | 64 | { |
90 | mResource = (KABC::Resource*)(mFactory->resource( "qtopia", 0, false )); | 65 | createImportAction( i18n( "Import Qtopia..." ) ); |
91 | 66 | createExportAction( i18n( "Export Qtopia..." ) ); | |
92 | if ( mResource ) | ||
93 | { | ||
94 | createImportAction( i18n( "Import Qtopia..." ) ); | ||
95 | createExportAction( i18n( "Export Qtopia..." ) ); | ||
96 | } | ||
97 | } | 67 | } |
@@ -99,189 +69,10 @@ QtopiaXXPort::QtopiaXXPort( KABC::AddressBook *ab, QWidget *parent, const char * | |||
99 | 69 | ||
100 | bool QtopiaXXPort::exportContacts( const KABC::AddresseeList &list, const QString &data ) | 70 | bool QtopiaXXPort::exportContacts( const KABC::AddresseeList &list, const QString &identifier ) |
101 | { | 71 | { |
102 | /*US | 72 | return _exportContacts( list, identifier, defaultFileName ); |
103 | // we can not choose the filename. Therefore use the default to display | ||
104 | QString fileName = QDir::homeDirPath() + "/Applications/addressbook/addressbook.xml"; | ||
105 | |||
106 | AddressBookAccess* access = new AddressBookAccess(); | ||
107 | |||
108 | if ( !access ) { | ||
109 | QString text( i18n( "Unable to access file '%1'." ).arg( fileName ) ); | ||
110 | qDebug(text.latin1()); | ||
111 | KMessageBox::error( parentWidget(), text ); | ||
112 | addressBook()->error( text ); | ||
113 | return false; | ||
114 | } | ||
115 | |||
116 | KABC::QtopiaConverter mConverter; | ||
117 | |||
118 | bool res = mConverter.init(); | ||
119 | if (!res) | ||
120 | { | ||
121 | QString text( i18n( "Unable to initialize qtopia converter.<br>Most likely a problem with the category file." ) ); | ||
122 | qDebug(text); | ||
123 | KMessageBox::error( parentWidget(), text ); | ||
124 | delete access; | ||
125 | return false; | ||
126 | } | ||
127 | |||
128 | //Now check if the file has already entries, and ask the user if he wants to delete them first. | ||
129 | { //create a new scope | ||
130 | AddressBookIterator it(*access); | ||
131 | const PimContact* firstcontact = it.toFirst(); | ||
132 | if (firstcontact) | ||
133 | { | ||
134 | QString text( i18n( "Do you want to remove<br>all existing entries from<br>%1<br>before exporting.?" ) ); | ||
135 | if ( KMessageBox::questionYesNo( parentWidget(), text.arg( fileName ) ) == KMessageBox::Yes ) { | ||
136 | // Clean the database.. | ||
137 | |||
138 | AddressBookIterator it2(*access); | ||
139 | for (it2.toFirst(); it2.current(); ++it2) { | ||
140 | access->removeContact(*it2.current()); | ||
141 | } | ||
142 | } | ||
143 | } | ||
144 | } | ||
145 | |||
146 | KABC::Addressee::List::ConstIterator it; | ||
147 | for ( it = list.begin(); it != list.end(); ++it ) { | ||
148 | PimContact c; | ||
149 | |||
150 | res = mConverter.addresseeToQtopia( *it, c ); | ||
151 | if (res == true) | ||
152 | { | ||
153 | access->addContact(c); | ||
154 | } | ||
155 | } | ||
156 | |||
157 | delete access; | ||
158 | |||
159 | return true; | ||
160 | */ | ||
161 | |||
162 | if (mResource == 0) | ||
163 | return false; | ||
164 | |||
165 | QString fileName = defaultFileName; | ||
166 | |||
167 | |||
168 | mResource->setFileName( fileName ); | ||
169 | |||
170 | //Now check if the file has already entries, and ask the user if he wants to delete them first. | ||
171 | if (mResource->count() > 0) | ||
172 | { | ||
173 | QString text( i18n( "Do you want to remove<br>all existing entries from<br>%1<br>before exporting.?" ) ); | ||
174 | if ( KMessageBox::questionYesNo( parentWidget(), text.arg( fileName ) ) == KMessageBox::Yes ) { | ||
175 | // Clean the database. | ||
176 | mResource->clear(); | ||
177 | } | ||
178 | } | ||
179 | |||
180 | KABC::AddressBook tmpAB; | ||
181 | |||
182 | tmpAB.addResource( mResource ); | ||
183 | |||
184 | //US debug | ||
185 | QPtrList<KABC::Resource> kabcResources = tmpAB.resources(); | ||
186 | QPtrListIterator<KABC::Resource> resIt( kabcResources ); | ||
187 | KABC::Resource *resource; | ||
188 | while ( ( resource = resIt.current() ) != 0 ) { | ||
189 | ++resIt; | ||
190 | qDebug("tmpAB has resource: %s", resource->identifier().latin1()); | ||
191 | } | ||
192 | |||
193 | |||
194 | KABC::Addressee::List::ConstIterator it; | ||
195 | for ( it = list.begin(); it != list.end(); ++it ) { | ||
196 | tmpAB.insertAddressee(*it); | ||
197 | } | ||
198 | |||
199 | KABC::Ticket * ticket = mResource->requestSaveTicket(); | ||
200 | return tmpAB.save( ticket ); | ||
201 | |||
202 | |||
203 | |||
204 | } | 73 | } |
205 | 74 | ||
206 | KABC::AddresseeList QtopiaXXPort::importContacts( const QString& ) const | 75 | KABC::AddresseeList QtopiaXXPort::importContacts( const QString &identifier ) const |
207 | { | 76 | { |
208 | /*US | 77 | return _importContacts( identifier, defaultFileName ); |
209 | KABC::AddresseeList adrlst; | ||
210 | |||
211 | QString fileName = QDir::homeDirPath() + "/Applications/addressbook/addressbook.xml"; | ||
212 | |||
213 | AddressBookAccess* access = new AddressBookAccess(); | ||
214 | |||
215 | if ( !access ) { | ||
216 | QString text( i18n( "Unable to access file '%1'." ).arg( fileName ) ); | ||
217 | qDebug(text.latin1()); | ||
218 | addressBook()->error( text ); | ||
219 | KMessageBox::error( parentWidget(), text ); | ||
220 | return KABC::AddresseeList(); | ||
221 | } | ||
222 | |||
223 | KABC::QtopiaConverter mConverter; | ||
224 | |||
225 | bool res = mConverter.init(); | ||
226 | if (!res) | ||
227 | { | ||
228 | QString text( i18n( "Unable to initialize qtopia converter.<br>Most likely a problem with the category file." ) ); | ||
229 | qDebug(text); | ||
230 | KMessageBox::error( parentWidget(), text ); | ||
231 | delete access; | ||
232 | return KABC::AddresseeList(); | ||
233 | } | ||
234 | |||
235 | |||
236 | |||
237 | { //create a new scope | ||
238 | AddressBookIterator it(*access); | ||
239 | |||
240 | for (it.toFirst(); it.current(); ++it) { | ||
241 | const PimContact*contact = it.current(); | ||
242 | |||
243 | KABC::Addressee addressee; | ||
244 | |||
245 | res = mConverter.qtopiaToAddressee( (*contact), addressee ); | ||
246 | |||
247 | if ( !addressee.isEmpty() && res ) | ||
248 | { | ||
249 | adrlst.append( addressee ); | ||
250 | } | ||
251 | } | ||
252 | } | ||
253 | |||
254 | delete access; | ||
255 | //US the deletion of the access object deletes the backend object as well. | ||
256 | |||
257 | return adrlst; | ||
258 | */ | ||
259 | |||
260 | if (mResource == 0) | ||
261 | return KABC::AddresseeList(); | ||
262 | |||
263 | KABC::AddresseeList adrlst; | ||
264 | |||
265 | QString fileName = defaultFileName; | ||
266 | |||
267 | mResource->setFileName( fileName ); | ||
268 | |||
269 | |||
270 | KABC::AddressBook tmpAB; | ||
271 | |||
272 | tmpAB.addResource( mResource ); | ||
273 | |||
274 | //US debug | ||
275 | QPtrList<KABC::Resource> kabcResources = tmpAB.resources(); | ||
276 | QPtrListIterator<KABC::Resource> resIt( kabcResources ); | ||
277 | KABC::Resource *resource; | ||
278 | while ( ( resource = resIt.current() ) != 0 ) { | ||
279 | ++resIt; | ||
280 | qDebug("tmpAB has resource: %s", resource->identifier().latin1()); | ||
281 | } | ||
282 | |||
283 | bool res = tmpAB.load(); | ||
284 | |||
285 | return tmpAB.allAddressees(); | ||
286 | |||
287 | } | 78 | } |
diff --git a/kaddressbook/xxport/sharpdtm_xxport.cpp b/kaddressbook/xxport/sharpdtm_xxport.cpp index 8c2e07a..130bc00 100644 --- a/kaddressbook/xxport/sharpdtm_xxport.cpp +++ b/kaddressbook/xxport/sharpdtm_xxport.cpp | |||
@@ -30,28 +30,4 @@ $Id$ | |||
30 | 30 | ||
31 | #include <qdir.h> | 31 | #include "addressee.h" |
32 | |||
33 | #include <kfiledialog.h> | ||
34 | #include <kmessagebox.h> | ||
35 | |||
36 | //US #include <sl/slzdb.h> | ||
37 | |||
38 | #include "addressbook.h" | ||
39 | |||
40 | /*US | ||
41 | #include <qfile.h> | ||
42 | #include <qtextstream.h> | ||
43 | |||
44 | #include <kabc/vcardconverter.h> | ||
45 | #ifndef KAB_EMBEDDED | ||
46 | #include <kio/netaccess.h> | ||
47 | #endif //KAB_EMBEDDED | ||
48 | |||
49 | #include <klocale.h> | ||
50 | #include <kmessagebox.h> | ||
51 | #include <ktempfile.h> | ||
52 | #include <kurl.h> | ||
53 | */ | ||
54 | |||
55 | #include "xxportmanager.h" | 32 | #include "xxportmanager.h" |
56 | |||
57 | #include "sharpdtm_xxport.h" | 33 | #include "sharpdtm_xxport.h" |
@@ -80,12 +56,6 @@ SharpDTMXXPort::SharpDTMXXPort( KABC::AddressBook *ab, QWidget *parent, const ch | |||
80 | { | 56 | { |
81 | KRES::Factory* mFactory = KRES::Factory::self( "contact" ); | 57 | if ( mFactory && !mFactory->typeName( "sharpdtm" ).isEmpty() ) |
82 | |||
83 | if ( mFactory ) | ||
84 | { | 58 | { |
85 | mResource = (KABC::Resource*)(mFactory->resource( "sharpdtm", 0, false )); | 59 | createImportAction( i18n( "Import Sharp..." ) ); |
86 | if ( mResource ) | 60 | createExportAction( i18n( "Export Sharp..." ) ); |
87 | { | ||
88 | createImportAction( i18n( "Import Sharp..." ) ); | ||
89 | createExportAction( i18n( "Export Sharp..." ) ); | ||
90 | } | ||
91 | } | 61 | } |
@@ -93,192 +63,10 @@ SharpDTMXXPort::SharpDTMXXPort( KABC::AddressBook *ab, QWidget *parent, const ch | |||
93 | 63 | ||
94 | bool SharpDTMXXPort::exportContacts( const KABC::AddresseeList &list, const QString &data ) | 64 | bool SharpDTMXXPort::exportContacts( const KABC::AddresseeList &list, const QString &identifier ) |
95 | { | 65 | { |
96 | /*US | 66 | return _exportContacts( list, identifier, QString::null ); |
97 | // we can not choose the filename. Therefore use the default to display | ||
98 | QString fileName = SlZDataBase::addressbookFileName(); | ||
99 | |||
100 | SlZDataBase* access = new SlZDataBase(fileName, | ||
101 | SlZDataBase::addressbookItems()); | ||
102 | |||
103 | if ( !access ) { | ||
104 | QString text( i18n( "Unable to access file '%1'." ).arg( fileName ) ); | ||
105 | qDebug(text.latin1()); | ||
106 | KMessageBox::error( parentWidget(), text ); | ||
107 | addressBook()->error( text ); | ||
108 | return false; | ||
109 | } | ||
110 | |||
111 | KABC::SharpDTMConverter mConverter; | ||
112 | |||
113 | bool res = mConverter.init(); | ||
114 | if (!res) | ||
115 | { | ||
116 | QString text( i18n( "Unable to initialize sharpdtm converter.<br>Most likely a problem with the category file." ) ); | ||
117 | qDebug(text); | ||
118 | KMessageBox::error( parentWidget(), text ); | ||
119 | delete access; | ||
120 | return false; | ||
121 | } | ||
122 | |||
123 | //Now check if the file has already entries, and ask the user if he wants to delete them first. | ||
124 | if (access->count() > 0) | ||
125 | { | ||
126 | QString text( i18n( "Do you want to remove<br>all existing entries from<br>%1<br>before exporting.?" ) ); | ||
127 | if ( KMessageBox::questionYesNo( parentWidget(), text.arg( fileName ) ) == KMessageBox::Yes ) { | ||
128 | // Clean the database.. | ||
129 | access->deleteCard(0, SlZDataBase::AllCard ); | ||
130 | } | ||
131 | } | ||
132 | |||
133 | KABC::Addressee::List::ConstIterator it; | ||
134 | for ( it = list.begin(); it != list.end(); ++it ) { | ||
135 | CardId c; | ||
136 | res = access->editNewCard(); | ||
137 | |||
138 | if (res == true) | ||
139 | { | ||
140 | res = mConverter.addresseeToSharp( *it, access, c ); | ||
141 | |||
142 | if (res == true) | ||
143 | access->finishEditCard(&c); | ||
144 | else | ||
145 | access->cancelEditCard(); | ||
146 | } | ||
147 | } | ||
148 | |||
149 | delete access; | ||
150 | |||
151 | return true; | ||
152 | */ | ||
153 | |||
154 | if (mResource == 0) | ||
155 | return false; | ||
156 | |||
157 | // we can not choose the filename. Therefore use the default to display | ||
158 | QString fileName = mResource->fileName(); | ||
159 | |||
160 | if ( fileName.isEmpty() ) | ||
161 | return false; | ||
162 | |||
163 | //Now check if the file has already entries, and ask the user if he wants to delete them first. | ||
164 | if (mResource->count() > 0) | ||
165 | { | ||
166 | QString text( i18n( "Do you want to remove<br>all existing entries from<br>%1<br>before exporting.?" ) ); | ||
167 | if ( KMessageBox::questionYesNo( parentWidget(), text.arg( fileName ) ) == KMessageBox::Yes ) { | ||
168 | // Clean the database.. | ||
169 | mResource->clear(); | ||
170 | } | ||
171 | } | ||
172 | |||
173 | KABC::AddressBook tmpAB; | ||
174 | |||
175 | tmpAB.addResource( mResource ); | ||
176 | |||
177 | //US debug | ||
178 | QPtrList<KABC::Resource> kabcResources = tmpAB.resources(); | ||
179 | QPtrListIterator<KABC::Resource> resIt( kabcResources ); | ||
180 | KABC::Resource *resource; | ||
181 | while ( ( resource = resIt.current() ) != 0 ) { | ||
182 | ++resIt; | ||
183 | qDebug("tmpAB has resource: %s", resource->identifier().latin1()); | ||
184 | } | ||
185 | |||
186 | |||
187 | KABC::Addressee::List::ConstIterator it; | ||
188 | for ( it = list.begin(); it != list.end(); ++it ) { | ||
189 | tmpAB.insertAddressee(*it); | ||
190 | } | ||
191 | |||
192 | KABC::Ticket * ticket = mResource->requestSaveTicket(); | ||
193 | return tmpAB.save( ticket ); | ||
194 | |||
195 | |||
196 | } | 67 | } |
197 | 68 | ||
198 | KABC::AddresseeList SharpDTMXXPort::importContacts( const QString& ) const | 69 | KABC::AddresseeList SharpDTMXXPort::importContacts( const QString &identifier ) const |
199 | { | 70 | { |
200 | /*US | 71 | return _importContacts( identifier, QString::null ); |
201 | KABC::AddresseeList adrlst; | ||
202 | |||
203 | QString fileName = SlZDataBase::addressbookFileName(); | ||
204 | |||
205 | // the last parameter in the SlZDataBase constructor means "readonly" | ||
206 | SlZDataBase* access = new SlZDataBase(fileName, | ||
207 | SlZDataBase::addressbookItems(), NULL, true); | ||
208 | |||
209 | |||
210 | if ( !access ) { | ||
211 | QString text( i18n( "Unable to access file '%1'." ).arg( fileName ) ); | ||
212 | qDebug(text.latin1()); | ||
213 | addressBook()->error( text ); | ||
214 | KMessageBox::error( parentWidget(), text ); | ||
215 | return KABC::AddresseeList(); | ||
216 | } | ||
217 | |||
218 | KABC::SharpDTMConverter mConverter; | ||
219 | |||
220 | bool res = mConverter.init(); | ||
221 | if (!res) | ||
222 | { | ||
223 | QString text( i18n( "Unable to initialize sharp converter.<br>Most likely a problem with the category file." ) ); | ||
224 | qDebug(text); | ||
225 | KMessageBox::error( parentWidget(), text ); | ||
226 | delete access; | ||
227 | return KABC::AddresseeList(); | ||
228 | } | ||
229 | |||
230 | |||
231 | { //create a new scope | ||
232 | CardId id; | ||
233 | |||
234 | for (bool res=access->first(); res == true; res=access->next()) { | ||
235 | id = access->cardId(); | ||
236 | |||
237 | KABC::Addressee addressee; | ||
238 | |||
239 | res = mConverter.sharpToAddressee( id, access, addressee ); | ||
240 | |||
241 | if ( !addressee.isEmpty() && res ) | ||
242 | { | ||
243 | adrlst.append( addressee ); | ||
244 | } | ||
245 | } | ||
246 | } | ||
247 | |||
248 | delete access; | ||
249 | |||
250 | return adrlst; | ||
251 | */ | ||
252 | |||
253 | if (mResource == 0) | ||
254 | return KABC::AddresseeList(); | ||
255 | |||
256 | KABC::AddresseeList adrlst; | ||
257 | |||
258 | QString fileName = mResource->fileName(); | ||
259 | |||
260 | if ( fileName.isEmpty() ) | ||
261 | return KABC::AddresseeList(); | ||
262 | |||
263 | mResource->setFileName( fileName ); | ||
264 | |||
265 | |||
266 | KABC::AddressBook tmpAB; | ||
267 | |||
268 | tmpAB.addResource( mResource ); | ||
269 | |||
270 | //US debug | ||
271 | QPtrList<KABC::Resource> kabcResources = tmpAB.resources(); | ||
272 | QPtrListIterator<KABC::Resource> resIt( kabcResources ); | ||
273 | KABC::Resource *resource; | ||
274 | while ( ( resource = resIt.current() ) != 0 ) { | ||
275 | ++resIt; | ||
276 | qDebug("tmpAB has resource: %s", resource->identifier().latin1()); | ||
277 | } | ||
278 | |||
279 | bool res = tmpAB.load(); | ||
280 | |||
281 | return tmpAB.allAddressees(); | ||
282 | |||
283 | |||
284 | } | 72 | } |
diff --git a/kaddressbook/xxport/sharpdtm_xxport.h b/kaddressbook/xxport/sharpdtm_xxport.h index 43fd434..0797b01 100644 --- a/kaddressbook/xxport/sharpdtm_xxport.h +++ b/kaddressbook/xxport/sharpdtm_xxport.h | |||
@@ -42,3 +42,3 @@ class SharpDTMXXPort : public XXPortResourceObject | |||
42 | 42 | ||
43 | QString identifier() const { return "qtopia"; } | 43 | QString identifier() const { return "sharpdtm"; } |
44 | 44 | ||
diff --git a/kaddressbook/xxportobject.cpp b/kaddressbook/xxportobject.cpp index bb985a6..4351753 100644 --- a/kaddressbook/xxportobject.cpp +++ b/kaddressbook/xxportobject.cpp | |||
@@ -35,7 +35,10 @@ $Id$ | |||
35 | #include <kmessagebox.h> | 35 | #include <kmessagebox.h> |
36 | #include <factory.h> | ||
36 | 37 | ||
37 | #include "kabcore.h" | 38 | #include "kabcore.h" |
38 | 39 | #include "addressee.h" | |
40 | #include "tmpaddressbook.h" | ||
39 | #include "xxportobject.h" | 41 | #include "xxportobject.h" |
40 | 42 | ||
43 | |||
41 | class XXPortObject::XXPortObjectPrivate | 44 | class XXPortObject::XXPortObjectPrivate |
@@ -156,4 +159,5 @@ XXPortResourceObject::XXPortResourceObject( KABC::AddressBook *ab, QWidget *pare | |||
156 | const char *name ) | 159 | const char *name ) |
157 | : XXPortObject( ab, parent, name ), mResource(0) | 160 | : XXPortObject( ab, parent, name ), mFactory(0) |
158 | { | 161 | { |
162 | mFactory = KRES::Factory::self( "tmpcontact" ); | ||
159 | } | 163 | } |
@@ -162,2 +166,3 @@ XXPortResourceObject::~XXPortResourceObject() | |||
162 | { | 166 | { |
167 | //do not delete the factory. It is a singleton, and selfcontained | ||
163 | } | 168 | } |
@@ -166,3 +171,3 @@ bool XXPortResourceObject::isAvailable() | |||
166 | { | 171 | { |
167 | return (mResource != 0); | 172 | return (mFactory != 0); |
168 | } | 173 | } |
@@ -170,2 +175,97 @@ bool XXPortResourceObject::isAvailable() | |||
170 | 175 | ||
176 | bool XXPortResourceObject::_exportContacts( const KABC::AddresseeList &list, const QString& identifier, const QString& fileName ) | ||
177 | { | ||
178 | //create new resource | ||
179 | KABC::Resource* mResource = (KABC::Resource*)(mFactory->resource( this->identifier(), 0, false )); | ||
180 | |||
181 | if (mResource == 0) | ||
182 | return false; | ||
183 | |||
184 | if (fileName != QString::null) | ||
185 | mResource->setFileName( fileName ); | ||
186 | |||
187 | |||
188 | KABC::TmpAddressBook tmpAB; | ||
189 | |||
190 | bool res = tmpAB.addResource( mResource ); | ||
191 | if (res == false) | ||
192 | { | ||
193 | delete mResource; | ||
194 | return false; | ||
195 | } | ||
196 | |||
197 | res = tmpAB.load(); | ||
198 | if (res == false) | ||
199 | { | ||
200 | //removeResource deletes also the resource object, if the linkcount is 0 | ||
201 | tmpAB.removeResource( mResource ); | ||
202 | return false; | ||
203 | } | ||
204 | |||
205 | |||
206 | //Now check if the file has already entries, and ask the user if he wants to delete them first. | ||
207 | if (tmpAB.begin() != tmpAB.end()) | ||
208 | { | ||
209 | QString text( i18n( "Do you want to remove<br>all existing entries from<br>%1<br>before exporting.?" ) ); | ||
210 | if ( KMessageBox::questionYesNo( parentWidget(), text.arg( fileName ) ) == KMessageBox::Yes ) { | ||
211 | // Clean the database.. | ||
212 | tmpAB.clear(); | ||
213 | } | ||
214 | } | ||
215 | |||
216 | |||
217 | KABC::Addressee::List::ConstIterator it; | ||
218 | for ( it = list.begin(); it != list.end(); ++it ) { | ||
219 | tmpAB.insertAddressee(*it); | ||
220 | } | ||
221 | |||
222 | KABC::Ticket * ticket = tmpAB.requestSaveTicket(mResource); | ||
223 | |||
224 | res = false; | ||
225 | if (ticket != 0) | ||
226 | res = tmpAB.save( ticket ); | ||
227 | |||
228 | //removeResource deletes also the resource object, if the linkcount is 0 | ||
229 | tmpAB.removeResource( mResource ); | ||
230 | |||
231 | return res; | ||
232 | } | ||
233 | |||
234 | |||
235 | KABC::AddresseeList XXPortResourceObject::_importContacts( const QString& identifier, const QString& fileName ) const | ||
236 | { | ||
237 | |||
238 | |||
239 | KABC::Resource* mResource = (KABC::Resource*)(mFactory->resource( this->identifier(), 0, false )); | ||
240 | |||
241 | if (mResource == 0) | ||
242 | return KABC::AddresseeList(); | ||
243 | |||
244 | KABC::AddresseeList adrlst; | ||
245 | |||
246 | if (fileName != QString::null) | ||
247 | mResource->setFileName( fileName ); | ||
248 | |||
249 | |||
250 | KABC::TmpAddressBook tmpAB; | ||
251 | |||
252 | bool res = tmpAB.addResource( mResource ); | ||
253 | if (res == false) | ||
254 | { | ||
255 | delete mResource; | ||
256 | return KABC::AddresseeList(); | ||
257 | } | ||
258 | |||
259 | res = tmpAB.load(); | ||
260 | |||
261 | adrlst = tmpAB.allAddressees(); | ||
262 | |||
263 | //remove resource deletes also the Resourceobject, if the linkcount is 0 | ||
264 | tmpAB.removeResource( mResource ); | ||
265 | |||
266 | return adrlst; | ||
267 | } | ||
268 | |||
269 | |||
270 | |||
171 | #ifndef KAB_EMBEDDED | 271 | #ifndef KAB_EMBEDDED |
diff --git a/kaddressbook/xxportobject.h b/kaddressbook/xxportobject.h index d547855..de39b9f 100644 --- a/kaddressbook/xxportobject.h +++ b/kaddressbook/xxportobject.h | |||
@@ -42,3 +42,3 @@ $Id$ | |||
42 | 42 | ||
43 | 43 | class KRES::Factory; | |
44 | 44 | ||
@@ -148,4 +148,9 @@ class XXPortResourceObject : public XXPortObject | |||
148 | virtual bool isAvailable(); | 148 | virtual bool isAvailable(); |
149 | |||
150 | protected: | ||
151 | bool _exportContacts( const KABC::AddresseeList &list, const QString& identifier, const QString& fileName ); | ||
152 | KABC::AddresseeList _importContacts( const QString& identifier, const QString& fileName ) const; | ||
153 | |||
149 | protected: | 154 | protected: |
150 | KABC::Resource* mResource; | 155 | KRES::Factory* mFactory; |
151 | }; | 156 | }; |