os/textandloc/textandlocutils/sortutil/src/SortUtilElaf.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:     
    15 *
    16 */
    17 
    18 
    19 
    20 
    21 
    22 
    23 // INCLUDE FILES
    24 #include "SortUtilElaf.h"
    25 #include "SortUtilImpl.h"
    26 #include "SortUtilImplExport.h"
    27 
    28 inline TSortUtilElaf::TSortUtilElaf()
    29     {
    30     }
    31 
    32 // Only export in DLL
    33 EXPORT_C MSortUtil* SortUtilFactoryFunctionL()
    34     {
    35     MSortUtil* util = new (ELeave) TSortUtilElaf;
    36     return util;
    37     }
    38 
    39 TSortUtilElaf::~TSortUtilElaf()
    40     {
    41     }
    42 
    43 TInt TSortUtilElaf::CompareItems
    44         (const MSortKeyArray& aLhs, 
    45         const MSortKeyArray& aRhs) const
    46     {
    47     TInt result = 0;
    48     TInt lhsIndex = 0;
    49     TInt rhsIndex = 0;
    50     do  
    51         {
    52         const TDesC& lhsText = 
    53             SortUtilImpl::FindNextNonEmptyKey(aLhs, ESortKeyBasic, lhsIndex);
    54         const TDesC& rhsText = 
    55             SortUtilImpl::FindNextNonEmptyKey(aRhs, ESortKeyBasic, rhsIndex);
    56         result = lhsText.CompareC(rhsText);
    57         if (result != 0)
    58             {
    59             return result;
    60             }
    61         }
    62     while (lhsIndex <= aLhs.SortKeyCount() && rhsIndex < aRhs.SortKeyCount());
    63     return result;
    64     }
    65 // End of file