sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2002-2008 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
// INCLUDE FILES
|
sl@0
|
24 |
#include <e32std.h>
|
sl@0
|
25 |
#include "SortUtil.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
#ifdef __WINS__
|
sl@0
|
28 |
#include <featmgr.h>
|
sl@0
|
29 |
#ifndef KFeatureIdJapanese
|
sl@0
|
30 |
#define KFeatureIdJapanese 1080
|
sl@0
|
31 |
#endif
|
sl@0
|
32 |
#endif
|
sl@0
|
33 |
|
sl@0
|
34 |
// LOCAL CONSTANTS AND MACROS
|
sl@0
|
35 |
typedef MSortUtil* (*TSortUtilFactoryFunctionL)();
|
sl@0
|
36 |
_LIT( KSortUtilImpl, "SortUtilImpl.dll" );
|
sl@0
|
37 |
#ifdef __WINS__
|
sl@0
|
38 |
_LIT( KSortUtilImplJapan, "SortUtilImplJapan.dll" );
|
sl@0
|
39 |
_LIT( KSortUtilImplKorean, "SortUtilImplKorean.dll" );
|
sl@0
|
40 |
#endif // __WINS__
|
sl@0
|
41 |
|
sl@0
|
42 |
// -----------------------------------------------------------------------------
|
sl@0
|
43 |
// CSortUtil::NewL()
|
sl@0
|
44 |
// -----------------------------------------------------------------------------
|
sl@0
|
45 |
//
|
sl@0
|
46 |
EXPORT_C CSortUtil* CSortUtil::NewL()
|
sl@0
|
47 |
{
|
sl@0
|
48 |
CSortUtil* self = new( ELeave ) CSortUtil;
|
sl@0
|
49 |
CleanupStack::PushL( self );
|
sl@0
|
50 |
self->ConstructL();
|
sl@0
|
51 |
CleanupStack::Pop();
|
sl@0
|
52 |
return self;
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
// -----------------------------------------------------------------------------
|
sl@0
|
56 |
// CSortUtil::~CSortUtil()
|
sl@0
|
57 |
// -----------------------------------------------------------------------------
|
sl@0
|
58 |
//
|
sl@0
|
59 |
CSortUtil::~CSortUtil()
|
sl@0
|
60 |
{
|
sl@0
|
61 |
delete iInterface;
|
sl@0
|
62 |
iLib.Close();
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
// -----------------------------------------------------------------------------
|
sl@0
|
66 |
// CSortUtil::CSortUtil()
|
sl@0
|
67 |
// -----------------------------------------------------------------------------
|
sl@0
|
68 |
//
|
sl@0
|
69 |
CSortUtil::CSortUtil()
|
sl@0
|
70 |
{
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
// -----------------------------------------------------------------------------
|
sl@0
|
74 |
// CSortUtil::ConstructL()
|
sl@0
|
75 |
// -----------------------------------------------------------------------------
|
sl@0
|
76 |
//
|
sl@0
|
77 |
void CSortUtil::ConstructL()
|
sl@0
|
78 |
{
|
sl@0
|
79 |
#ifdef __WINS__
|
sl@0
|
80 |
FeatureManager::InitializeLibL();
|
sl@0
|
81 |
if ( FeatureManager::FeatureSupported( KFeatureIdJapanese ) )
|
sl@0
|
82 |
{
|
sl@0
|
83 |
// load polymorphic implementation DLL
|
sl@0
|
84 |
User::LeaveIfError( iLib.Load( KSortUtilImplJapan ) );
|
sl@0
|
85 |
}
|
sl@0
|
86 |
#ifdef __KOREAN_SORT__
|
sl@0
|
87 |
else
|
sl@0
|
88 |
{
|
sl@0
|
89 |
// load polymorphic implementation DLL
|
sl@0
|
90 |
User::LeaveIfError( iLib.Load( KSortUtilImplKorean ) );
|
sl@0
|
91 |
}
|
sl@0
|
92 |
#else
|
sl@0
|
93 |
else
|
sl@0
|
94 |
{
|
sl@0
|
95 |
// load polymorphic implementation DLL
|
sl@0
|
96 |
User::LeaveIfError( iLib.Load( KSortUtilImpl ) );
|
sl@0
|
97 |
}
|
sl@0
|
98 |
#endif
|
sl@0
|
99 |
FeatureManager::UnInitializeLib();
|
sl@0
|
100 |
#else
|
sl@0
|
101 |
|
sl@0
|
102 |
// load polymorphic implementation DLL
|
sl@0
|
103 |
User::LeaveIfError( iLib.Load( KSortUtilImpl ) );
|
sl@0
|
104 |
|
sl@0
|
105 |
#endif // __WINS__
|
sl@0
|
106 |
|
sl@0
|
107 |
iInterface = ( *(TSortUtilFactoryFunctionL)iLib.Lookup( 1 ) )();
|
sl@0
|
108 |
User::LeaveIfNull( iInterface );
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
// End of File
|