emailuis/emailui/src/FreestyleEmailUiCLSListsHandler.cpp
branchRCL_3
changeset 73 c8382f7b54ef
parent 70 968773a0b6ef
child 80 726fba06891a
--- a/emailuis/emailui/src/FreestyleEmailUiCLSListsHandler.cpp	Tue Sep 14 20:48:24 2010 +0300
+++ b/emailuis/emailui/src/FreestyleEmailUiCLSListsHandler.cpp	Wed Sep 15 11:52:37 2010 +0300
@@ -16,19 +16,17 @@
 */
 
 #include "emailtrace.h"
-#include <eikenv.h>									// CEikonEnv
-#include <centralrepository.h>						// CRepository
-#include <AknFepInternalCRKeys.h>					// KCRUidAknFep
-//<cmail>
-#include "cfsmailbox.h"								// cfsmailbox
-//</cmail>
+#include <eikenv.h>
+#include <centralrepository.h>
+#include <AknFepInternalCRKeys.h>
+#include "cfsmailbox.h"
 #include <CPsRequestHandler.h>
 #include <CPsSettings.h>
 #include <VPbkEng.rsg>
 
-#include "FreestyleEmailUiCLSListsHandler.h"		// CFSEmailUiClsListsHandler
-#include "FreestyleEMailUiCLSMatchObserverInterface.h"// CFSEmailUiClsContactMatchObserver
-#include "FreestyleEmailUiInputModeObserver.h"		// CFSEmailUiInputModeObserver
+#include "FreestyleEmailUiCLSListsHandler.h"
+#include "FreestyleEMailUiCLSMatchObserverInterface.h"
+#include "FreestyleEmailUiInputModeObserver.h"
 #include "FreestyleEmailUiUtilities.h"
 #include "FreestyleEmailUiCLSItem.h"
 
