-rw-r--r-- | kabc/addressee.cpp | 99 |
1 files changed, 97 insertions, 2 deletions
diff --git a/kabc/addressee.cpp b/kabc/addressee.cpp index 7f04d8f..0f5d605 100644 --- a/kabc/addressee.cpp +++ b/kabc/addressee.cpp | |||
@@ -165,24 +165,120 @@ bool Addressee::operator==( const Addressee &a ) const | |||
165 | return true; | 165 | return true; |
166 | } | 166 | } |
167 | 167 | ||
168 | bool Addressee::operator!=( const Addressee &a ) const | 168 | bool Addressee::operator!=( const Addressee &a ) const |
169 | { | 169 | { |
170 | return !( a == *this ); | 170 | return !( a == *this ); |
171 | } | 171 | } |
172 | 172 | ||
173 | bool Addressee::isEmpty() const | 173 | bool Addressee::isEmpty() const |
174 | { | 174 | { |
175 | return mData->empty; | 175 | return mData->empty; |
176 | } | 176 | } |
177 | ulong Addressee::getCsum4List( const QStringList & attList) | ||
178 | { | ||
179 | int max = attList.count(); | ||
180 | ulong cSum = 0; | ||
181 | int j,k,i; | ||
182 | int add; | ||
183 | for ( i = 0; i < max ; ++i ) { | ||
184 | QString s = attList[i]; | ||
185 | if ( ! s.isEmpty() ){ | ||
186 | j = s.length(); | ||
187 | for ( k = 0; k < j; ++k ) { | ||
188 | int mul = k +1; | ||
189 | add = s[k].unicode (); | ||
190 | if ( k < 16 ) | ||
191 | mul = mul * mul; | ||
192 | int ii = i+1; | ||
193 | add = add * mul *ii*ii*ii; | ||
194 | cSum += add; | ||
195 | } | ||
196 | } | ||
197 | |||
198 | } | ||
199 | //QString dump = attList.join(","); | ||
200 | //qDebug("csum: %d %s", cSum,dump.latin1()); | ||
201 | |||
202 | return cSum; | ||
203 | |||
204 | } | ||
205 | void Addressee::computeCsum(const QString &dev) | ||
206 | { | ||
207 | QStringList l; | ||
208 | if ( !mData->name.isEmpty() ) l.append(mData->name); | ||
209 | if ( !mData->formattedName.isEmpty() ) l.append(mData->formattedName ); | ||
210 | if ( !mData->familyName.isEmpty() ) l.append( mData->familyName ); | ||
211 | if ( !mData->givenName.isEmpty() ) l.append(mData->givenName ); | ||
212 | if ( !mData->additionalName ) l.append( mData->additionalName ); | ||
213 | if ( !mData->prefix.isEmpty() ) l.append( mData->prefix ); | ||
214 | if ( !mData->suffix.isEmpty() ) l.append( mData->suffix ); | ||
215 | if ( !mData->nickName.isEmpty() ) l.append( mData->nickName ); | ||
216 | if ( mData->birthday.isValid() ) l.append( mData->birthday.toString() ); | ||
217 | if ( !mData->mailer.isEmpty() ) l.append( mData->mailer ); | ||
218 | if ( mData->timeZone.isValid() ) l.append( mData->timeZone.asString() ); | ||
219 | if ( mData->geo.isValid() ) l.append( mData->geo.asString() ); | ||
220 | if ( !mData->title .isEmpty() ) l.append( mData->title ); | ||
221 | if ( !mData->role.isEmpty() ) l.append( mData->role ); | ||
222 | if ( !mData->organization.isEmpty() ) l.append( mData->organization ); | ||
223 | if ( !mData->note.isEmpty() ) l.append( mData->note ); | ||
224 | if ( !mData->productId.isEmpty() ) l.append(mData->productId ); | ||
225 | if ( !mData->sortString.isEmpty() ) l.append( mData->sortString ); | ||
226 | if ( mData->secrecy.isValid() ) l.append( mData->secrecy.asString()); | ||
227 | // if ( !mData->logo.isEmpty() ) l.append( ); | ||
228 | //if ( !mData->photo.isEmpty() ) l.append( ); | ||
229 | //if ( !mData->sound.isEmpty() ) l.append( ); | ||
230 | //if ( !mData->agent.isEmpty() ) l.append( ); | ||
231 | //if ( mData->url.isValid() ) l.append( ); | ||
232 | #if 0 | ||
233 | if ( !mData->phoneNumbers.isEmpty() ) l.append( ); | ||
234 | if ( !mData->addresses.isEmpty() ) l.append( ); | ||
235 | //if ( !mData->keys.isEmpty() ) l.append( ); | ||
236 | if ( !mData->emails.isEmpty() ) l.append( ); | ||
237 | if ( !mData->categories .isEmpty() ) l.append( ); | ||
238 | if ( !mData->custom.isEmpty() ) l.append( ); | ||
239 | #endif | ||
240 | KABC::PhoneNumber::List phoneNumbers; | ||
241 | KABC::PhoneNumber::List::Iterator phoneIter; | ||
242 | |||
243 | QStringList t; | ||
244 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | ||
245 | ++phoneIter ) | ||
246 | t.append( ( *phoneIter ).number()+QString::number( ( *phoneIter ).type() ) ); | ||
247 | t.sort(); | ||
248 | uint iii; | ||
249 | for ( iii = 0; iii < t.count(); ++iii) | ||
250 | l.append( t[iii] ); | ||
251 | t = mData->emails; | ||
252 | t.sort(); | ||
253 | for ( iii = 0; iii < t.count(); ++iii) | ||
254 | l.append( t[iii] ); | ||
255 | t = mData->categories; | ||
256 | t.sort(); | ||
257 | for ( iii = 0; iii < t.count(); ++iii) | ||
258 | l.append( t[iii] ); | ||
259 | t = mData->custom; | ||
260 | t.sort(); | ||
261 | for ( iii = 0; iii < t.count(); ++iii) | ||
262 | l.append( t[iii] ); | ||
263 | KABC::Address::List::Iterator addressIter; | ||
264 | for ( addressIter = mData->addresses.begin(); addressIter != mData->addresses.end(); | ||
265 | ++addressIter ) { | ||
266 | t = (*addressIter).asList(); | ||
267 | t.sort(); | ||
268 | for ( iii = 0; iii < t.count(); ++iii) | ||
269 | l.append( t[iii] ); | ||
270 | } | ||
271 | setCsum( dev, QString::number (getCsum4List(l)) ); | ||
272 | } | ||
177 | void Addressee::removeID(const QString &prof) | 273 | void Addressee::removeID(const QString &prof) |
178 | { | 274 | { |
179 | detach(); | 275 | detach(); |
180 | mData->mExternalId = KIdManager::removeId ( mData->mExternalId, prof); | 276 | mData->mExternalId = KIdManager::removeId ( mData->mExternalId, prof); |
181 | 277 | ||
182 | } | 278 | } |
183 | void Addressee::setID( const QString & prof , const QString & id ) | 279 | void Addressee::setID( const QString & prof , const QString & id ) |
184 | { | 280 | { |
185 | detach(); | 281 | detach(); |
186 | mData->mExternalId = KIdManager::setId ( mData->mExternalId, prof, id ); | 282 | mData->mExternalId = KIdManager::setId ( mData->mExternalId, prof, id ); |
187 | } | 283 | } |
188 | void Addressee::setTempSyncStat( int id ) | 284 | void Addressee::setTempSyncStat( int id ) |
@@ -1441,29 +1537,28 @@ void Addressee::insertCustom( const QString &app, const QString &name, | |||
1441 | const QString &value ) | 1537 | const QString &value ) |
1442 | { | 1538 | { |
1443 | if ( value.isNull() || name.isEmpty() || app.isEmpty() ) return; | 1539 | if ( value.isNull() || name.isEmpty() || app.isEmpty() ) return; |
1444 | 1540 | ||
1445 | detach(); | 1541 | detach(); |
1446 | mData->empty = false; | 1542 | mData->empty = false; |
1447 | 1543 | ||
1448 | QString qualifiedName = app + "-" + name + ":"; | 1544 | QString qualifiedName = app + "-" + name + ":"; |
1449 | 1545 | ||
1450 | QStringList::Iterator it; | 1546 | QStringList::Iterator it; |
1451 | for( it = mData->custom.begin(); it != mData->custom.end(); ++it ) { | 1547 | for( it = mData->custom.begin(); it != mData->custom.end(); ++it ) { |
1452 | if ( (*it).startsWith( qualifiedName ) ) { | 1548 | if ( (*it).startsWith( qualifiedName ) ) { |
1453 | (*it) = qualifiedName + value; | 1549 | (*it) = qualifiedName + value; |
1454 | return; | 1550 | return; |
1455 | } | 1551 | } |
1456 | } | 1552 | } |
1457 | |||
1458 | mData->custom.append( qualifiedName + value ); | 1553 | mData->custom.append( qualifiedName + value ); |
1459 | } | 1554 | } |
1460 | 1555 | ||
1461 | void Addressee::removeCustom( const QString &app, const QString &name) | 1556 | void Addressee::removeCustom( const QString &app, const QString &name) |
1462 | { | 1557 | { |
1463 | detach(); | 1558 | detach(); |
1464 | 1559 | ||
1465 | QString qualifiedName = app + "-" + name + ":"; | 1560 | QString qualifiedName = app + "-" + name + ":"; |
1466 | 1561 | ||
1467 | QStringList::Iterator it; | 1562 | QStringList::Iterator it; |
1468 | for( it = mData->custom.begin(); it != mData->custom.end(); ++it ) { | 1563 | for( it = mData->custom.begin(); it != mData->custom.end(); ++it ) { |
1469 | if ( (*it).startsWith( qualifiedName ) ) { | 1564 | if ( (*it).startsWith( qualifiedName ) ) { |