summaryrefslogtreecommitdiffstats
path: root/plugins/contacts/symbian/contactsmodel/cntplsql/src/cpplgroupstable.cpp
diff options
context:
space:
mode:
authorIlya Sinitsyn <Ilya.Sinitsyn@nokia.com>2011-05-18 09:59:55 +0300
committerIlya Sinitsyn <Ilya.Sinitsyn@nokia.com>2011-05-18 09:59:55 +0300
commit1bbaa48ecae658c2cb56c30228166a16131d0bc5 (patch)
treef6304779f70be60c9926aaa802deb0deedc26a74 /plugins/contacts/symbian/contactsmodel/cntplsql/src/cpplgroupstable.cpp
parent46b77e9b98a63def33fd0edfafb83ad5d4d223f1 (diff)
symbian contacts model: removing batch contacts deletion operation
Diffstat (limited to 'plugins/contacts/symbian/contactsmodel/cntplsql/src/cpplgroupstable.cpp')
-rw-r--r--plugins/contacts/symbian/contactsmodel/cntplsql/src/cpplgroupstable.cpp76
1 files changed, 0 insertions, 76 deletions
diff --git a/plugins/contacts/symbian/contactsmodel/cntplsql/src/cpplgroupstable.cpp b/plugins/contacts/symbian/contactsmodel/cntplsql/src/cpplgroupstable.cpp
index d0c654a652..7b93666798 100644
--- a/plugins/contacts/symbian/contactsmodel/cntplsql/src/cpplgroupstable.cpp
+++ b/plugins/contacts/symbian/contactsmodel/cntplsql/src/cpplgroupstable.cpp
@@ -21,8 +21,6 @@
const TInt KArrayGranularity = 4;
-//max amount of contacts deleted in one go
-const TInt KDeleteBatchSize = 200;
/**
@param aDatabase A handle to the database.
@@ -231,80 +229,6 @@ void CPplGroupsTable::DeleteL(const CContactItem& aItem, TBool& aLowDiskErrorOcc
}
/**
-Deletes group informations related to passed contact items from group table
-
-@param aIdArray contact items ids
-*/
-void CPplGroupsTable::DeleteMultipleContactsL(const CContactIdArray* aIdArray)
- {
- _LIT(KDeleteQueryPart1, "DELETE FROM groups WHERE contact_group_id IN (");
- _LIT(KDeleteQueryPart2, " OR contact_group_member_id IN (");
- TInt count = aIdArray->Count();
- bool allContactsProcessed = false;
- TInt round = 0;
- while (!allContactsProcessed)
- {
- RBuf deleteQuery;
- deleteQuery.CreateL(KDeleteQueryPart1().Length());
- CleanupClosePushL(deleteQuery);
- deleteQuery.Copy(KDeleteQueryPart1);
- TInt startValue = round*KDeleteBatchSize;
- TInt endValue = (round+1)*KDeleteBatchSize < count ? (round+1)*KDeleteBatchSize : count;
- for (TInt j = startValue; j < endValue; j++)
- {
- //add all contact ids to the delete query
- TContactItemId id = aIdArray->operator[](j);
- TBuf<16> number;
- number.Num(id);
- deleteQuery.ReAllocL(deleteQuery.Length() + number.Length() + 1); //1 is for comma or
- //closing bracket
- deleteQuery.Append(number);
- if (j < endValue - 1)
- {
- //last id doesn't need a comma afterwards
- deleteQuery.Append(',');
- }
- else
- {
- deleteQuery.Append(')');
- }
- }
-
- deleteQuery.ReAllocL(deleteQuery.Length() + KDeleteQueryPart2().Length());
- deleteQuery.Append(KDeleteQueryPart2);
- for (TInt k = startValue; k < endValue; k++)
- {
- //add all contact ids to the delete query
- TContactItemId id = aIdArray->operator[](k);
- TBuf<16> number;
- number.Num(id);
- deleteQuery.ReAllocL(deleteQuery.Length() + number.Length() + 1); //1 is for comma or
- //closing bracket
- deleteQuery.Append(number);
- if (k < endValue - 1)
- {
- //last id doesn't need a comma afterwards
- deleteQuery.Append(',');
- }
- else
- {
- deleteQuery.Append(')');
- }
- }
-
- TInt err = iDatabase.Exec(deleteQuery);
- User::LeaveIfError(err);
- CleanupStack::PopAndDestroy(&deleteQuery);
-
- round++;
- if (endValue == count)
- {
- allContactsProcessed = true;
- }
- }
- }
-
-/**
Creates the groups table and its indexes in the database.
*/
void CPplGroupsTable::CreateTableL()