sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
|
sl@0
|
17 |
|
sl@0
|
18 |
// INCLUDE FILES
|
sl@0
|
19 |
#include <featmgr/featurecontrol.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
// LOCAL CONSTANTS AND MACROS
|
sl@0
|
22 |
_LIT(KTxt,"featureuninstaller: mainL failed");
|
sl@0
|
23 |
|
sl@0
|
24 |
|
sl@0
|
25 |
// ============================= LOCAL FUNCTIONS ===============================
|
sl@0
|
26 |
|
sl@0
|
27 |
// -----------------------------------------------------------------------------
|
sl@0
|
28 |
// mainL
|
sl@0
|
29 |
// -----------------------------------------------------------------------------
|
sl@0
|
30 |
//
|
sl@0
|
31 |
LOCAL_C void mainL()
|
sl@0
|
32 |
{
|
sl@0
|
33 |
// Connect Feature Control
|
sl@0
|
34 |
RFeatureControl featureControl;
|
sl@0
|
35 |
User::LeaveIfError( featureControl.Open() );
|
sl@0
|
36 |
|
sl@0
|
37 |
// Example code disables an existing feature.
|
sl@0
|
38 |
// Comment or uncomment code when needed.
|
sl@0
|
39 |
|
sl@0
|
40 |
// Specify in your .pkg file:
|
sl@0
|
41 |
// @"featureuninstaller.sisx", (0x10283304)
|
sl@0
|
42 |
|
sl@0
|
43 |
//Replace UID 0x00000000 with real value
|
sl@0
|
44 |
TUid featureUid( TUid::Uid( 0x00000000 ) );
|
sl@0
|
45 |
|
sl@0
|
46 |
// Feature data is 32-bit quantity for client read and write. Feature data is
|
sl@0
|
47 |
// defined by owner of the feature and can contain for example flags,
|
sl@0
|
48 |
// enumeratons and/or integers.
|
sl@0
|
49 |
// Set feature data. Replace <featureData> with real value!
|
sl@0
|
50 |
// Uncomment when needed!
|
sl@0
|
51 |
// TUint32 featureData( 0x00000000 );
|
sl@0
|
52 |
|
sl@0
|
53 |
// Inform feature manager that your executable is launched by the software installer (SWI)
|
sl@0
|
54 |
// and it wishes to set, add, delete, enable or disable features in feature manager. This
|
sl@0
|
55 |
// function must be called before any API calls by RFeatureControl that add, set, delete
|
sl@0
|
56 |
// enable, or disable features so that changes in feature manager are cached to be rolled
|
sl@0
|
57 |
// back if the installationhas user-aborted or failed. Otherwise, feature manipulations will
|
sl@0
|
58 |
// be committed directly into feature manager and will not be possible to undo them in the
|
sl@0
|
59 |
// case of abort.
|
sl@0
|
60 |
// A call to SWIStart must be accompanied by a call to SWIEnd after all API calls by
|
sl@0
|
61 |
// RFeatureControl functions that manipulate features.
|
sl@0
|
62 |
User::LeaveIfError(featureControl.SWIStart());
|
sl@0
|
63 |
|
sl@0
|
64 |
// Disable an existing feature.
|
sl@0
|
65 |
User::LeaveIfError( featureControl.DisableFeature( featureUid ) );
|
sl@0
|
66 |
|
sl@0
|
67 |
// Inform feature manager that caching feature manipulations should stop and they should be
|
sl@0
|
68 |
// committed to feature manager.
|
sl@0
|
69 |
// A call to this API should follow the call to SWIStart before any RFeatureControl API calls
|
sl@0
|
70 |
// that manipulate features to feature manager.
|
sl@0
|
71 |
User::LeaveIfError(featureControl.SWIEnd());
|
sl@0
|
72 |
|
sl@0
|
73 |
// OR disable an exsiting feature and set feature data.
|
sl@0
|
74 |
// User::LeaveIfError( featureControl.SetFeature( featureUid, EFalse, featureData ) );
|
sl@0
|
75 |
|
sl@0
|
76 |
featureControl.Close();
|
sl@0
|
77 |
}
|
sl@0
|
78 |
// ============================ MEMBER FUNCTIONS ===============================
|
sl@0
|
79 |
|
sl@0
|
80 |
TInt E32Main() // main function called by E32
|
sl@0
|
81 |
{
|
sl@0
|
82 |
__UHEAP_MARK;
|
sl@0
|
83 |
CTrapCleanup* cleanup=CTrapCleanup::New(); // get clean-up stack
|
sl@0
|
84 |
TRAPD( error,mainL() ); // Run main method
|
sl@0
|
85 |
__ASSERT_ALWAYS( !error,User::Panic(KTxt,error) );
|
sl@0
|
86 |
delete cleanup; // destroy clean-up stack
|
sl@0
|
87 |
__UHEAP_MARKEND;
|
sl@0
|
88 |
return 0; // and return
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
// End of file
|