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 simple it is to create a feature set data file
|
sl@0
|
16 |
# using the 'FMCreate', 'FeatureFlag' and 'FeatureDSR' classes.
|
sl@0
|
17 |
#
|
sl@0
|
18 |
#
|
sl@0
|
19 |
|
sl@0
|
20 |
use strict;
|
sl@0
|
21 |
use fmcreate;
|
sl@0
|
22 |
use featureflag;
|
sl@0
|
23 |
use featuredsr;
|
sl@0
|
24 |
|
sl@0
|
25 |
#
|
sl@0
|
26 |
# First create a 'FMCreate' object. Note that the typefield defaults to "feat",
|
sl@0
|
27 |
# the fileversion defaults to '1', fileflags to '0'. Initially it contains no
|
sl@0
|
28 |
# feature flags or default supported ranges.
|
sl@0
|
29 |
#
|
sl@0
|
30 |
my $fmc = FMCreate->new();
|
sl@0
|
31 |
die "Couldn't create an 'FMCreate' object" unless(ref($fmc));
|
sl@0
|
32 |
|
sl@0
|
33 |
#
|
sl@0
|
34 |
# Now we can do all sorts of things with this object - for example populating
|
sl@0
|
35 |
# it from an existing file (using the LoadUp method). But let's populate it
|
sl@0
|
36 |
# manually..
|
sl@0
|
37 |
#
|
sl@0
|
38 |
|
sl@0
|
39 |
#
|
sl@0
|
40 |
# Create a feature flag object. The arguments are UID, status flag (defaults
|
sl@0
|
41 |
# to zero) and user data word.
|
sl@0
|
42 |
#
|
sl@0
|
43 |
my $ff = FeatureFlag->new(0xabcd1234, undef, 0xf00df00d);
|
sl@0
|
44 |
die "Couldn't create a 'FeatureFlag' object" unless(ref($ff));
|
sl@0
|
45 |
|
sl@0
|
46 |
#
|
sl@0
|
47 |
# Change some bits in the status flags.
|
sl@0
|
48 |
#
|
sl@0
|
49 |
$ff->Modifiable(1);
|
sl@0
|
50 |
$ff->BlackListed(0);
|
sl@0
|
51 |
$ff->Uninitialized(1);
|
sl@0
|
52 |
|
sl@0
|
53 |
# Hey, I've decided I don't like the user data word (0xf00df00d) we defined
|
sl@0
|
54 |
# when we created $ff, so lets change it..
|
sl@0
|
55 |
$ff->UserData(0x12344331);
|
sl@0
|
56 |
|
sl@0
|
57 |
# We need to add the feature flag to the 'FMCreate' object - they aren't tied
|
sl@0
|
58 |
# in any way yet.
|
sl@0
|
59 |
$fmc->AddFeatureFlag($ff);
|
sl@0
|
60 |
|
sl@0
|
61 |
# Create another FeatureFlag. We can't re-use the '$ff' object (without doing
|
sl@0
|
62 |
# another 'new') because '$fmc' owns it now and holds a reference to it.
|
sl@0
|
63 |
# This line creates a totally separate FeatureFlag object which we can set up
|
sl@0
|
64 |
# in any way we like - but we must remember to add it to '$fmc'.
|
sl@0
|
65 |
|
sl@0
|
66 |
$ff = FeatureFlag->new(0xfedcba98);
|
sl@0
|
67 |
$fmc->AddFeatureFlag($ff);
|
sl@0
|
68 |
|
sl@0
|
69 |
# Modify $ff - this is already in '$fmc' but that's ok - perhaps we want to
|
sl@0
|
70 |
# modify one that's already in.
|
sl@0
|
71 |
$ff->UserData(0x42);
|
sl@0
|
72 |
$ff->BlackListed(1);
|
sl@0
|
73 |
|
sl@0
|
74 |
|
sl@0
|
75 |
|
sl@0
|
76 |
# Ok now create a couple of 'default supported range' objects. Again we
|
sl@0
|
77 |
# have to add these to the '$fmc' FMCreate object.
|
sl@0
|
78 |
my $dsr1 = FeatureDSR->new(0x10000000, 0x10000005);
|
sl@0
|
79 |
my $dsr2 = FeatureDSR->new(0x10000050, 0x10000055);
|
sl@0
|
80 |
die "Failed to create 'FeatureDSR' object" unless(ref($dsr1) and ref($dsr2));
|
sl@0
|
81 |
|
sl@0
|
82 |
# Add them in the wrong order to '$fmc'. Note that 'FMCreate' does not check
|
sl@0
|
83 |
# for duplicate default supported range objects (or FeatureFlag objects for
|
sl@0
|
84 |
# that matter).
|
sl@0
|
85 |
$fmc->AddFeatureDSR($dsr2);
|
sl@0
|
86 |
$fmc->AddFeatureDSR($dsr1);
|
sl@0
|
87 |
|
sl@0
|
88 |
|
sl@0
|
89 |
# OK, the FMCreate object '$fmc' is fairly well populated now. Lets display
|
sl@0
|
90 |
# the content.. There also are methods to just show the header information, the
|
sl@0
|
91 |
# FeatureFlag information and FeatureDSR information.
|
sl@0
|
92 |
$fmc->ShowALL();
|
sl@0
|
93 |
|
sl@0
|
94 |
|
sl@0
|
95 |
# Let's write the features to a binary file..
|
sl@0
|
96 |
print "\n\n\nWriting feature set data to 'featureset.dat'\n";
|
sl@0
|
97 |
$fmc->WriteToFile("featureset.dat")
|
sl@0
|
98 |
or die "Couldn't write to feature set data file 'featureset.dat'\n";
|