@@ -37,7 +35,7 @@
 // CFSEmailUiClsListsHandler::NewL
 // -----------------------------------------------------------------------------
 CFSEmailUiClsListsHandler* CFSEmailUiClsListsHandler::NewL( RFs& aFs,
-    CVPbkContactManager* aContactManager )
+        CVPbkContactManager* aContactManager )
 	{
     FUNC_LOG;
 	CFSEmailUiClsListsHandler* object = 
@@ -49,10 +47,12 @@
 // -----------------------------------------------------------------------------
 // CFSEmailUiClsListsHandler::NewLC
 // -----------------------------------------------------------------------------
-CFSEmailUiClsListsHandler* CFSEmailUiClsListsHandler::NewLC( RFs& aFs, CVPbkContactManager* aContactManager )
+CFSEmailUiClsListsHandler* CFSEmailUiClsListsHandler::NewLC( 
+        RFs& aFs, CVPbkContactManager* aContactManager )
 	{
     FUNC_LOG;
-	CFSEmailUiClsListsHandler* object = new (ELeave) CFSEmailUiClsListsHandler( aFs, aContactManager );
+	CFSEmailUiClsListsHandler* object = 
+	        new (ELeave) CFSEmailUiClsListsHandler( aFs, aContactManager );
 	CleanupStack::PushL( object );
 	object->ConstructL();
 	return object;
@@ -85,52 +85,55 @@
     const RPointerArray<CFSEmailUiClsItem>& aMatches )
 	{
     FUNC_LOG;
-	for( TInt i = 0 ; i < aMatches.Count() ; ++i )
+
+    TInt matchCount = aMatches.Count();
+	for( TInt i = 0 ; i < matchCount ; ++i )
 		{
-		if( aMatches[i]->IsMruItem() )
-			{
-			// If this is MRU item, we need to check that it doesn't 
-			// already exist in iMatchingCompleteContacts
-			TInt itemIndex = FindDuplicate( *aMatches[i], iMatchingCompleteContacts );
-			if( itemIndex == KErrNotFound )
-				{
-				iMatchingMRUContacts.AppendL( aMatches[i] );
-				}
-			
-			}
-		else if( aMatches[i]->EmailAddress().Length() > 0 )
-			{
-			// If this is Phonebook item, we need to check that it doesn't 
-			// already exist in iMatchingMRUContacts
-			TInt itemIndex = FindDuplicate( *aMatches[i], iMatchingMRUContacts );
-			if( itemIndex != KErrNotFound )
-				{
-				// Found, this needs to be removed from the MRU list
-				iMatchingMRUContacts.Remove( itemIndex );
-				}
-
-			// Phonebook items are always added to the top of the list
-			iMatchingCompleteContacts.AppendL( aMatches[i] );
-			}
-		else
-			{
-			// No email, nothing to compare, so add this always to the end of the list
-			iMatchingMissingEmailContacts.AppendL( aMatches[i] );
-			}
-		}
-		
-    RPointerArray<CFSEmailUiClsItem> allMatches = ConstructOneListL( iMatchingCompleteContacts,
-                                                                      iMatchingMRUContacts,
-                                                                      iMatchingMissingEmailContacts );
+        if( aMatches[i]->IsMruItem() )
+            {
+            // MRU items are added to iMatchingMRUContacts and any already
+            // added duplicate is removed from iMatchingCompleteContacts
+            iMatchingMRUContacts.AppendL( aMatches[i] );
+            TInt itemIndex = FindDuplicate( *aMatches[i], 
+                    iMatchingCompleteContacts );
+            if ( KErrNotFound != itemIndex )
+                {
+                iMatchingCompleteContacts.Remove( itemIndex );
+                }
+            }
+        else if( aMatches[i]->EmailAddress().Length() > 0 )
+            {
+            // For Phonebook items, it is checked that it there doesn't 
+            // already exist a duplicate in iMatchingMRUContacts
+            if( KErrNotFound == 
+                FindDuplicate( *aMatches[i], iMatchingMRUContacts ) )
+                {
+                // No duplicate in iMatchingMRUContacts, 
+                // this can be appended to iMatchingCompleteContacts
+                iMatchingCompleteContacts.AppendL( aMatches[i] );
+                }
+            }
+        else
+            {
+            // No email, add always to the end of the list
+            iMatchingMissingEmailContacts.AppendL( aMatches[i] );
+            }
+        }
+	
+    RPointerArray<CFSEmailUiClsItem> allMatches = 
+            ConstructOneListL( iMatchingCompleteContacts,
+                               iMatchingMRUContacts,
+                               iMatchingMissingEmailContacts );
     CleanupResetAndDestroyClosePushL( allMatches ); // Ownership is taken
     iClsListObserver->ArrayUpdatedL( allMatches ); 
-    CleanupStack::PopAndDestroy(&allMatches ); // Array is released, destructors are called 
+    CleanupStack::PopAndDestroy( &allMatches ); 
     }
 
 // -----------------------------------------------------------------------------
 // CFSEmailUiClsListsHandler::InputModeChangedL
 // -----------------------------------------------------------------------------
