os/textandloc/textandlocutils/sortutil/src/SortUtil.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-2008 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 <e32std.h>
    25 #include "SortUtil.h"
    26 
    27 #ifdef __WINS__     
    28 #include <featmgr.h>    
    29 #ifndef KFeatureIdJapanese    
    30 #define KFeatureIdJapanese 1080
    31 #endif
    32 #endif
    33 
    34 // LOCAL CONSTANTS AND MACROS
    35 typedef MSortUtil* (*TSortUtilFactoryFunctionL)();
    36 _LIT( KSortUtilImpl, "SortUtilImpl.dll" );
    37 #ifdef __WINS__
    38 _LIT( KSortUtilImplJapan, "SortUtilImplJapan.dll" );
    39 _LIT( KSortUtilImplKorean, "SortUtilImplKorean.dll" );
    40 #endif // __WINS__
    41 
    42 // -----------------------------------------------------------------------------
    43 // CSortUtil::NewL()
    44 // -----------------------------------------------------------------------------
    45 //
    46 EXPORT_C CSortUtil* CSortUtil::NewL()
    47     {
    48     CSortUtil* self = new( ELeave ) CSortUtil;
    49     CleanupStack::PushL( self );
    50     self->ConstructL();
    51     CleanupStack::Pop();
    52     return self;
    53     }
    54 
    55 // -----------------------------------------------------------------------------
    56 // CSortUtil::~CSortUtil()
    57 // -----------------------------------------------------------------------------
    58 //
    59 CSortUtil::~CSortUtil()
    60     {
    61     delete iInterface;
    62     iLib.Close();
    63     }
    64 
    65 // -----------------------------------------------------------------------------
    66 // CSortUtil::CSortUtil()
    67 // -----------------------------------------------------------------------------
    68 //
    69 CSortUtil::CSortUtil()
    70     {
    71     }
    72 
    73 // -----------------------------------------------------------------------------
    74 // CSortUtil::ConstructL()
    75 // -----------------------------------------------------------------------------
    76 //
    77 void CSortUtil::ConstructL()
    78     {
    79 #ifdef __WINS__     
    80     FeatureManager::InitializeLibL();
    81     if ( FeatureManager::FeatureSupported( KFeatureIdJapanese ) )
    82         {
    83         // load polymorphic implementation DLL
    84         User::LeaveIfError( iLib.Load( KSortUtilImplJapan ) );
    85         }
    86 #ifdef __KOREAN_SORT__
    87 	else
    88         {
    89         // load polymorphic implementation DLL
    90         User::LeaveIfError( iLib.Load( KSortUtilImplKorean ) );
    91         }
    92 #else
    93     else
    94         {
    95         // load polymorphic implementation DLL
    96         User::LeaveIfError( iLib.Load( KSortUtilImpl ) );
    97         }
    98 #endif
    99     FeatureManager::UnInitializeLib();
   100 #else    
   101 
   102     // load polymorphic implementation DLL
   103     User::LeaveIfError( iLib.Load( KSortUtilImpl ) );
   104 
   105 #endif  // __WINS__
   106     
   107     iInterface = ( *(TSortUtilFactoryFunctionL)iLib.Lookup( 1 ) )();
   108     User::LeaveIfNull( iInterface );
   109     }
   110 
   111 // End of File