os/textandloc/textandlocutils/sortutil/src/SortUtil.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textandlocutils/sortutil/src/SortUtil.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,111 @@
     1.4 +/*
     1.5 +* Copyright (c) 2002-2008 Nokia Corporation and/or its subsidiary(-ies). 
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of the License "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:     
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +
    1.23 +
    1.24 +
    1.25 +
    1.26 +// INCLUDE FILES
    1.27 +#include <e32std.h>
    1.28 +#include "SortUtil.h"
    1.29 +
    1.30 +#ifdef __WINS__     
    1.31 +#include <featmgr.h>    
    1.32 +#ifndef KFeatureIdJapanese    
    1.33 +#define KFeatureIdJapanese 1080
    1.34 +#endif
    1.35 +#endif
    1.36 +
    1.37 +// LOCAL CONSTANTS AND MACROS
    1.38 +typedef MSortUtil* (*TSortUtilFactoryFunctionL)();
    1.39 +_LIT( KSortUtilImpl, "SortUtilImpl.dll" );
    1.40 +#ifdef __WINS__
    1.41 +_LIT( KSortUtilImplJapan, "SortUtilImplJapan.dll" );
    1.42 +_LIT( KSortUtilImplKorean, "SortUtilImplKorean.dll" );
    1.43 +#endif // __WINS__
    1.44 +
    1.45 +// -----------------------------------------------------------------------------
    1.46 +// CSortUtil::NewL()
    1.47 +// -----------------------------------------------------------------------------
    1.48 +//
    1.49 +EXPORT_C CSortUtil* CSortUtil::NewL()
    1.50 +    {
    1.51 +    CSortUtil* self = new( ELeave ) CSortUtil;
    1.52 +    CleanupStack::PushL( self );
    1.53 +    self->ConstructL();
    1.54 +    CleanupStack::Pop();
    1.55 +    return self;
    1.56 +    }
    1.57 +
    1.58 +// -----------------------------------------------------------------------------
    1.59 +// CSortUtil::~CSortUtil()
    1.60 +// -----------------------------------------------------------------------------
    1.61 +//
    1.62 +CSortUtil::~CSortUtil()
    1.63 +    {
    1.64 +    delete iInterface;
    1.65 +    iLib.Close();
    1.66 +    }
    1.67 +
    1.68 +// -----------------------------------------------------------------------------
    1.69 +// CSortUtil::CSortUtil()
    1.70 +// -----------------------------------------------------------------------------
    1.71 +//
    1.72 +CSortUtil::CSortUtil()
    1.73 +    {
    1.74 +    }
    1.75 +
    1.76 +// -----------------------------------------------------------------------------
    1.77 +// CSortUtil::ConstructL()
    1.78 +// -----------------------------------------------------------------------------
    1.79 +//
    1.80 +void CSortUtil::ConstructL()
    1.81 +    {
    1.82 +#ifdef __WINS__     
    1.83 +    FeatureManager::InitializeLibL();
    1.84 +    if ( FeatureManager::FeatureSupported( KFeatureIdJapanese ) )
    1.85 +        {
    1.86 +        // load polymorphic implementation DLL
    1.87 +        User::LeaveIfError( iLib.Load( KSortUtilImplJapan ) );
    1.88 +        }
    1.89 +#ifdef __KOREAN_SORT__
    1.90 +	else
    1.91 +        {
    1.92 +        // load polymorphic implementation DLL
    1.93 +        User::LeaveIfError( iLib.Load( KSortUtilImplKorean ) );
    1.94 +        }
    1.95 +#else
    1.96 +    else
    1.97 +        {
    1.98 +        // load polymorphic implementation DLL
    1.99 +        User::LeaveIfError( iLib.Load( KSortUtilImpl ) );
   1.100 +        }
   1.101 +#endif
   1.102 +    FeatureManager::UnInitializeLib();
   1.103 +#else    
   1.104 +
   1.105 +    // load polymorphic implementation DLL
   1.106 +    User::LeaveIfError( iLib.Load( KSortUtilImpl ) );
   1.107 +
   1.108 +#endif  // __WINS__
   1.109 +    
   1.110 +    iInterface = ( *(TSortUtilFactoryFunctionL)iLib.Lookup( 1 ) )();
   1.111 +    User::LeaveIfNull( iInterface );
   1.112 +    }
   1.113 +
   1.114 +// End of File