-void CFSEmailUiClsListsHandler::InputModeChangedL( TKeyboardModes aNewInputMode )
+void CFSEmailUiClsListsHandler::InputModeChangedL( 
+        TKeyboardModes aNewInputMode )
 	{
     FUNC_LOG;
 	iPcsMatchObserver->SetInputMode( aNewInputMode );
@@ -168,7 +171,8 @@
 // -----------------------------------------------------------------------------
 // CFSEmailUiClsListsHandler::CFSEmailUiClsListsHandler
 // -----------------------------------------------------------------------------
-CFSEmailUiClsListsHandler::CFSEmailUiClsListsHandler( RFs& aFs, CVPbkContactManager* aContactManager ) :
+CFSEmailUiClsListsHandler::CFSEmailUiClsListsHandler( 
+        RFs& aFs, CVPbkContactManager* aContactManager ) :
 	iContactManager( aContactManager ),
 	iClsListObserver( NULL ), 
 	iFs( aFs ),
@@ -185,20 +189,19 @@
 void CFSEmailUiClsListsHandler::ConstructL()
 	{
     FUNC_LOG;
-	iRequestHandler = CPSRequestHandler::NewL();
-    
+	iRequestHandler = CPSRequestHandler::NewL();  
 	iAknFepCenRep = CRepository::NewL( KCRUidAknFep );
-	
-	iPcsMatchObserver = CFSEmailUiClsMatchObserver::NewL( *iAknFepCenRep, *this, *iRequestHandler, iContactManager );
+	iPcsMatchObserver = CFSEmailUiClsMatchObserver::NewL( 
+	        *iAknFepCenRep, *this, *iRequestHandler, iContactManager );
 	SetSearchSettingsForPcsMatchObserverL();
 	
     // Monitors inputMode changes (predictive vs. non-predictive
 	iInputObserver = CFSEmailUiInputModeObserver::NewL( *iAknFepCenRep, *this );
 
 	if( !iSearchedText )
+	    {
 		iSearchedText = KNullDesC().AllocL();
-	
-    //iRemoteLookupSupported = TFsEmailUiUtility::IsRemoteLookupSupported( *iMailBox );
+	    }
     }
 
 // -----------------------------------------------------------------------------
@@ -215,19 +218,24 @@
 // -----------------------------------------------------------------------------
 // CFSEmailUiClsListsHandler::ReadCLSInfoFromMRUListIndexL
 // -----------------------------------------------------------------------------
-TBool CFSEmailUiClsListsHandler::ReadCLSInfoFromMRUListIndexL( MDesCArray& aTextArray,
-										CFSEmailUiClsItem& aClsItem,
-										const TInt aCurrentMatchIndex, const TInt aPreviousMatchIndex )
+TBool CFSEmailUiClsListsHandler::ReadCLSInfoFromMRUListIndexL( 
+        MDesCArray& aTextArray,
+        CFSEmailUiClsItem& aClsItem,
+        TInt aCurrentMatchIndex, 
+        TInt aPreviousMatchIndex )
 	{
     FUNC_LOG;
 	TBool retVal = EFalse;	
 	// This should be even number
-	TInt currentRealItemIndex = aCurrentMatchIndex - ( aCurrentMatchIndex % 2 );
+	TInt currentRealItemIndex = 
+	        aCurrentMatchIndex - ( aCurrentMatchIndex % 2 );
 	// Here we need to check if match is found both from the display name and email address 
 	if( currentRealItemIndex != aPreviousMatchIndex )
 		{
-		aClsItem.SetDisplayNameL( aTextArray.MdcaPoint( currentRealItemIndex )  );
-		aClsItem.SetEmailAddressL( aTextArray.MdcaPoint( currentRealItemIndex + 1 )  );
+		aClsItem.SetDisplayNameL( 
+		        aTextArray.MdcaPoint( currentRealItemIndex ) );
+		aClsItem.SetEmailAddressL( 
+		        aTextArray.MdcaPoint( currentRealItemIndex + 1 ) );
 		retVal = ETrue;
 		}
 	return retVal;
@@ -237,8 +245,9 @@
 // -----------------------------------------------------------------------------
 // CFSEmailUiClsListsHandler::FindAndDestroyDuplicate
 // -----------------------------------------------------------------------------
-TInt CFSEmailUiClsListsHandler::FindDuplicate( const CFSEmailUiClsItem& aClsItem,
-		  RPointerArray<CFSEmailUiClsItem>& aContacts )
+TInt CFSEmailUiClsListsHandler::FindDuplicate( 
+        const CFSEmailUiClsItem& aClsItem,
+        RPointerArray<CFSEmailUiClsItem>& aContacts )
 	{
     FUNC_LOG;
 	// find duplicate email addresses from aContacts
@@ -261,35 +270,38 @@
 // CFSEmailUiClsListsHandler::ConstructOneListL
 // -----------------------------------------------------------------------------
 RPointerArray<CFSEmailUiClsItem> CFSEmailUiClsListsHandler::ConstructOneListL( 
-								const RPointerArray<CFSEmailUiClsItem>& aContactMatchesWithEmail,
-								const RPointerArray<CFSEmailUiClsItem>& aMRUMatches,
-								const RPointerArray<CFSEmailUiClsItem>& aContactMatchesWithoutEmail )
+        const RPointerArray<CFSEmailUiClsItem>& aContactMatchesWithEmail,
+        const RPointerArray<CFSEmailUiClsItem>& aMRUMatches,
+        const RPointerArray<CFSEmailUiClsItem>& aContactMatchesWithoutEmail )
 	{
     FUNC_LOG;
 	RPointerArray<CFSEmailUiClsItem> allMatches;
 	CleanupResetAndDestroyClosePushL( allMatches );
 	
 	// Copy all the objects from three other lists to the all matches list
+   TInt matchingMRUItemsCount = aMRUMatches.Count();
+    for ( TInt i = 0 ; i < matchingMRUItemsCount ; i++ )
+        {
+        CFSEmailUiClsItem* newClsItem = CopyClsItemLC( *aMRUMatches[i] );
+        allMatches.AppendL( newClsItem );
+        CleanupStack::Pop( newClsItem );
+        }
+
 	TInt matchingComleteItemsCount = aContactMatchesWithEmail.Count();
 	for( TInt i = 0 ; i <  matchingComleteItemsCount; i++ )
 		{
-		CFSEmailUiClsItem* newClsItem = CopyClsItemLC( *aContactMatchesWithEmail[i] );
+		CFSEmailUiClsItem* newClsItem = 
+		        CopyClsItemLC( *aContactMatchesWithEmail[i] );
 		allMatches.AppendL( newClsItem );
 		CleanupStack::Pop( newClsItem );
 		}
 
-	TInt matchingMRUItemsCount = aMRUMatches.Count();
-	for ( TInt i = 0 ; i < matchingMRUItemsCount ; i++ )
-		{
-		CFSEmailUiClsItem* newClsItem = CopyClsItemLC( *aMRUMatches[i] );
-		allMatches.AppendL( newClsItem );
-		CleanupStack::Pop( newClsItem );
-		}
-
-	TInt mathingContactItemsWithoutEmailCount = aContactMatchesWithoutEmail.Count();
+	TInt mathingContactItemsWithoutEmailCount = 
+	        aContactMatchesWithoutEmail.Count();
 	for( TInt i = 0 ; i < mathingContactItemsWithoutEmailCount ; i++ )
 		{
-		CFSEmailUiClsItem* newClsItem = CopyClsItemLC( *aContactMatchesWithoutEmail[i] );
+		CFSEmailUiClsItem* newClsItem = 
+		        CopyClsItemLC( *aContactMatchesWithoutEmail[i] );
 		allMatches.AppendL( newClsItem );
 		CleanupStack::Pop( newClsItem );
 		}
@@ -306,15 +318,15 @@
     FUNC_LOG;
     // Create predictive search settings
     CPsSettings* searchSettings = CPsSettings::NewL();
-    CleanupStack::PushL(searchSettings);
+    CleanupStack::PushL( searchSettings );
 
     RPointerArray<TDesC> databases;
-    CleanupClosePushL(databases);
+    CleanupClosePushL( databases );
 
-    HBufC* store1 = HBufC::NewLC(50);
-    store1->Des().Copy( KVPbkDefaultCntDbURI ); // To specify phone contacts store
+    HBufC* store1 = HBufC::NewLC( 50 );
+    store1->Des().Copy( KVPbkDefaultCntDbURI ); // Phone contacts store
     
-    databases.AppendL(store1);
+    databases.AppendL( store1 );
     HBufC* store2 = NULL;
     if ( iMailBox )
         {
@@ -322,7 +334,7 @@
         GetMruDatastoreUriFromMailbox( *iMailBox, *store2 );
         databases.AppendL( store2 );
         }
-    searchSettings->SetSearchUrisL(databases);
+    searchSettings->SetSearchUrisL( databases );
 
     // Set displayfields according to sort order
     RArray<TInt> sortOrder;
@@ -330,7 +342,8 @@
     iRequestHandler->GetSortOrderL( *store1, sortOrder );
     if ( sortOrder.Count() )
         {
-        iUseLastNameFirstOrder = ( sortOrder[0] == R_VPBK_FIELD_TYPE_LASTNAME );
+        iUseLastNameFirstOrder = 
+                ( sortOrder[0] == R_VPBK_FIELD_TYPE_LASTNAME );
         }
     else
         {
@@ -338,8 +351,14 @@
         }
     RArray<TInt> displayFields( 6 );
     CleanupClosePushL( displayFields );
-    displayFields.AppendL( sortOrder[0] );
-    if ( sortOrder.Count() >= 1 ) displayFields.AppendL( sortOrder[1] );
+    if ( sortOrder.Count() ) 
+        {
+        displayFields.AppendL( sortOrder[0] );
+        }
+    if ( sortOrder.Count() >= 1 ) 
+        {
+        displayFields.AppendL( sortOrder[1] );
+        }
     displayFields.AppendL( R_VPBK_FIELD_TYPE_EMAILGEN );
     displayFields.AppendL( R_VPBK_FIELD_TYPE_EMAILHOME );
     displayFields.AppendL( R_VPBK_FIELD_TYPE_EMAILWORK );
@@ -349,26 +368,22 @@
     displayFields.Close();
     sortOrder.Close();
 
-    // Set maximum for search results
-    //How many results is shown on the screen??
-    //searchSettings->SetMaxResults(const TInt aMaxResults);
-
     // Set the new search settings
-    iRequestHandler->SetSearchSettingsL(*searchSettings);	
+    iRequestHandler->SetSearchSettingsL( *searchSettings );	
 
     if ( store2 )
         {
-        CleanupStack::PopAndDestroy(store2);
+        CleanupStack::PopAndDestroy( store2 );
         }
-    CleanupStack::PopAndDestroy(store1);
-    CleanupStack::Pop(&databases);
+    CleanupStack::PopAndDestroy( store1 );
+    CleanupStack::Pop( &databases );
     databases.Close();
-    CleanupStack::PopAndDestroy(searchSettings);
+    CleanupStack::PopAndDestroy( searchSettings );
 
 	}
 
 // -----------------------------------------------------------------------------
-// CFSEmailUiClsListsHandler::isLanguageSupported()
+// CFSEmailUiClsListsHandler::IsLanguageSupported()
 // -----------------------------------------------------------------------------
 TBool CFSEmailUiClsListsHandler::IsLanguageSupportedL()
 	{
@@ -377,10 +392,14 @@
 	TLanguage lang = User::Language();
 
 	// Check for language support
-	return iRequestHandler->IsLanguageSupportedL(lang);
+	return iRequestHandler->IsLanguageSupportedL( lang );
 	}
 
-void CFSEmailUiClsListsHandler::GetMruDatastoreUriFromMailbox( CFSMailBox& aMailbox, HBufC& aUri )
+// -----------------------------------------------------------------------------
+// CFSEmailUiClsListsHandler::GetMruDatastoreUriFromMailbox()
+// -----------------------------------------------------------------------------
+void CFSEmailUiClsListsHandler::GetMruDatastoreUriFromMailbox( 
+        CFSMailBox& aMailbox, HBufC& aUri )
 	{
     FUNC_LOG;
 	aUri.Des().Copy( KDefaultMailBoxURI );
@@ -389,12 +408,19 @@
 	aUri.Des().AppendNum( aMailbox.GetId().Id() );
 	}
 
-void CFSEmailUiClsListsHandler::SetObserver( MFSEmailUiClsListsObserver* aClsListObserver )
+// -----------------------------------------------------------------------------
+// CFSEmailUiClsListsHandler::SetObserver()
+// -----------------------------------------------------------------------------
+void CFSEmailUiClsListsHandler::SetObserver( 
+        MFSEmailUiClsListsObserver* aClsListObserver )
     {
     FUNC_LOG;
     iClsListObserver = aClsListObserver;
     }
 
+// -----------------------------------------------------------------------------
+// CFSEmailUiClsListsHandler::SetCurrentMailboxL()
+// -----------------------------------------------------------------------------
 void CFSEmailUiClsListsHandler::SetCurrentMailboxL( CFSMailBox* aMailBox )
     {
     FUNC_LOG;
@@ -417,12 +443,18 @@
     	}
     }
 
+// -----------------------------------------------------------------------------
+// CFSEmailUiClsListsHandler::OperationErrorL()
+// -----------------------------------------------------------------------------
 void CFSEmailUiClsListsHandler::OperationErrorL( TInt aErrorCode )
 	{
     FUNC_LOG;
 	iClsListObserver->OperationErrorL( aErrorCode );
 	}
 
+// -----------------------------------------------------------------------------
+// CFSEmailUiClsListsHandler::UseLastNameFirstOrder()
+// -----------------------------------------------------------------------------
 TBool CFSEmailUiClsListsHandler::UseLastNameFirstOrder()
     {
     FUNC_LOG;