sl@0
|
1 |
#!perl -w
|
sl@0
|
2 |
# Copyright (c) 2007-2009 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 "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 |
# This simple script shows how to modify the content of a feature manager
|
sl@0
|
16 |
# data file.
|
sl@0
|
17 |
#
|
sl@0
|
18 |
#
|
sl@0
|
19 |
|
sl@0
|
20 |
use strict;
|
sl@0
|
21 |
use FMCreate;
|
sl@0
|
22 |
|
sl@0
|
23 |
#
|
sl@0
|
24 |
# Hardwire the datafile - this is only an example.
|
sl@0
|
25 |
#
|
sl@0
|
26 |
my $datfile = "features.dat";
|
sl@0
|
27 |
my $datfile2 = "features2.dat";
|
sl@0
|
28 |
my $datfile3 = "features3.dat";
|
sl@0
|
29 |
|
sl@0
|
30 |
#
|
sl@0
|
31 |
# Create an object that represents a feature data file.
|
sl@0
|
32 |
#
|
sl@0
|
33 |
my $fmc = FMCreate->new();
|
sl@0
|
34 |
|
sl@0
|
35 |
#
|
sl@0
|
36 |
# Load the content of the data file into our FMCreate object.
|
sl@0
|
37 |
# Note that this will die if the content does not seem to be a feature set
|
sl@0
|
38 |
# file. This can happen if the first four bytes aren't 'feat' or if reading
|
sl@0
|
39 |
# the file fails at any point. This will also happen if the file is the wrong
|
sl@0
|
40 |
# size.
|
sl@0
|
41 |
#
|
sl@0
|
42 |
$fmc->LoadUp($datfile) or die "Failed to load up data from '$datfile'\n";
|
sl@0
|
43 |
|
sl@0
|
44 |
#
|
sl@0
|
45 |
# Get feature flag '0x10000009'
|
sl@0
|
46 |
#
|
sl@0
|
47 |
my $ffuid = 0x10000009;
|
sl@0
|
48 |
my $ff = $fmc->GetFeatureFlagByUID($ffuid);
|
sl@0
|
49 |
if(ref($ff) ne "FeatureFlag")
|
sl@0
|
50 |
{
|
sl@0
|
51 |
printf "Couldn't get feature flag uid 0x%0x from file $datfile\n";
|
sl@0
|
52 |
die "no feature flag";
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
#
|
sl@0
|
56 |
# Change the feature flag.. Note that the feature flag object '$ff' is a
|
sl@0
|
57 |
# reference to the feature flag in '$fmc' - it's still in there, so when
|
sl@0
|
58 |
# we modify it here it will affect what '$fmc' will write.
|
sl@0
|
59 |
#
|
sl@0
|
60 |
$ff->BlackListed(1);
|
sl@0
|
61 |
$fmc->WriteToFile($datfile2) or die "Couldn't write feature data file '$datfile2'\n";
|
sl@0
|
62 |
|
sl@0
|
63 |
#
|
sl@0
|
64 |
# Now add a new feature. The three arguments are UID, status flags (not defined
|
sl@0
|
65 |
# here) and user data word.
|
sl@0
|
66 |
#
|
sl@0
|
67 |
my $newfeat = FeatureFlag->new(0x12345678, undef, 0xabcd);
|
sl@0
|
68 |
die "Couldn't create new feature flag object.\n" unless(ref($newfeat));
|
sl@0
|
69 |
|
sl@0
|
70 |
#
|
sl@0
|
71 |
# Add it to our existing feature data.
|
sl@0
|
72 |
#
|
sl@0
|
73 |
$fmc->AddFeatureFlag($newfeat) or die "Couldn't add new feature flag..\n";
|
sl@0
|
74 |
|
sl@0
|
75 |
#
|
sl@0
|
76 |
# Remove the original feature flag.
|
sl@0
|
77 |
#
|
sl@0
|
78 |
$fmc->RemoveFeatureFlagByUID($ffuid) or die "Couldn't remove feature flag\n";
|
sl@0
|
79 |
|
sl@0
|
80 |
$fmc->WriteToFile($datfile3);
|