summaryrefslogtreecommitdiffstats
path: root/kaddressbook/searchmanager.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /kaddressbook/searchmanager.cpp
downloadtdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz
tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kaddressbook/searchmanager.cpp')
-rw-r--r--kaddressbook/searchmanager.cpp198
1 files changed, 198 insertions, 0 deletions
diff --git a/kaddressbook/searchmanager.cpp b/kaddressbook/searchmanager.cpp
new file mode 100644
index 00000000..1919dfea
--- /dev/null
+++ b/kaddressbook/searchmanager.cpp
@@ -0,0 +1,198 @@
+/*
+ This file is part of KAddressBook.
+ Copyright (c) 2004 Tobias Koenig <tokoe@kde.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+ As a special exception, permission is given to link this program
+ with any edition of Qt, and distribute the resulting executable,
+ without including the source code for Qt in the source distribution.
+*/
+
+#include <kabc/addresseelist.h>
+#include <kdeversion.h>
+
+#include "searchmanager.h"
+
+using namespace KAB;
+
+SearchManager::SearchManager( KABC::AddressBook *ab,
+ QObject *parent, const char *name )
+ : QObject( parent, name ), mAddressBook( ab )
+{
+}
+
+void SearchManager::search( const QString &pattern, const KABC::Field::List &fields, Type type )
+{
+ mPattern = pattern;
+ mFields = fields;
+ mType = type;
+
+ KABC::Addressee::List allContacts;
+ mContacts.clear();
+
+#if KDE_VERSION >= 319
+ KABC::AddresseeList list( mAddressBook->allAddressees() );
+ if ( !fields.isEmpty() )
+ list.sortByField( fields.first() );
+
+ allContacts = list;
+#else
+ KABC::AddressBook::ConstIterator abIt( mAddressBook->begin() );
+ const KABC::AddressBook::ConstIterator abEndIt( mAddressBook->end() );
+ for ( ; abIt != abEndIt; ++abIt )
+ allContacts.append( *abIt );
+#endif
+
+#ifdef KDEPIM_NEW_DISTRLISTS
+ // Extract distribution lists from allContacts
+ mDistributionLists.clear();
+ KABC::Addressee::List::Iterator rmIt( allContacts.begin() );
+ const KABC::Addressee::List::Iterator rmEndIt( allContacts.end() );
+ while ( rmIt != rmEndIt ) {
+ if ( KPIM::DistributionList::isDistributionList( *rmIt ) ) {
+ mDistributionLists.append( static_cast<KPIM::DistributionList>( *rmIt ) );
+ rmIt = allContacts.remove( rmIt );
+ } else
+ ++rmIt;
+ }
+
+ typedef KPIM::DistributionList::Entry Entry;
+ if ( !mSelectedDistributionList.isNull() ) {
+ const KPIM::DistributionList dl = KPIM::DistributionList::findByName( mAddressBook, mSelectedDistributionList );
+ if ( !dl.isEmpty() ) {
+ allContacts.clear();
+ const Entry::List entries = dl.entries( mAddressBook );
+ const Entry::List::ConstIterator end = entries.end();
+ for ( Entry::List::ConstIterator it = entries.begin(); it != end; ++it ) {
+ allContacts.append( (*it).addressee );
+ }
+ }
+ }
+
+#endif
+
+ if ( mPattern.isEmpty() ) { // no pattern, return all
+ mContacts = allContacts;
+
+ emit contactsUpdated();
+
+ return;
+ }
+
+ const KABC::Field::List fieldList = !mFields.isEmpty() ? mFields : KABC::Field::allFields();
+
+ KABC::Addressee::List::ConstIterator it( allContacts.begin() );
+ const KABC::Addressee::List::ConstIterator endIt( allContacts.end() );
+ for ( ; it != endIt; ++it ) {
+#ifdef KDEPIM_NEW_DISTRLISTS
+ if ( KPIM::DistributionList::isDistributionList( *it ) )
+ continue;
+#endif
+
+ bool found = false;
+ // search over all fields
+ KABC::Field::List::ConstIterator fieldIt( fieldList.begin() );
+ const KABC::Field::List::ConstIterator fieldEndIt( fieldList.end() );
+ for ( ; fieldIt != fieldEndIt; ++fieldIt ) {
+
+ if ( type == StartsWith && (*fieldIt)->value( *it ).startsWith( pattern, false ) ) {
+ mContacts.append( *it );
+ found = true;
+ break;
+ } else if ( type == EndsWith && (*fieldIt)->value( *it ).endsWith( pattern, false ) ) {
+ mContacts.append( *it );
+ found = true;
+ break;
+ } else if ( type == Contains && (*fieldIt)->value( *it ).find( pattern, 0, false ) != -1 ) {
+ mContacts.append( *it );
+ found = true;
+ break;
+ } else if ( type == Equals && (*fieldIt)->value( *it ).localeAwareCompare( pattern ) == 0 ) {
+ mContacts.append( *it );
+ found = true;
+ break;
+ }
+ }
+
+ if ( !found ) {
+ // search over custom fields
+ const QStringList customs = (*it).customs();
+
+ QStringList::ConstIterator customIt( customs.begin() );
+ const QStringList::ConstIterator customEndIt( customs.end() );
+ for ( ; customIt != customEndIt; ++customIt ) {
+ int pos = (*customIt).find( ':' );
+ if ( pos != -1 ) {
+ const QString value = (*customIt).mid( pos + 1 );
+ if ( type == StartsWith && value.startsWith( pattern, false ) ) {
+ mContacts.append( *it );
+ break;
+ } else if ( type == EndsWith && value.endsWith( pattern, false ) ) {
+ mContacts.append( *it );
+ break;
+ } else if ( type == Contains && value.find( pattern, 0, false ) != -1 ) {
+ mContacts.append( *it );
+ break;
+ } else if ( type == Equals && value.localeAwareCompare( pattern ) == 0 ) {
+ mContacts.append( *it );
+ break;
+ }
+ }
+ }
+ }
+ }
+
+ emit contactsUpdated();
+}
+
+KABC::Addressee::List SearchManager::contacts() const
+{
+ return mContacts;
+}
+
+void SearchManager::reload()
+{
+ search( mPattern, mFields, mType );
+}
+
+#ifdef KDEPIM_NEW_DISTRLISTS
+
+void KAB::SearchManager::setSelectedDistributionList( const QString &name )
+{
+ if ( mSelectedDistributionList == name )
+ return;
+ mSelectedDistributionList = name;
+ reload();
+}
+
+KPIM::DistributionList::List KAB::SearchManager::distributionLists() const
+{
+ return mDistributionLists;
+}
+
+QStringList KAB::SearchManager::distributionListNames() const
+{
+ QStringList lst;
+ KPIM::DistributionList::List::ConstIterator it( mDistributionLists.begin() );
+ const KPIM::DistributionList::List::ConstIterator endIt( mDistributionLists.end() );
+ for ( ; it != endIt; ++it ) {
+ lst.append( (*it).formattedName() );
+ }
+ return lst;
+}
+#endif
+
+#include "searchmanager.moc"