os/textandloc/charconvfw/charconv_fw/tools/snmtool.pl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 #
     2 # Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 # All rights reserved.
     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".
     8 #
     9 # Initial Contributors:
    10 # Nokia Corporation - initial contribution.
    11 #
    12 # Contributors:
    13 #
    14 # Description: 
    15 #
    16 
    17 use strict;
    18 use integer;
    19 
    20 BEGIN
    21 	{
    22 	my $perlScriptPath=$0;
    23 	my $os = $^O; #get the OS type
    24 	#check OS type
    25   if($os=~/MSWin32/) #Windows OS
    26     {
    27     $perlScriptPath=~s/\//\\/g; # replace any forward-slashes with back-slashes
    28     $perlScriptPath=~s/(\\?)[^\\]+$/$1/; # get rid of this Perl-script's file-name
    29     }
    30   else #Unix OS
    31     {
    32     $perlScriptPath=~s/\\/\//g; # replace any back-slashes with forward-slashes
    33     $perlScriptPath=~s/(\/?)[^\/]+$/$1/; # get rid of this Perl-script's file-name
    34     }
    35 	unshift(@INC, $perlScriptPath); # can't do "use lib $perlScriptPath" here as "use lib" only seems to work with *hard-coded* directory names
    36 	}
    37 use PARSER;
    38 use WRITER;
    39 
    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))
    42 	{
    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");
    44 	}
    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");
    49 my %characerSets=();
    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");
    53 binmode OUTPUT_FILE;
    54 &writeOutputFile(\*OUTPUT_FILE, \%characerSets);
    55 close(OUTPUT_FILE) or die("Error: could not close \"$outputFileName\"\n");
    56 print "complete\n\n";
    57 
    58 sub readInputFile
    59 	{
    60 	my $fileHandle=shift;
    61 	my $fileName=shift;
    62 	my $characerSets=shift;
    63 	my $line;
    64 	my $strippedDownLine;
    65 	my $identifier="";
    66 	for (;;)
    67 		{
    68 		($line, $strippedDownLine)=&nextNonEmptyStrippedDownLine($fileHandle);
    69 		if ($strippedDownLine eq "")
    70 			{
    71 			last;
    72 			}
    73 		if ($strippedDownLine=~/^CharacterSet\s+0x([0-9a-f]+)$/i)
    74 			{
    75 			$identifier=lc($1);
    76 			$characerSets->{$identifier}=[[], []];
    77 			}
    78 		else
    79 			{
    80 			if ($identifier eq "")
    81 				{
    82 				close($fileHandle);
    83 				die("Error: unexpected line in \"$fileName\":\n    $line\n");
    84 				}
    85 			if ($strippedDownLine=~/^StandardName\s+"(.*)"$/i)
    86 				{
    87 				push @{$characerSets->{$identifier}->[0]}, $1;
    88 				}
    89 			elsif ($strippedDownLine=~/^MibEnum\s+([0-9]+)$/i)
    90 				{
    91 				push @{$characerSets->{$identifier}->[1]}, $1;
    92 				}
    93 			else
    94 				{
    95 				close($fileHandle);
    96 				die("Error: unexpected line in \"$fileName\":\n    $line\n");
    97 				}
    98 			}
    99 		}
   100 	}
   101 
   102 sub writeOutputFile
   103 	{
   104 	my $fileHandle=shift;
   105 	my $characerSets=shift;
   106 	&writeUids($fileHandle, 0x1000589b, 0, 0);
   107 	my $characerSetIdentifier;
   108 	my $identifier;
   109 	my $data;
   110 	while (($identifier, $data)=each(%$characerSets))
   111 		{
   112 		&write32($fileHandle, hex($identifier));
   113 		&writePositiveIntegerCompacted15($fileHandle, scalar(@{$data->[0]}));
   114 		&writePositiveIntegerCompacted15($fileHandle, scalar(@{$data->[1]}));
   115 		my $standardName;
   116 		foreach $standardName (@{$data->[0]})
   117 			{
   118 			&writePositiveIntegerCompacted15($fileHandle, length($standardName));
   119 			&writeString($fileHandle, $standardName);
   120 			}
   121 		my $mibEnum;
   122 		foreach $mibEnum (@{$data->[1]})
   123 			{
   124 			&writePositiveIntegerCompacted30($fileHandle, $mibEnum);
   125 			}
   126 		}
   127 	}
   128