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 display 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 |
# Find out what file the user is interested in..
|
sl@0
|
25 |
# Make sure it's specified and exists.
|
sl@0
|
26 |
#
|
sl@0
|
27 |
my $datfile = $ARGV[-1];
|
sl@0
|
28 |
die "Usage: showfeatcontent.pl <featmanager-data-filename>"
|
sl@0
|
29 |
unless(defined($datfile));
|
sl@0
|
30 |
die "Specify an existing file" unless(-f $datfile);
|
sl@0
|
31 |
|
sl@0
|
32 |
#
|
sl@0
|
33 |
# Create an object that represents a feature data file.
|
sl@0
|
34 |
#
|
sl@0
|
35 |
my $fmc = FMCreate->new();
|
sl@0
|
36 |
|
sl@0
|
37 |
#
|
sl@0
|
38 |
# Load the content of the data file into our FMCreate object.
|
sl@0
|
39 |
# Note that this will die if the content does not seem to be a feature set
|
sl@0
|
40 |
# file. This can happen if the first four bytes aren't 'feat' or if reading
|
sl@0
|
41 |
# the file fails at any point. This will also happen if the file is the wrong
|
sl@0
|
42 |
# size.
|
sl@0
|
43 |
#
|
sl@0
|
44 |
$fmc->LoadUp($datfile);
|
sl@0
|
45 |
|
sl@0
|
46 |
#
|
sl@0
|
47 |
# Display the content.
|
sl@0
|
48 |
#
|
sl@0
|
49 |
$fmc->ShowALL();
|