-rw-r--r-- | kabc/addressbook.cpp | 44 | ||||
-rw-r--r-- | kabc/addressbook.h | 3 |
2 files changed, 47 insertions, 0 deletions
diff --git a/kabc/addressbook.cpp b/kabc/addressbook.cpp index 16927e2..d037d2f 100644 --- a/kabc/addressbook.cpp +++ b/kabc/addressbook.cpp | |||
@@ -1,241 +1,242 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkabc. | 2 | This file is part of libkabc. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@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 | /* | 21 | /* |
22 | Enhanced Version of the file for platform independent KDE tools. | 22 | Enhanced Version of the file for platform independent KDE tools. |
23 | Copyright (c) 2004 Ulf Schenk | 23 | Copyright (c) 2004 Ulf Schenk |
24 | 24 | ||
25 | $Id$ | 25 | $Id$ |
26 | */ | 26 | */ |
27 | 27 | ||
28 | /*US | 28 | /*US |
29 | 29 | ||
30 | #include <qfile.h> | 30 | #include <qfile.h> |
31 | #include <qregexp.h> | 31 | #include <qregexp.h> |
32 | #include <qtimer.h> | 32 | #include <qtimer.h> |
33 | 33 | ||
34 | #include <kapplication.h> | 34 | #include <kapplication.h> |
35 | #include <kinstance.h> | 35 | #include <kinstance.h> |
36 | #include <kstandarddirs.h> | 36 | #include <kstandarddirs.h> |
37 | 37 | ||
38 | #include "errorhandler.h" | 38 | #include "errorhandler.h" |
39 | */ | 39 | */ |
40 | #include <qptrlist.h> | 40 | #include <qptrlist.h> |
41 | #include <qtextstream.h> | 41 | #include <qtextstream.h> |
42 | #include <qfile.h> | 42 | #include <qfile.h> |
43 | #include <qregexp.h> | 43 | #include <qregexp.h> |
44 | 44 | ||
45 | #include <kglobal.h> | 45 | #include <kglobal.h> |
46 | #include <klocale.h> | 46 | #include <klocale.h> |
47 | #include <kmessagebox.h> | 47 | #include <kmessagebox.h> |
48 | #include <kdebug.h> | 48 | #include <kdebug.h> |
49 | #include <libkcal/syncdefines.h> | 49 | #include <libkcal/syncdefines.h> |
50 | #include <libkdepim/phoneaccess.h> | ||
50 | #include "addressbook.h" | 51 | #include "addressbook.h" |
51 | #include "resource.h" | 52 | #include "resource.h" |
52 | #include "vcardconverter.h" | 53 | #include "vcardconverter.h" |
53 | #include "vcardparser/vcardtool.h" | 54 | #include "vcardparser/vcardtool.h" |
54 | 55 | ||
55 | //US #include "addressbook.moc" | 56 | //US #include "addressbook.moc" |
56 | 57 | ||
57 | using namespace KABC; | 58 | using namespace KABC; |
58 | 59 | ||
59 | struct AddressBook::AddressBookData | 60 | struct AddressBook::AddressBookData |
60 | { | 61 | { |
61 | Addressee::List mAddressees; | 62 | Addressee::List mAddressees; |
62 | Addressee::List mRemovedAddressees; | 63 | Addressee::List mRemovedAddressees; |
63 | Field::List mAllFields; | 64 | Field::List mAllFields; |
64 | KConfig *mConfig; | 65 | KConfig *mConfig; |
65 | KRES::Manager<Resource> *mManager; | 66 | KRES::Manager<Resource> *mManager; |
66 | //US ErrorHandler *mErrorHandler; | 67 | //US ErrorHandler *mErrorHandler; |
67 | }; | 68 | }; |
68 | 69 | ||
69 | struct AddressBook::Iterator::IteratorData | 70 | struct AddressBook::Iterator::IteratorData |
70 | { | 71 | { |
71 | Addressee::List::Iterator mIt; | 72 | Addressee::List::Iterator mIt; |
72 | }; | 73 | }; |
73 | 74 | ||
74 | struct AddressBook::ConstIterator::ConstIteratorData | 75 | struct AddressBook::ConstIterator::ConstIteratorData |
75 | { | 76 | { |
76 | Addressee::List::ConstIterator mIt; | 77 | Addressee::List::ConstIterator mIt; |
77 | }; | 78 | }; |
78 | 79 | ||
79 | AddressBook::Iterator::Iterator() | 80 | AddressBook::Iterator::Iterator() |
80 | { | 81 | { |
81 | d = new IteratorData; | 82 | d = new IteratorData; |
82 | } | 83 | } |
83 | 84 | ||
84 | AddressBook::Iterator::Iterator( const AddressBook::Iterator &i ) | 85 | AddressBook::Iterator::Iterator( const AddressBook::Iterator &i ) |
85 | { | 86 | { |
86 | d = new IteratorData; | 87 | d = new IteratorData; |
87 | d->mIt = i.d->mIt; | 88 | d->mIt = i.d->mIt; |
88 | } | 89 | } |
89 | 90 | ||
90 | AddressBook::Iterator &AddressBook::Iterator::operator=( const AddressBook::Iterator &i ) | 91 | AddressBook::Iterator &AddressBook::Iterator::operator=( const AddressBook::Iterator &i ) |
91 | { | 92 | { |
92 | if( this == &i ) return *this; // guard against self assignment | 93 | if( this == &i ) return *this; // guard against self assignment |
93 | delete d; // delete the old data the Iterator was completely constructed before | 94 | delete d; // delete the old data the Iterator was completely constructed before |
94 | d = new IteratorData; | 95 | d = new IteratorData; |
95 | d->mIt = i.d->mIt; | 96 | d->mIt = i.d->mIt; |
96 | return *this; | 97 | return *this; |
97 | } | 98 | } |
98 | 99 | ||
99 | AddressBook::Iterator::~Iterator() | 100 | AddressBook::Iterator::~Iterator() |
100 | { | 101 | { |
101 | delete d; | 102 | delete d; |
102 | } | 103 | } |
103 | 104 | ||
104 | const Addressee &AddressBook::Iterator::operator*() const | 105 | const Addressee &AddressBook::Iterator::operator*() const |
105 | { | 106 | { |
106 | return *(d->mIt); | 107 | return *(d->mIt); |
107 | } | 108 | } |
108 | 109 | ||
109 | Addressee &AddressBook::Iterator::operator*() | 110 | Addressee &AddressBook::Iterator::operator*() |
110 | { | 111 | { |
111 | return *(d->mIt); | 112 | return *(d->mIt); |
112 | } | 113 | } |
113 | 114 | ||
114 | Addressee *AddressBook::Iterator::operator->() | 115 | Addressee *AddressBook::Iterator::operator->() |
115 | { | 116 | { |
116 | return &(*(d->mIt)); | 117 | return &(*(d->mIt)); |
117 | } | 118 | } |
118 | 119 | ||
119 | AddressBook::Iterator &AddressBook::Iterator::operator++() | 120 | AddressBook::Iterator &AddressBook::Iterator::operator++() |
120 | { | 121 | { |
121 | (d->mIt)++; | 122 | (d->mIt)++; |
122 | return *this; | 123 | return *this; |
123 | } | 124 | } |
124 | 125 | ||
125 | AddressBook::Iterator &AddressBook::Iterator::operator++(int) | 126 | AddressBook::Iterator &AddressBook::Iterator::operator++(int) |
126 | { | 127 | { |
127 | (d->mIt)++; | 128 | (d->mIt)++; |
128 | return *this; | 129 | return *this; |
129 | } | 130 | } |
130 | 131 | ||
131 | AddressBook::Iterator &AddressBook::Iterator::operator--() | 132 | AddressBook::Iterator &AddressBook::Iterator::operator--() |
132 | { | 133 | { |
133 | (d->mIt)--; | 134 | (d->mIt)--; |
134 | return *this; | 135 | return *this; |
135 | } | 136 | } |
136 | 137 | ||
137 | AddressBook::Iterator &AddressBook::Iterator::operator--(int) | 138 | AddressBook::Iterator &AddressBook::Iterator::operator--(int) |
138 | { | 139 | { |
139 | (d->mIt)--; | 140 | (d->mIt)--; |
140 | return *this; | 141 | return *this; |
141 | } | 142 | } |
142 | 143 | ||
143 | bool AddressBook::Iterator::operator==( const Iterator &it ) | 144 | bool AddressBook::Iterator::operator==( const Iterator &it ) |
144 | { | 145 | { |
145 | return ( d->mIt == it.d->mIt ); | 146 | return ( d->mIt == it.d->mIt ); |
146 | } | 147 | } |
147 | 148 | ||
148 | bool AddressBook::Iterator::operator!=( const Iterator &it ) | 149 | bool AddressBook::Iterator::operator!=( const Iterator &it ) |
149 | { | 150 | { |
150 | return ( d->mIt != it.d->mIt ); | 151 | return ( d->mIt != it.d->mIt ); |
151 | } | 152 | } |
152 | 153 | ||
153 | 154 | ||
154 | AddressBook::ConstIterator::ConstIterator() | 155 | AddressBook::ConstIterator::ConstIterator() |
155 | { | 156 | { |
156 | d = new ConstIteratorData; | 157 | d = new ConstIteratorData; |
157 | } | 158 | } |
158 | 159 | ||
159 | AddressBook::ConstIterator::ConstIterator( const AddressBook::ConstIterator &i ) | 160 | AddressBook::ConstIterator::ConstIterator( const AddressBook::ConstIterator &i ) |
160 | { | 161 | { |
161 | d = new ConstIteratorData; | 162 | d = new ConstIteratorData; |
162 | d->mIt = i.d->mIt; | 163 | d->mIt = i.d->mIt; |
163 | } | 164 | } |
164 | 165 | ||
165 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator=( const AddressBook::ConstIterator &i ) | 166 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator=( const AddressBook::ConstIterator &i ) |
166 | { | 167 | { |
167 | if( this == &i ) return *this; // guard for self assignment | 168 | if( this == &i ) return *this; // guard for self assignment |
168 | delete d; // delete the old data because the Iterator was really constructed before | 169 | delete d; // delete the old data because the Iterator was really constructed before |
169 | d = new ConstIteratorData; | 170 | d = new ConstIteratorData; |
170 | d->mIt = i.d->mIt; | 171 | d->mIt = i.d->mIt; |
171 | return *this; | 172 | return *this; |
172 | } | 173 | } |
173 | 174 | ||
174 | AddressBook::ConstIterator::~ConstIterator() | 175 | AddressBook::ConstIterator::~ConstIterator() |
175 | { | 176 | { |
176 | delete d; | 177 | delete d; |
177 | } | 178 | } |
178 | 179 | ||
179 | const Addressee &AddressBook::ConstIterator::operator*() const | 180 | const Addressee &AddressBook::ConstIterator::operator*() const |
180 | { | 181 | { |
181 | return *(d->mIt); | 182 | return *(d->mIt); |
182 | } | 183 | } |
183 | 184 | ||
184 | const Addressee* AddressBook::ConstIterator::operator->() const | 185 | const Addressee* AddressBook::ConstIterator::operator->() const |
185 | { | 186 | { |
186 | return &(*(d->mIt)); | 187 | return &(*(d->mIt)); |
187 | } | 188 | } |
188 | 189 | ||
189 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator++() | 190 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator++() |
190 | { | 191 | { |
191 | (d->mIt)++; | 192 | (d->mIt)++; |
192 | return *this; | 193 | return *this; |
193 | } | 194 | } |
194 | 195 | ||
195 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator++(int) | 196 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator++(int) |
196 | { | 197 | { |
197 | (d->mIt)++; | 198 | (d->mIt)++; |
198 | return *this; | 199 | return *this; |
199 | } | 200 | } |
200 | 201 | ||
201 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator--() | 202 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator--() |
202 | { | 203 | { |
203 | (d->mIt)--; | 204 | (d->mIt)--; |
204 | return *this; | 205 | return *this; |
205 | } | 206 | } |
206 | 207 | ||
207 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator--(int) | 208 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator--(int) |
208 | { | 209 | { |
209 | (d->mIt)--; | 210 | (d->mIt)--; |
210 | return *this; | 211 | return *this; |
211 | } | 212 | } |
212 | 213 | ||
213 | bool AddressBook::ConstIterator::operator==( const ConstIterator &it ) | 214 | bool AddressBook::ConstIterator::operator==( const ConstIterator &it ) |
214 | { | 215 | { |
215 | return ( d->mIt == it.d->mIt ); | 216 | return ( d->mIt == it.d->mIt ); |
216 | } | 217 | } |
217 | 218 | ||
218 | bool AddressBook::ConstIterator::operator!=( const ConstIterator &it ) | 219 | bool AddressBook::ConstIterator::operator!=( const ConstIterator &it ) |
219 | { | 220 | { |
220 | return ( d->mIt != it.d->mIt ); | 221 | return ( d->mIt != it.d->mIt ); |
221 | } | 222 | } |
222 | 223 | ||
223 | 224 | ||
224 | AddressBook::AddressBook() | 225 | AddressBook::AddressBook() |
225 | { | 226 | { |
226 | init(0, "contact"); | 227 | init(0, "contact"); |
227 | } | 228 | } |
228 | 229 | ||
229 | AddressBook::AddressBook( const QString &config ) | 230 | AddressBook::AddressBook( const QString &config ) |
230 | { | 231 | { |
231 | init(config, "contact"); | 232 | init(config, "contact"); |
232 | } | 233 | } |
233 | 234 | ||
234 | AddressBook::AddressBook( const QString &config, const QString &family ) | 235 | AddressBook::AddressBook( const QString &config, const QString &family ) |
235 | { | 236 | { |
236 | init(config, family); | 237 | init(config, family); |
237 | 238 | ||
238 | } | 239 | } |
239 | 240 | ||
240 | // the default family is "contact" | 241 | // the default family is "contact" |
241 | void AddressBook::init(const QString &config, const QString &family ) | 242 | void AddressBook::init(const QString &config, const QString &family ) |
@@ -270,384 +271,427 @@ void AddressBook::init(const QString &config, const QString &family ) | |||
270 | d->mConfig = new KConfig( locateLocal("config", config) ); | 271 | d->mConfig = new KConfig( locateLocal("config", config) ); |
271 | // qDebug("AddressBook::init 1 config=%s",config.latin1() ); | 272 | // qDebug("AddressBook::init 1 config=%s",config.latin1() ); |
272 | } | 273 | } |
273 | else { | 274 | else { |
274 | d->mConfig = 0; | 275 | d->mConfig = 0; |
275 | // qDebug("AddressBook::init 1 config=0"); | 276 | // qDebug("AddressBook::init 1 config=0"); |
276 | } | 277 | } |
277 | 278 | ||
278 | //US d->mErrorHandler = 0; | 279 | //US d->mErrorHandler = 0; |
279 | d->mManager = new KRES::Manager<Resource>( fami, false ); | 280 | d->mManager = new KRES::Manager<Resource>( fami, false ); |
280 | d->mManager->readConfig( d->mConfig ); | 281 | d->mManager->readConfig( d->mConfig ); |
281 | if ( family == "syncContact" ) { | 282 | if ( family == "syncContact" ) { |
282 | KRES::Manager<Resource> *manager = d->mManager; | 283 | KRES::Manager<Resource> *manager = d->mManager; |
283 | KRES::Manager<Resource>::ActiveIterator it; | 284 | KRES::Manager<Resource>::ActiveIterator it; |
284 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { | 285 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { |
285 | (*it)->setAddressBook( this ); | 286 | (*it)->setAddressBook( this ); |
286 | if ( !(*it)->open() ) | 287 | if ( !(*it)->open() ) |
287 | error( QString( "Unable to open resource '%1'!" ).arg( (*it)->resourceName() ) ); | 288 | error( QString( "Unable to open resource '%1'!" ).arg( (*it)->resourceName() ) ); |
288 | } | 289 | } |
289 | Resource *res = standardResource(); | 290 | Resource *res = standardResource(); |
290 | if ( !res ) { | 291 | if ( !res ) { |
291 | qDebug("ERROR: no standard resource"); | 292 | qDebug("ERROR: no standard resource"); |
292 | res = manager->createResource( "file" ); | 293 | res = manager->createResource( "file" ); |
293 | if ( res ) | 294 | if ( res ) |
294 | { | 295 | { |
295 | addResource( res ); | 296 | addResource( res ); |
296 | } | 297 | } |
297 | else | 298 | else |
298 | qDebug(" No resource available!!!"); | 299 | qDebug(" No resource available!!!"); |
299 | } | 300 | } |
300 | setStandardResource( res ); | 301 | setStandardResource( res ); |
301 | manager->writeConfig(); | 302 | manager->writeConfig(); |
302 | } | 303 | } |
303 | addCustomField( i18n( "Department" ), KABC::Field::Organization, | 304 | addCustomField( i18n( "Department" ), KABC::Field::Organization, |
304 | "X-Department", "KADDRESSBOOK" ); | 305 | "X-Department", "KADDRESSBOOK" ); |
305 | addCustomField( i18n( "Profession" ), KABC::Field::Organization, | 306 | addCustomField( i18n( "Profession" ), KABC::Field::Organization, |
306 | "X-Profession", "KADDRESSBOOK" ); | 307 | "X-Profession", "KADDRESSBOOK" ); |
307 | addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, | 308 | addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, |
308 | "X-AssistantsName", "KADDRESSBOOK" ); | 309 | "X-AssistantsName", "KADDRESSBOOK" ); |
309 | addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, | 310 | addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, |
310 | "X-ManagersName", "KADDRESSBOOK" ); | 311 | "X-ManagersName", "KADDRESSBOOK" ); |
311 | addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, | 312 | addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, |
312 | "X-SpousesName", "KADDRESSBOOK" ); | 313 | "X-SpousesName", "KADDRESSBOOK" ); |
313 | addCustomField( i18n( "Office" ), KABC::Field::Personal, | 314 | addCustomField( i18n( "Office" ), KABC::Field::Personal, |
314 | "X-Office", "KADDRESSBOOK" ); | 315 | "X-Office", "KADDRESSBOOK" ); |
315 | addCustomField( i18n( "IM Address" ), KABC::Field::Personal, | 316 | addCustomField( i18n( "IM Address" ), KABC::Field::Personal, |
316 | "X-IMAddress", "KADDRESSBOOK" ); | 317 | "X-IMAddress", "KADDRESSBOOK" ); |
317 | addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, | 318 | addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, |
318 | "X-Anniversary", "KADDRESSBOOK" ); | 319 | "X-Anniversary", "KADDRESSBOOK" ); |
319 | 320 | ||
320 | //US added this field to become compatible with Opie/qtopia addressbook | 321 | //US added this field to become compatible with Opie/qtopia addressbook |
321 | // values can be "female" or "male" or "". An empty field represents undefined. | 322 | // values can be "female" or "male" or "". An empty field represents undefined. |
322 | addCustomField( i18n( "Gender" ), KABC::Field::Personal, | 323 | addCustomField( i18n( "Gender" ), KABC::Field::Personal, |
323 | "X-Gender", "KADDRESSBOOK" ); | 324 | "X-Gender", "KADDRESSBOOK" ); |
324 | addCustomField( i18n( "Children" ), KABC::Field::Personal, | 325 | addCustomField( i18n( "Children" ), KABC::Field::Personal, |
325 | "X-Children", "KADDRESSBOOK" ); | 326 | "X-Children", "KADDRESSBOOK" ); |
326 | addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, | 327 | addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, |
327 | "X-FreeBusyUrl", "KADDRESSBOOK" ); | 328 | "X-FreeBusyUrl", "KADDRESSBOOK" ); |
328 | addCustomField( i18n( "ExternalID" ), KABC::Field::Personal, | 329 | addCustomField( i18n( "ExternalID" ), KABC::Field::Personal, |
329 | "X-ExternalID", "KADDRESSBOOK" ); | 330 | "X-ExternalID", "KADDRESSBOOK" ); |
330 | } | 331 | } |
331 | 332 | ||
332 | AddressBook::~AddressBook() | 333 | AddressBook::~AddressBook() |
333 | { | 334 | { |
334 | delete d->mConfig; d->mConfig = 0; | 335 | delete d->mConfig; d->mConfig = 0; |
335 | delete d->mManager; d->mManager = 0; | 336 | delete d->mManager; d->mManager = 0; |
336 | //US delete d->mErrorHandler; d->mErrorHandler = 0; | 337 | //US delete d->mErrorHandler; d->mErrorHandler = 0; |
337 | delete d; d = 0; | 338 | delete d; d = 0; |
338 | } | 339 | } |
339 | 340 | ||
340 | bool AddressBook::load() | 341 | bool AddressBook::load() |
341 | { | 342 | { |
342 | 343 | ||
343 | 344 | ||
344 | clear(); | 345 | clear(); |
345 | 346 | ||
346 | KRES::Manager<Resource>::ActiveIterator it; | 347 | KRES::Manager<Resource>::ActiveIterator it; |
347 | bool ok = true; | 348 | bool ok = true; |
348 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) | 349 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) |
349 | if ( !(*it)->load() ) { | 350 | if ( !(*it)->load() ) { |
350 | error( i18n("Unable to load resource '%1'").arg( (*it)->resourceName() ) ); | 351 | error( i18n("Unable to load resource '%1'").arg( (*it)->resourceName() ) ); |
351 | ok = false; | 352 | ok = false; |
352 | } | 353 | } |
353 | 354 | ||
354 | // mark all addressees as unchanged | 355 | // mark all addressees as unchanged |
355 | Addressee::List::Iterator addrIt; | 356 | Addressee::List::Iterator addrIt; |
356 | for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt ) { | 357 | for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt ) { |
357 | (*addrIt).setChanged( false ); | 358 | (*addrIt).setChanged( false ); |
358 | QString id = (*addrIt).custom( "KADDRESSBOOK", "X-ExternalID" ); | 359 | QString id = (*addrIt).custom( "KADDRESSBOOK", "X-ExternalID" ); |
359 | if ( !id.isEmpty() ) { | 360 | if ( !id.isEmpty() ) { |
360 | //qDebug("setId aa %s ", id.latin1()); | 361 | //qDebug("setId aa %s ", id.latin1()); |
361 | (*addrIt).setIDStr(id ); | 362 | (*addrIt).setIDStr(id ); |
362 | } | 363 | } |
363 | } | 364 | } |
364 | blockLSEchange = true; | 365 | blockLSEchange = true; |
365 | return ok; | 366 | return ok; |
366 | } | 367 | } |
367 | 368 | ||
368 | bool AddressBook::save( Ticket *ticket ) | 369 | bool AddressBook::save( Ticket *ticket ) |
369 | { | 370 | { |
370 | kdDebug(5700) << "AddressBook::save()"<< endl; | 371 | kdDebug(5700) << "AddressBook::save()"<< endl; |
371 | 372 | ||
372 | if ( ticket->resource() ) { | 373 | if ( ticket->resource() ) { |
373 | deleteRemovedAddressees(); | 374 | deleteRemovedAddressees(); |
374 | return ticket->resource()->save( ticket ); | 375 | return ticket->resource()->save( ticket ); |
375 | } | 376 | } |
376 | 377 | ||
377 | return false; | 378 | return false; |
378 | } | 379 | } |
379 | void AddressBook::export2File( QString fileName ) | 380 | void AddressBook::export2File( QString fileName ) |
380 | { | 381 | { |
381 | 382 | ||
382 | QFile outFile( fileName ); | 383 | QFile outFile( fileName ); |
383 | if ( !outFile.open( IO_WriteOnly ) ) { | 384 | if ( !outFile.open( IO_WriteOnly ) ) { |
384 | QString text = i18n( "<qt>Unable to open file <b>%1</b> for export.</qt>" ); | 385 | QString text = i18n( "<qt>Unable to open file <b>%1</b> for export.</qt>" ); |
385 | KMessageBox::error( 0, text.arg( fileName ) ); | 386 | KMessageBox::error( 0, text.arg( fileName ) ); |
386 | return ; | 387 | return ; |
387 | } | 388 | } |
388 | QTextStream t( &outFile ); | 389 | QTextStream t( &outFile ); |
389 | t.setEncoding( QTextStream::UnicodeUTF8 ); | 390 | t.setEncoding( QTextStream::UnicodeUTF8 ); |
390 | Iterator it; | 391 | Iterator it; |
391 | KABC::VCardConverter::Version version; | 392 | KABC::VCardConverter::Version version; |
392 | version = KABC::VCardConverter::v3_0; | 393 | version = KABC::VCardConverter::v3_0; |
393 | for ( it = begin(); it != end(); ++it ) { | 394 | for ( it = begin(); it != end(); ++it ) { |
394 | if ( !(*it).IDStr().isEmpty() ) { | 395 | if ( !(*it).IDStr().isEmpty() ) { |
395 | (*it).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*it).IDStr() ); | 396 | (*it).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*it).IDStr() ); |
396 | } | 397 | } |
397 | KABC::VCardConverter converter; | 398 | KABC::VCardConverter converter; |
398 | QString vcard; | 399 | QString vcard; |
399 | //Resource *resource() const; | 400 | //Resource *resource() const; |
400 | converter.addresseeToVCard( *it, vcard, version ); | 401 | converter.addresseeToVCard( *it, vcard, version ); |
401 | t << vcard << "\r\n"; | 402 | t << vcard << "\r\n"; |
402 | } | 403 | } |
403 | t << "\r\n\r\n"; | 404 | t << "\r\n\r\n"; |
404 | outFile.close(); | 405 | outFile.close(); |
405 | } | 406 | } |
406 | void AddressBook::importFromFile( QString fileName, bool replaceLabel, bool removeOld ) | 407 | void AddressBook::importFromFile( QString fileName, bool replaceLabel, bool removeOld ) |
407 | { | 408 | { |
408 | 409 | ||
409 | if ( removeOld ) | 410 | if ( removeOld ) |
410 | setUntagged(); | 411 | setUntagged(); |
411 | KABC::Addressee::List list; | 412 | KABC::Addressee::List list; |
412 | QFile file( fileName ); | 413 | QFile file( fileName ); |
413 | file.open( IO_ReadOnly ); | 414 | file.open( IO_ReadOnly ); |
414 | QByteArray rawData = file.readAll(); | 415 | QByteArray rawData = file.readAll(); |
415 | file.close(); | 416 | file.close(); |
416 | QString data; | 417 | QString data; |
417 | if ( replaceLabel ) { | 418 | if ( replaceLabel ) { |
418 | data = QString::fromLatin1( rawData.data(), rawData.size() + 1 ); | 419 | data = QString::fromLatin1( rawData.data(), rawData.size() + 1 ); |
419 | data.replace ( QRegExp("LABEL") , "ADR" ); | 420 | data.replace ( QRegExp("LABEL") , "ADR" ); |
420 | data.replace ( QRegExp("CHARSET=ISO-8859-1") , "" ); | 421 | data.replace ( QRegExp("CHARSET=ISO-8859-1") , "" ); |
421 | } else | 422 | } else |
422 | data = QString::fromUtf8( rawData.data(), rawData.size() + 1 ); | 423 | data = QString::fromUtf8( rawData.data(), rawData.size() + 1 ); |
423 | KABC::VCardTool tool; | 424 | KABC::VCardTool tool; |
424 | list = tool.parseVCards( data ); | 425 | list = tool.parseVCards( data ); |
425 | KABC::Addressee::List::Iterator it; | 426 | KABC::Addressee::List::Iterator it; |
426 | for ( it = list.begin(); it != list.end(); ++it ) { | 427 | for ( it = list.begin(); it != list.end(); ++it ) { |
427 | (*it).setResource( 0 ); | 428 | (*it).setResource( 0 ); |
428 | if ( replaceLabel ) | 429 | if ( replaceLabel ) |
429 | (*it).removeVoice(); | 430 | (*it).removeVoice(); |
430 | if ( removeOld ) | 431 | if ( removeOld ) |
431 | (*it).setTagged( true ); | 432 | (*it).setTagged( true ); |
432 | insertAddressee( (*it), false, true ); | 433 | insertAddressee( (*it), false, true ); |
433 | } | 434 | } |
434 | if ( removeOld ) | 435 | if ( removeOld ) |
435 | removeUntagged(); | 436 | removeUntagged(); |
436 | } | 437 | } |
437 | void AddressBook::setUntagged() | 438 | void AddressBook::setUntagged() |
438 | { | 439 | { |
439 | Iterator ait; | 440 | Iterator ait; |
440 | for ( ait = begin(); ait != end(); ++ait ) { | 441 | for ( ait = begin(); ait != end(); ++ait ) { |
441 | (*ait).setTagged( false ); | 442 | (*ait).setTagged( false ); |
442 | } | 443 | } |
443 | } | 444 | } |
444 | void AddressBook::removeUntagged() | 445 | void AddressBook::removeUntagged() |
445 | { | 446 | { |
446 | Iterator ait; | 447 | Iterator ait; |
447 | bool todelete = false; | 448 | bool todelete = false; |
448 | Iterator todel; | 449 | Iterator todel; |
449 | for ( ait = begin(); ait != end(); ++ait ) { | 450 | for ( ait = begin(); ait != end(); ++ait ) { |
450 | if ( todelete ) | 451 | if ( todelete ) |
451 | removeAddressee( todel ); | 452 | removeAddressee( todel ); |
452 | if (!(*ait).tagged()) { | 453 | if (!(*ait).tagged()) { |
453 | todelete = true; | 454 | todelete = true; |
454 | todel = ait; | 455 | todel = ait; |
455 | } else | 456 | } else |
456 | todelete = false; | 457 | todelete = false; |
457 | } | 458 | } |
458 | if ( todelete ) | 459 | if ( todelete ) |
459 | removeAddressee( todel ); | 460 | removeAddressee( todel ); |
460 | deleteRemovedAddressees(); | 461 | deleteRemovedAddressees(); |
461 | } | 462 | } |
463 | void AddressBook::smplifyAddressees() | ||
464 | { | ||
465 | Iterator ait; | ||
466 | for ( ait = begin(); ait != end(); ++ait ) { | ||
467 | (*ait).simplifyEmails(); | ||
468 | (*ait).simplifyPhoneNumbers(); | ||
469 | (*ait).simplifyPhoneNumberTypes(); | ||
470 | (*ait).simplifyAddresses(); | ||
471 | } | ||
472 | } | ||
473 | void AddressBook::preparePhoneSync( QString currentSyncDevice, bool isPreSync ) | ||
474 | { | ||
475 | Iterator ait; | ||
476 | for ( ait = begin(); ait != end(); ++ait ) { | ||
477 | QString id = (*ait).IDStr(); | ||
478 | (*ait).setIDStr( ":"); | ||
479 | (*ait).setExternalUID( id ); | ||
480 | (*ait).setOriginalExternalUID( id ); | ||
481 | if ( isPreSync ) | ||
482 | (*ait).setTempSyncStat( SYNC_TEMPSTATE_NEW_EXTERNAL ); | ||
483 | else | ||
484 | (*ait).setTempSyncStat( SYNC_TEMPSTATE_NEW_ID ); | ||
485 | } | ||
486 | } | ||
487 | bool AddressBook::saveABphone( QString fileName ) | ||
488 | { | ||
489 | smplifyAddressees(); | ||
490 | qDebug("saveABphone:: saving AB... "); | ||
491 | if ( ! saveAB() ) | ||
492 | return false; | ||
493 | qDebug("saveABphone:: writing to phone... "); | ||
494 | if ( !PhoneAccess::writeToPhone( fileName) ) { | ||
495 | return false; | ||
496 | } | ||
497 | qDebug("saveABphone:: re-reading from phone... "); | ||
498 | if ( !PhoneAccess::readFromPhone( fileName) ) { | ||
499 | return false; | ||
500 | } | ||
501 | qDebug("reloading phone book... "); | ||
502 | if ( !load() ) | ||
503 | return false; | ||
504 | return true; | ||
505 | } | ||
462 | bool AddressBook::saveAB() | 506 | bool AddressBook::saveAB() |
463 | { | 507 | { |
464 | bool ok = true; | 508 | bool ok = true; |
465 | 509 | ||
466 | deleteRemovedAddressees(); | 510 | deleteRemovedAddressees(); |
467 | Iterator ait; | 511 | Iterator ait; |
468 | for ( ait = begin(); ait != end(); ++ait ) { | 512 | for ( ait = begin(); ait != end(); ++ait ) { |
469 | if ( !(*ait).IDStr().isEmpty() ) { | 513 | if ( !(*ait).IDStr().isEmpty() ) { |
470 | (*ait).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*ait).IDStr() ); | 514 | (*ait).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*ait).IDStr() ); |
471 | } | 515 | } |
472 | } | 516 | } |
473 | KRES::Manager<Resource>::ActiveIterator it; | 517 | KRES::Manager<Resource>::ActiveIterator it; |
474 | KRES::Manager<Resource> *manager = d->mManager; | 518 | KRES::Manager<Resource> *manager = d->mManager; |
475 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { | 519 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { |
476 | if ( !(*it)->readOnly() && (*it)->isOpen() ) { | 520 | if ( !(*it)->readOnly() && (*it)->isOpen() ) { |
477 | Ticket *ticket = requestSaveTicket( *it ); | 521 | Ticket *ticket = requestSaveTicket( *it ); |
478 | // qDebug("StdAddressBook::save '%s'", (*it)->resourceName().latin1() ); | 522 | // qDebug("StdAddressBook::save '%s'", (*it)->resourceName().latin1() ); |
479 | if ( !ticket ) { | 523 | if ( !ticket ) { |
480 | error( i18n( "Unable to save to resource '%1'. It is locked." ) | 524 | error( i18n( "Unable to save to resource '%1'. It is locked." ) |
481 | .arg( (*it)->resourceName() ) ); | 525 | .arg( (*it)->resourceName() ) ); |
482 | return false; | 526 | return false; |
483 | } | 527 | } |
484 | 528 | ||
485 | //if ( !save( ticket ) ) | 529 | //if ( !save( ticket ) ) |
486 | if ( ticket->resource() ) { | 530 | if ( ticket->resource() ) { |
487 | if ( ! ticket->resource()->save( ticket ) ) | 531 | if ( ! ticket->resource()->save( ticket ) ) |
488 | ok = false; | 532 | ok = false; |
489 | } else | 533 | } else |
490 | ok = false; | 534 | ok = false; |
491 | 535 | ||
492 | } | 536 | } |
493 | } | 537 | } |
494 | return ok; | 538 | return ok; |
495 | } | 539 | } |
496 | 540 | ||
497 | AddressBook::Iterator AddressBook::begin() | 541 | AddressBook::Iterator AddressBook::begin() |
498 | { | 542 | { |
499 | Iterator it = Iterator(); | 543 | Iterator it = Iterator(); |
500 | it.d->mIt = d->mAddressees.begin(); | 544 | it.d->mIt = d->mAddressees.begin(); |
501 | return it; | 545 | return it; |
502 | } | 546 | } |
503 | 547 | ||
504 | AddressBook::ConstIterator AddressBook::begin() const | 548 | AddressBook::ConstIterator AddressBook::begin() const |
505 | { | 549 | { |
506 | ConstIterator it = ConstIterator(); | 550 | ConstIterator it = ConstIterator(); |
507 | it.d->mIt = d->mAddressees.begin(); | 551 | it.d->mIt = d->mAddressees.begin(); |
508 | return it; | 552 | return it; |
509 | } | 553 | } |
510 | 554 | ||
511 | AddressBook::Iterator AddressBook::end() | 555 | AddressBook::Iterator AddressBook::end() |
512 | { | 556 | { |
513 | Iterator it = Iterator(); | 557 | Iterator it = Iterator(); |
514 | it.d->mIt = d->mAddressees.end(); | 558 | it.d->mIt = d->mAddressees.end(); |
515 | return it; | 559 | return it; |
516 | } | 560 | } |
517 | 561 | ||
518 | AddressBook::ConstIterator AddressBook::end() const | 562 | AddressBook::ConstIterator AddressBook::end() const |
519 | { | 563 | { |
520 | ConstIterator it = ConstIterator(); | 564 | ConstIterator it = ConstIterator(); |
521 | it.d->mIt = d->mAddressees.end(); | 565 | it.d->mIt = d->mAddressees.end(); |
522 | return it; | 566 | return it; |
523 | } | 567 | } |
524 | 568 | ||
525 | void AddressBook::clear() | 569 | void AddressBook::clear() |
526 | { | 570 | { |
527 | d->mAddressees.clear(); | 571 | d->mAddressees.clear(); |
528 | } | 572 | } |
529 | 573 | ||
530 | Ticket *AddressBook::requestSaveTicket( Resource *resource ) | 574 | Ticket *AddressBook::requestSaveTicket( Resource *resource ) |
531 | { | 575 | { |
532 | kdDebug(5700) << "AddressBook::requestSaveTicket()" << endl; | 576 | kdDebug(5700) << "AddressBook::requestSaveTicket()" << endl; |
533 | 577 | ||
534 | if ( !resource ) | 578 | if ( !resource ) |
535 | { | 579 | { |
536 | qDebug("AddressBook::requestSaveTicket no resource" ); | 580 | qDebug("AddressBook::requestSaveTicket no resource" ); |
537 | resource = standardResource(); | 581 | resource = standardResource(); |
538 | } | 582 | } |
539 | 583 | ||
540 | KRES::Manager<Resource>::ActiveIterator it; | 584 | KRES::Manager<Resource>::ActiveIterator it; |
541 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { | 585 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { |
542 | if ( (*it) == resource ) { | 586 | if ( (*it) == resource ) { |
543 | if ( (*it)->readOnly() || !(*it)->isOpen() ) | 587 | if ( (*it)->readOnly() || !(*it)->isOpen() ) |
544 | return 0; | 588 | return 0; |
545 | else | 589 | else |
546 | return (*it)->requestSaveTicket(); | 590 | return (*it)->requestSaveTicket(); |
547 | } | 591 | } |
548 | } | 592 | } |
549 | 593 | ||
550 | return 0; | 594 | return 0; |
551 | } | 595 | } |
552 | 596 | ||
553 | void AddressBook::insertAddressee( const Addressee &a, bool setRev, bool takeResource ) | 597 | void AddressBook::insertAddressee( const Addressee &a, bool setRev, bool takeResource ) |
554 | { | 598 | { |
555 | if ( blockLSEchange && setRev && a.uid().left( 19 ) == QString("last-syncAddressee-") ) { | 599 | if ( blockLSEchange && setRev && a.uid().left( 19 ) == QString("last-syncAddressee-") ) { |
556 | //qDebug("block insert "); | 600 | //qDebug("block insert "); |
557 | return; | 601 | return; |
558 | } | 602 | } |
559 | //qDebug("inserting.... %s ",a.uid().latin1() ); | 603 | //qDebug("inserting.... %s ",a.uid().latin1() ); |
560 | bool found = false; | 604 | bool found = false; |
561 | Addressee::List::Iterator it; | 605 | Addressee::List::Iterator it; |
562 | for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) { | 606 | for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) { |
563 | if ( a.uid() == (*it).uid() ) { | 607 | if ( a.uid() == (*it).uid() ) { |
564 | 608 | ||
565 | bool changed = false; | 609 | bool changed = false; |
566 | Addressee addr = a; | 610 | Addressee addr = a; |
567 | if ( addr != (*it) ) | 611 | if ( addr != (*it) ) |
568 | changed = true; | 612 | changed = true; |
569 | 613 | ||
570 | if ( takeResource ) { | 614 | if ( takeResource ) { |
571 | Resource * res = (*it).resource(); | 615 | Resource * res = (*it).resource(); |
572 | (*it) = a; | 616 | (*it) = a; |
573 | (*it).setResource( res ); | 617 | (*it).setResource( res ); |
574 | } else { | 618 | } else { |
575 | (*it) = a; | 619 | (*it) = a; |
576 | if ( (*it).resource() == 0 ) | 620 | if ( (*it).resource() == 0 ) |
577 | (*it).setResource( standardResource() ); | 621 | (*it).setResource( standardResource() ); |
578 | } | 622 | } |
579 | if ( changed ) { | 623 | if ( changed ) { |
580 | if ( setRev ) { | 624 | if ( setRev ) { |
581 | 625 | ||
582 | // get rid of micro seconds | 626 | // get rid of micro seconds |
583 | QDateTime dt = QDateTime::currentDateTime(); | 627 | QDateTime dt = QDateTime::currentDateTime(); |
584 | QTime t = dt.time(); | 628 | QTime t = dt.time(); |
585 | dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); | 629 | dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); |
586 | (*it).setRevision( dt ); | 630 | (*it).setRevision( dt ); |
587 | } | 631 | } |
588 | (*it).setChanged( true ); | 632 | (*it).setChanged( true ); |
589 | } | 633 | } |
590 | 634 | ||
591 | found = true; | 635 | found = true; |
592 | } else { | 636 | } else { |
593 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { | 637 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { |
594 | QString name = (*it).uid().mid( 19 ); | 638 | QString name = (*it).uid().mid( 19 ); |
595 | Addressee b = a; | 639 | Addressee b = a; |
596 | QString id = b.getID( name ); | 640 | QString id = b.getID( name ); |
597 | if ( ! id.isEmpty() ) { | 641 | if ( ! id.isEmpty() ) { |
598 | QString des = (*it).note(); | 642 | QString des = (*it).note(); |
599 | int startN; | 643 | int startN; |
600 | if( (startN = des.find( id ) ) >= 0 ) { | 644 | if( (startN = des.find( id ) ) >= 0 ) { |
601 | int endN = des.find( ",", startN+1 ); | 645 | int endN = des.find( ",", startN+1 ); |
602 | des = des.left( startN ) + des.mid( endN+1 ); | 646 | des = des.left( startN ) + des.mid( endN+1 ); |
603 | (*it).setNote( des ); | 647 | (*it).setNote( des ); |
604 | } | 648 | } |
605 | } | 649 | } |
606 | } | 650 | } |
607 | } | 651 | } |
608 | } | 652 | } |
609 | if ( found ) | 653 | if ( found ) |
610 | return; | 654 | return; |
611 | d->mAddressees.append( a ); | 655 | d->mAddressees.append( a ); |
612 | Addressee& addr = d->mAddressees.last(); | 656 | Addressee& addr = d->mAddressees.last(); |
613 | if ( addr.resource() == 0 ) | 657 | if ( addr.resource() == 0 ) |
614 | addr.setResource( standardResource() ); | 658 | addr.setResource( standardResource() ); |
615 | 659 | ||
616 | addr.setChanged( true ); | 660 | addr.setChanged( true ); |
617 | } | 661 | } |
618 | 662 | ||
619 | void AddressBook::removeAddressee( const Addressee &a ) | 663 | void AddressBook::removeAddressee( const Addressee &a ) |
620 | { | 664 | { |
621 | Iterator it; | 665 | Iterator it; |
622 | Iterator it2; | 666 | Iterator it2; |
623 | bool found = false; | 667 | bool found = false; |
624 | for ( it = begin(); it != end(); ++it ) { | 668 | for ( it = begin(); it != end(); ++it ) { |
625 | if ( a.uid() == (*it).uid() ) { | 669 | if ( a.uid() == (*it).uid() ) { |
626 | found = true; | 670 | found = true; |
627 | it2 = it; | 671 | it2 = it; |
628 | } else { | 672 | } else { |
629 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { | 673 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { |
630 | QString name = (*it).uid().mid( 19 ); | 674 | QString name = (*it).uid().mid( 19 ); |
631 | Addressee b = a; | 675 | Addressee b = a; |
632 | QString id = b.getID( name ); | 676 | QString id = b.getID( name ); |
633 | if ( ! id.isEmpty() ) { | 677 | if ( ! id.isEmpty() ) { |
634 | QString des = (*it).note(); | 678 | QString des = (*it).note(); |
635 | if( des.find( id ) < 0 ) { | 679 | if( des.find( id ) < 0 ) { |
636 | des += id + ","; | 680 | des += id + ","; |
637 | (*it).setNote( des ); | 681 | (*it).setNote( des ); |
638 | } | 682 | } |
639 | } | 683 | } |
640 | } | 684 | } |
641 | 685 | ||
642 | } | 686 | } |
643 | } | 687 | } |
644 | 688 | ||
645 | if ( found ) | 689 | if ( found ) |
646 | removeAddressee( it2 ); | 690 | removeAddressee( it2 ); |
647 | 691 | ||
648 | } | 692 | } |
649 | 693 | ||
650 | void AddressBook::removeSyncAddressees( bool removeDeleted ) | 694 | void AddressBook::removeSyncAddressees( bool removeDeleted ) |
651 | { | 695 | { |
652 | Iterator it = begin(); | 696 | Iterator it = begin(); |
653 | Iterator it2 ; | 697 | Iterator it2 ; |
diff --git a/kabc/addressbook.h b/kabc/addressbook.h index 532e05d..cc755d1 100644 --- a/kabc/addressbook.h +++ b/kabc/addressbook.h | |||
@@ -1,336 +1,339 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkabc. | 2 | This file is part of libkabc. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@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 | /* | 21 | /* |
22 | Enhanced Version of the file for platform independent KDE tools. | 22 | Enhanced Version of the file for platform independent KDE tools. |
23 | Copyright (c) 2004 Ulf Schenk | 23 | Copyright (c) 2004 Ulf Schenk |
24 | 24 | ||
25 | $Id$ | 25 | $Id$ |
26 | */ | 26 | */ |
27 | 27 | ||
28 | #ifndef KABC_ADDRESSBOOK_H | 28 | #ifndef KABC_ADDRESSBOOK_H |
29 | #define KABC_ADDRESSBOOK_H | 29 | #define KABC_ADDRESSBOOK_H |
30 | 30 | ||
31 | #include <qobject.h> | 31 | #include <qobject.h> |
32 | 32 | ||
33 | #include <kresources/manager.h> | 33 | #include <kresources/manager.h> |
34 | #include <qptrlist.h> | 34 | #include <qptrlist.h> |
35 | 35 | ||
36 | #include "addressee.h" | 36 | #include "addressee.h" |
37 | #include "field.h" | 37 | #include "field.h" |
38 | 38 | ||
39 | namespace KABC { | 39 | namespace KABC { |
40 | 40 | ||
41 | class ErrorHandler; | 41 | class ErrorHandler; |
42 | class Resource; | 42 | class Resource; |
43 | class Ticket; | 43 | class Ticket; |
44 | 44 | ||
45 | /** | 45 | /** |
46 | @short Address Book | 46 | @short Address Book |
47 | 47 | ||
48 | This class provides access to a collection of address book entries. | 48 | This class provides access to a collection of address book entries. |
49 | */ | 49 | */ |
50 | class AddressBook : public QObject | 50 | class AddressBook : public QObject |
51 | { | 51 | { |
52 | Q_OBJECT | 52 | Q_OBJECT |
53 | 53 | ||
54 | friend QDataStream &operator<<( QDataStream &, const AddressBook & ); | 54 | friend QDataStream &operator<<( QDataStream &, const AddressBook & ); |
55 | friend QDataStream &operator>>( QDataStream &, AddressBook & ); | 55 | friend QDataStream &operator>>( QDataStream &, AddressBook & ); |
56 | friend class StdAddressBook; | 56 | friend class StdAddressBook; |
57 | 57 | ||
58 | public: | 58 | public: |
59 | /** | 59 | /** |
60 | @short Address Book Iterator | 60 | @short Address Book Iterator |
61 | 61 | ||
62 | This class provides an iterator for address book entries. | 62 | This class provides an iterator for address book entries. |
63 | */ | 63 | */ |
64 | class Iterator | 64 | class Iterator |
65 | { | 65 | { |
66 | public: | 66 | public: |
67 | Iterator(); | 67 | Iterator(); |
68 | Iterator( const Iterator & ); | 68 | Iterator( const Iterator & ); |
69 | ~Iterator(); | 69 | ~Iterator(); |
70 | 70 | ||
71 | Iterator &operator=( const Iterator & ); | 71 | Iterator &operator=( const Iterator & ); |
72 | const Addressee &operator*() const; | 72 | const Addressee &operator*() const; |
73 | Addressee &operator*(); | 73 | Addressee &operator*(); |
74 | Addressee* operator->(); | 74 | Addressee* operator->(); |
75 | Iterator &operator++(); | 75 | Iterator &operator++(); |
76 | Iterator &operator++(int); | 76 | Iterator &operator++(int); |
77 | Iterator &operator--(); | 77 | Iterator &operator--(); |
78 | Iterator &operator--(int); | 78 | Iterator &operator--(int); |
79 | bool operator==( const Iterator &it ); | 79 | bool operator==( const Iterator &it ); |
80 | bool operator!=( const Iterator &it ); | 80 | bool operator!=( const Iterator &it ); |
81 | 81 | ||
82 | struct IteratorData; | 82 | struct IteratorData; |
83 | IteratorData *d; | 83 | IteratorData *d; |
84 | }; | 84 | }; |
85 | 85 | ||
86 | /** | 86 | /** |
87 | @short Address Book Const Iterator | 87 | @short Address Book Const Iterator |
88 | 88 | ||
89 | This class provides a const iterator for address book entries. | 89 | This class provides a const iterator for address book entries. |
90 | */ | 90 | */ |
91 | class ConstIterator | 91 | class ConstIterator |
92 | { | 92 | { |
93 | public: | 93 | public: |
94 | ConstIterator(); | 94 | ConstIterator(); |
95 | ConstIterator( const ConstIterator & ); | 95 | ConstIterator( const ConstIterator & ); |
96 | ~ConstIterator(); | 96 | ~ConstIterator(); |
97 | 97 | ||
98 | ConstIterator &operator=( const ConstIterator & ); | 98 | ConstIterator &operator=( const ConstIterator & ); |
99 | const Addressee &operator*() const; | 99 | const Addressee &operator*() const; |
100 | const Addressee* operator->() const; | 100 | const Addressee* operator->() const; |
101 | ConstIterator &operator++(); | 101 | ConstIterator &operator++(); |
102 | ConstIterator &operator++(int); | 102 | ConstIterator &operator++(int); |
103 | ConstIterator &operator--(); | 103 | ConstIterator &operator--(); |
104 | ConstIterator &operator--(int); | 104 | ConstIterator &operator--(int); |
105 | bool operator==( const ConstIterator &it ); | 105 | bool operator==( const ConstIterator &it ); |
106 | bool operator!=( const ConstIterator &it ); | 106 | bool operator!=( const ConstIterator &it ); |
107 | 107 | ||
108 | struct ConstIteratorData; | 108 | struct ConstIteratorData; |
109 | ConstIteratorData *d; | 109 | ConstIteratorData *d; |
110 | }; | 110 | }; |
111 | 111 | ||
112 | /** | 112 | /** |
113 | Constructs a address book object. | 113 | Constructs a address book object. |
114 | 114 | ||
115 | @param format File format class. | 115 | @param format File format class. |
116 | */ | 116 | */ |
117 | AddressBook(); | 117 | AddressBook(); |
118 | AddressBook( const QString &config ); | 118 | AddressBook( const QString &config ); |
119 | AddressBook( const QString &config, const QString &family ); | 119 | AddressBook( const QString &config, const QString &family ); |
120 | virtual ~AddressBook(); | 120 | virtual ~AddressBook(); |
121 | 121 | ||
122 | /** | 122 | /** |
123 | Requests a ticket for saving the addressbook. Calling this function locks | 123 | Requests a ticket for saving the addressbook. Calling this function locks |
124 | the addressbook for all other processes. If the address book is already | 124 | the addressbook for all other processes. If the address book is already |
125 | locked the function returns 0. You need the returned @ref Ticket object | 125 | locked the function returns 0. You need the returned @ref Ticket object |
126 | for calling the @ref save() function. | 126 | for calling the @ref save() function. |
127 | 127 | ||
128 | @see save() | 128 | @see save() |
129 | */ | 129 | */ |
130 | Ticket *requestSaveTicket( Resource *resource=0 ); | 130 | Ticket *requestSaveTicket( Resource *resource=0 ); |
131 | 131 | ||
132 | /** | 132 | /** |
133 | Load address book from file. | 133 | Load address book from file. |
134 | */ | 134 | */ |
135 | bool load(); | 135 | bool load(); |
136 | 136 | ||
137 | /** | 137 | /** |
138 | Save address book. The address book is saved to the file, the Ticket | 138 | Save address book. The address book is saved to the file, the Ticket |
139 | object has been requested for by @ref requestSaveTicket(). | 139 | object has been requested for by @ref requestSaveTicket(). |
140 | 140 | ||
141 | @param ticket a ticket object returned by @ref requestSaveTicket() | 141 | @param ticket a ticket object returned by @ref requestSaveTicket() |
142 | */ | 142 | */ |
143 | bool save( Ticket *ticket ); | 143 | bool save( Ticket *ticket ); |
144 | bool saveAB( ); | 144 | bool saveAB( ); |
145 | bool saveABphone( QString fileName ); | ||
146 | void smplifyAddressees(); | ||
147 | void preparePhoneSync( QString currentSyncDevice, bool isPreSync ); | ||
145 | void export2File( QString fileName ); | 148 | void export2File( QString fileName ); |
146 | void importFromFile( QString fileName, bool replaceLabel = false, bool removeOld = false ); | 149 | void importFromFile( QString fileName, bool replaceLabel = false, bool removeOld = false ); |
147 | void setUntagged(); | 150 | void setUntagged(); |
148 | void removeUntagged(); | 151 | void removeUntagged(); |
149 | /** | 152 | /** |
150 | Returns a iterator for first entry of address book. | 153 | Returns a iterator for first entry of address book. |
151 | */ | 154 | */ |
152 | Iterator begin(); | 155 | Iterator begin(); |
153 | 156 | ||
154 | /** | 157 | /** |
155 | Returns a const iterator for first entry of address book. | 158 | Returns a const iterator for first entry of address book. |
156 | */ | 159 | */ |
157 | ConstIterator begin() const; | 160 | ConstIterator begin() const; |
158 | 161 | ||
159 | /** | 162 | /** |
160 | Returns a iterator for first entry of address book. | 163 | Returns a iterator for first entry of address book. |
161 | */ | 164 | */ |
162 | Iterator end(); | 165 | Iterator end(); |
163 | 166 | ||
164 | /** | 167 | /** |
165 | Returns a const iterator for first entry of address book. | 168 | Returns a const iterator for first entry of address book. |
166 | */ | 169 | */ |
167 | ConstIterator end() const; | 170 | ConstIterator end() const; |
168 | 171 | ||
169 | /** | 172 | /** |
170 | Removes all entries from address book. | 173 | Removes all entries from address book. |
171 | */ | 174 | */ |
172 | void clear(); | 175 | void clear(); |
173 | 176 | ||
174 | /** | 177 | /** |
175 | Insert an Addressee object into address book. If an object with the same | 178 | Insert an Addressee object into address book. If an object with the same |
176 | unique id already exists in the address book it it replaced by the new | 179 | unique id already exists in the address book it it replaced by the new |
177 | one. If not the new object is appended to the address book. | 180 | one. If not the new object is appended to the address book. |
178 | */ | 181 | */ |
179 | void insertAddressee( const Addressee &, bool setRev = true, bool takeResource = false); | 182 | void insertAddressee( const Addressee &, bool setRev = true, bool takeResource = false); |
180 | 183 | ||
181 | /** | 184 | /** |
182 | Removes entry from the address book. | 185 | Removes entry from the address book. |
183 | */ | 186 | */ |
184 | void removeAddressee( const Addressee & ); | 187 | void removeAddressee( const Addressee & ); |
185 | 188 | ||
186 | /** | 189 | /** |
187 | This is like @ref removeAddressee() just above, with the difference that | 190 | This is like @ref removeAddressee() just above, with the difference that |
188 | the first element is a iterator, returned by @ref begin(). | 191 | the first element is a iterator, returned by @ref begin(). |
189 | */ | 192 | */ |
190 | void removeAddressee( const Iterator & ); | 193 | void removeAddressee( const Iterator & ); |
191 | 194 | ||
192 | /** | 195 | /** |
193 | Find the specified entry in address book. Returns end(), if the entry | 196 | Find the specified entry in address book. Returns end(), if the entry |
194 | couldn't be found. | 197 | couldn't be found. |
195 | */ | 198 | */ |
196 | Iterator find( const Addressee & ); | 199 | Iterator find( const Addressee & ); |
197 | 200 | ||
198 | /** | 201 | /** |
199 | Find the entry specified by an unique id. Returns an empty Addressee | 202 | Find the entry specified by an unique id. Returns an empty Addressee |
200 | object, if the address book does not contain an entry with this id. | 203 | object, if the address book does not contain an entry with this id. |
201 | */ | 204 | */ |
202 | Addressee findByUid( const QString & ); | 205 | Addressee findByUid( const QString & ); |
203 | 206 | ||
204 | 207 | ||
205 | /** | 208 | /** |
206 | Returns a list of all addressees in the address book. This list can | 209 | Returns a list of all addressees in the address book. This list can |
207 | be sorted with @ref KABC::AddresseeList for example. | 210 | be sorted with @ref KABC::AddresseeList for example. |
208 | */ | 211 | */ |
209 | Addressee::List allAddressees(); | 212 | Addressee::List allAddressees(); |
210 | 213 | ||
211 | /** | 214 | /** |
212 | Find all entries with the specified name in the address book. Returns | 215 | Find all entries with the specified name in the address book. Returns |
213 | an empty list, if no entries could be found. | 216 | an empty list, if no entries could be found. |
214 | */ | 217 | */ |
215 | Addressee::List findByName( const QString & ); | 218 | Addressee::List findByName( const QString & ); |
216 | 219 | ||
217 | /** | 220 | /** |
218 | Find all entries with the specified email address in the address book. | 221 | Find all entries with the specified email address in the address book. |
219 | Returns an empty list, if no entries could be found. | 222 | Returns an empty list, if no entries could be found. |
220 | */ | 223 | */ |
221 | Addressee::List findByEmail( const QString & ); | 224 | Addressee::List findByEmail( const QString & ); |
222 | 225 | ||
223 | /** | 226 | /** |
224 | Find all entries wich have the specified category in the address book. | 227 | Find all entries wich have the specified category in the address book. |
225 | Returns an empty list, if no entries could be found. | 228 | Returns an empty list, if no entries could be found. |
226 | */ | 229 | */ |
227 | Addressee::List findByCategory( const QString & ); | 230 | Addressee::List findByCategory( const QString & ); |
228 | 231 | ||
229 | /** | 232 | /** |
230 | Return a string identifying this addressbook. | 233 | Return a string identifying this addressbook. |
231 | */ | 234 | */ |
232 | virtual QString identifier(); | 235 | virtual QString identifier(); |
233 | 236 | ||
234 | /** | 237 | /** |
235 | Used for debug output. | 238 | Used for debug output. |
236 | */ | 239 | */ |
237 | void dump() const; | 240 | void dump() const; |
238 | 241 | ||
239 | void emitAddressBookLocked() { emit addressBookLocked( this ); } | 242 | void emitAddressBookLocked() { emit addressBookLocked( this ); } |
240 | void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); } | 243 | void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); } |
241 | void emitAddressBookChanged() { emit addressBookChanged( this ); } | 244 | void emitAddressBookChanged() { emit addressBookChanged( this ); } |
242 | 245 | ||
243 | /** | 246 | /** |
244 | Return list of all Fields known to the address book which are associated | 247 | Return list of all Fields known to the address book which are associated |
245 | with the given field category. | 248 | with the given field category. |
246 | */ | 249 | */ |
247 | Field::List fields( int category = Field::All ); | 250 | Field::List fields( int category = Field::All ); |
248 | 251 | ||
249 | /** | 252 | /** |
250 | Add custom field to address book. | 253 | Add custom field to address book. |
251 | 254 | ||
252 | @param label User visible label of the field. | 255 | @param label User visible label of the field. |
253 | @param category Ored list of field categories. | 256 | @param category Ored list of field categories. |
254 | @param key Identifier used as key for reading and writing the field. | 257 | @param key Identifier used as key for reading and writing the field. |
255 | @param app String used as application key for reading and writing | 258 | @param app String used as application key for reading and writing |
256 | the field. | 259 | the field. |
257 | */ | 260 | */ |
258 | bool addCustomField( const QString &label, int category = Field::All, | 261 | bool addCustomField( const QString &label, int category = Field::All, |
259 | const QString &key = QString::null, | 262 | const QString &key = QString::null, |
260 | const QString &app = QString::null ); | 263 | const QString &app = QString::null ); |
261 | 264 | ||
262 | 265 | ||
263 | /** | 266 | /** |
264 | Add address book resource. | 267 | Add address book resource. |
265 | */ | 268 | */ |
266 | bool addResource( Resource * ); | 269 | bool addResource( Resource * ); |
267 | 270 | ||
268 | /** | 271 | /** |
269 | Remove address book resource. | 272 | Remove address book resource. |
270 | */ | 273 | */ |
271 | bool removeResource( Resource * ); | 274 | bool removeResource( Resource * ); |
272 | 275 | ||
273 | /** | 276 | /** |
274 | Return pointer list of all resources. | 277 | Return pointer list of all resources. |
275 | */ | 278 | */ |
276 | QPtrList<Resource> resources(); | 279 | QPtrList<Resource> resources(); |
277 | 280 | ||
278 | /** | 281 | /** |
279 | Set the @p ErrorHandler, that is used by @ref error() to | 282 | Set the @p ErrorHandler, that is used by @ref error() to |
280 | provide gui-independend error messages. | 283 | provide gui-independend error messages. |
281 | */ | 284 | */ |
282 | void setErrorHandler( ErrorHandler * ); | 285 | void setErrorHandler( ErrorHandler * ); |
283 | 286 | ||
284 | /** | 287 | /** |
285 | Shows gui independend error messages. | 288 | Shows gui independend error messages. |
286 | */ | 289 | */ |
287 | void error( const QString& ); | 290 | void error( const QString& ); |
288 | 291 | ||
289 | /** | 292 | /** |
290 | Query all resources to clean up their lock files | 293 | Query all resources to clean up their lock files |
291 | */ | 294 | */ |
292 | void cleanUp(); | 295 | void cleanUp(); |
293 | 296 | ||
294 | // sync stuff | 297 | // sync stuff |
295 | //Addressee::List getExternLastSyncAddressees(); | 298 | //Addressee::List getExternLastSyncAddressees(); |
296 | void resetTempSyncStat(); | 299 | void resetTempSyncStat(); |
297 | QStringList uidList(); | 300 | QStringList uidList(); |
298 | void removeSyncAddressees( bool removeDeleted = false ); | 301 | void removeSyncAddressees( bool removeDeleted = false ); |
299 | void mergeAB( AddressBook *aBook, const QString& profile ); | 302 | void mergeAB( AddressBook *aBook, const QString& profile ); |
300 | Addressee findByExternUid( const QString& uid , const QString& profile ); | 303 | Addressee findByExternUid( const QString& uid , const QString& profile ); |
301 | bool containsExternalUid( const QString& uid ); | 304 | bool containsExternalUid( const QString& uid ); |
302 | 305 | ||
303 | void preExternSync( AddressBook* aBook, const QString& csd ); | 306 | void preExternSync( AddressBook* aBook, const QString& csd ); |
304 | void postExternSync( AddressBook* aBook, const QString& csd ); | 307 | void postExternSync( AddressBook* aBook, const QString& csd ); |
305 | signals: | 308 | signals: |
306 | /** | 309 | /** |
307 | Emitted, when the address book has changed on disk. | 310 | Emitted, when the address book has changed on disk. |
308 | */ | 311 | */ |
309 | void addressBookChanged( AddressBook * ); | 312 | void addressBookChanged( AddressBook * ); |
310 | 313 | ||
311 | /** | 314 | /** |
312 | Emitted, when the address book has been locked for writing. | 315 | Emitted, when the address book has been locked for writing. |
313 | */ | 316 | */ |
314 | void addressBookLocked( AddressBook * ); | 317 | void addressBookLocked( AddressBook * ); |
315 | 318 | ||
316 | /** | 319 | /** |
317 | Emitted, when the address book has been unlocked. | 320 | Emitted, when the address book has been unlocked. |
318 | */ | 321 | */ |
319 | void addressBookUnlocked( AddressBook * ); | 322 | void addressBookUnlocked( AddressBook * ); |
320 | 323 | ||
321 | protected: | 324 | protected: |
322 | void deleteRemovedAddressees(); | 325 | void deleteRemovedAddressees(); |
323 | void setStandardResource( Resource * ); | 326 | void setStandardResource( Resource * ); |
324 | Resource *standardResource(); | 327 | Resource *standardResource(); |
325 | KRES::Manager<Resource> *resourceManager(); | 328 | KRES::Manager<Resource> *resourceManager(); |
326 | 329 | ||
327 | void init(const QString &config, const QString &family); | 330 | void init(const QString &config, const QString &family); |
328 | 331 | ||
329 | private: | 332 | private: |
330 | //US QPtrList<Resource> mDummy; // Remove in KDE 4 | 333 | //US QPtrList<Resource> mDummy; // Remove in KDE 4 |
331 | 334 | ||
332 | 335 | ||
333 | struct AddressBookData; | 336 | struct AddressBookData; |
334 | AddressBookData *d; | 337 | AddressBookData *d; |
335 | bool blockLSEchange; | 338 | bool blockLSEchange; |
336 | }; | 339 | }; |