predictivesearch/PcsAlgorithm/Algorithm2/inc/CPcsAlgorithm2Utils.h
branchRCL_3
changeset 63 f4a778e096c2
child 64 c1e8ba0c2b16
child 68 9da50d567e3c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/predictivesearch/PcsAlgorithm/Algorithm2/inc/CPcsAlgorithm2Utils.h	Wed Sep 01 12:29:52 2010 +0100
@@ -0,0 +1,115 @@
+/*
+* Copyright (c) 2006-2007 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  Identifies a contact in cache pools
+*
+*/
+
+#ifndef C_PCS_ALGORITHM_2_UTILS
+#define C_PCS_ALGORITHM_2_UTILS
+
+// INCLUDE FILES
+
+#include <e32base.h>
+
+// FORWARD DECLARATION
+class CPsData;
+class CPsQuery;
+struct TPsMatchLocation;
+
+typedef RPointerArray<CPsData> CPSDATA_R_PTR_ARRAY;
+
+// CLASS DECLARATION
+class CPcsAlgorithm2Utils : public CBase
+    {
+public:
+
+    /**
+     * Merge function to merge the search results from different arrays
+     * into a single array in sorted order.
+     * It merges all the result sets that are there in iSearchResultsArr
+     * into single result set. This is a wrapper funciton implemented that
+     * works for all type of key board modes
+     */
+    static void FormCompleteSearchResultsL(RPointerArray<CPSDATA_R_PTR_ARRAY>& aSearchResultsArr,
+                                           RPointerArray<CPsData>& aSearchResults);
+
+    /**
+     * Customized CompareC
+     */
+    static TInt MyCompareC(const TDesC& aLeft, const TDesC& aRight);
+
+    /**
+     * TLinearOrder rule for comparison of data objects
+     */
+    static TInt CompareDataBySortOrder(const CPsData& aObject1, const CPsData& aObject2);
+
+    /**
+     * TIdentityRelation rule for comparing descriptors case-sensitively.
+     */
+    static TBool CompareExact(const TDesC& aFirst, const TDesC& aSecond);
+
+    /**
+     * TLinearOrder rule for comparing queries by length
+     */
+    static TInt CompareLength(const CPsQuery& aFirst, const CPsQuery& aSecond);
+
+    /**
+     * Trim off all white spaces and special chars
+     */
+    static void MyTrim(TDes& aString);
+
+    /**
+     * Check if the input URI is of contact search in a group template form
+     */
+    static TBool IsGroupUri(TDesC& aURI);
+    
+    /**
+     * Constructs a bit pattern using the required/supported data fields
+     * For example, 6, 4 and 27 are supported fields <-- 00000111
+     *              6 and 4 are required fields      <-- 00000011
+     * Bit pattern returned is 00000011.
+     */
+    static TUint8 FilterDataFieldsL(const RArray<TInt>& aRequiredDataFields,
+                                    const RArray<TInt>& aSupportedDataFields);
+    
+    /**
+     * Create upper-case match sequence buffer from matching part and append it to
+     * array unless there's equal sequence already present.
+     */
+    static void AppendMatchToSeqL( RPointerArray<TDesC>& aMatchSeq, const TDesC& aMatch );
+    
+    /**
+     * Check if two match location items have overlapping indices.
+     */
+    static TBool MatchesOverlap( const TPsMatchLocation& aFirst, const TPsMatchLocation& aSecond );
+    };
+
+
+// CleanupStack helpers for item owning RPointerArrays
+template <class T>
+class CleanupResetAndDestroy
+    {
+public:
+    inline static void PushL(T& aRef)
+        { CleanupStack::PushL(TCleanupItem(&ResetAndDestroy,&aRef)); }
+private:
+    inline static void ResetAndDestroy(TAny *aPtr)
+        { static_cast<T*>(aPtr)->ResetAndDestroy(); }
+    };
+
+template <class T>
+inline void CleanupResetAndDestroyPushL(T& aRef)
+    { CleanupResetAndDestroy<T>::PushL(aRef); }
+
+#endif // C_PCS_ALGORITHM_2_UTILS