Diffstat (limited to 'kabc/plugins/qtopia/resourceqtopia.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kabc/plugins/qtopia/resourceqtopia.cpp | 182 |
1 files changed, 104 insertions, 78 deletions
diff --git a/kabc/plugins/qtopia/resourceqtopia.cpp b/kabc/plugins/qtopia/resourceqtopia.cpp index 7e10e46..dc88272 100644 --- a/kabc/plugins/qtopia/resourceqtopia.cpp +++ b/kabc/plugins/qtopia/resourceqtopia.cpp | |||
@@ -49,6 +49,7 @@ $Id$ | |||
49 | #include "stdaddressbook.h" | 49 | #include "stdaddressbook.h" |
50 | 50 | ||
51 | #include "qtopiaconverter.h" | 51 | #include "qtopiaconverter.h" |
52 | #include "syncwidget.h" | ||
52 | 53 | ||
53 | #include "resourceqtopia.h" | 54 | #include "resourceqtopia.h" |
54 | 55 | ||
@@ -57,12 +58,12 @@ extern "C" | |||
57 | { | 58 | { |
58 | void *init_microkabc_qtopia() | 59 | void *init_microkabc_qtopia() |
59 | { | 60 | { |
60 | return new KRES::PluginFactory<ResourceQtopia,ResourceQtopiaConfig>(); | 61 | return new KRES::PluginFactory<ResourceQtopia,ResourceQtopiaConfig, KRES::SyncWidget>(); |
61 | } | 62 | } |
62 | } | 63 | } |
63 | 64 | ||
64 | ResourceQtopia::ResourceQtopia( const KConfig *config ) | 65 | ResourceQtopia::ResourceQtopia( const KConfig *config, bool syncable ) |
65 | : Resource( config ), mConverter (0) | 66 | : Resource( config, syncable ), mConverter (0) |
66 | { | 67 | { |
67 | // we can not choose the filename. Therefore use the default to display | 68 | // we can not choose the filename. Therefore use the default to display |
68 | QString fileName = QDir::homeDirPath() + "/Applications/addressbook/addressbook.xml"; | 69 | QString fileName = QDir::homeDirPath() + "/Applications/addressbook/addressbook.xml"; |
@@ -70,8 +71,8 @@ ResourceQtopia::ResourceQtopia( const KConfig *config ) | |||
70 | init( fileName ); | 71 | init( fileName ); |
71 | } | 72 | } |
72 | 73 | ||
73 | ResourceQtopia::ResourceQtopia( const QString &fileName ) | 74 | ResourceQtopia::ResourceQtopia( const QString &fileName, bool syncable ) |
74 | : Resource( 0 ) | 75 | : Resource( 0, syncable ) |
75 | { | 76 | { |
76 | // qDebug("ResourceFile::ResourceFile : 3 %s, %s", fileName.latin1(), formatName.latin1()); | 77 | // qDebug("ResourceFile::ResourceFile : 3 %s, %s", fileName.latin1(), formatName.latin1()); |
77 | init( fileName ); | 78 | init( fileName ); |
@@ -92,6 +93,8 @@ ResourceQtopia::~ResourceQtopia() | |||
92 | if (mConverter != 0) | 93 | if (mConverter != 0) |
93 | delete mConverter; | 94 | delete mConverter; |
94 | 95 | ||
96 | if(mAccess != 0) | ||
97 | delete mAccess; | ||
95 | } | 98 | } |
96 | 99 | ||
97 | void ResourceQtopia::writeConfig( KConfig *config ) | 100 | void ResourceQtopia::writeConfig( KConfig *config ) |
@@ -105,9 +108,9 @@ Ticket *ResourceQtopia::requestSaveTicket() | |||
105 | 108 | ||
106 | if ( !addressBook() ) return 0; | 109 | if ( !addressBook() ) return 0; |
107 | 110 | ||
108 | if ( !lock( mFileName ) ) { | 111 | if ( !lock( fileName() ) ) { |
109 | kdDebug(5700) << "ResourceQtopia::requestSaveTicket(): Unable to lock file '" | 112 | kdDebug(5700) << "ResourceQtopia::requestSaveTicket(): Unable to lock file '" |
110 | << mFileName << "'" << endl; | 113 | << fileName() << "'" << endl; |
111 | return 0; | 114 | return 0; |
112 | } | 115 | } |
113 | return createTicket( this ); | 116 | return createTicket( this ); |
@@ -116,51 +119,12 @@ Ticket *ResourceQtopia::requestSaveTicket() | |||
116 | 119 | ||
117 | bool ResourceQtopia::doOpen() | 120 | bool ResourceQtopia::doOpen() |
118 | { | 121 | { |
119 | /*US | 122 | qDebug("ResourceQtopia::doOpen(): %s", fileName().latin1()); |
120 | QFile file( mFileName ); | ||
121 | |||
122 | if ( !file.exists() ) { | ||
123 | // try to create the file | ||
124 | bool ok = file.open( IO_WriteOnly ); | ||
125 | if ( ok ) | ||
126 | file.close(); | ||
127 | |||
128 | return ok; | ||
129 | } else { | ||
130 | if ( !file.open( IO_ReadWrite ) ) | ||
131 | return false; | ||
132 | |||
133 | if ( file.size() == 0 ) { | ||
134 | file.close(); | ||
135 | return true; | ||
136 | } | ||
137 | |||
138 | //US bool ok = mFormat->checkFormat( &file ); | ||
139 | bool ok = true; | ||
140 | |||
141 | file.close(); | ||
142 | |||
143 | return ok; | ||
144 | } | ||
145 | */ | ||
146 | return true; | ||
147 | } | ||
148 | |||
149 | void ResourceQtopia::doClose() | ||
150 | { | ||
151 | } | ||
152 | 123 | ||
153 | bool ResourceQtopia::load() | 124 | mAccess = new AddressBookAccess(); |
154 | { | ||
155 | kdDebug(5700) << "ResourceQtopia::load(): '" << mFileName << "'" << endl; | ||
156 | |||
157 | // qDebug("ResourceQtopia::load: Try to load file() %s", mFileName.latin1()); | ||
158 | 125 | ||
159 | AddressBookAccess* access = new AddressBookAccess(); | 126 | if ( !mAccess ) { |
160 | 127 | qDebug("Unable to load file() %s", fileName().latin1()); | |
161 | if ( !access ) { | ||
162 | qDebug("Unable to load file() %s", mFileName.latin1()); | ||
163 | addressBook()->error( i18n( "Unable to load file '%1'." ).arg( mFileName ) ); | ||
164 | return false; | 128 | return false; |
165 | } | 129 | } |
166 | 130 | ||
@@ -173,32 +137,53 @@ bool ResourceQtopia::load() | |||
173 | { | 137 | { |
174 | QString msg("Unable to initialize qtopia converter. Most likely a problem with the category file"); | 138 | QString msg("Unable to initialize qtopia converter. Most likely a problem with the category file"); |
175 | qDebug(msg); | 139 | qDebug(msg); |
176 | addressBook()->error( i18n( msg ) ); | 140 | delete mAccess; |
177 | delete access; | 141 | mAccess = 0; |
178 | return false; | 142 | return false; |
179 | } | 143 | } |
180 | } | 144 | } |
181 | 145 | ||
182 | { //create a new scope | 146 | return true; |
183 | AddressBookIterator it(*access); | 147 | } |
184 | const PimContact* contact; | ||
185 | 148 | ||
186 | for (contact=it.toFirst(); it.current(); ++it) { | 149 | void ResourceQtopia::doClose() |
187 | contact = it.current(); | 150 | { |
151 | qDebug("ResourceQtopia::doClose: %s", fileName().latin1()); | ||
188 | 152 | ||
189 | KABC::Addressee addressee; | 153 | if(mAccess) |
154 | { | ||
155 | delete mAccess; | ||
156 | mAccess = 0; | ||
157 | } | ||
158 | // it seems so, that deletion of access deletes backend as well | ||
159 | //delete backend; | ||
160 | |||
161 | return; | ||
162 | } | ||
163 | |||
164 | bool ResourceQtopia::load() | ||
165 | { | ||
166 | qDebug("ResourceQtopia::load: %s", fileName().latin1()); | ||
190 | 167 | ||
191 | res = mConverter->qtopiaToAddressee( (*contact), addressee ); | 168 | AddressBookIterator it(*mAccess); |
169 | const PimContact* contact; | ||
170 | bool res; | ||
171 | |||
172 | for (contact=it.toFirst(); it.current(); ++it) | ||
173 | { | ||
174 | contact = it.current(); | ||
192 | 175 | ||
193 | if ( !addressee.isEmpty() && res ) | 176 | KABC::Addressee addressee; |
194 | { | 177 | |
195 | addressee.setResource( this ); | 178 | res = mConverter->qtopiaToAddressee( (*contact), addressee ); |
196 | addressBook()->insertAddressee( addressee ); | 179 | |
197 | } | 180 | if ( !addressee.isEmpty() && res ) |
181 | { | ||
182 | addressee.setResource( this ); | ||
183 | addressBook()->insertAddressee( addressee ); | ||
198 | } | 184 | } |
199 | } | 185 | } |
200 | 186 | ||
201 | delete access; | ||
202 | return true; | 187 | return true; |
203 | } | 188 | } |
204 | 189 | ||
@@ -249,7 +234,12 @@ bool ResourceQtopia::save( Ticket *ticket ) | |||
249 | return ok; | 234 | return ok; |
250 | 235 | ||
251 | qDebug("ResourceQtopia::save has to be changed"); | 236 | qDebug("ResourceQtopia::save has to be changed"); |
237 | |||
238 | |||
239 | access->save(); | ||
240 | |||
252 | */ | 241 | */ |
242 | |||
253 | return true; | 243 | return true; |
254 | } | 244 | } |
255 | 245 | ||
@@ -312,24 +302,17 @@ void ResourceQtopia::unlock( const QString &fileName ) | |||
312 | addressBook()->emitAddressBookUnlocked(); | 302 | addressBook()->emitAddressBookUnlocked(); |
313 | } | 303 | } |
314 | 304 | ||
315 | void ResourceQtopia::setFileName( const QString &fileName ) | 305 | void ResourceQtopia::setFileName( const QString &newFileName ) |
316 | { | 306 | { |
317 | mDirWatch.stopScan(); | 307 | mDirWatch.stopScan(); |
318 | mDirWatch.removeFile( mFileName ); | 308 | mDirWatch.removeFile( fileName() ); |
319 | 309 | ||
320 | mFileName = fileName; | 310 | Resource::setFileName( newFileName ); |
321 | 311 | ||
322 | mDirWatch.addFile( mFileName ); | 312 | mDirWatch.addFile( fileName() ); |
323 | mDirWatch.startScan(); | 313 | mDirWatch.startScan(); |
324 | |||
325 | //US simulate KDirWatch event | ||
326 | //US fileChanged(); | ||
327 | } | 314 | } |
328 | 315 | ||
329 | QString ResourceQtopia::fileName() const | ||
330 | { | ||
331 | return mFileName; | ||
332 | } | ||
333 | 316 | ||
334 | void ResourceQtopia::fileChanged() | 317 | void ResourceQtopia::fileChanged() |
335 | { | 318 | { |
@@ -338,7 +321,7 @@ void ResourceQtopia::fileChanged() | |||
338 | if (!addressBook()) | 321 | if (!addressBook()) |
339 | return; | 322 | return; |
340 | 323 | ||
341 | QString text( i18n( "Qtopia resource '%1'<br> has been changed by third party.<br>Do you want to reload?").arg( mFileName ) ); | 324 | QString text( i18n( "Qtopia resource '%1'<br> has been changed by third party.<br>Do you want to reload?").arg( fileName() ) ); |
342 | if ( readOnly() || KMessageBox::questionYesNo( 0, text ) == KMessageBox::Yes ) { | 325 | if ( readOnly() || KMessageBox::questionYesNo( 0, text ) == KMessageBox::Yes ) { |
343 | load(); | 326 | load(); |
344 | addressBook()->emitAddressBookChanged(); | 327 | addressBook()->emitAddressBookChanged(); |
@@ -351,7 +334,50 @@ void ResourceQtopia::removeAddressee( const Addressee &addr ) | |||
351 | 334 | ||
352 | void ResourceQtopia::cleanUp() | 335 | void ResourceQtopia::cleanUp() |
353 | { | 336 | { |
354 | unlock( mFileName ); | 337 | unlock( fileName() ); |
355 | } | 338 | } |
356 | 339 | ||
340 | |||
341 | |||
342 | /** | ||
343 | * This method returns the number of elements that are currently in the resource. | ||
344 | */ | ||
345 | int ResourceQtopia::count() const | ||
346 | { | ||
347 | if (mAccess != 0) | ||
348 | { | ||
349 | int counter = 0; | ||
350 | AddressBookIterator it2(*mAccess); | ||
351 | for (it2.toFirst(); it2.current(); ++it2) { | ||
352 | counter++; | ||
353 | } | ||
354 | |||
355 | return counter; | ||
356 | } | ||
357 | else | ||
358 | return 0; | ||
359 | } | ||
360 | |||
361 | |||
362 | /** | ||
363 | * This method removes all elements from the resource!! (Not from the addressbook) | ||
364 | */ | ||
365 | bool ResourceQtopia::clear() | ||
366 | { | ||
367 | if (mAccess != 0) | ||
368 | { | ||
369 | AddressBookIterator it2(*mAccess); | ||
370 | for (it2.toFirst(); it2.current(); ++it2) { | ||
371 | mAccess->removeContact(*it2.current()); | ||
372 | } | ||
373 | return true; | ||
374 | } | ||
375 | else | ||
376 | return false; | ||
377 | } | ||
378 | |||
379 | |||
380 | |||
381 | |||
382 | |||
357 | //US #include "resourceqtopia.moc" | 383 | //US #include "resourceqtopia.moc" |