sl@0
|
1 |
#
|
sl@0
|
2 |
# Copyright (c) 1997-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 |
#
|
sl@0
|
16 |
|
sl@0
|
17 |
use strict;
|
sl@0
|
18 |
use integer;
|
sl@0
|
19 |
|
sl@0
|
20 |
BEGIN
|
sl@0
|
21 |
{
|
sl@0
|
22 |
my $perlScriptPath=$0;
|
sl@0
|
23 |
my $os = $^O; #get the OS type
|
sl@0
|
24 |
#check OS type
|
sl@0
|
25 |
if($os=~/MSWin32/) #Windows OS
|
sl@0
|
26 |
{
|
sl@0
|
27 |
$perlScriptPath=~s/\//\\/g; # replace any forward-slashes with back-slashes
|
sl@0
|
28 |
$perlScriptPath=~s/(\\?)[^\\]+$/$1/; # get rid of this Perl-script's file-name
|
sl@0
|
29 |
}
|
sl@0
|
30 |
else #Unix OS
|
sl@0
|
31 |
{
|
sl@0
|
32 |
$perlScriptPath=~s/\\/\//g; # replace any back-slashes with forward-slashes
|
sl@0
|
33 |
$perlScriptPath=~s/(\/?)[^\/]+$/$1/; # get rid of this Perl-script's file-name
|
sl@0
|
34 |
}
|
sl@0
|
35 |
unshift(@INC, $perlScriptPath); # can't do "use lib $perlScriptPath" here as "use lib" only seems to work with *hard-coded* directory names
|
sl@0
|
36 |
}
|
sl@0
|
37 |
use PARSER;
|
sl@0
|
38 |
use WRITER;
|
sl@0
|
39 |
|
sl@0
|
40 |
$|=1; # ensures that any progress information sent to the screen is displayed immediately and not buffered
|
sl@0
|
41 |
if ((@ARGV==0) || ($ARGV[0]=~/\?/i) || ($ARGV[0]=~/-h/i) || ($ARGV[0]=~/help/i))
|
sl@0
|
42 |
{
|
sl@0
|
43 |
die("\nVersion 021\n\nCharacter-set standard-names and MIB-enums tool\nCopyright (c) 2000 Symbian Ltd\n\nUsage:\n\n\tsnmtool <input-file> <output-file>\n\n");
|
sl@0
|
44 |
}
|
sl@0
|
45 |
my $inputFileName=shift;
|
sl@0
|
46 |
my $outputFileName=shift;
|
sl@0
|
47 |
print "Generating $outputFileName...\n";
|
sl@0
|
48 |
open(INPUT_FILE, "< $inputFileName") or die("Error: could not open \"$inputFileName\" for reading\n");
|
sl@0
|
49 |
my %characerSets=();
|
sl@0
|
50 |
&readInputFile(\*INPUT_FILE, $inputFileName, \%characerSets);
|
sl@0
|
51 |
close(INPUT_FILE) or die("Error: could not close \"$inputFileName\"\n");
|
sl@0
|
52 |
open(OUTPUT_FILE, "> $outputFileName") or die("Error: could not open \"$outputFileName\" for writing\n");
|
sl@0
|
53 |
binmode OUTPUT_FILE;
|
sl@0
|
54 |
&writeOutputFile(\*OUTPUT_FILE, \%characerSets);
|
sl@0
|
55 |
close(OUTPUT_FILE) or die("Error: could not close \"$outputFileName\"\n");
|
sl@0
|
56 |
print "complete\n\n";
|
sl@0
|
57 |
|
sl@0
|
58 |
sub readInputFile
|
sl@0
|
59 |
{
|
sl@0
|
60 |
my $fileHandle=shift;
|
sl@0
|
61 |
my $fileName=shift;
|
sl@0
|
62 |
my $characerSets=shift;
|
sl@0
|
63 |
my $line;
|
sl@0
|
64 |
my $strippedDownLine;
|
sl@0
|
65 |
my $identifier="";
|
sl@0
|
66 |
for (;;)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
($line, $strippedDownLine)=&nextNonEmptyStrippedDownLine($fileHandle);
|
sl@0
|
69 |
if ($strippedDownLine eq "")
|
sl@0
|
70 |
{
|
sl@0
|
71 |
last;
|
sl@0
|
72 |
}
|
sl@0
|
73 |
if ($strippedDownLine=~/^CharacterSet\s+0x([0-9a-f]+)$/i)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
$identifier=lc($1);
|
sl@0
|
76 |
$characerSets->{$identifier}=[[], []];
|
sl@0
|
77 |
}
|
sl@0
|
78 |
else
|
sl@0
|
79 |
{
|
sl@0
|
80 |
if ($identifier eq "")
|
sl@0
|
81 |
{
|
sl@0
|
82 |
close($fileHandle);
|
sl@0
|
83 |
die("Error: unexpected line in \"$fileName\":\n $line\n");
|
sl@0
|
84 |
}
|
sl@0
|
85 |
if ($strippedDownLine=~/^StandardName\s+"(.*)"$/i)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
push @{$characerSets->{$identifier}->[0]}, $1;
|
sl@0
|
88 |
}
|
sl@0
|
89 |
elsif ($strippedDownLine=~/^MibEnum\s+([0-9]+)$/i)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
push @{$characerSets->{$identifier}->[1]}, $1;
|
sl@0
|
92 |
}
|
sl@0
|
93 |
else
|
sl@0
|
94 |
{
|
sl@0
|
95 |
close($fileHandle);
|
sl@0
|
96 |
die("Error: unexpected line in \"$fileName\":\n $line\n");
|
sl@0
|
97 |
}
|
sl@0
|
98 |
}
|
sl@0
|
99 |
}
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
sub writeOutputFile
|
sl@0
|
103 |
{
|
sl@0
|
104 |
my $fileHandle=shift;
|
sl@0
|
105 |
my $characerSets=shift;
|
sl@0
|
106 |
&writeUids($fileHandle, 0x1000589b, 0, 0);
|
sl@0
|
107 |
my $characerSetIdentifier;
|
sl@0
|
108 |
my $identifier;
|
sl@0
|
109 |
my $data;
|
sl@0
|
110 |
while (($identifier, $data)=each(%$characerSets))
|
sl@0
|
111 |
{
|
sl@0
|
112 |
&write32($fileHandle, hex($identifier));
|
sl@0
|
113 |
&writePositiveIntegerCompacted15($fileHandle, scalar(@{$data->[0]}));
|
sl@0
|
114 |
&writePositiveIntegerCompacted15($fileHandle, scalar(@{$data->[1]}));
|
sl@0
|
115 |
my $standardName;
|
sl@0
|
116 |
foreach $standardName (@{$data->[0]})
|
sl@0
|
117 |
{
|
sl@0
|
118 |
&writePositiveIntegerCompacted15($fileHandle, length($standardName));
|
sl@0
|
119 |
&writeString($fileHandle, $standardName);
|
sl@0
|
120 |
}
|
sl@0
|
121 |
my $mibEnum;
|
sl@0
|
122 |
foreach $mibEnum (@{$data->[1]})
|
sl@0
|
123 |
{
|
sl@0
|
124 |
&writePositiveIntegerCompacted30($fileHandle, $mibEnum);
|
sl@0
|
125 |
}
|
sl@0
|
126 |
}
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|