Update contrib.
2 # Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 # This component and the accompanying materials are made available
5 # under the terms of "Eclipse Public License v1.0"
6 # which accompanies this distribution, and is available
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 # Initial Contributors:
10 # Nokia Corporation - initial contribution.
22 my $perlScriptPath=$0;
23 my $os = $^O; #get the OS type
25 if($os=~/MSWin32/) #Windows OS
27 $perlScriptPath=~s/\//\\/g; # replace any forward-slashes with back-slashes
28 $perlScriptPath=~s/(\\?)[^\\]+$/$1/; # get rid of this Perl-script's file-name
32 $perlScriptPath=~s/\\/\//g; # replace any back-slashes with forward-slashes
33 $perlScriptPath=~s/(\/?)[^\/]+$/$1/; # get rid of this Perl-script's file-name
35 unshift(@INC, $perlScriptPath); # can't do "use lib $perlScriptPath" here as "use lib" only seems to work with *hard-coded* directory names
40 $|=1; # ensures that any progress information sent to the screen is displayed immediately and not buffered
41 if ((@ARGV==0) || ($ARGV[0]=~/\?/i) || ($ARGV[0]=~/-h/i) || ($ARGV[0]=~/help/i))
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");
45 my $inputFileName=shift;
46 my $outputFileName=shift;
47 print "Generating $outputFileName...\n";
48 open(INPUT_FILE, "< $inputFileName") or die("Error: could not open \"$inputFileName\" for reading\n");
50 &readInputFile(\*INPUT_FILE, $inputFileName, \%characerSets);
51 close(INPUT_FILE) or die("Error: could not close \"$inputFileName\"\n");
52 open(OUTPUT_FILE, "> $outputFileName") or die("Error: could not open \"$outputFileName\" for writing\n");
54 &writeOutputFile(\*OUTPUT_FILE, \%characerSets);
55 close(OUTPUT_FILE) or die("Error: could not close \"$outputFileName\"\n");
62 my $characerSets=shift;
68 ($line, $strippedDownLine)=&nextNonEmptyStrippedDownLine($fileHandle);
69 if ($strippedDownLine eq "")
73 if ($strippedDownLine=~/^CharacterSet\s+0x([0-9a-f]+)$/i)
76 $characerSets->{$identifier}=[[], []];
80 if ($identifier eq "")
83 die("Error: unexpected line in \"$fileName\":\n $line\n");
85 if ($strippedDownLine=~/^StandardName\s+"(.*)"$/i)
87 push @{$characerSets->{$identifier}->[0]}, $1;
89 elsif ($strippedDownLine=~/^MibEnum\s+([0-9]+)$/i)
91 push @{$characerSets->{$identifier}->[1]}, $1;
96 die("Error: unexpected line in \"$fileName\":\n $line\n");
104 my $fileHandle=shift;
105 my $characerSets=shift;
106 &writeUids($fileHandle, 0x1000589b, 0, 0);
107 my $characerSetIdentifier;
110 while (($identifier, $data)=each(%$characerSets))
112 &write32($fileHandle, hex($identifier));
113 &writePositiveIntegerCompacted15($fileHandle, scalar(@{$data->[0]}));
114 &writePositiveIntegerCompacted15($fileHandle, scalar(@{$data->[1]}));
116 foreach $standardName (@{$data->[0]})
118 &writePositiveIntegerCompacted15($fileHandle, length($standardName));
119 &writeString($fileHandle, $standardName);
122 foreach $mibEnum (@{$data->[1]})
124 &writePositiveIntegerCompacted30($fileHandle, $mibEnum);